An alternative to the Calendar on shadcn. Features animations when switching months. Displays multiple months side by side. Includes a date click event.
import { enUS } from 'date-fns/locale' import { Component } from "@/components/ui/calendar"; export default function DemoTwo() { return <Component locale={enUS} numberOfMonths={2} />; }