UNPKG

@crossed/demo

Version:

A universal & performant styling library for React Native, Next.js & React

18 lines (17 loc) 368 B
import { jsx } from "react/jsx-runtime"; import { Box, Checkbox } from "@crossed/ui"; const CheckboxDemo = ({ size, variant, color }) => { return /* @__PURE__ */ jsx(Box, { children: /* @__PURE__ */ jsx( Checkbox, { label: "hello", size, variant, color } ) }); }; export { CheckboxDemo }; //# sourceMappingURL=Checkbox.js.map