import type { HTMLAttributes, ReactNode } from 'react'; import { cn } from '@utils/cn'; export interface CardProps extends HTMLAttributes { children: ReactNode; } export function Card({ children, className, ...props }: CardProps) { return (
{children}
); } export interface CardHeaderProps extends HTMLAttributes { children: ReactNode; } export function CardHeader({ children, className, ...props }: CardHeaderProps) { return (
{children}
); } export interface CardTitleProps extends HTMLAttributes { children: ReactNode; } export function CardTitle({ children, className, ...props }: CardTitleProps) { return (

{children}

); } export interface CardContentProps extends HTMLAttributes { children: ReactNode; } export function CardContent({ children, className, ...props }: CardContentProps) { return (
{children}
); } export interface CardFooterProps extends HTMLAttributes { children: ReactNode; } export function CardFooter({ children, className, ...props }: CardFooterProps) { return (
{children}
); }