UNPKG

sws-frontend

Version:

sws frontend project

19 lines (18 loc) 453 B
/// <reference types="react" /> export declare type Props = { page?: number; onSelect?: any; children?: any[]; }; export declare const Sidebar: (p: Props) => JSX.Element; export declare type SideIconProps = { onClick: any; name: string; pageindex?: number; onSelect?: any; className?: string; style?: {}; enabled?: boolean; title?: string; }; export declare const SideIcon: (p: SideIconProps) => JSX.Element;