UNPKG

id-components

Version:
20 lines (19 loc) 442 B
import * as React from 'react'; interface IOption { label: string; value: string; icon: any; action(): any; subOptions: IOptions; } interface IOptions extends Array<IOption> { } interface IBottomNavBar { options: IOptions; isMobile?: boolean; activeColor?: string; desactivateColor?: string; defaultSelected?: string; } declare const BottomNavBar: React.FC<IBottomNavBar>; export default BottomNavBar;