@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
13 lines (12 loc) • 342 B
text/typescript
import { FlexboxProps } from "../Flex/type.mjs";
import "../Flex/index.mjs";
import { ReactNode } from "react";
//#region src/SideNav/type.d.ts
interface SideNavProps extends FlexboxProps {
avatar?: ReactNode;
bottomActions: ReactNode;
topActions?: ReactNode;
}
//#endregion
export { SideNavProps };
//# sourceMappingURL=type.d.mts.map