import type { Editor } from '@tiptap/core' import styles from './FigureBubbleMenu.module.scss' import { clsx } from 'clsx' import { Icon } from '../../_shared/Icon' import { useLocalize } from '../../../context/localize' type Props = { editor: Editor ref: (el: HTMLElement) => void } export const BlockquoteBubbleMenu = (props: Props) => { return (
) }