fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
12 lines (11 loc) • 420 B
TypeScript
import React from 'react';
import { TabProps, TabPaneProps } from './type';
declare const Tab: {
({ as, className, type, segment, children, ...props }: TabProps): JSX.Element;
displayName: string;
Pane: {
({ as, className, tab, active, children, ...props }: TabPaneProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
displayName: string;
};
};
export default Tab;