'use client' import React from 'react' import type { Editor } from '@tiptap/react' import { Toggle } from '@/components/ui/toggle' import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/ui/tooltip' import { ListOrdered as ListOrderedIcon } from 'lucide-react' interface OrderedListButtonProps { editor: Editor | null disabled?: boolean isActive: boolean executeCommand: (command: () => void) => void } export function OrderedListButton({ editor, disabled, isActive, executeCommand }: OrderedListButtonProps) { if (!editor) return null return ( e.preventDefault()} onPressedChange={() => executeCommand(() => editor.chain().focus().toggleOrderedList().run())} disabled={disabled} >

번호 매기기

) }