petals-ui
Version:
Front-end UI components foundation
132 lines (131 loc) • 4.68 kB
TypeScript
declare type ButtonStyle = {
buttonMinWidth?: string;
buttonMaxWidth?: string;
buttonBetweenGap?: string;
buttonFontSize?: string;
buttonFontSizeLg?: string;
buttonFontSizeSm?: string;
buttonLineHeight?: string;
buttonPaddingX?: string;
buttonPaddingY?: string;
buttonPaddingXLg?: string;
buttonPaddingYLg?: string;
buttonPaddingXSm?: string;
buttonPaddingYSm?: string;
buttonBorderWidth?: string;
buttonBorderRadius?: string;
buttonBorderRadiusLg?: string;
buttonBorderRadiusSm?: string;
buttonBorderColor?: string;
buttonColor?: string;
buttonBg?: string;
buttonBgImage?: string;
buttonHoverBorderColor?: string;
buttonHoverColor?: string;
buttonHoverBg?: string;
buttonHoverBgImage?: string;
buttonFocusBorderColor?: string;
buttonFocusColor?: string;
buttonFocusBg?: string;
buttonFocusBgImage?: string;
buttonDisabledColor?: string;
buttonDisabledBorderColor?: string;
buttonDisabledBg?: string;
buttonDisabledBgImage?: string;
buttonDisabledOpacity?: string;
buttonPrimaryColor?: string;
buttonPrimaryBorderColor?: string;
buttonPrimaryBg?: string;
buttonPrimaryBgImage?: string;
buttonPrimaryBoxShadow?: string;
buttonPrimaryLight?: string;
buttonPrimaryDark?: string;
buttonPrimaryHoverColor?: string;
buttonPrimaryHoverBorderColor?: string;
buttonPrimaryHoverBg?: string;
buttonPrimaryHoverBgImage?: string;
buttonPrimaryFocusColor?: string;
buttonPrimaryFocusBorderColor?: string;
buttonPrimaryFocusBg?: string;
buttonPrimaryFocusBgImage?: string;
buttonPrimaryDisabledColor?: string;
buttonPrimaryDisabledBorderColor?: string;
buttonPrimaryDisabledBg?: string;
buttonPrimaryDisabledBgImage?: string;
buttonPrimaryDisabledOpacity?: string;
buttonInfoBorderColor?: string;
buttonInfoColor?: string;
buttonInfoBg?: string;
buttonInfoBgImage?: string;
buttonInfoBoxShadow?: string;
buttonInfoHoverBorderColor?: string;
buttonInfoHoverColor?: string;
buttonInfoHoverBg?: string;
buttonInfoHoverBgImage?: string;
buttonInfoFocusBorderColor?: string;
buttonInfoFocusColor?: string;
buttonInfoFocusBg?: string;
buttonInfoFocusBgImage?: string;
buttonInfoDisabledBorderColor?: string;
buttonInfoDisabledColor?: string;
buttonInfoDisabledBg?: string;
buttonInfoDisabledBgImage?: string;
buttonInfoDisabledOpacity?: string;
buttonSuccessBorderColor?: string;
buttonSuccessColor?: string;
buttonSuccessBg?: string;
buttonSuccessBgImage?: string;
buttonSuccessBoxShadow?: string;
buttonSuccessHoverBorderColor?: string;
buttonSuccessHoverColor?: string;
buttonSuccessHoverBg?: string;
buttonSuccessHoverBgImage?: string;
buttonSuccessFocusBorderColor?: string;
buttonSuccessFocusColor?: string;
buttonSuccessFocusBg?: string;
buttonSuccessFocusBgImage?: string;
buttonSuccessDisabledBorderColor?: string;
buttonSuccessDisabledColor?: string;
buttonSuccessDisabledBg?: string;
buttonSuccessDisabledBgImage?: string;
buttonSuccessDisabledOpacity?: string;
buttonWarningBorderColor?: string;
buttonWarningColor?: string;
buttonWarningBg?: string;
buttonWarningBgImage?: string;
buttonWarningLight?: string;
buttonWarningDark?: string;
buttonWarningHoverBorderColor?: string;
buttonWarningHoverColor?: string;
buttonWarningHoverBg?: string;
buttonWarningHoverBgImage?: string;
buttonWarningFocusBorderColor?: string;
buttonWarningFocusColor?: string;
buttonWarningFocusBg?: string;
buttonWarningFocusBgImage?: string;
buttonWarningDisabledBorderColor?: string;
buttonWarningDisabledColor?: string;
buttonWarningDisabledBg?: string;
buttonWarningDisabledBgImage?: string;
buttonWarningDisabledOpacity?: string;
buttonDangerBorderColor?: string;
buttonDangerColor?: string;
buttonDangerBg?: string;
buttonDangerBgImage?: string;
buttonDangerLight?: string;
buttonDangerDark?: string;
buttonDangerHoverBorderColor?: string;
buttonDangerHoverColor?: string;
buttonDangerHoverBg?: string;
buttonDangerHoverBgImage?: string;
buttonDangerFocusBorderColor?: string;
buttonDangerFocusColor?: string;
buttonDangerFocusBg?: string;
buttonDangerFocusBgImage?: string;
buttonDangerDisabledBorderColor?: string;
buttonDangerDisabledColor?: string;
buttonDangerDisabledBg?: string;
buttonDangerDisabledBgImage?: string;
buttonDangerDisabledOpacity?: string;
};
export { ButtonStyle };