import clsx from 'clsx'; import type { FunctionComponent } from 'react'; import React from 'react'; import styles from './styles.scss'; type TabTitleProps = { label: string; isActive: (...args: any[]) => any; }; export const TabTitle: FunctionComponent = ({ label, isActive, ...rest }) => { return ( {label} ); };