This component no longer exists. It was in shadcn/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-05 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
calendar-03
accelya-ui-lib/calendar-03RemovedBlock
Multiple months with multiple selection.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/ramsaoji/Accelya-UI-Lib/main/public/r/styles/default/calendar-03.jsonSource
1"use client"23import * as React from "react"45import { Calendar } from "@/registry/default/ui/calendar"67export default function Calendar03() {8 const [dates, setDates] = React.useState<Date[]>([9 new Date(2025, 5, 12),10 new Date(2025, 6, 24),11 ])1213 return (14 <Calendar15 mode="multiple"16 numberOfMonths={2}17 defaultMonth={dates[0]}18 required19 selected={dates}20 onSelect={setDates}21 max={5}22 className="rounded-lg border shadow-sm"23 />24 )25}
What it pulls in
Other registry items
