import clsx from 'clsx'; import type { TabProps as TabPropsImpl } from 'react-tabs'; import { Tab as TabImpl } from 'react-tabs'; import { globals } from '@/utils/constants'; import { CProps } from '../props'; interface TabLabelProps extends Omit, CProps.Titled { label?: string; } function TabLabel({ label, title, titleHtml, hideTitle, className, ...otherProps }: TabLabelProps) { return ( {label} ); } TabLabel.tabsRole = 'Tab'; export default TabLabel;