calendar-13
showcase-elevenlabs/calendar-13FreeBlock
With Month and Year Dropdown
Install it
npx shadcn@latest add https://raw.githubusercontent.com/elevenlabs/showcase/main/apps/www/public/r/styles/new-york/calendar-13.jsonSource
1"use client"23import * as React from "react"45import { Calendar } from "@/registry/new-york/ui/calendar"6import { Label } from "@/registry/new-york/ui/label"7import {8 Select,9 SelectContent,10 SelectItem,11 SelectTrigger,12 SelectValue,13} from "@/registry/new-york/ui/select"1415export default function Calendar13() {16 const [dropdown, setDropdown] =17 React.useState<React.ComponentProps<typeof Calendar>["captionLayout"]>(18 "dropdown"19 )20 const [date, setDate] = React.useState<Date | undefined>(21 new Date(2025, 5, 12)22 )2324 return (25 <div className="flex flex-col gap-4">26 <Calendar27 mode="single"28 defaultMonth={date}29 selected={date}30 onSelect={setDate}31 captionLayout={dropdown}32 className="rounded-lg border shadow-sm"33 />34 <div className="flex flex-col gap-3">35 <Label htmlFor="dropdown" className="px-1">36 Dropdown37 </Label>38 <Select39 value={dropdown}40 onValueChange={(value) =>41 setDropdown(42 value as React.ComponentProps<typeof Calendar>["captionLayout"]43 )44 }45 >46 <SelectTrigger id="dropdown" className="bg-background w-full">47 <SelectValue placeholder="Dropdown" />48 </SelectTrigger>49 <SelectContent align="center">50 <SelectItem value="dropdown">Month and Year</SelectItem>51 <SelectItem value="dropdown-months">Month Only</SelectItem>52 <SelectItem value="dropdown-years">Year Only</SelectItem>53 </SelectContent>54 </Select>55 </div>56 </div>57 )58}
What it pulls in
Other registry items
Files it writes
More from shadcn/ui
All 357 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| calendar-01calendar-01 | shadcn/ui | Blocks | Free | no deps | |
| calendar-02calendar-02 | shadcn/ui | Blocks | Free | no deps | |
| calendar-03calendar-03 | shadcn/ui | Blocks | Free | no deps | |
| calendar-04calendar-04 | shadcn/ui | Blocks | Free | no deps | |
| calendar-05calendar-05 | shadcn/ui | Blocks | Free | no deps | |
| calendar-06calendar-06 | shadcn/ui | Blocks | Free | no deps | |
| calendar-07calendar-07 | shadcn/ui | Blocks | Free | no deps | |
| calendar-08calendar-08 | shadcn/ui | Blocks | Free | no deps |
