UNPKG

dbl-components

Version:

Framework based on bootstrap 5

35 lines (34 loc) 757 B
export default class ServiceListNavigation { static propTypes: { className: any; classes: any; iconDefault: any; iconFrom: any; iconSize: any; labelFrom: any; pathFrom: any; style: any; url: any; }; static jsClass: string; static defaultProps: { url: string; iconSize: number; iconDefault: string; iconFrom: string; labelFrom: string; pathFrom: string; className: string; style: {}; }; constructor(props: any); state: { menu: never[]; stick: boolean; icon: string; }; stick: (e: any) => void; path: any; componentWillMount(): void; render(): any; }