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