import { forwardRef } from 'react' import { PlateElement } from '@udecode/plate-common' import { blockquote, blockquoteWrapper } from './element.css' export const BlockquoteElement = forwardRef( ({ children, className, ...props }: React.ComponentPropsWithoutRef, ref: React.ElementRef) => { return (
{children}
) }, )