mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
27 lines
599 B
TypeScript
27 lines
599 B
TypeScript
"use client"
|
|
|
|
import { addDays } from "date-fns"
|
|
|
|
import { Calendar } from "@/registry/new-york-v4/ui/calendar"
|
|
import { Card, CardContent } from "@/registry/new-york-v4/ui/card"
|
|
|
|
const start = new Date(2025, 5, 5)
|
|
|
|
export function CardsCalendar() {
|
|
return (
|
|
<Card className="hidden max-w-[260px] p-0 sm:flex">
|
|
<CardContent className="p-0">
|
|
<Calendar
|
|
numberOfMonths={1}
|
|
mode="range"
|
|
defaultMonth={start}
|
|
selected={{
|
|
from: start,
|
|
to: addDays(start, 8),
|
|
}}
|
|
/>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|