@algorithm-shift/design-system 1.2.36 → 1.2.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -30,9 +30,10 @@ import { jsx as jsx2 } from "react/jsx-runtime";
30
30
  var Flex = ({
31
31
  children,
32
32
  className,
33
- style
33
+ style,
34
+ ...props
34
35
  }) => {
35
- return /* @__PURE__ */ jsx2("div", { className, style, children });
36
+ return /* @__PURE__ */ jsx2("div", { ...props, className, style, children });
36
37
  };
37
38
  var Flex_default = Flex;
38
39
 
@@ -41,9 +42,10 @@ import { jsx as jsx3 } from "react/jsx-runtime";
41
42
  var Grid = ({
42
43
  children,
43
44
  className,
44
- style
45
+ style,
46
+ ...props
45
47
  }) => {
46
- return /* @__PURE__ */ jsx3("div", { className, style, children });
48
+ return /* @__PURE__ */ jsx3("div", { ...props, className, style, children });
47
49
  };
48
50
  var Grid_default = Grid;
49
51
 
@@ -52,9 +54,10 @@ import { jsx as jsx4 } from "react/jsx-runtime";
52
54
  var Container = ({
53
55
  children,
54
56
  className,
55
- style
57
+ style,
58
+ ...props
56
59
  }) => {
57
- return /* @__PURE__ */ jsx4("div", { className, style, children });
60
+ return /* @__PURE__ */ jsx4("div", { ...props, className, style, children });
58
61
  };
59
62
  var Container_default = Container;
60
63