dbl-components
Version:
Framework based on bootstrap 5
22 lines (21 loc) • 428 B
TypeScript
export default class SideNavigation {
static propTypes: {
className: any;
iconSize: any;
menu: any;
style: any;
};
static jsClass: string;
static defaultProps: {
className: string;
style: {};
menu: never[];
iconSize: number;
};
state: {
stick: boolean;
icon: string;
};
stick: (e: any) => void;
render(): any;
}