Package: @hexos/react-ui

Props for the Button component.

Extends standard HTML button attributes with variant, size, and Radix UI Slot support.

interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
    asChild?: boolean;
    variant?: 'default' | 'destructive' | 'outline' | 'ghost';
    size?: 'default' | 'sm' | 'lg' | 'icon';
}
  • Extends: React.ButtonHTMLAttributes<HTMLButtonElement>

asChild

boolean

variant

'default' | 'destructive' | 'outline' | 'ghost'

size

'default' | 'sm' | 'lg' | 'icon'