import clsx from 'clsx'; import { type EventMouse, type Styling, type Titled } from '@/components/props'; import { globalIDs } from '@/utils/constants'; interface NavigationButtonProps extends Titled, Styling { text?: string; icon: React.ReactNode; onClick?: (event: EventMouse) => void; } export function NavigationButton({ icon, title, className, style, titleHtml, hideTitle, onClick, text }: NavigationButtonProps) { return ( ); }