"use client"; import { BoldIcon, Code2Icon, ItalicIcon, StrikethroughIcon, UnderlineIcon } from "lucide-react"; import { KEYS } from "platejs"; import { useEditorReadOnly } from "platejs/react"; import * as React from "react"; import { LinkToolbarButton } from "./link-toolbar-button"; import { MarkToolbarButton } from "./mark-toolbar-button"; import { ToolbarGroup } from "./toolbar"; import { TurnIntoToolbarButton } from "./turn-into-toolbar-button"; export function FloatingToolbarButtons() { const readOnly = useEditorReadOnly(); if (readOnly) return null; return ( <> ); }