import type { TabProps } from 'react-tabs'; import { Tab } from 'react-tabs'; interface ConceptTabProps extends Omit { className?: string tooltip?: string label?: string } function ConceptTab({ label, tooltip, className, ...otherProps }: ConceptTabProps) { return ( {label} ); } ConceptTab.tabsRole = 'Tab'; export default ConceptTab;