mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
34 lines
800 B
TypeScript
34 lines
800 B
TypeScript
import clsx from 'clsx';
|
|
|
|
import { globalIDs } from '@/utils/constants';
|
|
|
|
interface NavigationButtonProps {
|
|
text?: string
|
|
icon: React.ReactNode
|
|
title?: string
|
|
onClick?: () => void
|
|
}
|
|
|
|
function NavigationButton({ icon, title, onClick, text }: NavigationButtonProps) {
|
|
return (
|
|
<button type='button' tabIndex={-1}
|
|
data-tooltip-id={title ? (globalIDs.tooltip) : undefined}
|
|
data-tooltip-content={title}
|
|
onClick={onClick}
|
|
className={clsx(
|
|
'mr-1 h-full',
|
|
'flex items-center gap-1',
|
|
'clr-btn-nav',
|
|
'small-caps whitespace-nowrap',
|
|
{
|
|
'px-2': text,
|
|
'px-4': !text
|
|
}
|
|
)}
|
|
>
|
|
{icon ? <span>{icon}</span> : null}
|
|
{text ? <span className='font-semibold'>{text}</span> : null}
|
|
</button>);
|
|
}
|
|
|
|
export default NavigationButton; |