Files
shadcn-ui/apps/v4/examples/base/calendar-caption.tsx
shadcn 7d718ddaa9 fix: refactor styles (#10190)
* feat: refactor styles handling across v4

* fix

* fix

* fix

* fix

* fix

* fix
2026-03-26 14:36:00 +04:00

14 lines
234 B
TypeScript

"use client"
import { Calendar } from "@/styles/base-nova/ui/calendar"
export function CalendarCaption() {
return (
<Calendar
mode="single"
captionLayout="dropdown"
className="rounded-lg border"
/>
)
}