import { cn } from "@/lib/utils" import { HTMLAttributes } from "react" interface CardProps extends HTMLAttributes { className?: string children?: React.ReactNode } export function Card({ className, children, ...props }: CardProps) { return (
{children}
) } export function CardHeader({ className, children, ...props }: CardProps) { return (
{children}
) } export function CardTitle({ className, children, ...props }: CardProps) { return (

{children}

) } export function CardDescription({ className, children, ...props }: CardProps) { return (

{children}

) } export function CardContent({ className, children, ...props }: CardProps) { return (
{children}
) } export function CardFooter({ className, children, ...props }: CardProps) { return (
{children}
) }