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-07
accelya-ui-lib/calendar-07RemovedBlock
Range selection with minimum and maximum days
Install it
npx shadcn@latest add https://raw.githubusercontent.com/ramsaoji/Accelya-UI-Lib/main/public/r/styles/default/calendar-07.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 Calendar07() {9 const [dateRange, setDateRange] = React.useState<DateRange | undefined>({10 from: new Date(2025, 5, 18),11 to: new Date(2025, 6, 7),12 })1314 return (15 <div className="flex min-w-0 flex-col gap-2">16 <Calendar17 mode="range"18 defaultMonth={dateRange?.from}19 selected={dateRange}20 onSelect={setDateRange}21 numberOfMonths={2}22 min={2}23 max={20}24 className="rounded-lg border shadow-sm"25 />26 <div className="text-muted-foreground text-center text-xs">27 Your stay must be between 2 and 20 nights28 </div>29 </div>30 )31}
What it pulls in
Other registry items
