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="flex w-[240px] flex-col gap-2">
<Input fullWidth placeholder="Primary input" variant="primary" />
<Input fullWidth placeholder="Secondary input" variant="secondary" />
</div>
</div>
)
}