ConceptPortal-public/rsconcept/frontend/src/components/ui/TabLabel.tsx
2024-03-09 16:40:10 +03:00

38 lines
983 B
TypeScript

import clsx from 'clsx';
import type { TabProps as TabPropsImpl } from 'react-tabs';
import { Tab as TabImpl } from 'react-tabs';
import { globalIDs } from '@/utils/constants';
import { CProps } from '../props';
interface TabLabelProps extends Omit<TabPropsImpl, 'children'>, CProps.Titled {
label?: string;
}
function TabLabel({ label, title, titleHtml, hideTitle, className, ...otherProps }: TabLabelProps) {
return (
<TabImpl
className={clsx(
'min-w-[6rem] h-full',
'px-2 py-1 flex justify-center',
'clr-tab',
'text-sm whitespace-nowrap font-controls',
'select-none hover:cursor-pointer',
className
)}
data-tooltip-id={!!title || !!titleHtml ? globalIDs.tooltip : undefined}
data-tooltip-html={titleHtml}
data-tooltip-content={title}
data-tooltip-hidden={hideTitle}
{...otherProps}
>
{label}
</TabImpl>
);
}
TabLabel.tabsRole = 'Tab';
export default TabLabel;