UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

14 lines (13 loc) 367 B
import { default as React } from 'react'; import { ChopLogicOrientationMode } from '../../../enums'; type Props = { title: string; tabId: string; onTabSelect: (id: string) => void; tabPanelId: string; isSelected: boolean; mode: ChopLogicOrientationMode; isDisabled?: boolean; }; export declare const TabButton: React.FC<Props>; export {};