@lobehub/ui
Version: 
Lobe UI is an open-source UI component library for building AIGC web apps
19 lines (18 loc) • 555 B
TypeScript
import { ReactNode } from 'react';
import { DivProps } from "../types";
export interface SideNavProps extends DivProps {
    /**
     * @description Avatar to be displayed at the top of the sidenav
     */
    avatar?: ReactNode;
    /**
     * @description Actions to be displayed at the bottom of the sidenav
     */
    bottomActions: ReactNode;
    /**
     * @description Actions to be displayed below the avatar
     */
    topActions?: ReactNode;
}
declare const SideNav: import("react").NamedExoticComponent<SideNavProps>;
export default SideNav;