@exem-ui/react 0.3.4-next.20260713082547 → 0.3.4-next.20260720075810
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/{FlatTooltip-BQHCh0EB.d.mts → FlatTooltip-CKMkf_th.d.mts} +4 -2
- package/dist/{FlatTooltip-BQHCh0EB.d.ts → FlatTooltip-CKMkf_th.d.ts} +4 -2
- package/dist/{chunk-T5TAXI73.js → chunk-6BABIL2T.js} +165 -2
- package/dist/chunk-6BABIL2T.js.map +1 -0
- package/dist/{chunk-YJPVY7DM.js → chunk-BCWGTFIJ.js} +101 -35
- package/dist/chunk-BCWGTFIJ.js.map +1 -0
- package/dist/{chunk-MSA6TY4M.mjs → chunk-LRZ7FXL5.mjs} +160 -3
- package/dist/chunk-LRZ7FXL5.mjs.map +1 -0
- package/dist/{chunk-HCPEPSQY.mjs → chunk-PGJ4JIXU.mjs} +97 -34
- package/dist/chunk-PGJ4JIXU.mjs.map +1 -0
- package/dist/flat/index.d.mts +15 -9
- package/dist/flat/index.d.ts +15 -9
- package/dist/flat/index.js +8 -8
- package/dist/flat/index.mjs +2 -2
- package/dist/icon/index.d.mts +61 -1
- package/dist/icon/index.d.ts +61 -1
- package/dist/icon/index.js +487 -439
- package/dist/icon/index.mjs +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +55 -115
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -69
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/dist/chunk-HCPEPSQY.mjs.map +0 -1
- package/dist/chunk-MSA6TY4M.mjs.map +0 -1
- package/dist/chunk-T5TAXI73.js.map +0 -1
- package/dist/chunk-YJPVY7DM.js.map +0 -1
|
@@ -223,10 +223,12 @@ type SelectBoxProps = {
|
|
|
223
223
|
/** Select 아이템 Props */
|
|
224
224
|
type SelectItemProps = {
|
|
225
225
|
children?: React$1.ReactNode;
|
|
226
|
-
/** 아이템 왼쪽에 표시할 아이콘 */
|
|
226
|
+
/** 아이템 왼쪽에 표시할 아이콘 (고정 크기 슬롯) */
|
|
227
227
|
leftIcon?: Icon;
|
|
228
|
-
/** 아이템 오른쪽에 표시할 아이콘 */
|
|
228
|
+
/** 아이템 오른쪽에 표시할 아이콘 (고정 크기 슬롯) */
|
|
229
229
|
rightIcon?: Icon;
|
|
230
|
+
/** 아이템 오른쪽 가변폭 슬롯 (Tag 등). rightIcon 왼쪽에 배치됨. */
|
|
231
|
+
rightSlot?: React$1.ReactNode;
|
|
230
232
|
size?: Size;
|
|
231
233
|
className?: string;
|
|
232
234
|
} & Omit<React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Item>, 'children'>;
|
|
@@ -223,10 +223,12 @@ type SelectBoxProps = {
|
|
|
223
223
|
/** Select 아이템 Props */
|
|
224
224
|
type SelectItemProps = {
|
|
225
225
|
children?: React$1.ReactNode;
|
|
226
|
-
/** 아이템 왼쪽에 표시할 아이콘 */
|
|
226
|
+
/** 아이템 왼쪽에 표시할 아이콘 (고정 크기 슬롯) */
|
|
227
227
|
leftIcon?: Icon;
|
|
228
|
-
/** 아이템 오른쪽에 표시할 아이콘 */
|
|
228
|
+
/** 아이템 오른쪽에 표시할 아이콘 (고정 크기 슬롯) */
|
|
229
229
|
rightIcon?: Icon;
|
|
230
|
+
/** 아이템 오른쪽 가변폭 슬롯 (Tag 등). rightIcon 왼쪽에 배치됨. */
|
|
231
|
+
rightSlot?: React$1.ReactNode;
|
|
230
232
|
size?: Size;
|
|
231
233
|
className?: string;
|
|
232
234
|
} & Omit<React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Item>, 'children'>;
|
|
@@ -156,6 +156,23 @@ var iconManifest = [
|
|
|
156
156
|
"navigation"
|
|
157
157
|
]
|
|
158
158
|
},
|
|
159
|
+
{
|
|
160
|
+
"name": "ArrowDownCircle",
|
|
161
|
+
"kebab": "arrow-down-circle",
|
|
162
|
+
"types": [
|
|
163
|
+
"fill",
|
|
164
|
+
"light",
|
|
165
|
+
"regular"
|
|
166
|
+
],
|
|
167
|
+
"tags": [
|
|
168
|
+
"arrow",
|
|
169
|
+
"down",
|
|
170
|
+
"circle"
|
|
171
|
+
],
|
|
172
|
+
"categories": [
|
|
173
|
+
"navigation"
|
|
174
|
+
]
|
|
175
|
+
},
|
|
159
176
|
{
|
|
160
177
|
"name": "ArrowDown",
|
|
161
178
|
"kebab": "arrow-down",
|
|
@@ -201,6 +218,23 @@ var iconManifest = [
|
|
|
201
218
|
"navigation"
|
|
202
219
|
]
|
|
203
220
|
},
|
|
221
|
+
{
|
|
222
|
+
"name": "ArrowUpCircle",
|
|
223
|
+
"kebab": "arrow-up-circle",
|
|
224
|
+
"types": [
|
|
225
|
+
"fill",
|
|
226
|
+
"light",
|
|
227
|
+
"regular"
|
|
228
|
+
],
|
|
229
|
+
"tags": [
|
|
230
|
+
"arrow",
|
|
231
|
+
"up",
|
|
232
|
+
"circle"
|
|
233
|
+
],
|
|
234
|
+
"categories": [
|
|
235
|
+
"navigation"
|
|
236
|
+
]
|
|
237
|
+
},
|
|
204
238
|
{
|
|
205
239
|
"name": "ArrowUp",
|
|
206
240
|
"kebab": "arrow-up",
|
|
@@ -232,6 +266,42 @@ var iconManifest = [
|
|
|
232
266
|
"navigation"
|
|
233
267
|
]
|
|
234
268
|
},
|
|
269
|
+
{
|
|
270
|
+
"name": "ArrowsLeftRightCircle",
|
|
271
|
+
"kebab": "arrows-left-right-circle",
|
|
272
|
+
"types": [
|
|
273
|
+
"fill",
|
|
274
|
+
"light",
|
|
275
|
+
"regular"
|
|
276
|
+
],
|
|
277
|
+
"tags": [
|
|
278
|
+
"arrows",
|
|
279
|
+
"left",
|
|
280
|
+
"right",
|
|
281
|
+
"circle"
|
|
282
|
+
],
|
|
283
|
+
"categories": [
|
|
284
|
+
"navigation"
|
|
285
|
+
]
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"name": "ArrowsUpDownCircle",
|
|
289
|
+
"kebab": "arrows-up-down-circle",
|
|
290
|
+
"types": [
|
|
291
|
+
"fill",
|
|
292
|
+
"light",
|
|
293
|
+
"regular"
|
|
294
|
+
],
|
|
295
|
+
"tags": [
|
|
296
|
+
"arrows",
|
|
297
|
+
"up",
|
|
298
|
+
"down",
|
|
299
|
+
"circle"
|
|
300
|
+
],
|
|
301
|
+
"categories": [
|
|
302
|
+
"navigation"
|
|
303
|
+
]
|
|
304
|
+
},
|
|
235
305
|
{
|
|
236
306
|
"name": "Automation",
|
|
237
307
|
"kebab": "automation",
|
|
@@ -818,6 +888,22 @@ var iconManifest = [
|
|
|
818
888
|
"common"
|
|
819
889
|
]
|
|
820
890
|
},
|
|
891
|
+
{
|
|
892
|
+
"name": "ClockDash",
|
|
893
|
+
"kebab": "clock-dash",
|
|
894
|
+
"types": [
|
|
895
|
+
"light",
|
|
896
|
+
"regular"
|
|
897
|
+
],
|
|
898
|
+
"tags": [
|
|
899
|
+
"clock",
|
|
900
|
+
"dash",
|
|
901
|
+
"time"
|
|
902
|
+
],
|
|
903
|
+
"categories": [
|
|
904
|
+
"system"
|
|
905
|
+
]
|
|
906
|
+
},
|
|
821
907
|
{
|
|
822
908
|
"name": "Clock",
|
|
823
909
|
"kebab": "clock",
|
|
@@ -1782,6 +1868,23 @@ var iconManifest = [
|
|
|
1782
1868
|
"layout"
|
|
1783
1869
|
]
|
|
1784
1870
|
},
|
|
1871
|
+
{
|
|
1872
|
+
"name": "Loading",
|
|
1873
|
+
"kebab": "loading",
|
|
1874
|
+
"types": [
|
|
1875
|
+
"light",
|
|
1876
|
+
"regular"
|
|
1877
|
+
],
|
|
1878
|
+
"tags": [
|
|
1879
|
+
"loading",
|
|
1880
|
+
"spinner",
|
|
1881
|
+
"progress",
|
|
1882
|
+
"wait"
|
|
1883
|
+
],
|
|
1884
|
+
"categories": [
|
|
1885
|
+
"system"
|
|
1886
|
+
]
|
|
1887
|
+
},
|
|
1785
1888
|
{
|
|
1786
1889
|
"name": "Location",
|
|
1787
1890
|
"kebab": "location",
|
|
@@ -3431,6 +3534,16 @@ var ArrowDown = ({ size = 20, type, ...props }) => {
|
|
|
3431
3534
|
}
|
|
3432
3535
|
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3433
3536
|
};
|
|
3537
|
+
var ArrowDownCircle = ({ size = 20, type, ...props }) => {
|
|
3538
|
+
const resolvedType = type ?? (size <= 18 ? "regular" : "light");
|
|
3539
|
+
if (resolvedType === "fill") {
|
|
3540
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3541
|
+
}
|
|
3542
|
+
if (resolvedType === "light") {
|
|
3543
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3544
|
+
}
|
|
3545
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3546
|
+
};
|
|
3434
3547
|
var ArrowLeft = ({ size = 20, type, ...props }) => {
|
|
3435
3548
|
const resolvedType = type ?? (size <= 18 ? "regular" : "light");
|
|
3436
3549
|
if (resolvedType === "light") {
|
|
@@ -3452,6 +3565,16 @@ var ArrowUp = ({ size = 20, type, ...props }) => {
|
|
|
3452
3565
|
}
|
|
3453
3566
|
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3454
3567
|
};
|
|
3568
|
+
var ArrowUpCircle = ({ size = 20, type, ...props }) => {
|
|
3569
|
+
const resolvedType = type ?? (size <= 18 ? "regular" : "light");
|
|
3570
|
+
if (resolvedType === "fill") {
|
|
3571
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3572
|
+
}
|
|
3573
|
+
if (resolvedType === "light") {
|
|
3574
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3575
|
+
}
|
|
3576
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3577
|
+
};
|
|
3455
3578
|
var ArrowUpRight = ({ size = 20, type, ...props }) => {
|
|
3456
3579
|
const resolvedType = type ?? (size <= 18 ? "regular" : "light");
|
|
3457
3580
|
if (resolvedType === "light") {
|
|
@@ -3459,6 +3582,26 @@ var ArrowUpRight = ({ size = 20, type, ...props }) => {
|
|
|
3459
3582
|
}
|
|
3460
3583
|
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3461
3584
|
};
|
|
3585
|
+
var ArrowsLeftRightCircle = ({ size = 20, type, ...props }) => {
|
|
3586
|
+
const resolvedType = type ?? (size <= 18 ? "regular" : "light");
|
|
3587
|
+
if (resolvedType === "fill") {
|
|
3588
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3589
|
+
}
|
|
3590
|
+
if (resolvedType === "light") {
|
|
3591
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3592
|
+
}
|
|
3593
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3594
|
+
};
|
|
3595
|
+
var ArrowsUpDownCircle = ({ size = 20, type, ...props }) => {
|
|
3596
|
+
const resolvedType = type ?? (size <= 18 ? "regular" : "light");
|
|
3597
|
+
if (resolvedType === "fill") {
|
|
3598
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3599
|
+
}
|
|
3600
|
+
if (resolvedType === "light") {
|
|
3601
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3602
|
+
}
|
|
3603
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3604
|
+
};
|
|
3462
3605
|
var Automation = ({ size = 20, type, ...props }) => {
|
|
3463
3606
|
const resolvedType = type ?? (size <= 18 ? "regular" : "light");
|
|
3464
3607
|
if (resolvedType === "fill") {
|
|
@@ -3795,6 +3938,13 @@ var Clock = ({ size = 20, type, ...props }) => {
|
|
|
3795
3938
|
}
|
|
3796
3939
|
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3797
3940
|
};
|
|
3941
|
+
var ClockDash = ({ size = 20, type, ...props }) => {
|
|
3942
|
+
const resolvedType = type ?? (size <= 18 ? "regular" : "light");
|
|
3943
|
+
if (resolvedType === "light") {
|
|
3944
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3945
|
+
}
|
|
3946
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
3947
|
+
};
|
|
3798
3948
|
var Cloud = ({ size = 20, type, ...props }) => {
|
|
3799
3949
|
const resolvedType = type ?? (size <= 18 ? "regular" : "light");
|
|
3800
3950
|
if (resolvedType === "fill") {
|
|
@@ -4414,6 +4564,13 @@ var List = ({ size = 20, type, ...props }) => {
|
|
|
4414
4564
|
}
|
|
4415
4565
|
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
4416
4566
|
};
|
|
4567
|
+
var Loading = ({ size = 20, type, ...props }) => {
|
|
4568
|
+
const resolvedType = type ?? (size <= 18 ? "regular" : "light");
|
|
4569
|
+
if (resolvedType === "light") {
|
|
4570
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
4571
|
+
}
|
|
4572
|
+
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.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" }) });
|
|
4573
|
+
};
|
|
4417
4574
|
var Location = ({ size = 20, type, ...props }) => {
|
|
4418
4575
|
const resolvedType = type ?? (size <= 18 ? "regular" : "light");
|
|
4419
4576
|
if (resolvedType === "fill") {
|
|
@@ -5349,10 +5506,14 @@ exports.AlignRight = AlignRight;
|
|
|
5349
5506
|
exports.AreaChart = AreaChart;
|
|
5350
5507
|
exports.ArrowBottomRight = ArrowBottomRight;
|
|
5351
5508
|
exports.ArrowDown = ArrowDown;
|
|
5509
|
+
exports.ArrowDownCircle = ArrowDownCircle;
|
|
5352
5510
|
exports.ArrowLeft = ArrowLeft;
|
|
5353
5511
|
exports.ArrowRight = ArrowRight;
|
|
5354
5512
|
exports.ArrowUp = ArrowUp;
|
|
5513
|
+
exports.ArrowUpCircle = ArrowUpCircle;
|
|
5355
5514
|
exports.ArrowUpRight = ArrowUpRight;
|
|
5515
|
+
exports.ArrowsLeftRightCircle = ArrowsLeftRightCircle;
|
|
5516
|
+
exports.ArrowsUpDownCircle = ArrowsUpDownCircle;
|
|
5356
5517
|
exports.Automation = Automation;
|
|
5357
5518
|
exports.Back = Back;
|
|
5358
5519
|
exports.Badge = Badge;
|
|
@@ -5392,6 +5553,7 @@ exports.ChevronUp = ChevronUp;
|
|
|
5392
5553
|
exports.ChevronUpDown = ChevronUpDown;
|
|
5393
5554
|
exports.Claude = Claude;
|
|
5394
5555
|
exports.Clock = Clock;
|
|
5556
|
+
exports.ClockDash = ClockDash;
|
|
5395
5557
|
exports.Cloud = Cloud;
|
|
5396
5558
|
exports.Code = Code;
|
|
5397
5559
|
exports.Copy = Copy;
|
|
@@ -5454,6 +5616,7 @@ exports.LineChart = LineChart;
|
|
|
5454
5616
|
exports.Link = Link;
|
|
5455
5617
|
exports.LinkOff = LinkOff;
|
|
5456
5618
|
exports.List = List;
|
|
5619
|
+
exports.Loading = Loading;
|
|
5457
5620
|
exports.Location = Location;
|
|
5458
5621
|
exports.Lock = Lock;
|
|
5459
5622
|
exports.Lockopen = Lockopen;
|
|
@@ -5559,5 +5722,5 @@ exports.ZoomIn = ZoomIn;
|
|
|
5559
5722
|
exports.ZoomOut = ZoomOut;
|
|
5560
5723
|
exports.iconManifest = iconManifest;
|
|
5561
5724
|
exports.iconSizes = iconSizes;
|
|
5562
|
-
//# sourceMappingURL=chunk-
|
|
5563
|
-
//# sourceMappingURL=chunk-
|
|
5725
|
+
//# sourceMappingURL=chunk-6BABIL2T.js.map
|
|
5726
|
+
//# sourceMappingURL=chunk-6BABIL2T.js.map
|