UNPKG

@wulperstudio/cms

Version:
15 lines (14 loc) 494 B
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; }