import { DateField } from "@/registry/new-york/ui/date-field"
export default function DateFieldGranularity() {
return (
<div className="space-y-4">
<DateField
label="Date only"
description="Year, month, and day."
granularity="day"
/>
<DateField
label="Month and year"
description="Month and year only."
granularity="month"
/>
</div>
)
}
npx shadcn@latest add @taki/date-field-granularityimport { DateFieldGranularity } from "@/components/date-field-granularity"<DateFieldGranularity />