UNPKG

@wulperstudio/cms

Version:
10 lines (9 loc) 332 B
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; }