@exem-ui/react 0.3.4-next.20260713083704 → 0.3.4-next.20260722082352

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.
@@ -154,6 +154,23 @@ var iconManifest = [
154
154
  "navigation"
155
155
  ]
156
156
  },
157
+ {
158
+ "name": "ArrowDownCircle",
159
+ "kebab": "arrow-down-circle",
160
+ "types": [
161
+ "fill",
162
+ "light",
163
+ "regular"
164
+ ],
165
+ "tags": [
166
+ "arrow",
167
+ "down",
168
+ "circle"
169
+ ],
170
+ "categories": [
171
+ "navigation"
172
+ ]
173
+ },
157
174
  {
158
175
  "name": "ArrowDown",
159
176
  "kebab": "arrow-down",
@@ -199,6 +216,23 @@ var iconManifest = [
199
216
  "navigation"
200
217
  ]
201
218
  },
219
+ {
220
+ "name": "ArrowUpCircle",
221
+ "kebab": "arrow-up-circle",
222
+ "types": [
223
+ "fill",
224
+ "light",
225
+ "regular"
226
+ ],
227
+ "tags": [
228
+ "arrow",
229
+ "up",
230
+ "circle"
231
+ ],
232
+ "categories": [
233
+ "navigation"
234
+ ]
235
+ },
202
236
  {
203
237
  "name": "ArrowUp",
204
238
  "kebab": "arrow-up",
@@ -230,6 +264,42 @@ var iconManifest = [
230
264
  "navigation"
231
265
  ]
232
266
  },
267
+ {
268
+ "name": "ArrowsLeftRightCircle",
269
+ "kebab": "arrows-left-right-circle",
270
+ "types": [
271
+ "fill",
272
+ "light",
273
+ "regular"
274
+ ],
275
+ "tags": [
276
+ "arrows",
277
+ "left",
278
+ "right",
279
+ "circle"
280
+ ],
281
+ "categories": [
282
+ "navigation"
283
+ ]
284
+ },
285
+ {
286
+ "name": "ArrowsUpDownCircle",
287
+ "kebab": "arrows-up-down-circle",
288
+ "types": [
289
+ "fill",
290
+ "light",
291
+ "regular"
292
+ ],
293
+ "tags": [
294
+ "arrows",
295
+ "up",
296
+ "down",
297
+ "circle"
298
+ ],
299
+ "categories": [
300
+ "navigation"
301
+ ]
302
+ },
233
303
  {
234
304
  "name": "Automation",
235
305
  "kebab": "automation",
@@ -816,6 +886,22 @@ var iconManifest = [
816
886
  "common"
817
887
  ]
818
888
  },
889
+ {
890
+ "name": "ClockDash",
891
+ "kebab": "clock-dash",
892
+ "types": [
893
+ "light",
894
+ "regular"
895
+ ],
896
+ "tags": [
897
+ "clock",
898
+ "dash",
899
+ "time"
900
+ ],
901
+ "categories": [
902
+ "system"
903
+ ]
904
+ },
819
905
  {
820
906
  "name": "Clock",
821
907
  "kebab": "clock",
@@ -1780,6 +1866,23 @@ var iconManifest = [
1780
1866
  "layout"
1781
1867
  ]
1782
1868
  },
1869
+ {
1870
+ "name": "Loading",
1871
+ "kebab": "loading",
1872
+ "types": [
1873
+ "light",
1874
+ "regular"
1875
+ ],
1876
+ "tags": [
1877
+ "loading",
1878
+ "spinner",
1879
+ "progress",
1880
+ "wait"
1881
+ ],
1882
+ "categories": [
1883
+ "system"
1884
+ ]
1885
+ },
1783
1886
  {
1784
1887
  "name": "Location",
1785
1888
  "kebab": "location",
@@ -3429,6 +3532,16 @@ var ArrowDown = ({ size = 20, type, ...props }) => {
3429
3532
  }
3430
3533
  return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.37 19.775a1 1 0 0 0 1.337-.068l7-7-1.414-1.414L13 16.586V4h-2v12.586l-5.293-5.293-1.414 1.414 7 7z" }) });
3431
3534
  };
