@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
40 lines (39 loc) • 1.04 kB
TypeScript
import * as React from 'react';
import { BaseProps, SingleOrArray } from "../../../utils/types";
import { IconType, TTabSize } from "../../../common.type";
interface TabInfo {
label: string;
activeIndex: number;
currentTabIndex: number;
}
export interface TabConfig {
label: string;
count?: number;
icon?: string;
disabled?: boolean;
className?: string;
isDismissible?: boolean;
onDismiss?: (tabInfo: TabInfo) => void;
iconType?: IconType;
}
export interface TabsProps extends BaseProps {
activeIndex?: number;
withSeparator?: boolean;
tabs: TabConfig[];
children?: SingleOrArray<React.ReactElement>;
onTabChange?: (tabIndex: number) => void;
headerClassName?: string;
size?: TTabSize;
maxWidth?: string | number;
}
export declare const Tabs: {
(props: TabsProps): React.JSX.Element;
displayName: string;
defaultProps: {
withSeparator: boolean;
tabs: never[];
size: string;
maxWidth: string;
};
};
export default Tabs;