14 lines
797 B
TypeScript
14 lines
797 B
TypeScript
export declare const SUCCESS_LIGHT = "success-light";
|
|
export declare const DANGER_LIGHT = "danger-light";
|
|
export declare const DEFAULT = "default";
|
|
export declare const TERTIARY = "tertiary";
|
|
export declare const SECONDARY = "secondary";
|
|
export declare const DANGER = "danger";
|
|
export declare const SUCCESS = "success";
|
|
export declare const GHOST = "ghost";
|
|
export declare const LIGHT_VARIANTS: readonly ["success-light", "danger-light"];
|
|
export declare const VARIANTS: readonly ["default", "tertiary", "secondary", "danger", "success", "ghost", "success-light", "danger-light"];
|
|
export declare const BUTTON_SIZES: readonly ["XS", "S", "M", "L"];
|
|
export type ButtonVariant = (typeof VARIANTS)[number];
|
|
export type ButtonSize = (typeof BUTTON_SIZES)[number];
|
|
//# sourceMappingURL=constants.d.ts.map
|