3535
+ var ArrowDownCircle = ({ size = 20, type, ...props }) => {
3536
+ const resolvedType = type ?? (size <= 18 ? "regular" : "light");
3537
+ if (resolvedType === "fill") {
3538
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.293 15.793a1 1 0 0 0 1.414 0L16 12.5l-1.4-1.4-1.6 1.6V7.5h-2v5.2l-1.6-1.6L8 12.5zM12 22a9.7 9.7 0 0 1-3.9-.788 10.1 10.1 0 0 1-3.175-2.137q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22" }) });
3539
+ }
3540
+ if (resolvedType === "light") {
3541
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.48 15.663a.75.75 0 0 0 1.06 0l3.114-3.115-1.044-1.044-1.85 1.85V7.798h-1.51v5.556l-1.85-1.85-1.044 1.044zm.522 5.837a9.3 9.3 0 0 1-3.706-.748 9.6 9.6 0 0 1-3.016-2.03 9.6 9.6 0 0 1-2.032-3.016 9.25 9.25 0 0 1-.748-3.704q0-1.972.748-3.706a9.6 9.6 0 0 1 2.03-3.016 9.6 9.6 0 0 1 3.016-2.032 9.25 9.25 0 0 1 3.704-.748q1.972 0 3.706.748a9.6 9.6 0 0 1 3.017 2.03 9.6 9.6 0 0 1 2.03 3.016 9.25 9.25 0 0 1 .749 3.704q0 1.972-.748 3.706a9.6 9.6 0 0 1-2.03 3.017 9.6 9.6 0 0 1-3.016 2.03 9.25 9.25 0 0 1-3.704.749M12 20q3.35 0 5.675-2.325T20 12t-2.325-5.675T12 4 6.325 6.325 4 12t2.325 5.675T12 20" }) });
3542
+ }
3543
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.293 15.793a1 1 0 0 0 1.414 0L16 12.5l-1.4-1.4-1.6 1.6V7.5h-2v5.2l-1.6-1.6L8 12.5zM12 22a9.7 9.7 0 0 1-3.9-.788 10.1 10.1 0 0 1-3.175-2.137q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22m0-2q3.35 0 5.675-2.325T20 12t-2.325-5.675T12 4 6.325 6.325 4 12t2.325 5.675T12 20" }) });
3544
+ };
3432
3545
  var ArrowLeft = ({ size = 20, type, ...props }) => {
3433
3546
  const resolvedType = type ?? (size <= 18 ? "regular" : "light");
3434
3547
  if (resolvedType === "light") {
@@ -3450,6 +3563,16 @@ var ArrowUp = ({ size = 20, type, ...props }) => {
3450
3563
  }
3451
3564
  return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.37 4.225a1 1 0 0 1 1.337.068l7 7-1.414 1.414L13 7.414V20h-2V7.414l-5.293 5.293-1.414-1.414 7-7z" }) });
3452
3565
  };
3566
+ var ArrowUpCircle = ({ size = 20, type, ...props }) => {
3567
+ const resolvedType = type ?? (size <= 18 ? "regular" : "light");
3568
+ if (resolvedType === "fill") {
3569
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11 16.5h2v-5.2l1.6 1.6 1.4-1.4-3.293-3.293a1 1 0 0 0-1.414 0L8 11.5l1.4 1.4 1.6-1.6zm1 5.5a9.7 9.7 0 0 1-3.9-.788 10.1 10.1 0 0 1-3.175-2.137q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22" }) });
3570
+ }
3571
+ if (resolvedType === "light") {
3572
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.25 16.192h1.51v-5.555l1.85 1.85 1.044-1.045-3.115-3.114a.75.75 0 0 0-1.06-.001l-3.123 3.115L9.4 12.486l1.85-1.85zm.752 5.308a9.3 9.3 0 0 1-3.706-.748 9.6 9.6 0 0 1-3.016-2.03 9.6 9.6 0 0 1-2.032-3.016 9.25 9.25 0 0 1-.748-3.704q0-1.972.748-3.706a9.6 9.6 0 0 1 2.03-3.016 9.6 9.6 0 0 1 3.016-2.032 9.25 9.25 0 0 1 3.704-.748q1.972 0 3.706.748a9.6 9.6 0 0 1 3.017 2.03 9.6 9.6 0 0 1 2.03 3.016 9.25 9.25 0 0 1 .749 3.704q0 1.972-.748 3.706a9.6 9.6 0 0 1-2.03 3.017 9.6 9.6 0 0 1-3.016 2.03 9.25 9.25 0 0 1-3.704.749M12 20q3.35 0 5.675-2.325T20 12t-2.325-5.675T12 4 6.325 6.325 4 12t2.325 5.675T12 20" }) });
3573
+ }
3574
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11 16.5h2v-5.2l1.6 1.6 1.4-1.4-3.293-3.293a1 1 0 0 0-1.414 0L8 11.5l1.4 1.4 1.6-1.6zm1 5.5a9.7 9.7 0 0 1-3.9-.788 10.1 10.1 0 0 1-3.175-2.137q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22m0-2q3.35 0 5.675-2.325T20 12t-2.325-5.675T12 4 6.325 6.325 4 12t2.325 5.675T12 20" }) });
3575
+ };
3453
3576
  var ArrowUpRight = ({ size = 20, type, ...props }) => {
3454
3577
  const resolvedType = type ?? (size <= 18 ? "regular" : "light");
3455
3578
  if (resolvedType === "light") {
@@ -3457,6 +3580,26 @@ var ArrowUpRight = ({ size = 20, type, ...props }) => {
3457
3580
  }
3458
3581
  return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M18.004 16.9h-2V9.412l-9.297 9.294-1.414-1.414L14.589 8H7.104V6h9.9a1 1 0 0 1 1 1z" }) });
3459
3582
  };
3583
+ var ArrowsLeftRightCircle = ({ size = 20, type, ...props }) => {
3584
+ const resolvedType = type ?? (size <= 18 ? "regular" : "light");
3585
+ if (resolvedType === "fill") {
3586
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8.1 21.213a10.1 10.1 0 0 1-3.175-2.138q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22a9.7 9.7 0 0 1-3.9-.788M9.5 16l1.4-1.4L9.3 13h5.4l-1.6 1.6 1.4 1.4 3.293-3.293a1 1 0 0 0 0-1.414L14.5 8l-1.4 1.4 1.6 1.6H9.3l1.6-1.6L9.5 8l-3.293 3.293a1 1 0 0 0 0 1.414z" }) });
3587
+ }
3588
+ if (resolvedType === "light") {
3589
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8.297 20.756a9.6 9.6 0 0 1-3.021-2.032 9.6 9.6 0 0 1-2.032-3.021A9.3 9.3 0 0 1 2.5 12q0-1.97.744-3.703a9.5 9.5 0 0 1 2.032-3.016 9.7 9.7 0 0 1 3.021-2.032A9.2 9.2 0 0 1 12 2.5q1.97 0 3.703.749a9.6 9.6 0 0 1 3.016 2.032 9.6 9.6 0 0 1 2.032 3.016q.75 1.734.749 3.703 0 1.97-.749 3.703a9.7 9.7 0 0 1-2.032 3.021 9.5 9.5 0 0 1-3.016 2.032A9.3 9.3 0 0 1 12 21.5a9.3 9.3 0 0 1-3.703-.744M12 20q3.325 0 5.663-2.333Q20 15.335 20 12q0-3.325-2.337-5.662Q15.325 4 12 4 8.666 4 6.333 6.338T4 12q0 3.335 2.333 5.667Q8.666 20 12 20m-2.423-4.414 1.044-1.053-1.773-1.783h6.313l-1.772 1.783 1.053 1.053 3.04-3.056a.75.75 0 0 0 0-1.059l-3.04-3.048-1.053 1.054 1.773 1.773H8.848l1.773-1.773-1.044-1.054L6.53 11.47a.75.75 0 0 0-.001 1.06z" }) });
3590
+ }
3591
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8.1 21.213a10.1 10.1 0 0 1-3.175-2.138q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22a9.7 9.7 0 0 1-3.9-.788M12 20q3.325 0 5.663-2.337T20 12t-2.337-5.662T12 4 6.338 6.338 4 12t2.338 5.663T12 20m-2.5-4 1.4-1.4L9.3 13h5.4l-1.6 1.6 1.4 1.4 3.293-3.293a1 1 0 0 0 0-1.414L14.5 8l-1.4 1.4 1.6 1.6H9.3l1.6-1.6L9.5 8l-3.293 3.293a1 1 0 0 0 0 1.414z" }) });
3592
+ };
3593
+ var ArrowsUpDownCircle = ({ size = 20, type, ...props }) => {
3594
+ const resolvedType = type ?? (size <= 18 ? "regular" : "light");
3595
+ if (resolvedType === "fill") {
3596
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.293 17.793a1 1 0 0 0 1.414 0L16 14.5l-1.4-1.4-1.6 1.6V9.3l1.6 1.6L16 9.5l-3.293-3.293a1 1 0 0 0-1.414 0L8 9.5l1.4 1.4L11 9.3v5.4l-1.6-1.6L8 14.5zM8.1 21.213a10.1 10.1 0 0 1-3.175-2.138q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22a9.7 9.7 0 0 1-3.9-.788" }) });
3597
+ }
3598
+ if (resolvedType === "light") {
3599
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.47 17.48a.75.75 0 0 0 1.06 0l3.057-3.047-1.054-1.044-1.783 1.773V8.848l1.783 1.773 1.053-1.054-3.056-3.04a.75.75 0 0 0-1.059 0l-3.048 3.04 1.054 1.054 1.773-1.773v6.313L9.477 13.39l-1.054 1.044zm-3.173 3.276a9.6 9.6 0 0 1-3.021-2.032 9.6 9.6 0 0 1-2.032-3.021A9.3 9.3 0 0 1 2.5 12q0-1.97.744-3.703a9.5 9.5 0 0 1 2.032-3.016 9.7 9.7 0 0 1 3.021-2.032A9.2 9.2 0 0 1 12 2.5q1.97 0 3.703.749a9.6 9.6 0 0 1 3.016 2.032 9.6 9.6 0 0 1 2.032 3.016q.75 1.734.749 3.703 0 1.97-.749 3.703a9.7 9.7 0 0 1-2.032 3.021 9.5 9.5 0 0 1-3.016 2.032A9.3 9.3 0 0 1 12 21.5a9.3 9.3 0 0 1-3.703-.744M12 20q3.325 0 5.663-2.333Q20 15.335 20 12q0-3.325-2.337-5.662Q15.325 4 12 4 8.666 4 6.333 6.338T4 12q0 3.335 2.333 5.667Q8.666 20 12 20" }) });
3600
+ }
3601
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.293 17.793a1 1 0 0 0 1.414 0L16 14.5l-1.4-1.4-1.6 1.6V9.3l1.6 1.6L16 9.5l-3.293-3.293a1 1 0 0 0-1.414 0L8 9.5l1.4 1.4L11 9.3v5.4l-1.6-1.6L8 14.5zM8.1 21.213a10.1 10.1 0 0 1-3.175-2.138q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22a9.7 9.7 0 0 1-3.9-.788M12 20q3.325 0 5.663-2.337T20 12t-2.337-5.662T12 4 6.338 6.338 4 12t2.338 5.663T12 20" }) });
3602
+ };
3460
3603
  var Automation = ({ size = 20, type, ...props }) => {
3461
3604
  const resolvedType = type ?? (size <= 18 ? "regular" : "light");
3462
3605
  if (resolvedType === "fill") {
@@ -3793,6 +3936,13 @@ var Clock = ({ size = 20, type, ...props }) => {
3793
3936
  }
3794
3937
  return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "m15.3 16.7 1.4-1.4-3.7-3.7V7h-2v5.4zM12 22a9.7 9.7 0 0 1-3.9-.788 10.1 10.1 0 0 1-3.175-2.137q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2q2.075 0 3.9.788a10.1 10.1 0 0 1 3.175 2.137q1.35 1.35 2.137 3.175A9.7 9.7 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22m0-2q3.325 0 5.663-2.337T20 12t-2.337-5.662T12 4 6.338 6.338 4 12t2.338 5.663T12 20" }) });
