import { SqlEditor } from 'icons' import { ComponentProps } from 'react' import { ButtonTooltip } from '@/components/ui/ButtonTooltip' export const EditorNavigationButton = ({ tooltip, ...props }: { tooltip: string } & Omit, 'tooltip'>) => ( } tooltip={{ content: { side: 'bottom', text: tooltip } }} {...props} /> )