Components
Input
Text input with HUD terminal styling.
Import
import { Input } from '@dmm1/daemon-ui'Usage
<Input placeholder="ENTER COMMAND..." />Types
<Input type="text" placeholder="Text input" />
<Input type="email" placeholder="Email input" />
<Input type="password" placeholder="Password input" />
<Input type="number" placeholder="Number input" />Disabled
<Input disabled placeholder="DISABLED" />API Reference
| Prop | Type | Default | Description |
|---|---|---|---|
type | string | 'text' | Input type |
placeholder | string | — | Placeholder text |
disabled | boolean | false | Disable interaction |
className | string | — | Additional CSS classes |