@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
15 lines (14 loc) • 379 B
TypeScript
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;
}