UNPKG

fui-fancyui

Version:
12 lines (11 loc) 377 B
import { TButtonWithNativeAttrs } from '../../molecules/Button'; import { ReactNode } from 'react'; export type TFancyButton = { isLoading?: boolean; label?: string; align?: 'left' | 'right' | 'center'; iconAlign?: 'left' | 'right'; oneToOne?: boolean; icon?: ReactNode; }; export type TFancyButtonWithHTMLAttrs = TFancyButton & TButtonWithNativeAttrs;