@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
21 lines (20 loc) • 617 B
JavaScript
"use client";
import { useProps } from "../../core/MantineProvider/use-props/use-props.mjs";
import { factory } from "../../core/factory/factory.mjs";
import { Box } from "../../core/Box/Box.mjs";
import { jsx } from "react/jsx-runtime";
//#region packages/@mantine/core/src/components/Space/Space.tsx
const Space = factory((props) => {
const { w, h, miw, mih, ...others } = useProps("Space", null, props);
return /* @__PURE__ */ jsx(Box, {
...others,
w,
miw: miw ?? w,
h,
mih: mih ?? h
});
});
Space.displayName = "@mantine/core/Space";
//#endregion
export { Space };
//# sourceMappingURL=Space.mjs.map