A comprehensive calendar component for date selection with support for single dates, date ranges, and multiple date selection
import { Calendar } from "@/components/ui/calender"; import React from 'react'; export default function DemoOne() { const [date, setDate] = React.useState<Date>() return( <div> <Calendar selected={date} onSelect={setDate} /> </div> ); }
Part of HextaUI — browse the full library on 21st.dev.