"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

}
) }