@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
20 lines (19 loc) • 609 B
JavaScript
"use client";
import FlexBasic_default from "../../../Flex/FlexBasic.mjs";
import { footerStyles } from "../style.mjs";
import { jsx } from "react/jsx-runtime";
import { cx } from "antd-style";
//#region src/base-ui/Form/components/FormFooter.tsx
const FormFooter = ({ className, children, ...rest }) => /* @__PURE__ */ jsx(FlexBasic_default, {
horizontal: true,
align: "center",
className: cx(footerStyles.root, className),
gap: 8,
justify: "flex-end",
...rest,
children
});
FormFooter.displayName = "FormFooter";
//#endregion
export { FormFooter as default };
//# sourceMappingURL=FormFooter.mjs.map