Repository URL to install this package:
|
Version:
4.0.23 ▾
|
import React from 'react';
import { TabItemProps } from './typings';
declare class TabItem extends React.PureComponent<TabItemProps> {
static defaultProps: {
title: string;
qa: string;
};
render(): React.ReactElement<{
key: string | undefined;
className: string;
onClick: Function;
role: string;
'aria-controls': string | undefined;
'aria-selected': boolean;
'data-qa': string;
}>;
}
export { TabItem };
export default TabItem;