@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
10 lines (9 loc) • 332 B
TypeScript
import { ReactNode } from 'react';
import { StackProps, TypographyProps } from '@mui/material';
export interface CustomCmpTextPropsModel {
direction?: 'row' | 'row-reverse' | 'column' | 'column-reverse';
spacing?: number;
typographyProps?: TypographyProps;
customComponent: ReactNode;
stackProps?: StackProps;
}