UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

18 lines (17 loc) 520 B
"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"; //#endregion export { LayoutFooter as default }; //# sourceMappingURL=LayoutFooter.mjs.map