'use client'; import * as React from 'react'; import { useIndentButton, useOutdentButton } from '@platejs/indent/react'; import { IndentIcon, OutdentIcon } from 'lucide-react'; import { ToolbarButton } from './toolbar'; export function IndentToolbarButton( props: React.ComponentProps ) { const { props: buttonProps } = useIndentButton(); return ( ); } export function OutdentToolbarButton( props: React.ComponentProps ) { const { props: buttonProps } = useOutdentButton(); return ( ); }