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