UNPKG

@wulperstudio/cms

Version:
15 lines (14 loc) 379 B
import { IconProps } from '@iconify/react'; import { StackProps, TypographyProps } from '@mui/material'; export interface IconModel { name: string; color?: string; restProps?: IconProps; } export interface TextDatePropsModel { date?: string | null | Date; format?: string; icon?: IconModel; textProps?: TypographyProps; stackProps?: StackProps; }