@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
15 lines (14 loc) • 424 B
TypeScript
import { AvatarGroupProps } from '@mui/material';
import { ReactNode } from 'react';
export interface AvatarGroupOutputPropsModel {
label?: string;
showBorder?: boolean;
showBoxShadow?: boolean;
colorLabel?: string;
borderColor?: string;
backgroundColor?: boolean;
showDivider?: boolean;
children?: ReactNode | ReactNode[];
maxAvatars?: number;
avatarGroupProps?: AvatarGroupProps;
}