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