@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
15 lines (14 loc) • 420 B
TypeScript
import { TypographyProps } from '@mui/material';
import { ReactNode } from 'react';
import { Avatar2Model } from '../AvatarV2';
export interface AvatartextOutputPropsModel {
label: string;
showBorder?: boolean;
showBoxShadow?: boolean;
backgroundColor?: string;
showDivider?: boolean;
urlImg?: string;
avatarProps?: Avatar2Model;
children?: ReactNode;
titleProps?: TypographyProps;
}