source: src/components/editor/types.ts

main
Last change on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 337 bytes
Line 
1import { ReactQuillProps } from 'react-quill';
2// @mui
3import { Theme, SxProps } from '@mui/material/styles';
4
5// ----------------------------------------------------------------------
6
7export interface EditorProps extends ReactQuillProps {
8 error?: boolean;
9 simple?: boolean;
10 helperText?: React.ReactNode;
11 sx?: SxProps<Theme>;
12}
Note: See TracBrowser for help on using the repository browser.