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