"use client"; import { Lock } 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 | false, oral?: boolean | true, } function say() { alert("Hello") } export function DayCard({ className, ...props }: DayCardProps) { return ( {props.enabled ?

1

Michal Polka

:
}
) }