EEnterUI
DocsComponentsThemesDonation
Get Started
      • Input
      • PasswordInput
      • NumberInput
      • Stepper
      • TextArea
EnterUIDocsInputsForm ControlsText InputsInput
InputsUpdated 6 May 2026

Input

A single-line text input with polished focus and invalid states.

Input defines how EnterUI handles a single-line text input with polished focus and invalid states, including default structure, accessible states, and token-driven styling.

#Default usage

Input states

Default, disabled, and invalid states share the same control rhythm.

Code
<div className="docs-preview-stack">
  <Input aria-label="Package name" defaultValue="@froggdesign/enter-ui-react" />
  <Input aria-label="Disabled package" disabled defaultValue="@froggdesign/enterui-locked" />
  <Input aria-label="Invalid package" invalid defaultValue="invalid scope" />
</div>

#Import

Code
import { Input } from "@froggdesign/enter-ui-react";

#Patterns

With field

Use Field when the control needs label, help, or error text.

Used in package metadata.

#Accessibility

Input renders a native input. Provide a visible Label or an aria-label. The invalid prop maps to aria-invalid.

#API

  • invalid toggles invalid styling and aria state.
  • All native input props are supported.
  • Use className for local control styling.

#Styling

Every exported component accepts className when it renders an element. EnterUI styles use .eui-* classes and --eui-* variables mapped from FroggDesign theme tokens.

PreviousDisclosure
NextPasswordInput

On this page

  1. Default usage
  2. Import
  3. Patterns
  4. Accessibility
  5. API
  6. Styling