52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
import clsx from 'clsx';
|
|
|
|
import { CProps } from '@/components/props';
|
|
import { globals } from '@/utils/constants';
|
|
|
|
interface NavigationButtonProps extends CProps.Titled, CProps.Styling {
|
|
text?: string;
|
|
icon: React.ReactNode;
|
|
onClick?: (event: CProps.EventMouse) => void;
|
|
}
|
|
|
|
function NavigationButton({
|
|
icon,
|
|
title,
|
|
className,
|
|
style,
|
|
titleHtml,
|
|
hideTitle,
|
|
onClick,
|
|
text
|
|
}: NavigationButtonProps) {
|
|
return (
|
|
<button
|
|
type='button'
|
|
tabIndex={-1}
|
|
data-tooltip-id={!!title || !!titleHtml ? globals.tooltip : undefined}
|
|
data-tooltip-html={titleHtml}
|
|
data-tooltip-content={title}
|
|
data-tooltip-hidden={hideTitle}
|
|
onClick={onClick}
|
|
className={clsx(
|
|
'mr-1 h-full', //
|
|
'flex items-center gap-1',
|
|
'clr-btn-nav cc-animate-color duration-500',
|
|
'rounded-xl',
|
|
'font-controls whitespace-nowrap',
|
|
{
|
|
'px-2': text,
|
|
'px-4': !text
|
|
},
|
|
className
|
|
)}
|
|
style={style}
|
|
>
|
|
{icon ? <span>{icon}</span> : null}
|
|
{text ? <span className='hidden sm:inline'>{text}</span> : null}
|
|
</button>
|
|
);
|
|
}
|
|
|
|
export default NavigationButton;
|