import { ButtonHTMLAttributes, forwardRef } from "react"; import { clsx } from "clsx"; type Variant = "primary" | "secondary" | "danger" | "ghost"; type Size = "sm" | "md" | "lg"; interface ButtonProps extends ButtonHTMLAttributes { variant?: Variant; size?: Size; loading?: boolean; } const variantClasses: Record = { primary: "bg-accent hover:bg-accent-hover text-white border-transparent", secondary: "bg-surface-2 hover:bg-[#2d3048] text-text-primary border-border", danger: "bg-danger hover:bg-danger-hover text-white border-transparent", ghost: "bg-transparent hover:bg-surface-2 text-text-secondary hover:text-text-primary border-transparent", }; const sizeClasses: Record = { sm: "px-3 py-1.5 text-sm", md: "px-4 py-2 text-sm", lg: "px-5 py-2.5 text-base", }; export const Button = forwardRef( ( { variant = "primary", size = "md", loading, className, children, disabled, ...props }, ref ) => { return ( ); } ); Button.displayName = "Button";