'use client'; import { BookOpenIcon, PenLineIcon } from 'lucide-react'; import { usePlateState } from 'platejs/react'; import { ToolbarButton } from './toolbar'; export function ModeToolbarButton() { const [readOnly, setReadOnly] = usePlateState('readOnly'); return ( setReadOnly(!readOnly)} > {readOnly ? : } ); }