fui-fancyui
Version:
FancyUI Libary
12 lines (11 loc) • 542 B
TypeScript
import { TFancyContentHTMLAttrs } from '../../molecules/FancyContent';
import { TSystemMessageBoxWithHTMLAttrs } from '../../atoms/SystemMessageBox';
import { TComponentSizes } from '../../../types/TComponentSizes';
export type TFancySystemMessage = Omit<TSystemMessageBoxWithHTMLAttrs, 'sizeC' | 'children'> & {
icon?: React.ReactNode;
title?: string;
description?: string;
useFuiIcons?: boolean;
sizeC?: TComponentSizes;
};
export type TFancySystemMessageWithFancyContent = TFancySystemMessage & TFancyContentHTMLAttrs;