@mirohq/design-system-icons 1.44.0 → 1.45.0

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/main.js CHANGED
@@ -2874,6 +2874,34 @@ const IconCardsPoker = react.forwardRef(
2874
2874
  );
2875
2875
  IconCardsPoker[designSystemBaseIcon.iconSymbol] = true;
2876
2876
 
2877
+ const IconChartBarArrowUp = react.forwardRef(
2878
+ ({ size = "medium", ...props }, forwardRef2) => {
2879
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
2880
+ return react.createElement(
2881
+ StyledIcon,
2882
+ {
2883
+ ...props,
2884
+ debug,
2885
+ "aria-hidden": true,
2886
+ size,
2887
+ viewBox: "0 0 24 24",
2888
+ fill: "none",
2889
+ ref: forwardRef2
2890
+ },
2891
+ /* @__PURE__ */ jsxRuntime.jsx(
2892
+ "path",
2893
+ {
2894
+ fill: "currentColor",
2895
+ fillRule: "evenodd",
2896
+ d: "M6 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2Zm-2 6h2v-4H4v4Zm9-9a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h2Zm-2 9h2v-7h-2v7Zm9-13a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2Zm-2 13h2V9h-2v11ZM15 2.5V7h-1.999L13 4.749 4.8 10.9 3.6 9.3l7.732-5.8H9.5v-2H14l1 1Z",
2897
+ clipRule: "evenodd"
2898
+ }
2899
+ )
2900
+ );
2901
+ }
2902
+ );
2903
+ IconChartBarArrowUp[designSystemBaseIcon.iconSymbol] = true;
2904
+
2877
2905
  const IconChartBarXSimple = react.forwardRef(
2878
2906
  ({ size = "medium", ...props }, forwardRef2) => {
2879
2907
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -18156,6 +18184,7 @@ exports.IconCard = IconCard;
18156
18184
  exports.IconCardCircles = IconCardCircles;
18157
18185
  exports.IconCardNumberThree = IconCardNumberThree;
18158
18186
  exports.IconCardsPoker = IconCardsPoker;
18187
+ exports.IconChartBarArrowUp = IconChartBarArrowUp;
18159
18188
  exports.IconChartBarXSimple = IconChartBarXSimple;
18160
18189
  exports.IconChartBarY = IconChartBarY;
18161
18190
  exports.IconChartBarYSimple = IconChartBarYSimple;