API Reference
The Button component supports variant, size, and radius. See the interface below for full prop details.
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
variant?: "primary" | "secondary" | "outline" | "error" | "error-secondary" | "error-outline" | "grey-text" | "grey-disabled" | "color-text" | "disabled" | "disabled-outline" | "ghost"
size?: "xl" | "lg" | "md" | "sm" | "icon" | "icon-xl" | "icon-lg" | "icon-md" | "icon-sm"
radius?: "default" | "full" | "none"
asChild?: boolean
}