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