Skip to content

Instantly share code, notes, and snippets.

View Hardik888's full-sized avatar
🏠
Working from home

Hardik Upadhyay Hardik888

🏠
Working from home
  • Remote
View GitHub Profile
@Hardik888
Hardik888 / calendar.tsx
Created September 10, 2024 18:22 — forked from mjbalcueva/calendar.tsx
shadcn ui calendar custom year and month dropdown
"use client"
import * as React from "react"
import { buttonVariants } from "@/components/ui/button"
import { ScrollArea } from "@/components/ui/scroll-area"
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"
import { cn } from "@/lib/utils"
import { ChevronLeft, ChevronRight } from "lucide-react"
import { DayPicker, DropdownProps } from "react-day-picker"