Components
Loading preview...
Date input field with labels, descriptions, and validation built on React Aria DateField.
npx shadcn@latest add https://21st.dev/r/hero_ui/heroui-date-fieldimport { DateField, Description, Label, today } from "@/components/ui/heroui-date-field";
export default function DisabledState() {
return (
<div className="flex min-h-screen w-full items-center justify-center overflow-hidden bg-background p-8">
<div className="flex flex-col gap-4">
<DateField isDisabled className="w-[256px]" name="date" value={today()}>
<Label>Date</Label>
<DateField.Group>
<DateField.Input />
</DateField.Group>
<Description>This date field is disabled</Description>
</DateField>
<DateField isDisabled className="w-[256px]" name="date-empty">
<Label>Date</Label>
<DateField.Group>
<DateField.Input />
</DateField.Group>
<Description>This date field is disabled</Description>
</DateField>
</div>
</div>
);
}
export { DisabledState };