import type { Editor } from "@tiptap/react" import { ToolbarButton } from "./ToolbarButton" interface IndentControlsProps { editor: Editor } export function IndentControls({ editor }: React.PropsWithChildren) { return (
editor.chain().focus().decreaseIndent().run()} icon="mdi:format-indent-decrease" title="Decrease Indent" /> editor.chain().focus().increaseIndent().run()} icon="mdi:format-indent-increase" title="Increase Indent" />
) }