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