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-04
accelya-ui-lib/calendar-04RemovedBlock
Single month with range selection
Install it
npx shadcn@latest add https://raw.githubusercontent.com/ramsaoji/Accelya-UI-Lib/main/public/r/styles/default/calendar-04.jsonSource
1"use client"23import * as React from "react"4import { type DateRange } from "react-day-picker"56import { Calendar } from "@/registry/default/ui/calendar"78export default function Calendar04() {9 const [dateRange, setDateRange] = React.useState<DateRange | undefined>({10 from: new Date(2025, 5, 9),11 to: new Date(2025, 5, 26),12 })1314 return (15 <Calendar16 mode="range"17 defaultMonth={dateRange?.from}18 selected={dateRange}19 onSelect={setDateRange}20 className="rounded-lg border shadow-sm"21 />22 )23}
What it pulls in
Other registry items
