import * as React from 'react'; import { Slot } from '@radix-ui/react-slot'; import { type VariantProps, cva } from 'class-variance-authority'; import { Loader2 } from 'lucide-react'; import { cn } from '@/lib/utils'; /** * Button variant styles using class-variance-authority * SUMI Design System: semantic tokens, rounded-full, duration-normal */ const buttonVariants = cva( 'inline-flex items-center justify-center whitespace-nowrap rounded-full text-sm font-sans font-medium tracking-tight transition-[color,box-shadow,border-color,background-color] duration-[var(--sumi-duration-normal)] ease-out focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background focus-visible:shadow-[var(--sumi-shadow-glow)] disabled:pointer-events-none disabled:opacity-50 gap-2', { variants: { variant: { /** Primary action button - main CTAs, submit */ default: 'bg-primary text-primary-foreground hover:bg-primary/90 border border-transparent font-semibold', /** Primary alias for Design System compatibility */ primary: 'bg-primary text-primary-foreground hover:bg-primary/90 border border-transparent font-semibold', /** Destructive actions - delete, remove, clear */ destructive: 'bg-destructive/10 text-destructive hover:bg-destructive/20 border border-destructive/30 hover:border-destructive/50', /** Outlined - secondary actions, cancel */ outline: 'border border-border bg-transparent text-foreground hover:bg-muted/50 hover:border-border', /** Secondary - less prominent actions */ secondary: 'bg-muted/30 text-foreground hover:bg-muted/50 border border-border hover:border-border', /** Ghost - icon buttons, menu items */ ghost: 'text-muted-foreground hover:text-foreground hover:bg-muted/50', /** Link - styled as inline link */ link: 'text-primary underline-offset-4 hover:underline', /** Glass - frosted glass effect for overlays, player bar, floating actions */ glass: 'bg-[var(--sumi-glass-bg)] text-foreground backdrop-blur-[var(--sumi-glass-blur)] border border-[var(--sumi-glass-border)] hover:bg-white/15 font-medium', }, size: { /** Default size - standard buttons */ default: 'h-10 px-4 py-2', /** Small size - compact buttons, inline actions */ sm: 'h-9 rounded-full px-4 text-xs', /** Large size - prominent CTAs */ lg: 'h-12 rounded-full px-8 text-base', /** Icon size - icon-only buttons (square, full radius) */ icon: 'h-10 w-10 rounded-full', }, }, defaultVariants: { variant: 'default', size: 'default', }, }, ); /** * Button component props * * Extends standard HTML button attributes with design system variants and sizes. * * @example * ```tsx * * ``` * * @example * ```tsx * * ``` */ export interface ButtonProps extends React.ButtonHTMLAttributes, VariantProps { /** Use asChild to compose with other components (e.g., Link from react-router) */ asChild?: boolean; /** Optional icon to display before the label */ icon?: React.ReactNode; /** Show a loading spinner and disable the button */ loading?: boolean; } /** * Button - Design system button component * * A versatile button component with multiple variants and sizes following the SUMI design system. * * @example * ```tsx * // Primary action * * * // Destructive action * * * // Secondary action * * * // Icon button * * ``` */ const Button = React.forwardRef( ({ className, variant, size, asChild = false, icon, loading = false, children, disabled, ...props }, ref) => { const Comp = asChild ? Slot : 'button'; const isDisabled = disabled || loading; return ( {asChild ? ( children ) : ( <> {loading && ( )} {!loading && icon && ( )} {children} )} ); }, ); Button.displayName = 'Button'; export { Button, buttonVariants };