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