@mirohq/design-system-icons 1.41.0 → 1.43.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
@@ -13098,6 +13098,34 @@ const IconShapeSparkle = react.forwardRef(
13098
13098
  );
13099
13099
  IconShapeSparkle[designSystemBaseIcon.iconSymbol] = true;
13100
13100
 
13101
+ const IconShapeSuggestion = react.forwardRef(
13102
+ ({ size = "medium", ...props }, forwardRef2) => {
13103
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
13104
+ return react.createElement(
13105
+ StyledIcon,
13106
+ {
13107
+ ...props,
13108
+ debug,
13109
+ "aria-hidden": true,
13110
+ size,
13111
+ viewBox: "0 0 24 24",
13112
+ fill: "none",
13113
+ ref: forwardRef2
13114
+ },
13115
+ /* @__PURE__ */ jsxRuntime.jsx(
13116
+ "path",
13117
+ {
13118
+ fill: "currentColor",
13119
+ fillRule: "evenodd",
13120
+ d: "M20 12a8 8 0 0 1-8 8 7.975 7.975 0 0 1-3.934-1.032l-.282-.167-.83-.104-2.43.77.763-2.456-.103-.822-.137-.23A8 8 0 0 1 12 4V2C6.477 2 2 6.477 2 12c0 1.753.452 3.402 1.246 4.836l-1.201 3.867 1.258 1.25 3.833-1.216A9.973 9.973 0 0 0 12 22c5.523 0 10-4.477 10-10h-2ZM17.536 1.202a3 3 0 0 1 4.242 0l1.172 1.172a3 3 0 0 1 0 4.242l-8.476 8.476-5.297 1.06L8 14.975l1.06-5.297 8.476-8.476Zm-6.635 9.462-.646 3.232 3.232-.646 5.255-5.256-2.586-2.586-5.255 5.256Zm9.463-8.048a1 1 0 0 0-1.414 0l-1.38 1.378 2.586 2.586 1.38-1.378a1 1 0 0 0 0-1.414l-1.172-1.172Z",
13121
+ clipRule: "evenodd"
13122
+ }
13123
+ )
13124
+ );
13125
+ }
13126
+ );
13127
+ IconShapeSuggestion[designSystemBaseIcon.iconSymbol] = true;
13128
+
13101
13129
  const IconShapesLinesStacked = react.forwardRef(
13102
13130
  ({ size = "medium", ...props }, forwardRef2) => {
13103
13131
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -17078,6 +17106,34 @@ const IconUserFilter = react.forwardRef(
17078
17106
  );
17079
17107
  IconUserFilter[designSystemBaseIcon.iconSymbol] = true;
17080
17108
 
17109
+ const IconUserKey = react.forwardRef(
17110
+ ({ size = "medium", ...props }, forwardRef2) => {
17111
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
17112
+ return react.createElement(
17113
+ StyledIcon,
17114
+ {
17115
+ ...props,
17116
+ debug,
17117
+ "aria-hidden": true,
17118
+ size,
17119
+ viewBox: "0 0 24 24",
17120
+ fill: "none",
17121
+ ref: forwardRef2
17122
+ },
17123
+ /* @__PURE__ */ jsxRuntime.jsx(
17124
+ "path",
17125
+ {
17126
+ fill: "currentColor",
17127
+ fillRule: "evenodd",
17128
+ d: "M17.723 12.156c.817 0 1.515.29 2.093.868.579.579.869 1.277.869 2.094 0 .818-.29 1.516-.869 2.095a2.8 2.8 0 0 1-1.578.814 2.988 2.988 0 0 1-1.712-.216v1.496h-1.795v1.795h-2.393v-1.795l2.782-2.783a2.916 2.916 0 0 1-.337-1.817 2.856 2.856 0 0 1 .846-1.683 2.854 2.854 0 0 1 2.094-.868Zm.299 1.81a.818.818 0 0 0-.598.255.82.82 0 0 0-.255.598c0 .23.085.428.255.598a.82.82 0 0 0 .598.255.82.82 0 0 0 .598-.255.818.818 0 0 0 .254-.598.82.82 0 0 0-.254-.598.82.82 0 0 0-.599-.254ZM11.994 15a5.077 5.077 0 0 0-5.052 4.572L6.79 21.1l-1.99-.2.153-1.527A7.077 7.077 0 0 1 11.995 13v2Zm0-12a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm0 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z",
17129
+ clipRule: "evenodd"
17130
+ }
17131
+ )
17132
+ );
17133
+ }
17134
+ );
17135
+ IconUserKey[designSystemBaseIcon.iconSymbol] = true;
17136
+
17081
17137
  const IconUserLoad = react.forwardRef(
17082
17138
  ({ size = "medium", ...props }, forwardRef2) => {
17083
17139
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -18432,6 +18488,7 @@ exports.IconSelect = IconSelect;
18432
18488
  exports.IconSentiment = IconSentiment;
18433
18489
  exports.IconShadow = IconShadow;
18434
18490
  exports.IconShapeSparkle = IconShapeSparkle;
18491
+ exports.IconShapeSuggestion = IconShapeSuggestion;
18435
18492
  exports.IconShapes = IconShapes;
18436
18493
  exports.IconShapesLines = IconShapesLines;
18437
18494
  exports.IconShapesLinesStacked = IconShapesLinesStacked;
@@ -18582,6 +18639,7 @@ exports.IconUserCog = IconUserCog;
18582
18639
  exports.IconUserCogPlus = IconUserCogPlus;
18583
18640
  exports.IconUserEyeOpen = IconUserEyeOpen;
18584
18641
  exports.IconUserFilter = IconUserFilter;
18642
+ exports.IconUserKey = IconUserKey;
18585
18643
  exports.IconUserLoad = IconUserLoad;
18586
18644
  exports.IconUserMic = IconUserMic;
18587
18645
  exports.IconUserMicSlash = IconUserMicSlash;