@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
13 lines (12 loc) • 414 B
TypeScript
import { AvatarProps, TypographyProps } from '@mui/material';
export interface AvatarTextFieldPropsModel {
text?: string;
urlImg?: string;
titleTypographyProps?: TypographyProps;
descriptionTypographyProps?: TypographyProps;
isImage?: boolean;
avatarProps?: AvatarProps;
direction?: 'row' | 'row-reverse' | 'column' | 'column-reverse';
spacing?: number;
description?: string;
}