import { PlateLeaf } from '@udecode/plate-common' import type React from 'react' import { forwardRef } from 'react' import { bold } from './mark.css' export const BoldMark = forwardRef((props: React.ComponentPropsWithoutRef, ref: React.ElementRef) => { return ( {props.children} ) })