fui-fancyui
Version:
FancyUI Libary
20 lines (19 loc) • 974 B
TypeScript
import { CSSProp } from 'styled-components';
import { TThemeArrayOrValueCSS } from '../../../design/designFunctions/arrayToCssValues';
import { TComponentSizes } from '../../../types/TComponentSizes';
import { TLayer } from '../../../types/TLayer';
import { TTheme } from '../../../types/TTheme';
import { TUiColorsNotTransparent } from '../../../types/TUiColorsNotTransparent';
interface IListButtonStyle {
$textColor?: TUiColorsNotTransparent;
$iconAlign?: 'left' | 'right';
$borderRadius?: TThemeArrayOrValueCSS;
theme: TTheme;
$layer?: TLayer;
$sizeC: TComponentSizes;
$hasLabel?: boolean;
$hasIcon?: boolean;
$externalStyle?: CSSProp;
}
export declare const SwitchButtonStyle: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, IListButtonStyle>> & string;
export {};