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