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