Components
Loading preview...
Primitive single-line text input that accepts standard HTML attributes.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/heroui-inputimport { Input } from "@/components/ui/heroui-input"
export default function Demo() {
return (
<div className="w-[400px] space-y-3">
<Input fullWidth placeholder="Full width input" />
</div>
)
}