fui-fancyui
Version:
FancyUI Libary
15 lines (14 loc) • 588 B
TypeScript
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 {};