import type { ReactNode } from 'react' interface CardProps { children: ReactNode className?: string padding?: 'sm' | 'md' | 'lg' } export function Card({ children, className = '', padding = 'md' }: CardProps) { const pads = { sm: 'p-4', md: 'p-6', lg: 'p-8' } return (
{children}
) } interface StatCardProps { label: string value: string | number } export function StatCard({ label, value }: StatCardProps) { return (
{label}
{value}
) }