Calendar
A date picker component that allows users to select a date.
Example
Code
Example
import { Calendar } from "cephalopod-design-system"
const [date, setDate] = React.useState<Date | undefined>(new Date())
<Calendar
mode="single"
selected={date}
onSelect={setDate}
className="rounded-md border"
/>