@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
13 lines (12 loc) • 322 B
TypeScript
import { TextFieldProps } from '@mui/material';
export interface TextFieldPropsModel {
textFieldProps?: TextFieldProps;
label: string;
id: string;
colorLabel?: string;
borderColor?: string;
backgroundColor?: string;
labelRight?: boolean;
textLabelRight?: string;
toLink?: () => void;
}