import { Editor } from '@tiptap/react';
interface MenuBarProps {
editor: Editor;
}
export function MenuBar({ editor }: MenuBarProps) {
const buttonClass = (isActive: boolean) =>
`px-3 py-1.5 text-sm font-semibold transition-colors border-2 border-transparent ${
isActive
? 'bg-gray-900 text-white'
: 'bg-gray-100 text-gray-900 hover:bg-gray-200'
}`;
return (
);
}