Files
shadcn-ui/apps/v4/examples/base/calendar-caption.tsx
2026-01-15 08:54:40 +04:00

14 lines
231 B
TypeScript

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