@crossed/demo
Version:
A universal & performant styling library for React Native, Next.js & React
14 lines (13 loc) • 455 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
import { Box, XBox } from "@crossed/ui";
const XBoxDemo = ({ space }) => {
return /* @__PURE__ */ jsxs(XBox, { space, children: [
/* @__PURE__ */ jsx(Box, { className: "w-20 h-20 bg-blue-300" }),
/* @__PURE__ */ jsx(Box, { className: "w-20 h-20 bg-blue-400" }),
/* @__PURE__ */ jsx(Box, { className: "w-20 h-20 bg-blue-500" })
] });
};
export {
XBoxDemo
};
//# sourceMappingURL=XBox.js.map