import { ListBulletIcon, MinusIcon } from '@heroicons/react/20/solid' import { EyeIcon, EyeSlashIcon } from '@heroicons/react/24/outline' import createDiffEditorInteractions, { MarkdownOperator } from '../../useCases/createDiffEditorInteractions' import classNames from '../../utils/classNames' type Props = { editorInteractions: ReturnType isPreviewOpen: boolean togglePreview: () => void } const TextEditorButtons = (props: Props) => { const { editorInteractions, togglePreview } = props return } export default TextEditorButtons