import type { Editor } from '@tiptap/core' import { Button } from '@admin/components/ui/button' import { Minus } from 'lucide-react' export function HorizontalRuleButton({ editor }: { editor: Editor | null }) { const canInsert = editor?.can().setHorizontalRule() ?? false return ( ) }