import { Bars3BottomRightIcon, MinusIcon, ListBulletIcon, ChatBubbleLeftEllipsisIcon, 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