id-components
Version:
id components
20 lines (19 loc) • 442 B
TypeScript
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;