UNPKG

id-components

Version:
15 lines (14 loc) 313 B
import * as React from 'react'; interface IOption { label: string; value: string; icon: any; action(): any; } interface IOptions extends Array<IOption> { } interface IVerticalNavBar { options: IOptions; } declare const VerticalNavBar: React.FC<IVerticalNavBar>; export default VerticalNavBar;