UNPKG

fui-fancyui

Version:
15 lines (14 loc) 588 B
import { TLeftRightCenterToFlexJustify } from '../../../design/designFunctions/leftRightCenterToFlexJustify'; import { TComponentSizesMid } from '../../../types/TComponentSizes'; interface IGenerateFancyButton { $sizeC: TComponentSizesMid; $oneToOne?: boolean; $justifyContent?: TLeftRightCenterToFlexJustify; $iconAlign?: 'left' | 'right'; $icon?: boolean; $outlined?: boolean; $noSize?: boolean; $removeBorder?: boolean; } export declare const generateFancyButton: (props: IGenerateFancyButton) => import('styled-components').RuleSet<object>; export {};