chop-logic-components
Version:
React UI components library for Chop Logic project
14 lines (13 loc) • 442 B
TypeScript
import { default as React } from 'react';
import { ChopLogicOrientationMode } from '../../../enums';
import { ChopLogicTabItem } from '../../../models';
type ChopLogicTabListProps = {
tabs: ChopLogicTabItem[];
tabIds: string[];
onTabSelect: (id: string) => void;
selectedTabId: string;
tabPanelIds: string[];
mode: ChopLogicOrientationMode;
};
export declare const TabList: React.FC<ChopLogicTabListProps>;
export {};