@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
14 lines (13 loc) • 352 B
TypeScript
import { TypographyProps } from '@mui/material';
export interface TextPropsModel {
text: string;
label?: string;
typographyProps?: TypographyProps;
showBorder?: boolean;
showBoxShadow?: boolean;
colorLabel?: string;
borderColor?: string;
backgroundColor?: boolean;
labelRight?: boolean;
showDivider?: boolean;
}