kolenkainc-honohub-react
Version:
React admin panel for honohub
14 lines (13 loc) • 473 B
TypeScript
import { type HTMLAttributes } from "react";
type AppSidebarOptionType = {
label: string;
icon?: any;
path: string;
};
export type AppSidebar = {
options: Record<string, AppSidebarOptionType[]>;
} & HTMLAttributes<HTMLDivElement>;
export declare const AppSidebar: import("react").ForwardRefExoticComponent<{
options: Record<string, AppSidebarOptionType[]>;
} & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
export {};