mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 06:28:37 +00:00
37 lines
908 B
TypeScript
37 lines
908 B
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
|
|
import { Calendar } from "@/styles/base-nova/ui/calendar"
|
|
import { Card, CardContent } from "@/styles/base-nova/ui/card"
|
|
|
|
export function CalendarBookedDates() {
|
|
const [date, setDate] = React.useState<Date | undefined>(
|
|
new Date(new Date().getFullYear(), 0, 6)
|
|
)
|
|
const bookedDates = Array.from(
|
|
{ length: 15 },
|
|
(_, i) => new Date(new Date().getFullYear(), 0, 12 + i)
|
|
)
|
|
|
|
return (
|
|
<Card className="mx-auto w-fit p-0">
|
|
<CardContent className="p-0">
|
|
<Calendar
|
|
mode="single"
|
|
defaultMonth={date}
|
|
selected={date}
|
|
onSelect={setDate}
|
|
disabled={bookedDates}
|
|
modifiers={{
|
|
booked: bookedDates,
|
|
}}
|
|
modifiersClassNames={{
|
|
booked: "[&>button]:line-through opacity-100",
|
|
}}
|
|
/>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|