UNPKG

mistui-kit

Version:

**👉 [Try MistUi Live](https://gilded-tanuki-0eb52b.netlify.app/) — interactive playground & docs**

21 lines (20 loc) • 776 B
declare const Button: import("react").ForwardRefExoticComponent<{ className?: string | undefined; onClick?: import("react").MouseEventHandler<HTMLButtonElement>; style?: import("react").CSSProperties | undefined; } & { children: React.ReactNode; title?: string; size?: "auto" | "xs" | "sm" | "md" | "lg" | "xl"; shadow?: "xs" | "sm" | "md" | "lg" | "xl" | "xxl"; variant?: "contained" | "outline" | "dash" | "soft" | "ghost" | "link"; color?: import("../theme/default").Variants | (string & {}); isSoft?: boolean; isGradient?: any; selected?: boolean; disabled?: boolean; fullWidth?: boolean; ripple?: boolean; 'aria-label'?: string; } & import("react").RefAttributes<HTMLButtonElement>>; export default Button;