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