UNPKG

@keen.io/ui-core

Version:

Keen visual components library

12 lines (11 loc) 244 B
import { FC } from 'react'; declare type Props = { tabs: { label: string; id: string; }[]; activeTab?: string; onClick?: (tabId: string) => void; }; declare const Tabs: FC<Props>; export default Tabs;