UNPKG

fui-fancyui

Version:
14 lines (13 loc) 567 B
import { ReactElement, ReactNode } from 'react'; import { TChipWithFancyPillAttrs } from '../../molecules/Chip'; import { sizesSettings } from '../../molecules/Chip/sizeSettings'; import { TUiColorsNotTransparent } from '../../../types/TUiColorsNotTransparent'; export type TFancyChip = { image?: ReactElement<HTMLImageElement>; label?: string; onDelete?: () => void; icon?: ReactNode; sizeC?: keyof typeof sizesSettings; textColor?: TUiColorsNotTransparent; }; export type TFancyChipWithFancyPillAttrs = TChipWithFancyPillAttrs & TFancyChip;