UNPKG

@gpa-gemstone/react-interactive

Version:
16 lines (15 loc) 352 B
interface ITab { Label: string; Id: string; } interface IProps { Tabs: ITab[]; SetTab: (t: string) => void; CurrentTab: string; } /** * Component for rendering a dropdown tab selector. * @param props - configures and manages tab selector. */ declare const TabSelector: (props: IProps) => JSX.Element; export default TabSelector;