@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
14 lines (13 loc) • 439 B
TypeScript
import { BoxProps, StackProps, TypographyProps } from '@mui/material';
import { Avatar2Model } from '../AvatarV2';
export interface AvatarTitleDescriptionModel {
title: string;
description: string;
columnGap?: string | number;
avatarProps: Avatar2Model;
colorTitle?: string;
containerProps?: StackProps;
titleProps?: TypographyProps;
descriptionProps?: TypographyProps;
textContainerProps?: BoxProps;
}