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 { CalendarIcon, DateField, Description, Label, Surface } from "@/components/ui/heroui-date-field";
export default function InSurface() {
return (
<div className="flex min-h-screen w-full items-center justify-center overflow-hidden bg-background p-8">
<Surface className="w-[340px] p-4">
<div className="flex flex-col gap-4">
<DateField className="w-[256px]" name="date">
<Label>Date</Label>
<DateField.Group variant="secondary">
<DateField.Prefix>
<CalendarIcon className="size-4 text-muted" />
</DateField.Prefix>
<DateField.Input />
</DateField.Group>
<Description>Enter a date</Description>
</DateField>
<DateField className="w-[256px]" name="appointment-date">
<Label>Appointment date</Label>
<DateField.Group variant="secondary">
<DateField.Input />
</DateField.Group>
<Description>Enter a date for your appointment</Description>
</DateField>
</div>
</Surface>
</div>
);
}
export { InSurface };