import type { Editor } from '@tiptap/core' import styles from './ImageBubbleMenu.module.scss' import { clsx } from 'clsx' import { Icon } from '../../_shared/Icon' type BubbleMenuProps = { editor: Editor ref: (el: HTMLDivElement) => void } export const ImageBubbleMenu = (props: BubbleMenuProps) => { return (
) }