import './css/quill.snow.css'; import './css/quill-styles.css'; import { Field, Label } from '@headlessui/react'; import ReactQuill from 'react-quill-new'; type RichTextEditorProps = { label: string; value: string; placeholder: string; onChange: (content: string) => void; }; const RichText: React.FC = ({ label, value, placeholder, onChange, }) => { const modules = { toolbar: [ [{ header: [1, 2, 3, false] }, { font: [] }], [{ size: [] }], ['bold', 'italic', 'underline', 'strike', 'blockquote'], [ { list: 'ordered' }, { list: 'bullet' }, { indent: '-1' }, { indent: '+1' }, ], ['link', 'image', 'code-block'], ['clean'], ], clipboard: { matchVisual: false, }, }; return (
onChange(value)} placeholder={placeholder} theme="snow" value={value} />
); }; export default RichText;