import { ButtonHTMLAttributes, forwardRef } from 'react'; import { cn } from '@/lib/utils'; interface ButtonProps extends ButtonHTMLAttributes { variant?: 'primary' | 'secondary' | 'outline' | 'ghost'; size?: 'sm' | 'md' | 'lg'; } const Button = forwardRef( ({ className, variant = 'primary', size = 'md', children, ...props }, ref) => { return ( ); } ); Button.displayName = 'Button'; export { Button }; export type { ButtonProps };