@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
15 lines (14 loc) • 494 B
TypeScript
import { IconButtonProps, StackProps, TooltipProps, TypographyProps } from '@mui/material';
import { ReactNode } from 'react';
import { Omit } from '../../types';
export interface IconTextModel {
nameIcon?: string;
colorIcon?: string;
text?: string;
typographyProps?: TypographyProps;
titleTooltip?: NonNullable<ReactNode>;
tooltipPros?: Omit<TooltipProps, 'title'>;
isOpenTooltip?: boolean;
iconButtonProps?: IconButtonProps;
containerProps?: StackProps;
}