3795
3938
  };
3939
+ var ClockDash = ({ size = 20, type, ...props }) => {
3940
+ const resolvedType = type ?? (size <= 18 ? "regular" : "light");
3941
+ if (resolvedType === "light") {
3942
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "m15.301 16.343-3.83-3.83a.75.75 0 0 1-.22-.53V7.249h1.5v4.456l3.594 3.594zm-11.902-.297a8.7 8.7 0 0 1-.588-1.606 10 10 0 0 1-.28-1.69h1.516q.066.658.237 1.3.17.64.448 1.245zm-.867-4.797a9.6 9.6 0 0 1 .284-1.698q.22-.84.608-1.623l1.308.75a7 7 0 0 0-.453 1.251 8.6 8.6 0 0 0-.232 1.32zm4.105 8.593a10 10 0 0 1-1.355-1.136q-.623-.626-1.133-1.359l1.308-.76a8 8 0 0 0 1.93 1.931zM5.482 7.386l-1.333-.75q.51-.733 1.133-1.351a10 10 0 0 1 1.355-1.128l.75 1.323a8.5 8.5 0 0 0-1.905 1.906m5.769 14.083a9.6 9.6 0 0 1-1.698-.285 8.4 8.4 0 0 1-1.623-.608l.75-1.308q.605.287 1.25.453.646.167 1.321.232zM8.68 4.73l-.75-1.308a8.4 8.4 0 0 1 1.623-.607 9.6 9.6 0 0 1 1.698-.285v1.516q-.675.064-1.32.231a7 7 0 0 0-1.251.453m4.071 16.739v-1.516q.675-.064 1.32-.232.645-.166 1.251-.453l.75 1.308a8.4 8.4 0 0 1-1.623.608 9.6 9.6 0 0 1-1.698.284M15.322 4.73a7 7 0 0 0-1.25-.453 8.6 8.6 0 0 0-1.321-.231V2.53a9.6 9.6 0 0 1 1.698.285q.84.219 1.623.607zm2.043 15.112-.75-1.323a8.5 8.5 0 0 0 1.905-1.906l1.323.75q-.51.732-1.128 1.358t-1.35 1.12M18.52 7.376a8 8 0 0 0-.877-1.024 9 9 0 0 0-1.029-.872l.75-1.323q.734.495 1.351 1.108.62.613 1.113 1.346zm1.435 3.873a8 8 0 0 0-.237-1.32 7.6 7.6 0 0 0-.457-1.26l1.317-.766q.373.798.6 1.639.227.84.292 1.707zm.623 4.821-1.308-.75q.287-.605.453-1.25t.232-1.32h1.515a9.6 9.6 0 0 1-.284 1.697 8.4 8.4 0 0 1-.608 1.624" }) });
3943
+ }
3944
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "m15.3 16.7-4.007-4.007a1 1 0 0 1-.293-.707V7h2v4.6l3.7 3.7zm-12.45-.625a9.4 9.4 0 0 1-.525-1.5A10 10 0 0 1 2.05 13h2.025q.074.525.212 1.05.137.525.338 1.025zM2.05 11q.075-.8.275-1.587.2-.788.55-1.513l1.75 1a9 9 0 0 0-.338 1.025Q4.15 10.45 4.075 11zm4.125 9.15q-.675-.5-1.25-1.087A12 12 0 0 1 3.85 17.8l1.75-1q.35.45.737.837.388.388.838.738zm-.55-12.975-1.775-1q.5-.675 1.075-1.25t1.25-1.075l1 1.775a11.4 11.4 0 0 0-1.55 1.55M11 21.95a10.4 10.4 0 0 1-1.588-.275 8 8 0 0 1-1.512-.55l1-1.75q.5.2 1.025.337.525.138 1.075.213zM8.9 4.625l-1-1.75a8 8 0 0 1 1.512-.55A10.4 10.4 0 0 1 11 2.05v2.025a9 9 0 0 0-1.075.213q-.525.137-1.025.337M13 21.95v-2.025q.55-.074 1.075-.213.525-.137 1.025-.337l1 1.75a8 8 0 0 1-1.513.55q-.787.2-1.587.275m2.1-17.325a9 9 0 0 0-1.025-.337A9 9 0 0 0 13 4.075V2.05q.8.075 1.587.275.788.2 1.513.55zm2.725 15.525-1-1.775a11.4 11.4 0 0 0 1.55-1.55l1.775 1q-.5.675-1.075 1.262-.575.588-1.25 1.063m.55-12.975a11.4 11.4 0 0 0-1.55-1.55l1-1.775a9.5 9.5 0 0 1 2.3 2.3zM19.925 11a9 9 0 0 0-.213-1.075 9 9 0 0 0-.337-1.025l1.75-1.025q.325.75.537 1.538T21.95 11zm1.2 5.1-1.75-1q.2-.5.337-1.025.138-.525.213-1.075h2.025q-.075.8-.275 1.588a8 8 0 0 1-.55 1.512" }) });
3945
+ };
3796
3946
  var Cloud = ({ size = 20, type, ...props }) => {
3797
3947
  const resolvedType = type ?? (size <= 18 ? "regular" : "light");
3798
3948
  if (resolvedType === "fill") {
@@ -4412,6 +4562,13 @@ var List = ({ size = 20, type, ...props }) => {
4412
4562
  }
4413
4563
  return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8.5 18h12v-2h-12zm0-5h12v-2h-12zm0-7v2h12V6zM6.5 7a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M6.5 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M6.5 17a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0" }) });
4414
4564
  };
4565
+ var Loading = ({ size = 20, type, ...props }) => {
4566
+ const resolvedType = type ?? (size <= 18 ? "regular" : "light");
4567
+ if (resolvedType === "light") {
4568
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M12.001 2.499a9.5 9.5 0 0 1 9.5 9.5l-1.5.001a8.001 8.001 0 0 0-16-.001A8 8 0 0 0 12 19.998v1.5a9.5 9.5 0 0 1 .001-18.999" }) });
4569
+ }
4570
+ return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M12 2c5.523 0 10 4.477 10 10h-2a8 8 0 1 0-8 8v2C6.477 22 2 17.523 2 12S6.477 2 12 2" }) });
4571
+ };
4415
4572
  var Location = ({ size = 20, type, ...props }) => {
4416
4573
  const resolvedType = type ?? (size <= 18 ? "regular" : "light");
4417
4574
  if (resolvedType === "fill") {
@@ -5337,6 +5494,6 @@ var ZoomOut = ({ size = 20, type, ...props }) => {
5337
5494
  return /* @__PURE__ */ jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", ...props, children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "m3.9 21.5-1.4-1.4L6.6 16H4v-2h5a1 1 0 0 1 1 1v5H8v-2.6zM15 10a1 1 0 0 1-1-1V4h2v2.6l4.1-4.1 1.4 1.4L17.4 8H20v2z" }) });
5338
5495
  };
5339
5496
 
5340
- export { Account, AccountTree, Addcircle, AlignCenter, AlignJustified, AlignLeft, AlignRight, AreaChart, ArrowBottomRight, ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ArrowUpRight, Automation, Back, Badge, BarChart, Blank, Book, Brain, Briefcase, Build, Building, Bulb, Calculate, Calendar, CalendarDate, CalendarEvent, CalendarView, Cancel, CarrotDown, CarrotLeft, CarrotRight, CarrotUp, CarrotUpDown, Category, Chat, ChatLine, Check, CheckCircle, Checklist, ChevronDoubleDown, ChevronDoubleLeft, ChevronDoubleRight, ChevronDoubleUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ChevronUpDown, Claude, Clock, Cloud, Code, Copy, Cpu, CreateFolder, Cube, DarkMode, Dash, Dashboard, DashboardSymbol, Dashcircle, Database, DatabaseOff, DatabaseSearch, Dataset, Delete, Disk, DomainVerification, DotsHorizontal, DotsVertical, Download, Edit, Error, Feedback, File, FileAdd, FileCheck, FileDownload, FileUpload, Filter, FilterList, FitScreen, Flag, Flowchart, Folder, FolderOpen, Folderlock, Foward, Frame, Functions, Gear, Gemini, Grid, Group, Hand, Help, History, Home, Image, ImageCollection, Inbox, Info, Interests, Key, KoreanEnglish, Label, Layer, LightMode, LineChart, Link, LinkOff, List, Location, Lock, Lockopen, Login, Logout, Mail, MailOpen, Mcp, Mediation, Memory, Menu, Minus, Monitor, MonitorHeart, MoreHorizontal, MoreVertical, Mssql, MyLocation, Mysql, Note, Notification, Open, OpenAI, Oracle, Palette, PaperBoard, Partial, Pause, Pencil, People, Person, PersonAdd, Phone, PieChart, Pin, PinOff, Play, PlayCircle, Plus, Pointer, Policy, Polyline, Postgresql, Power, PowerOff, Redo, Refresh, Return, Rewind, RootFinderSymbol, Scatter, Schema, Sdk, Search, Security, Send, Shield, ShieldOff, Sidebar, SkipNext, SkipPrevious, SortDown, SortUp, Sound, Sparkle, SpeechBubble, Split, SplitScene, Square, Star, Stop, StopCircle, SwapHorizontal, SwapVertical, Sync, Table, Tactics, Tag, Textcompare, ThumbDown, ThumbUp, Title, Toolbox, ToolsSymbol, Translate, Tune, TuneSimple, Unarchive, Undo, Upload, ViewColumn, ViewHorizontal, ViewModule, ViewRow, ViewVertical, Visibility, VisibilityOff, Warning, WiFi, Widgets, X, ZoomIn, ZoomOut, iconManifest, iconSizes };
5341
- //# sourceMappingURL=chunk-MSA6TY4M.mjs.map
5342
- //# sourceMappingURL=chunk-MSA6TY4M.mjs.map
5497
+ export { Account, AccountTree, Addcircle, AlignCenter, AlignJustified, AlignLeft, AlignRight, AreaChart, ArrowBottomRight, ArrowDown, ArrowDownCircle, ArrowLeft, ArrowRight, ArrowUp, ArrowUpCircle, ArrowUpRight, ArrowsLeftRightCircle, ArrowsUpDownCircle, Automation, Back, Badge, BarChart, Blank, Book, Brain, Briefcase, Build, Building, Bulb, Calculate, Calendar, CalendarDate, CalendarEvent, CalendarView, Cancel, CarrotDown, CarrotLeft, CarrotRight, CarrotUp, CarrotUpDown, Category, Chat, ChatLine, Check, CheckCircle, Checklist, ChevronDoubleDown, ChevronDoubleLeft, ChevronDoubleRight, ChevronDoubleUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ChevronUpDown, Claude, Clock, ClockDash, Cloud, Code, Copy, Cpu, CreateFolder, Cube, DarkMode, Dash, Dashboard, DashboardSymbol, Dashcircle, Database, DatabaseOff, DatabaseSearch, Dataset, Delete, Disk, DomainVerification, DotsHorizontal, DotsVertical, Download, Edit, Error, Feedback, File, FileAdd, FileCheck, FileDownload, FileUpload, Filter, FilterList, FitScreen, Flag, Flowchart, Folder, FolderOpen, Folderlock, Foward, Frame, Functions, Gear, Gemini, Grid, Group, Hand, Help, History, Home, Image, ImageCollection, Inbox, Info, Interests, Key, KoreanEnglish, Label, Layer, LightMode, LineChart, Link, LinkOff, List, Loading, Location, Lock, Lockopen, Login, Logout, Mail, MailOpen, Mcp, Mediation, Memory, Menu, Minus, Monitor, MonitorHeart, MoreHorizontal, MoreVertical, Mssql, MyLocation, Mysql, Note, Notification, Open, OpenAI, Oracle, Palette, PaperBoard, Partial, Pause, Pencil, People, Person, PersonAdd, Phone, PieChart, Pin, PinOff, Play, PlayCircle, Plus, Pointer, Policy, Polyline, Postgresql, Power, PowerOff, Redo, Refresh, Return, Rewind, RootFinderSymbol, Scatter, Schema, Sdk, Search, Security, Send, Shield, ShieldOff, Sidebar, SkipNext, SkipPrevious, SortDown, SortUp, Sound, Sparkle, SpeechBubble, Split, SplitScene, Square, Star, Stop, StopCircle, SwapHorizontal, SwapVertical, Sync, Table, Tactics, Tag, Textcompare, ThumbDown, ThumbUp, Title, Toolbox, ToolsSymbol, Translate, Tune, TuneSimple, Unarchive, Undo, Upload, ViewColumn, ViewHorizontal, ViewModule, ViewRow, ViewVertical, Visibility, VisibilityOff, Warning, WiFi, Widgets, X, ZoomIn, ZoomOut, iconManifest, iconSizes };
5498
+ //# sourceMappingURL=chunk-LRZ7FXL5.mjs.map
5499
+ //# sourceMappingURL=chunk-LRZ7FXL5.mjs.map