UNPKG

@university-ecosystem/ui-kit

Version:
11 lines (10 loc) 253 B
/// <reference types="react" /> export interface Tab { title: string | React.ReactElement; value: string | boolean | number; } export interface TabsProps { selected: Tab['value']; options: Array<Tab>; onSelect: (tab: Tab) => void; }