@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
26 lines (23 loc) • 777 B
JavaScript
'use client';
import FlexBasic_default from "../../Flex/FlexBasic.mjs";
import { styles } from "./style.mjs";
import { memo } from "react";
import { jsx } from "react/jsx-runtime";
import { cx } from "antd-style";
//#region src/DraggablePanel/components/DraggablePanelFooter.tsx
const DraggablePanelFooter = memo(({ className, ...rest }) => {
return /* @__PURE__ */ jsx(FlexBasic_default, {
align: "center",
className: cx(styles.footer, className),
flex: "none",
gap: 8,
horizontal: true,
justify: "flex-start",
...rest
});
});
DraggablePanelFooter.displayName = "DraggablePanelFooter";
var DraggablePanelFooter_default = DraggablePanelFooter;
//#endregion
export { DraggablePanelFooter_default as default };
//# sourceMappingURL=DraggablePanelFooter.mjs.map