@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
16 lines (15 loc) • 463 B
JavaScript
"use client";
import { styles } from "./style.mjs";
import { jsx } from "react/jsx-runtime";
import { cx } from "antd-style";
//#region src/mobile/SafeArea/SafeArea.tsx
const SafeArea = ({ position, className, ...rest }) => {
return /* @__PURE__ */ jsx("div", {
className: cx(styles.container, styles[position], className),
...rest
});
};
SafeArea.displayName = "SafeArea";
//#endregion
export { SafeArea as default };
//# sourceMappingURL=SafeArea.mjs.map