@mirohq/design-system-icons 1.6.2 → 1.7.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
@@ -2664,6 +2664,32 @@ const IconChat = react.forwardRef(
2664
2664
  );
2665
2665
  IconChat[designSystemBaseIcon.iconSymbol] = true;
2666
2666
 
2667
+ const IconCheckBoxLines = react.forwardRef(
2668
+ ({ size = "medium", ...props }, forwardRef2) => {
2669
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
2670
+ return react.createElement(
2671
+ StyledIcon,
2672
+ {
2673
+ ...props,
2674
+ debug,
2675
+ "aria-hidden": true,
2676
+ size,
2677
+ viewBox: "0 0 24 24",
2678
+ fill: "none",
2679
+ ref: forwardRef2
2680
+ },
2681
+ /* @__PURE__ */ jsxRuntime.jsx(
2682
+ "path",
2683
+ {
2684
+ fill: "currentColor",
2685
+ d: "M20 6.5v2h-8v-2h8Zm0 9v2h-8v-2h8Zm-9.219-9.875-4 5-1.532.035-2-2.272 1.502-1.322 1.212 1.378 3.256-4.069 1.562 1.25ZM9 13l1 1v5l-1 1H4l-1-1v-5l1-1h5Zm-4 5h3v-3H5v3Z"
2686
+ }
2687
+ )
2688
+ );
2689
+ }
2690
+ );
2691
+ IconCheckBoxLines[designSystemBaseIcon.iconSymbol] = true;
2692
+
2667
2693
  const IconCheckMark = react.forwardRef(
2668
2694
  ({ size = "medium", ...props }, forwardRef2) => {
2669
2695
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -3028,6 +3054,88 @@ const IconCircleCorners = react.forwardRef(
3028
3054
  );
3029
3055
  IconCircleCorners[designSystemBaseIcon.iconSymbol] = true;
3030
3056
 
3057
+ const IconCircleDashed = react.forwardRef(
3058
+ ({ size = "medium", ...props }, forwardRef2) => {
3059
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
3060
+ return react.createElement(
3061
+ StyledIcon,
3062
+ {
3063
+ ...props,
3064
+ debug,
3065
+ "aria-hidden": true,
3066
+ size,
3067
+ viewBox: "0 0 24 24",
3068
+ fill: "none",
3069
+ ref: forwardRef2
3070
+ },
3071
+ /* @__PURE__ */ jsxRuntime.jsx(
3072
+ "path",
3073
+ {
3074
+ fill: "currentColor",
3075
+ d: "M13.562 19.848h.002l.386 1.96a10.04 10.04 0 0 1-3.901 0l.388-1.96h.002a8.041 8.041 0 0 0 3.121-.001h.002Zm-8.214-3.404a8.043 8.043 0 0 0 2.207 2.207l.002.002-.557.831-.557.83a10.053 10.053 0 0 1-2.757-2.758l1.66-1.113.002.001Zm14.966 1.112a10.052 10.052 0 0 1-2.758 2.758l-1.113-1.66.001-.003a8.042 8.042 0 0 0 2.207-2.207h.002l1.66 1.112Zm-16.162-7.12v.002a8.039 8.039 0 0 0 0 3.122v.004l-.982.193-.97.192-.009.001a10.046 10.046 0 0 1 0-3.901l1.961.388Zm17.656-.387a10.043 10.043 0 0 1 0 3.901H21.8l-1.952-.386v-.002l-.001-.002a8.039 8.039 0 0 0 0-3.122v-.002l1.96-.387ZM7.557 5.347h-.002a8.044 8.044 0 0 0-2.207 2.208l-.001.002-1.661-1.114a10.053 10.053 0 0 1 2.757-2.757l1.114 1.66Zm9.999-1.661c1.09.73 2.028 1.667 2.758 2.757l-1.66 1.114-.003-.002a8.043 8.043 0 0 0-2.207-2.207v-.001l1.112-1.661ZM12 2c.667 0 1.32.067 1.95.191l-.177.907-.21 1.054h-.002a8.039 8.039 0 0 0-3.123 0h-.002l-.387-1.96A10.047 10.047 0 0 1 12 2Z"
3076
+ }
3077
+ )
3078
+ );
3079
+ }
3080
+ );
3081
+ IconCircleDashed[designSystemBaseIcon.iconSymbol] = true;
3082
+
3083
+ const IconCircleFullCheck = react.forwardRef(
3084
+ ({ size = "medium", ...props }, forwardRef2) => {
3085
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
3086
+ return react.createElement(
3087
+ StyledIcon,
3088
+ {
3089
+ ...props,
3090
+ debug,
3091
+ "aria-hidden": true,
3092
+ size,
3093
+ viewBox: "0 0 24 24",
3094
+ fill: "none",
3095
+ ref: forwardRef2
3096
+ },
3097
+ /* @__PURE__ */ jsxRuntime.jsx(
3098
+ "path",
3099
+ {
3100
+ fill: "currentColor",
3101
+ fillRule: "evenodd",
3102
+ d: "M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2Zm-1.368 11.533-1.917-1.96-1.43 1.399 2.666 2.727 1.463-.035 5.333-6-1.494-1.328-4.621 5.197Z",
3103
+ clipRule: "evenodd"
3104
+ }
3105
+ )
3106
+ );
3107
+ }
3108
+ );
3109
+ IconCircleFullCheck[designSystemBaseIcon.iconSymbol] = true;
3110
+
3111
+ const IconCircleHalfFill = react.forwardRef(
3112
+ ({ size = "medium", ...props }, forwardRef2) => {
3113
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
3114
+ return react.createElement(
3115
+ StyledIcon,
3116
+ {
3117
+ ...props,
3118
+ debug,
3119
+ "aria-hidden": true,
3120
+ size,
3121
+ viewBox: "0 0 24 24",
3122
+ fill: "none",
3123
+ ref: forwardRef2
3124
+ },
3125
+ /* @__PURE__ */ jsxRuntime.jsx(
3126
+ "path",
3127
+ {
3128
+ fill: "currentColor",
3129
+ fillRule: "evenodd",
3130
+ d: "M12 2a9.928 9.928 0 0 1 5.186 1.447 10.02 10.02 0 0 1 4.699 7.03 10.083 10.083 0 0 1-.2 4.022 10.019 10.019 0 0 1-5.35 6.515A9.93 9.93 0 0 1 12 22C6.477 22 2 17.523 2 12S6.477 2 12 2Zm0 2a8 8 0 1 0 0 16V4Z",
3131
+ clipRule: "evenodd"
3132
+ }
3133
+ )
3134
+ );
3135
+ }
3136
+ );
3137
+ IconCircleHalfFill[designSystemBaseIcon.iconSymbol] = true;
3138
+
3031
3139
  const IconCircleMotionX = react.forwardRef(
3032
3140
  ({ size = "medium", ...props }, forwardRef2) => {
3033
3141
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -3106,6 +3214,32 @@ const IconCircleSlash = react.forwardRef(
3106
3214
  );
3107
3215
  IconCircleSlash[designSystemBaseIcon.iconSymbol] = true;
3108
3216
 
3217
+ const IconCircleTarget = react.forwardRef(
3218
+ ({ size = "medium", ...props }, forwardRef2) => {
3219
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
3220
+ return react.createElement(
3221
+ StyledIcon,
3222
+ {
3223
+ ...props,
3224
+ debug,
3225
+ "aria-hidden": true,
3226
+ size,
3227
+ viewBox: "0 0 24 24",
3228
+ fill: "none",
3229
+ ref: forwardRef2
3230
+ },
3231
+ /* @__PURE__ */ jsxRuntime.jsx(
3232
+ "path",
3233
+ {
3234
+ fill: "currentColor",
3235
+ d: "M13 1v2.057a8.982 8.982 0 0 1 7.37 5.63l.147.399c.212.621.353 1.263.425 1.914H23v2h-2.058a8.98 8.98 0 0 1-5.63 7.371h-.002a8.98 8.98 0 0 1-2.31.571V23h-2v-2.058a8.98 8.98 0 0 1-7.371-5.63v-.002A8.98 8.98 0 0 1 3.058 13H1v-2h2.058a8.96 8.96 0 0 1 2.577-5.365A8.96 8.96 0 0 1 11 3.057V1h2Zm0 6h-2V5.07a6.989 6.989 0 0 0-1.578.42l-.002.001A6.96 6.96 0 0 0 7.049 7.05a6.96 6.96 0 0 0-1.558 2.37v.003A6.987 6.987 0 0 0 5.07 11H7v2H5.071c.062.43.164.855.305 1.268l.114.31.001.002a6.961 6.961 0 0 0 1.558 2.371 6.961 6.961 0 0 0 2.37 1.558h.003a6.99 6.99 0 0 0 1.578.42V17h2v1.929a6.99 6.99 0 0 0 1.578-.42h.002a6.962 6.962 0 0 0 2.371-1.558 6.962 6.962 0 0 0 1.558-2.37v-.003A6.99 6.99 0 0 0 18.93 13H17v-2h1.929a6.99 6.99 0 0 0-.42-1.578V9.42a6.961 6.961 0 0 0-1.558-2.371 6.961 6.961 0 0 0-2.37-1.558h-.003A6.988 6.988 0 0 0 13 5.07V7Z"
3236
+ }
3237
+ )
3238
+ );
3239
+ }
3240
+ );
3241
+ IconCircleTarget[designSystemBaseIcon.iconSymbol] = true;
3242
+
3109
3243
  const IconCircle = react.forwardRef(
3110
3244
  ({ size = "medium", ...props }, forwardRef2) => {
3111
3245
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -6324,7 +6458,9 @@ const IconKanban = react.forwardRef(
6324
6458
  "path",
6325
6459
  {
6326
6460
  fill: "currentColor",
6327
- d: "M5 19h6V5H5v14Zm8-5h6V5h-6v9Zm8 .5a1.5 1.5 0 0 1-1.5 1.5H13v3.5a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 3 19.5v-15A1.5 1.5 0 0 1 4.5 3h15A1.5 1.5 0 0 1 21 4.5v10Z"
6461
+ fillRule: "evenodd",
6462
+ d: "M19.5 2A2.5 2.5 0 0 1 22 4.5v9a2.5 2.5 0 0 1-2.5 2.5H13v3a3 3 0 0 1-3 3H4.5A2.5 2.5 0 0 1 2 19.5v-15A2.5 2.5 0 0 1 4.5 2h15ZM5 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V4H5Zm8 0v10h6a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-6Z",
6463
+ clipRule: "evenodd"
6328
6464
  }
6329
6465
  )
6330
6466
  );
@@ -10917,7 +11053,7 @@ const IconSlideFormat = react.forwardRef(
10917
11053
  {
10918
11054
  fill: "currentColor",
10919
11055
  fillRule: "evenodd",
10920
- d: "M11 3V1h2v2h6a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3h-2.584l1.25 3H15.5l-1.25-3h-4.5L8.5 22H6.333l1.25-3H5a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h6ZM5 5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H5Zm8 5h-2v4h2v-4Zm2 4V8h2v6h-2Zm-8-2v2h2v-2H7Z",
11056
+ d: "M9 15H7v-2h2v2Zm4 0h-2v-4h2v4Zm4 0h-2V9h2v6Zm2-11a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14ZM5 6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z",
10921
11057
  clipRule: "evenodd"
10922
11058
  }
10923
11059
  )
@@ -14882,6 +15018,7 @@ exports.IconChatLinesTwoStack = IconChatLinesTwoStack;
14882
15018
  exports.IconChatPlus = IconChatPlus;
14883
15019
  exports.IconChatTextArrow = IconChatTextArrow;
14884
15020
  exports.IconChatTwo = IconChatTwo;
15021
+ exports.IconCheckBoxLines = IconCheckBoxLines;
14885
15022
  exports.IconCheckMark = IconCheckMark;
14886
15023
  exports.IconCheckboardSquareCentered = IconCheckboardSquareCentered;
14887
15024
  exports.IconChevronDown = IconChevronDown;
@@ -14897,9 +15034,13 @@ exports.IconChevronUpDown = IconChevronUpDown;
14897
15034
  exports.IconChevronUpDownLine = IconChevronUpDownLine;
14898
15035
  exports.IconCircle = IconCircle;
14899
15036
  exports.IconCircleCorners = IconCircleCorners;
15037
+ exports.IconCircleDashed = IconCircleDashed;
15038
+ exports.IconCircleFullCheck = IconCircleFullCheck;
15039
+ exports.IconCircleHalfFill = IconCircleHalfFill;
14900
15040
  exports.IconCircleMotionX = IconCircleMotionX;
14901
15041
  exports.IconCircleNotch = IconCircleNotch;
14902
15042
  exports.IconCircleSlash = IconCircleSlash;
15043
+ exports.IconCircleTarget = IconCircleTarget;
14903
15044
  exports.IconCirclesConnected = IconCirclesConnected;
14904
15045
  exports.IconClock = IconClock;
14905
15046
  exports.IconClockCounterClockwise = IconClockCounterClockwise;