UNPKG

fui-fancyui

Version:
14 lines (13 loc) 609 B
import { TFancySVGAtom } from '../FancySVGAtom'; import { TLayer } from '../../../types/TLayer'; import { TUiColorsNotTransparent } from '../../../types/TUiColorsNotTransparent'; import { default as React } from 'react'; import { CSSProp } from 'styled-components'; export type TFancyXButton = { themeType?: TUiColorsNotTransparent; layer?: TLayer; externalStyle?: CSSProp; sizeC?: TFancySVGAtom['sizeC']; }; export type TFancyXButtonNativeAttrs = Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'style'>; export type TFancyXButtonWithHTMLAttrs = TFancyXButton & TFancyXButtonNativeAttrs;