<Input placeholder="Enter text..." />
Installation
import { Input } from "~/components/input/input";Usage
import { Input } from "~/components/input/input";
export default function Example() {
return <Input placeholder="Enter text..." />;
}Examples
Default
<Input placeholder="Type something..." />
With Value
<Input value="Hello World" />
Error State
<Input variant="error" value="Invalid input" />
Disabled
<Input placeholder="Disabled..." disabled />
API Reference
| Prop | Type | Default |
|---|---|---|
| variant | "default" | "error" | "default" |
| placeholder | string | undefined |
| disabled | boolean | false |