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-14
accelya-ui-lib/calendar-14RemovedBlock
With Booked/Unavailable Days
Install it
npx shadcn@latest add https://raw.githubusercontent.com/ramsaoji/Accelya-UI-Lib/main/public/r/styles/default/calendar-14.jsonSource
1"use client"23import * as React from "react"45import { Calendar } from "@/registry/default/ui/calendar"67export default function Calendar14() {8 const [date, setDate] = React.useState<Date | undefined>(9 new Date(2025, 5, 12)10 )11 const bookedDates = Array.from(12 { length: 12 },13 (_, i) => new Date(2025, 5, 15 + i)14 )1516 return (17 <Calendar18 mode="single"19 defaultMonth={date}20 selected={date}21 onSelect={setDate}22 disabled={bookedDates}23 modifiers={{24 booked: bookedDates,25 }}26 modifiersClassNames={{27 booked: "[&>button]:line-through opacity-100",28 }}29 className="rounded-lg border shadow-sm"30 />31 )32}
What it pulls in
Other registry items
