This component no longer exists. It was in Pure UI’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 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-multiple-months-single-selection-block
pure-ui/calendar-multiple-months-single-selection-blockRemovedBlock
Pure UI publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/MusKRI/pure-ui/main/public/r/calendar-multiple-months-single-selection-block.jsonSource
1"use client";23import { useState } from "react";45import { Calendar } from "@/registry/pure-ui/ui/calendar";67export function Calendar2Block() {8 const [date, setDate] = useState<Date | undefined>(new Date(2025, 5, 12));910 return (11 <div className="flex items-center justify-center p-5 min-h-[500px]">12 <Calendar13 animate14 mode="single"15 defaultMonth={date}16 numberOfMonths={2}17 selected={date}18 onSelect={setDate}19 />20 </div>21 );22}
What it pulls in
Other registry items
