diff --git a/frontend/components/ui/calendar.tsx b/frontend/components/ui/calendar.tsx deleted file mode 100644 index efb6a2a..0000000 --- a/frontend/components/ui/calendar.tsx +++ /dev/null @@ -1,63 +0,0 @@ -"use client" - -import * as React from "react" - -import { DayPicker } from "react-day-picker" - -import { cn } from "@/lib/utils" -import { buttonVariants } from "@/components/ui/button" - -export type CalendarProps = React.ComponentProps - -function Calendar({ - className, - classNames, - showOutsideDays = true, - ...props -}: CalendarProps) { - return ( - - ) -} -Calendar.displayName = "Calendar" - -export { Calendar }