import { cn } from '@szl-holdings/design-system'; export interface BadgeProps extends React.HTMLAttributes { variant?: 'default' | 'critical' | 'warn' | 'ok' | 'info' | 'outline' | 'ghost'; size?: 'sm' | 'md'; } export function Badge({ children, variant = 'default', size = 'md', className, ...props }: BadgeProps) { return ( {children} ); }