@eclass/ui-kit 1.46.5 → 1.46.6
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/eclass-ui-kit.es.js +64 -42
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +50 -50
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/services/index.d.ts +1 -0
- package/dist/services/uniqueId.d.ts +1 -0
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/eclass-ui-kit.es.js
CHANGED
|
@@ -28679,13 +28679,17 @@ function AlertInfo(props) {
|
|
|
28679
28679
|
});
|
|
28680
28680
|
}
|
|
28681
28681
|
AlertInfo.displayName = "ArrowRight";
|
|
28682
|
+
function uniqueId() {
|
|
28683
|
+
return Math.random().toString(36).slice(2, 9);
|
|
28684
|
+
}
|
|
28682
28685
|
function ArrowRight(props) {
|
|
28686
|
+
const id2 = `clip-${uniqueId()}`;
|
|
28683
28687
|
return /* @__PURE__ */ jsxs(Base, {
|
|
28684
28688
|
...props,
|
|
28685
28689
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
28686
|
-
clipPath:
|
|
28690
|
+
clipPath: `url(#${id2})`,
|
|
28687
28691
|
children: [/* @__PURE__ */ jsx("mask", {
|
|
28688
|
-
id:
|
|
28692
|
+
id: `mask-${id2}`,
|
|
28689
28693
|
style: {
|
|
28690
28694
|
maskType: "alpha"
|
|
28691
28695
|
},
|
|
@@ -28700,7 +28704,7 @@ function ArrowRight(props) {
|
|
|
28700
28704
|
transform: "rotate(180 16 16)"
|
|
28701
28705
|
})
|
|
28702
28706
|
}), /* @__PURE__ */ jsx("g", {
|
|
28703
|
-
mask:
|
|
28707
|
+
mask: `url(#mask-${id2})`,
|
|
28704
28708
|
children: /* @__PURE__ */ jsx("path", {
|
|
28705
28709
|
fill: "currentColor",
|
|
28706
28710
|
d: "M6.074 14L12 8 6.074 2 4 4.1 7.852 8 4 11.9 6.074 14z"
|
|
@@ -28708,7 +28712,7 @@ function ArrowRight(props) {
|
|
|
28708
28712
|
})]
|
|
28709
28713
|
}), /* @__PURE__ */ jsx("defs", {
|
|
28710
28714
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
28711
|
-
id:
|
|
28715
|
+
id: id2,
|
|
28712
28716
|
children: /* @__PURE__ */ jsx("path", {
|
|
28713
28717
|
fill: "#fff",
|
|
28714
28718
|
d: "M0 0H16V16H0z"
|
|
@@ -28830,7 +28834,7 @@ function Loader({
|
|
|
28830
28834
|
className: "loaderAsync",
|
|
28831
28835
|
"data-testid": "loaderAsync",
|
|
28832
28836
|
children: /* @__PURE__ */ jsxs("svg", {
|
|
28833
|
-
id:
|
|
28837
|
+
id: uniqueId(),
|
|
28834
28838
|
xmlns: "http://www.w3.org/2000/svg",
|
|
28835
28839
|
viewBox: "0 0 38 20",
|
|
28836
28840
|
shapeRendering: "geometricPrecision",
|
|
@@ -28933,13 +28937,14 @@ function TinyAlertInfo(props) {
|
|
|
28933
28937
|
}
|
|
28934
28938
|
TinyAlertInfo.displayName = "TinyAlertInfo";
|
|
28935
28939
|
function TinyAlertError(props) {
|
|
28940
|
+
const id2 = `clip${uniqueId()}`;
|
|
28936
28941
|
return /* @__PURE__ */ jsxs(Base, {
|
|
28937
28942
|
...props,
|
|
28938
28943
|
w: "12px",
|
|
28939
28944
|
h: "12px",
|
|
28940
28945
|
viewBox: "0 0 12 12",
|
|
28941
28946
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
28942
|
-
clipPath:
|
|
28947
|
+
clipPath: `url(#${id2})`,
|
|
28943
28948
|
children: [/* @__PURE__ */ jsx("circle", {
|
|
28944
28949
|
cx: "6",
|
|
28945
28950
|
cy: "6",
|
|
@@ -28953,7 +28958,7 @@ function TinyAlertError(props) {
|
|
|
28953
28958
|
})]
|
|
28954
28959
|
}), /* @__PURE__ */ jsx("defs", {
|
|
28955
28960
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
28956
|
-
id:
|
|
28961
|
+
id: id2,
|
|
28957
28962
|
children: /* @__PURE__ */ jsx("rect", {
|
|
28958
28963
|
width: "12px",
|
|
28959
28964
|
height: "12px",
|
|
@@ -28986,13 +28991,14 @@ function TinyAlertWarning(props) {
|
|
|
28986
28991
|
}
|
|
28987
28992
|
TinyAlertWarning.displayName = "TinyAlertWarning";
|
|
28988
28993
|
function TinyAlertSuccess(props) {
|
|
28994
|
+
const id2 = `clip${uniqueId()}`;
|
|
28989
28995
|
return /* @__PURE__ */ jsxs(Base, {
|
|
28990
28996
|
...props,
|
|
28991
28997
|
w: "12px",
|
|
28992
28998
|
h: "12px",
|
|
28993
28999
|
viewBox: "0 0 12 12",
|
|
28994
29000
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
28995
|
-
clipPath:
|
|
29001
|
+
clipPath: `url(#${id2})`,
|
|
28996
29002
|
children: [/* @__PURE__ */ jsx("circle", {
|
|
28997
29003
|
cx: "6",
|
|
28998
29004
|
cy: "6",
|
|
@@ -29006,7 +29012,7 @@ function TinyAlertSuccess(props) {
|
|
|
29006
29012
|
})]
|
|
29007
29013
|
}), /* @__PURE__ */ jsx("defs", {
|
|
29008
29014
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
29009
|
-
id:
|
|
29015
|
+
id: id2,
|
|
29010
29016
|
children: /* @__PURE__ */ jsx("rect", {
|
|
29011
29017
|
width: "12",
|
|
29012
29018
|
height: "12",
|
|
@@ -29535,7 +29541,7 @@ function Btn({
|
|
|
29535
29541
|
color: color2 = vars("colors-neutral-white"),
|
|
29536
29542
|
disabled: disabled2 = false,
|
|
29537
29543
|
fillLoader = vars("colors-neutral-white"),
|
|
29538
|
-
id: id2,
|
|
29544
|
+
id: id2 = void 0,
|
|
29539
29545
|
isFullWidth = false,
|
|
29540
29546
|
isLoading = false,
|
|
29541
29547
|
leftIcon,
|
|
@@ -32283,6 +32289,7 @@ const Eventos = ({
|
|
|
32283
32289
|
}
|
|
32284
32290
|
};
|
|
32285
32291
|
const Avi = () => {
|
|
32292
|
+
const id2 = `clip${uniqueId()}`;
|
|
32286
32293
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32287
32294
|
width: "32px",
|
|
32288
32295
|
height: "32px",
|
|
@@ -32290,7 +32297,7 @@ const Avi = () => {
|
|
|
32290
32297
|
fill: "none",
|
|
32291
32298
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32292
32299
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32293
|
-
clipPath:
|
|
32300
|
+
clipPath: `url(#${id2})`,
|
|
32294
32301
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32295
32302
|
d: "M20 1V9H28",
|
|
32296
32303
|
stroke: "#B0CFE0",
|
|
@@ -32326,7 +32333,7 @@ const Avi = () => {
|
|
|
32326
32333
|
})]
|
|
32327
32334
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32328
32335
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32329
|
-
id:
|
|
32336
|
+
id: id2,
|
|
32330
32337
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32331
32338
|
width: "32",
|
|
32332
32339
|
height: "32",
|
|
@@ -32337,6 +32344,7 @@ const Avi = () => {
|
|
|
32337
32344
|
});
|
|
32338
32345
|
};
|
|
32339
32346
|
const Csv = () => {
|
|
32347
|
+
const id2 = `clip${uniqueId()}`;
|
|
32340
32348
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32341
32349
|
width: "32px",
|
|
32342
32350
|
height: "32px",
|
|
@@ -32344,7 +32352,7 @@ const Csv = () => {
|
|
|
32344
32352
|
fill: "none",
|
|
32345
32353
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32346
32354
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32347
|
-
clipPath:
|
|
32355
|
+
clipPath: `url(#${id2})`,
|
|
32348
32356
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32349
32357
|
d: "M20 1V9H28",
|
|
32350
32358
|
stroke: "#B0CFE0",
|
|
@@ -32380,7 +32388,7 @@ const Csv = () => {
|
|
|
32380
32388
|
})]
|
|
32381
32389
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32382
32390
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32383
|
-
id:
|
|
32391
|
+
id: id2,
|
|
32384
32392
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32385
32393
|
width: "32",
|
|
32386
32394
|
height: "32",
|
|
@@ -32391,6 +32399,7 @@ const Csv = () => {
|
|
|
32391
32399
|
});
|
|
32392
32400
|
};
|
|
32393
32401
|
const Doc = () => {
|
|
32402
|
+
const id2 = `clip${uniqueId()}`;
|
|
32394
32403
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32395
32404
|
width: "32px",
|
|
32396
32405
|
height: "32px",
|
|
@@ -32398,7 +32407,7 @@ const Doc = () => {
|
|
|
32398
32407
|
fill: "none",
|
|
32399
32408
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32400
32409
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32401
|
-
clipPath:
|
|
32410
|
+
clipPath: `url(#${id2})`,
|
|
32402
32411
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32403
32412
|
d: "M20 1V9H28",
|
|
32404
32413
|
stroke: "#B0CFE0",
|
|
@@ -32434,7 +32443,7 @@ const Doc = () => {
|
|
|
32434
32443
|
})]
|
|
32435
32444
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32436
32445
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32437
|
-
id:
|
|
32446
|
+
id: id2,
|
|
32438
32447
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32439
32448
|
width: "32",
|
|
32440
32449
|
height: "32",
|
|
@@ -32445,6 +32454,7 @@ const Doc = () => {
|
|
|
32445
32454
|
});
|
|
32446
32455
|
};
|
|
32447
32456
|
const Docx = () => {
|
|
32457
|
+
const id2 = `clip${uniqueId()}`;
|
|
32448
32458
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32449
32459
|
width: "32px",
|
|
32450
32460
|
height: "32px",
|
|
@@ -32452,7 +32462,7 @@ const Docx = () => {
|
|
|
32452
32462
|
fill: "none",
|
|
32453
32463
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32454
32464
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32455
|
-
clipPath:
|
|
32465
|
+
clipPath: `url(#${id2})`,
|
|
32456
32466
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32457
32467
|
d: "M20 1V9H28",
|
|
32458
32468
|
stroke: "#B0CFE0",
|
|
@@ -32491,7 +32501,7 @@ const Docx = () => {
|
|
|
32491
32501
|
})]
|
|
32492
32502
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32493
32503
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32494
|
-
id:
|
|
32504
|
+
id: id2,
|
|
32495
32505
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32496
32506
|
width: "32",
|
|
32497
32507
|
height: "32",
|
|
@@ -32502,6 +32512,7 @@ const Docx = () => {
|
|
|
32502
32512
|
});
|
|
32503
32513
|
};
|
|
32504
32514
|
const Gif = () => {
|
|
32515
|
+
const id2 = `clip${uniqueId()}`;
|
|
32505
32516
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32506
32517
|
width: "32px",
|
|
32507
32518
|
height: "32px",
|
|
@@ -32509,7 +32520,7 @@ const Gif = () => {
|
|
|
32509
32520
|
fill: "none",
|
|
32510
32521
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32511
32522
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32512
|
-
clipPath:
|
|
32523
|
+
clipPath: `url(#${id2})`,
|
|
32513
32524
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32514
32525
|
d: "M20 1V9H28",
|
|
32515
32526
|
stroke: "#B0CFE0",
|
|
@@ -32545,7 +32556,7 @@ const Gif = () => {
|
|
|
32545
32556
|
})]
|
|
32546
32557
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32547
32558
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32548
|
-
id:
|
|
32559
|
+
id: id2,
|
|
32549
32560
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32550
32561
|
width: "32",
|
|
32551
32562
|
height: "32",
|
|
@@ -32598,6 +32609,7 @@ const Icons = ({
|
|
|
32598
32609
|
}
|
|
32599
32610
|
};
|
|
32600
32611
|
const Jpeg = () => {
|
|
32612
|
+
const id2 = `clip${uniqueId()}`;
|
|
32601
32613
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32602
32614
|
width: "32px",
|
|
32603
32615
|
height: "32px",
|
|
@@ -32605,7 +32617,7 @@ const Jpeg = () => {
|
|
|
32605
32617
|
fill: "none",
|
|
32606
32618
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32607
32619
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32608
|
-
clipPath:
|
|
32620
|
+
clipPath: `url(#${id2})`,
|
|
32609
32621
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32610
32622
|
d: "M20 1V9H28",
|
|
32611
32623
|
stroke: "#B0CFE0",
|
|
@@ -32644,7 +32656,7 @@ const Jpeg = () => {
|
|
|
32644
32656
|
})]
|
|
32645
32657
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32646
32658
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32647
|
-
id:
|
|
32659
|
+
id: id2,
|
|
32648
32660
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32649
32661
|
width: "32",
|
|
32650
32662
|
height: "32",
|
|
@@ -32697,6 +32709,7 @@ const Jpg = () => {
|
|
|
32697
32709
|
});
|
|
32698
32710
|
};
|
|
32699
32711
|
const Mkv = () => {
|
|
32712
|
+
const id2 = `clip${uniqueId()}`;
|
|
32700
32713
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32701
32714
|
width: "32px",
|
|
32702
32715
|
height: "32px",
|
|
@@ -32704,7 +32717,7 @@ const Mkv = () => {
|
|
|
32704
32717
|
fill: "none",
|
|
32705
32718
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32706
32719
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32707
|
-
clipPath:
|
|
32720
|
+
clipPath: `url(#${id2})`,
|
|
32708
32721
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32709
32722
|
d: "M20 1V9H28",
|
|
32710
32723
|
stroke: "#B0CFE0",
|
|
@@ -32740,7 +32753,7 @@ const Mkv = () => {
|
|
|
32740
32753
|
})]
|
|
32741
32754
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32742
32755
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32743
|
-
id:
|
|
32756
|
+
id: id2,
|
|
32744
32757
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32745
32758
|
width: "32",
|
|
32746
32759
|
height: "32",
|
|
@@ -32751,6 +32764,7 @@ const Mkv = () => {
|
|
|
32751
32764
|
});
|
|
32752
32765
|
};
|
|
32753
32766
|
const Mp3 = () => {
|
|
32767
|
+
const id2 = `clip${uniqueId()}`;
|
|
32754
32768
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32755
32769
|
width: "32px",
|
|
32756
32770
|
height: "32px",
|
|
@@ -32758,7 +32772,7 @@ const Mp3 = () => {
|
|
|
32758
32772
|
fill: "none",
|
|
32759
32773
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32760
32774
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32761
|
-
clipPath:
|
|
32775
|
+
clipPath: `url(#${id2})`,
|
|
32762
32776
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32763
32777
|
d: "M20 1V9H28",
|
|
32764
32778
|
stroke: "#B0CFE0",
|
|
@@ -32794,7 +32808,7 @@ const Mp3 = () => {
|
|
|
32794
32808
|
})]
|
|
32795
32809
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32796
32810
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32797
|
-
id:
|
|
32811
|
+
id: id2,
|
|
32798
32812
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32799
32813
|
width: "32",
|
|
32800
32814
|
height: "32",
|
|
@@ -32805,6 +32819,7 @@ const Mp3 = () => {
|
|
|
32805
32819
|
});
|
|
32806
32820
|
};
|
|
32807
32821
|
const Mp4 = () => {
|
|
32822
|
+
const id2 = `clip${uniqueId()}`;
|
|
32808
32823
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32809
32824
|
width: "32px",
|
|
32810
32825
|
height: "32px",
|
|
@@ -32812,7 +32827,7 @@ const Mp4 = () => {
|
|
|
32812
32827
|
fill: "none",
|
|
32813
32828
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32814
32829
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32815
|
-
clipPath:
|
|
32830
|
+
clipPath: `url(#${id2})`,
|
|
32816
32831
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32817
32832
|
d: "M20 1V9H28",
|
|
32818
32833
|
stroke: "#B0CFE0",
|
|
@@ -32848,7 +32863,7 @@ const Mp4 = () => {
|
|
|
32848
32863
|
})]
|
|
32849
32864
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32850
32865
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32851
|
-
id:
|
|
32866
|
+
id: id2,
|
|
32852
32867
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32853
32868
|
width: "32",
|
|
32854
32869
|
height: "32",
|
|
@@ -32859,6 +32874,7 @@ const Mp4 = () => {
|
|
|
32859
32874
|
});
|
|
32860
32875
|
};
|
|
32861
32876
|
const Pdf = () => {
|
|
32877
|
+
const id2 = `clip${uniqueId()}`;
|
|
32862
32878
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32863
32879
|
width: "32px",
|
|
32864
32880
|
height: "32px",
|
|
@@ -32866,7 +32882,7 @@ const Pdf = () => {
|
|
|
32866
32882
|
fill: "none",
|
|
32867
32883
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32868
32884
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32869
|
-
clipPath:
|
|
32885
|
+
clipPath: `url(#${id2})`,
|
|
32870
32886
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32871
32887
|
d: "M20 1V9H28",
|
|
32872
32888
|
stroke: "#B0CFE0",
|
|
@@ -32902,7 +32918,7 @@ const Pdf = () => {
|
|
|
32902
32918
|
})]
|
|
32903
32919
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32904
32920
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32905
|
-
id:
|
|
32921
|
+
id: id2,
|
|
32906
32922
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32907
32923
|
width: "32",
|
|
32908
32924
|
height: "32",
|
|
@@ -32913,6 +32929,7 @@ const Pdf = () => {
|
|
|
32913
32929
|
});
|
|
32914
32930
|
};
|
|
32915
32931
|
const Png = () => {
|
|
32932
|
+
const id2 = `clip${uniqueId()}`;
|
|
32916
32933
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32917
32934
|
width: "32px",
|
|
32918
32935
|
height: "32px",
|
|
@@ -32920,7 +32937,7 @@ const Png = () => {
|
|
|
32920
32937
|
fill: "none",
|
|
32921
32938
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32922
32939
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32923
|
-
clipPath:
|
|
32940
|
+
clipPath: `url(#${id2})`,
|
|
32924
32941
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32925
32942
|
d: "M20 1V9H28",
|
|
32926
32943
|
stroke: "#B0CFE0",
|
|
@@ -32956,7 +32973,7 @@ const Png = () => {
|
|
|
32956
32973
|
})]
|
|
32957
32974
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32958
32975
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32959
|
-
id:
|
|
32976
|
+
id: id2,
|
|
32960
32977
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32961
32978
|
width: "32",
|
|
32962
32979
|
height: "32",
|
|
@@ -32967,6 +32984,7 @@ const Png = () => {
|
|
|
32967
32984
|
});
|
|
32968
32985
|
};
|
|
32969
32986
|
const Ppt = () => {
|
|
32987
|
+
const id2 = `clip${uniqueId()}`;
|
|
32970
32988
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32971
32989
|
width: "32px",
|
|
32972
32990
|
height: "32px",
|
|
@@ -32974,7 +32992,7 @@ const Ppt = () => {
|
|
|
32974
32992
|
fill: "none",
|
|
32975
32993
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32976
32994
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32977
|
-
clipPath:
|
|
32995
|
+
clipPath: `url(#${id2})`,
|
|
32978
32996
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32979
32997
|
d: "M20 1V9H28",
|
|
32980
32998
|
stroke: "#B0CFE0",
|
|
@@ -33010,7 +33028,7 @@ const Ppt = () => {
|
|
|
33010
33028
|
})]
|
|
33011
33029
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33012
33030
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33013
|
-
id:
|
|
33031
|
+
id: id2,
|
|
33014
33032
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33015
33033
|
width: "32",
|
|
33016
33034
|
height: "32",
|
|
@@ -33021,6 +33039,7 @@ const Ppt = () => {
|
|
|
33021
33039
|
});
|
|
33022
33040
|
};
|
|
33023
33041
|
const Pptx = () => {
|
|
33042
|
+
const id2 = `clip${uniqueId()}`;
|
|
33024
33043
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33025
33044
|
width: "32px",
|
|
33026
33045
|
height: "32px",
|
|
@@ -33028,7 +33047,7 @@ const Pptx = () => {
|
|
|
33028
33047
|
fill: "none",
|
|
33029
33048
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33030
33049
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33031
|
-
clipPath:
|
|
33050
|
+
clipPath: `url(#${id2})`,
|
|
33032
33051
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33033
33052
|
d: "M20 1V9H28",
|
|
33034
33053
|
stroke: "#B0CFE0",
|
|
@@ -33067,7 +33086,7 @@ const Pptx = () => {
|
|
|
33067
33086
|
})]
|
|
33068
33087
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33069
33088
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33070
|
-
id:
|
|
33089
|
+
id: id2,
|
|
33071
33090
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33072
33091
|
width: "32",
|
|
33073
33092
|
height: "32",
|
|
@@ -33078,6 +33097,7 @@ const Pptx = () => {
|
|
|
33078
33097
|
});
|
|
33079
33098
|
};
|
|
33080
33099
|
const Wav = () => {
|
|
33100
|
+
const id2 = `clip${uniqueId()}`;
|
|
33081
33101
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33082
33102
|
width: "32px",
|
|
33083
33103
|
height: "32px",
|
|
@@ -33085,7 +33105,7 @@ const Wav = () => {
|
|
|
33085
33105
|
fill: "none",
|
|
33086
33106
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33087
33107
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33088
|
-
clipPath:
|
|
33108
|
+
clipPath: `url(#${id2})`,
|
|
33089
33109
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33090
33110
|
d: "M20 1V9H28",
|
|
33091
33111
|
stroke: "#B0CFE0",
|
|
@@ -33121,7 +33141,7 @@ const Wav = () => {
|
|
|
33121
33141
|
})]
|
|
33122
33142
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33123
33143
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33124
|
-
id:
|
|
33144
|
+
id: id2,
|
|
33125
33145
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33126
33146
|
width: "32",
|
|
33127
33147
|
height: "32",
|
|
@@ -33132,6 +33152,7 @@ const Wav = () => {
|
|
|
33132
33152
|
});
|
|
33133
33153
|
};
|
|
33134
33154
|
const Xls = () => {
|
|
33155
|
+
const id2 = `clip${uniqueId()}`;
|
|
33135
33156
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33136
33157
|
width: "32px",
|
|
33137
33158
|
height: "32px",
|
|
@@ -33139,7 +33160,7 @@ const Xls = () => {
|
|
|
33139
33160
|
fill: "none",
|
|
33140
33161
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33141
33162
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33142
|
-
clipPath:
|
|
33163
|
+
clipPath: `url(#${id2})`,
|
|
33143
33164
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33144
33165
|
d: "M20 1V9H28",
|
|
33145
33166
|
stroke: "#B0CFE0",
|
|
@@ -33175,7 +33196,7 @@ const Xls = () => {
|
|
|
33175
33196
|
})]
|
|
33176
33197
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33177
33198
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33178
|
-
id:
|
|
33199
|
+
id: id2,
|
|
33179
33200
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33180
33201
|
width: "32",
|
|
33181
33202
|
height: "32",
|
|
@@ -33186,6 +33207,7 @@ const Xls = () => {
|
|
|
33186
33207
|
});
|
|
33187
33208
|
};
|
|
33188
33209
|
const Xlsx = () => {
|
|
33210
|
+
const id2 = `clip${uniqueId()}`;
|
|
33189
33211
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33190
33212
|
width: "32px",
|
|
33191
33213
|
height: "32px",
|
|
@@ -33193,7 +33215,7 @@ const Xlsx = () => {
|
|
|
33193
33215
|
fill: "none",
|
|
33194
33216
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33195
33217
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33196
|
-
clipPath:
|
|
33218
|
+
clipPath: `url(#${id2})`,
|
|
33197
33219
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33198
33220
|
d: "M20 1V9H28",
|
|
33199
33221
|
stroke: "#B0CFE0",
|
|
@@ -33232,7 +33254,7 @@ const Xlsx = () => {
|
|
|
33232
33254
|
})]
|
|
33233
33255
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33234
33256
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33235
|
-
id:
|
|
33257
|
+
id: id2,
|
|
33236
33258
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33237
33259
|
width: "32",
|
|
33238
33260
|
height: "32",
|