From f5e5e6e7a017bbe72a2b2deef71f552760f8f97d Mon Sep 17 00:00:00 2001 From: Fayorg Date: Tue, 5 Dec 2023 21:32:50 +0100 Subject: [PATCH] fix: removed dayCard component --- components/custom/dayCard.tsx | 48 ----------------------------------- 1 file changed, 48 deletions(-) diff --git a/components/custom/dayCard.tsx b/components/custom/dayCard.tsx index 47b0d92..e69de29 100644 --- a/components/custom/dayCard.tsx +++ b/components/custom/dayCard.tsx @@ -1,48 +0,0 @@ -"use client"; - -import { BellRing, Check } from "lucide-react" - -import { cn } from "@/lib/utils" -import { Button } from "@/components/ui/button" -import { - Card, - CardContent, - CardDescription, - CardFooter, - CardHeader, - CardTitle, -} from "@/components/ui/card" - -type CardProps = React.ComponentProps - -interface DayCardProps extends CardProps { - day: number, - name: string, - enabled: boolean -} - -export function DayCard({ className, ...props }: DayCardProps) { - return ( - - - {props.enabled ? -
-

1

-
-

Michal Polka

-

Description

-
-
- : -
-

1

-
-

Michal Polka

-

Description

-
-
- } -
-
- ) -}