id-components
Version:
id components
15 lines (14 loc) • 313 B
TypeScript
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;