@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
18 lines (17 loc) • 554 B
TypeScript
import { ReactNode } from 'react';
import { BoxProps } from '@mui/material';
import { TextForLinesOutputModel } from '../TextForLinesOutput';
export interface TextMultilinePropsModel extends BoxProps {
text: ReactNode;
label?: string;
typographyProps?: Omit<TextForLinesOutputModel, 'text' | 'clines'>;
showBorder?: boolean;
showBoxShadow?: boolean;
colorLabel?: string;
borderColor?: string;
backgroundColor?: boolean;
labelRight?: boolean;
showDivider?: boolean;
clines?: number;
onClick?: () => void;
}