@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
21 lines (18 loc) • 571 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/LayoutFooter.tsx
const LayoutFooter = memo(({ children, className, ...rest }) => {
return /* @__PURE__ */ jsx("footer", {
className: cx(styles.footer, className),
...rest,
children
});
});
LayoutFooter.displayName = "LayoutFooter";
var LayoutFooter_default = LayoutFooter;
//#endregion
export { LayoutFooter_default as default };
//# sourceMappingURL=LayoutFooter.mjs.map