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