Input
---import { Input } from "@/components/starwind/input";---
<Input placeholder="Type something..." />
Installation
pnpx starwind@latest add input
npx starwind@latest add input
yarn dlx starwind@latest add input
Usage
size
---import { Input } from "@/components/starwind/input";---
<Input size="sm" placeholder="Small input" /><Input size="md" placeholder="Medium input" /><Input size="lg" placeholder="Large input" />
disabled
---import { Input } from "@/components/starwind/input";---
<Input disabled placeholder="Disabled input" /><Input disabled value="Disabled with value" />
with type
---import { Input } from "@/components/starwind/input";---
<Input type="email" placeholder="Email input" /><Input type="password" placeholder="Password input" /><Input type="number" placeholder="Number input" /><Input type="file" />
API Reference
Prop | Type | Default |
---|---|---|
size | "sm" | "md" | "lg" | "md" |
The component also accepts all standard HTML attributes for the <input>
element.
Changelog
v1.1.0
tailwind-variants
now implemented. This usestailwind-merge
under the hood to merge Tailwind classes without style conflicts, allowing you to override any existing classes using the “class” prop.