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 FigureBubbleMenu = (props: Props) => { const { t } = useLocalize() return (
) }