Components
Calendar
A calendar component
Preview
Loading...
"use client";import * as React from "react";import { Calendar } from "@/registry/axon/ui/calendar";export default function CalendarDemo() { const [date, setDate] = React.useState<Date | undefined>(new Date()); return ( <Calendar captionLayout="dropdown" className="rounded-md border shadow-sm" mode="single" onSelect={setDate} selected={date} /> );}Installation
CLI
npx shadcn@latest add @emberui/calendaryarn shadcn@latest add @emberui/calendarpnpm dlx shadcn@latest add @emberui/calendarbunx --bun shadcn@latest add @emberui/calendarReference
This component is based on the shadcn/ui Calendar component.