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-15
accelya-ui-lib/calendar-15RemovedBlock
With Week Numbers
Install it
npx shadcn@latest add https://raw.githubusercontent.com/ramsaoji/Accelya-UI-Lib/main/public/r/styles/default/calendar-15.jsonSource
1"use client"23import * as React from "react"45import { Calendar } from "@/registry/default/ui/calendar"67export default function Calendar15() {8 const [date, setDate] = React.useState<Date | undefined>(9 new Date(2025, 5, 12)10 )1112 return (13 <Calendar14 mode="single"15 defaultMonth={date}16 selected={date}17 onSelect={setDate}18 className="rounded-lg border shadow-sm"19 showWeekNumber20 />21 )22}
What it pulls in
Other registry items
