@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
21 lines (18 loc) • 634 B
JavaScript
'use client';
import { styles } from "../style.mjs";
import { memo } from "react";
import { jsx } from "react/jsx-runtime";
import { cx } from "antd-style";
//#region src/Layout/components/LayoutSidebarInner.tsx
const LayoutSidebarInner = memo(({ headerHeight, children, className, ...rest }) => {
return /* @__PURE__ */ jsx("div", {
className: cx(styles.asideInner, className),
...rest,
children
});
});
LayoutSidebarInner.displayName = "LayoutSidebarInner";
var LayoutSidebarInner_default = LayoutSidebarInner;
//#endregion
export { LayoutSidebarInner_default as default };
//# sourceMappingURL=LayoutSidebarInner.mjs.map