import React from 'react'; import { cn } from './utils'; interface CardProps extends React.HTMLAttributes { tag?: 'div' | 'article' | 'section' | 'aside' | 'header' | 'footer' | 'nav' | 'main'; } export function Card({ className, children, tag: Tag = 'div', ...props }: CardProps) { return ( {children} ); }