@eclass/ui-kit 1.46.4 → 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 +73 -43
- 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,
|
|
@@ -32123,12 +32129,14 @@ const LargeBox = ({
|
|
|
32123
32129
|
children: [/* @__PURE__ */ jsxs(Box, {
|
|
32124
32130
|
width: "inherit",
|
|
32125
32131
|
height: "100%",
|
|
32126
|
-
padding: "
|
|
32132
|
+
padding: "16px",
|
|
32127
32133
|
color: "#555555",
|
|
32128
32134
|
gap: "16px",
|
|
32129
32135
|
display: "grid",
|
|
32130
32136
|
children: [/* @__PURE__ */ jsx(Text, {
|
|
32131
32137
|
fontWeight: "700",
|
|
32138
|
+
m: "0px",
|
|
32139
|
+
p: "0px",
|
|
32132
32140
|
children: eventTitle
|
|
32133
32141
|
}), /* @__PURE__ */ jsxs(Box, {
|
|
32134
32142
|
display: "flex",
|
|
@@ -32138,13 +32146,19 @@ const LargeBox = ({
|
|
|
32138
32146
|
color: vars("colors-main-ziggurat")
|
|
32139
32147
|
}), /* @__PURE__ */ jsx(Text, {
|
|
32140
32148
|
fontWeight: "400",
|
|
32149
|
+
m: "0px",
|
|
32150
|
+
p: "0px",
|
|
32141
32151
|
children: startDate
|
|
32142
32152
|
}), /* @__PURE__ */ jsx(Text, {
|
|
32143
32153
|
color: vars("borders-light"),
|
|
32154
|
+
m: "0px",
|
|
32155
|
+
p: "0px",
|
|
32144
32156
|
children: "|"
|
|
32145
32157
|
}), /* @__PURE__ */ jsx(Clock, {
|
|
32146
32158
|
color: vars("colors-main-ziggurat")
|
|
32147
32159
|
}), /* @__PURE__ */ jsx(Text, {
|
|
32160
|
+
m: "0px",
|
|
32161
|
+
p: "0px",
|
|
32148
32162
|
children: startTime
|
|
32149
32163
|
})]
|
|
32150
32164
|
})]
|
|
@@ -32275,6 +32289,7 @@ const Eventos = ({
|
|
|
32275
32289
|
}
|
|
32276
32290
|
};
|
|
32277
32291
|
const Avi = () => {
|
|
32292
|
+
const id2 = `clip${uniqueId()}`;
|
|
32278
32293
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32279
32294
|
width: "32px",
|
|
32280
32295
|
height: "32px",
|
|
@@ -32282,7 +32297,7 @@ const Avi = () => {
|
|
|
32282
32297
|
fill: "none",
|
|
32283
32298
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32284
32299
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32285
|
-
clipPath:
|
|
32300
|
+
clipPath: `url(#${id2})`,
|
|
32286
32301
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32287
32302
|
d: "M20 1V9H28",
|
|
32288
32303
|
stroke: "#B0CFE0",
|
|
@@ -32318,7 +32333,7 @@ const Avi = () => {
|
|
|
32318
32333
|
})]
|
|
32319
32334
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32320
32335
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32321
|
-
id:
|
|
32336
|
+
id: id2,
|
|
32322
32337
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32323
32338
|
width: "32",
|
|
32324
32339
|
height: "32",
|
|
@@ -32329,6 +32344,7 @@ const Avi = () => {
|
|
|
32329
32344
|
});
|
|
32330
32345
|
};
|
|
32331
32346
|
const Csv = () => {
|
|
32347
|
+
const id2 = `clip${uniqueId()}`;
|
|
32332
32348
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32333
32349
|
width: "32px",
|
|
32334
32350
|
height: "32px",
|
|
@@ -32336,7 +32352,7 @@ const Csv = () => {
|
|
|
32336
32352
|
fill: "none",
|
|
32337
32353
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32338
32354
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32339
|
-
clipPath:
|
|
32355
|
+
clipPath: `url(#${id2})`,
|
|
32340
32356
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32341
32357
|
d: "M20 1V9H28",
|
|
32342
32358
|
stroke: "#B0CFE0",
|
|
@@ -32372,7 +32388,7 @@ const Csv = () => {
|
|
|
32372
32388
|
})]
|
|
32373
32389
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32374
32390
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32375
|
-
id:
|
|
32391
|
+
id: id2,
|
|
32376
32392
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32377
32393
|
width: "32",
|
|
32378
32394
|
height: "32",
|
|
@@ -32383,6 +32399,7 @@ const Csv = () => {
|
|
|
32383
32399
|
});
|
|
32384
32400
|
};
|
|
32385
32401
|
const Doc = () => {
|
|
32402
|
+
const id2 = `clip${uniqueId()}`;
|
|
32386
32403
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32387
32404
|
width: "32px",
|
|
32388
32405
|
height: "32px",
|
|
@@ -32390,7 +32407,7 @@ const Doc = () => {
|
|
|
32390
32407
|
fill: "none",
|
|
32391
32408
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32392
32409
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32393
|
-
clipPath:
|
|
32410
|
+
clipPath: `url(#${id2})`,
|
|
32394
32411
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32395
32412
|
d: "M20 1V9H28",
|
|
32396
32413
|
stroke: "#B0CFE0",
|
|
@@ -32426,7 +32443,7 @@ const Doc = () => {
|
|
|
32426
32443
|
})]
|
|
32427
32444
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32428
32445
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32429
|
-
id:
|
|
32446
|
+
id: id2,
|
|
32430
32447
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32431
32448
|
width: "32",
|
|
32432
32449
|
height: "32",
|
|
@@ -32437,6 +32454,7 @@ const Doc = () => {
|
|
|
32437
32454
|
});
|
|
32438
32455
|
};
|
|
32439
32456
|
const Docx = () => {
|
|
32457
|
+
const id2 = `clip${uniqueId()}`;
|
|
32440
32458
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32441
32459
|
width: "32px",
|
|
32442
32460
|
height: "32px",
|
|
@@ -32444,7 +32462,7 @@ const Docx = () => {
|
|
|
32444
32462
|
fill: "none",
|
|
32445
32463
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32446
32464
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32447
|
-
clipPath:
|
|
32465
|
+
clipPath: `url(#${id2})`,
|
|
32448
32466
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32449
32467
|
d: "M20 1V9H28",
|
|
32450
32468
|
stroke: "#B0CFE0",
|
|
@@ -32483,7 +32501,7 @@ const Docx = () => {
|
|
|
32483
32501
|
})]
|
|
32484
32502
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32485
32503
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32486
|
-
id:
|
|
32504
|
+
id: id2,
|
|
32487
32505
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32488
32506
|
width: "32",
|
|
32489
32507
|
height: "32",
|
|
@@ -32494,6 +32512,7 @@ const Docx = () => {
|
|
|
32494
32512
|
});
|
|
32495
32513
|
};
|
|
32496
32514
|
const Gif = () => {
|
|
32515
|
+
const id2 = `clip${uniqueId()}`;
|
|
32497
32516
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32498
32517
|
width: "32px",
|
|
32499
32518
|
height: "32px",
|
|
@@ -32501,7 +32520,7 @@ const Gif = () => {
|
|
|
32501
32520
|
fill: "none",
|
|
32502
32521
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32503
32522
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32504
|
-
clipPath:
|
|
32523
|
+
clipPath: `url(#${id2})`,
|
|
32505
32524
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32506
32525
|
d: "M20 1V9H28",
|
|
32507
32526
|
stroke: "#B0CFE0",
|
|
@@ -32537,7 +32556,7 @@ const Gif = () => {
|
|
|
32537
32556
|
})]
|
|
32538
32557
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32539
32558
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32540
|
-
id:
|
|
32559
|
+
id: id2,
|
|
32541
32560
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32542
32561
|
width: "32",
|
|
32543
32562
|
height: "32",
|
|
@@ -32590,6 +32609,7 @@ const Icons = ({
|
|
|
32590
32609
|
}
|
|
32591
32610
|
};
|
|
32592
32611
|
const Jpeg = () => {
|
|
32612
|
+
const id2 = `clip${uniqueId()}`;
|
|
32593
32613
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32594
32614
|
width: "32px",
|
|
32595
32615
|
height: "32px",
|
|
@@ -32597,7 +32617,7 @@ const Jpeg = () => {
|
|
|
32597
32617
|
fill: "none",
|
|
32598
32618
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32599
32619
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32600
|
-
clipPath:
|
|
32620
|
+
clipPath: `url(#${id2})`,
|
|
32601
32621
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32602
32622
|
d: "M20 1V9H28",
|
|
32603
32623
|
stroke: "#B0CFE0",
|
|
@@ -32636,7 +32656,7 @@ const Jpeg = () => {
|
|
|
32636
32656
|
})]
|
|
32637
32657
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32638
32658
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32639
|
-
id:
|
|
32659
|
+
id: id2,
|
|
32640
32660
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32641
32661
|
width: "32",
|
|
32642
32662
|
height: "32",
|
|
@@ -32689,6 +32709,7 @@ const Jpg = () => {
|
|
|
32689
32709
|
});
|
|
32690
32710
|
};
|
|
32691
32711
|
const Mkv = () => {
|
|
32712
|
+
const id2 = `clip${uniqueId()}`;
|
|
32692
32713
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32693
32714
|
width: "32px",
|
|
32694
32715
|
height: "32px",
|
|
@@ -32696,7 +32717,7 @@ const Mkv = () => {
|
|
|
32696
32717
|
fill: "none",
|
|
32697
32718
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32698
32719
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32699
|
-
clipPath:
|
|
32720
|
+
clipPath: `url(#${id2})`,
|
|
32700
32721
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32701
32722
|
d: "M20 1V9H28",
|
|
32702
32723
|
stroke: "#B0CFE0",
|
|
@@ -32732,7 +32753,7 @@ const Mkv = () => {
|
|
|
32732
32753
|
})]
|
|
32733
32754
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32734
32755
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32735
|
-
id:
|
|
32756
|
+
id: id2,
|
|
32736
32757
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32737
32758
|
width: "32",
|
|
32738
32759
|
height: "32",
|
|
@@ -32743,6 +32764,7 @@ const Mkv = () => {
|
|
|
32743
32764
|
});
|
|
32744
32765
|
};
|
|
32745
32766
|
const Mp3 = () => {
|
|
32767
|
+
const id2 = `clip${uniqueId()}`;
|
|
32746
32768
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32747
32769
|
width: "32px",
|
|
32748
32770
|
height: "32px",
|
|
@@ -32750,7 +32772,7 @@ const Mp3 = () => {
|
|
|
32750
32772
|
fill: "none",
|
|
32751
32773
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32752
32774
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32753
|
-
clipPath:
|
|
32775
|
+
clipPath: `url(#${id2})`,
|
|
32754
32776
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32755
32777
|
d: "M20 1V9H28",
|
|
32756
32778
|
stroke: "#B0CFE0",
|
|
@@ -32786,7 +32808,7 @@ const Mp3 = () => {
|
|
|
32786
32808
|
})]
|
|
32787
32809
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32788
32810
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32789
|
-
id:
|
|
32811
|
+
id: id2,
|
|
32790
32812
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32791
32813
|
width: "32",
|
|
32792
32814
|
height: "32",
|
|
@@ -32797,6 +32819,7 @@ const Mp3 = () => {
|
|
|
32797
32819
|
});
|
|
32798
32820
|
};
|
|
32799
32821
|
const Mp4 = () => {
|
|
32822
|
+
const id2 = `clip${uniqueId()}`;
|
|
32800
32823
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32801
32824
|
width: "32px",
|
|
32802
32825
|
height: "32px",
|
|
@@ -32804,7 +32827,7 @@ const Mp4 = () => {
|
|
|
32804
32827
|
fill: "none",
|
|
32805
32828
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32806
32829
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32807
|
-
clipPath:
|
|
32830
|
+
clipPath: `url(#${id2})`,
|
|
32808
32831
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32809
32832
|
d: "M20 1V9H28",
|
|
32810
32833
|
stroke: "#B0CFE0",
|
|
@@ -32840,7 +32863,7 @@ const Mp4 = () => {
|
|
|
32840
32863
|
})]
|
|
32841
32864
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32842
32865
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32843
|
-
id:
|
|
32866
|
+
id: id2,
|
|
32844
32867
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32845
32868
|
width: "32",
|
|
32846
32869
|
height: "32",
|
|
@@ -32851,6 +32874,7 @@ const Mp4 = () => {
|
|
|
32851
32874
|
});
|
|
32852
32875
|
};
|
|
32853
32876
|
const Pdf = () => {
|
|
32877
|
+
const id2 = `clip${uniqueId()}`;
|
|
32854
32878
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32855
32879
|
width: "32px",
|
|
32856
32880
|
height: "32px",
|
|
@@ -32858,7 +32882,7 @@ const Pdf = () => {
|
|
|
32858
32882
|
fill: "none",
|
|
32859
32883
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32860
32884
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32861
|
-
clipPath:
|
|
32885
|
+
clipPath: `url(#${id2})`,
|
|
32862
32886
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32863
32887
|
d: "M20 1V9H28",
|
|
32864
32888
|
stroke: "#B0CFE0",
|
|
@@ -32894,7 +32918,7 @@ const Pdf = () => {
|
|
|
32894
32918
|
})]
|
|
32895
32919
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32896
32920
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32897
|
-
id:
|
|
32921
|
+
id: id2,
|
|
32898
32922
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32899
32923
|
width: "32",
|
|
32900
32924
|
height: "32",
|
|
@@ -32905,6 +32929,7 @@ const Pdf = () => {
|
|
|
32905
32929
|
});
|
|
32906
32930
|
};
|
|
32907
32931
|
const Png = () => {
|
|
32932
|
+
const id2 = `clip${uniqueId()}`;
|
|
32908
32933
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32909
32934
|
width: "32px",
|
|
32910
32935
|
height: "32px",
|
|
@@ -32912,7 +32937,7 @@ const Png = () => {
|
|
|
32912
32937
|
fill: "none",
|
|
32913
32938
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32914
32939
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32915
|
-
clipPath:
|
|
32940
|
+
clipPath: `url(#${id2})`,
|
|
32916
32941
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32917
32942
|
d: "M20 1V9H28",
|
|
32918
32943
|
stroke: "#B0CFE0",
|
|
@@ -32948,7 +32973,7 @@ const Png = () => {
|
|
|
32948
32973
|
})]
|
|
32949
32974
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32950
32975
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32951
|
-
id:
|
|
32976
|
+
id: id2,
|
|
32952
32977
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32953
32978
|
width: "32",
|
|
32954
32979
|
height: "32",
|
|
@@ -32959,6 +32984,7 @@ const Png = () => {
|
|
|
32959
32984
|
});
|
|
32960
32985
|
};
|
|
32961
32986
|
const Ppt = () => {
|
|
32987
|
+
const id2 = `clip${uniqueId()}`;
|
|
32962
32988
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32963
32989
|
width: "32px",
|
|
32964
32990
|
height: "32px",
|
|
@@ -32966,7 +32992,7 @@ const Ppt = () => {
|
|
|
32966
32992
|
fill: "none",
|
|
32967
32993
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32968
32994
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32969
|
-
clipPath:
|
|
32995
|
+
clipPath: `url(#${id2})`,
|
|
32970
32996
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32971
32997
|
d: "M20 1V9H28",
|
|
32972
32998
|
stroke: "#B0CFE0",
|
|
@@ -33002,7 +33028,7 @@ const Ppt = () => {
|
|
|
33002
33028
|
})]
|
|
33003
33029
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33004
33030
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33005
|
-
id:
|
|
33031
|
+
id: id2,
|
|
33006
33032
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33007
33033
|
width: "32",
|
|
33008
33034
|
height: "32",
|
|
@@ -33013,6 +33039,7 @@ const Ppt = () => {
|
|
|
33013
33039
|
});
|
|
33014
33040
|
};
|
|
33015
33041
|
const Pptx = () => {
|
|
33042
|
+
const id2 = `clip${uniqueId()}`;
|
|
33016
33043
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33017
33044
|
width: "32px",
|
|
33018
33045
|
height: "32px",
|
|
@@ -33020,7 +33047,7 @@ const Pptx = () => {
|
|
|
33020
33047
|
fill: "none",
|
|
33021
33048
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33022
33049
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33023
|
-
clipPath:
|
|
33050
|
+
clipPath: `url(#${id2})`,
|
|
33024
33051
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33025
33052
|
d: "M20 1V9H28",
|
|
33026
33053
|
stroke: "#B0CFE0",
|
|
@@ -33059,7 +33086,7 @@ const Pptx = () => {
|
|
|
33059
33086
|
})]
|
|
33060
33087
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33061
33088
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33062
|
-
id:
|
|
33089
|
+
id: id2,
|
|
33063
33090
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33064
33091
|
width: "32",
|
|
33065
33092
|
height: "32",
|
|
@@ -33070,6 +33097,7 @@ const Pptx = () => {
|
|
|
33070
33097
|
});
|
|
33071
33098
|
};
|
|
33072
33099
|
const Wav = () => {
|
|
33100
|
+
const id2 = `clip${uniqueId()}`;
|
|
33073
33101
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33074
33102
|
width: "32px",
|
|
33075
33103
|
height: "32px",
|
|
@@ -33077,7 +33105,7 @@ const Wav = () => {
|
|
|
33077
33105
|
fill: "none",
|
|
33078
33106
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33079
33107
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33080
|
-
clipPath:
|
|
33108
|
+
clipPath: `url(#${id2})`,
|
|
33081
33109
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33082
33110
|
d: "M20 1V9H28",
|
|
33083
33111
|
stroke: "#B0CFE0",
|
|
@@ -33113,7 +33141,7 @@ const Wav = () => {
|
|
|
33113
33141
|
})]
|
|
33114
33142
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33115
33143
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33116
|
-
id:
|
|
33144
|
+
id: id2,
|
|
33117
33145
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33118
33146
|
width: "32",
|
|
33119
33147
|
height: "32",
|
|
@@ -33124,6 +33152,7 @@ const Wav = () => {
|
|
|
33124
33152
|
});
|
|
33125
33153
|
};
|
|
33126
33154
|
const Xls = () => {
|
|
33155
|
+
const id2 = `clip${uniqueId()}`;
|
|
33127
33156
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33128
33157
|
width: "32px",
|
|
33129
33158
|
height: "32px",
|
|
@@ -33131,7 +33160,7 @@ const Xls = () => {
|
|
|
33131
33160
|
fill: "none",
|
|
33132
33161
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33133
33162
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33134
|
-
clipPath:
|
|
33163
|
+
clipPath: `url(#${id2})`,
|
|
33135
33164
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33136
33165
|
d: "M20 1V9H28",
|
|
33137
33166
|
stroke: "#B0CFE0",
|
|
@@ -33167,7 +33196,7 @@ const Xls = () => {
|
|
|
33167
33196
|
})]
|
|
33168
33197
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33169
33198
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33170
|
-
id:
|
|
33199
|
+
id: id2,
|
|
33171
33200
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33172
33201
|
width: "32",
|
|
33173
33202
|
height: "32",
|
|
@@ -33178,6 +33207,7 @@ const Xls = () => {
|
|
|
33178
33207
|
});
|
|
33179
33208
|
};
|
|
33180
33209
|
const Xlsx = () => {
|
|
33210
|
+
const id2 = `clip${uniqueId()}`;
|
|
33181
33211
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33182
33212
|
width: "32px",
|
|
33183
33213
|
height: "32px",
|
|
@@ -33185,7 +33215,7 @@ const Xlsx = () => {
|
|
|
33185
33215
|
fill: "none",
|
|
33186
33216
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33187
33217
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33188
|
-
clipPath:
|
|
33218
|
+
clipPath: `url(#${id2})`,
|
|
33189
33219
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33190
33220
|
d: "M20 1V9H28",
|
|
33191
33221
|
stroke: "#B0CFE0",
|
|
@@ -33224,7 +33254,7 @@ const Xlsx = () => {
|
|
|
33224
33254
|
})]
|
|
33225
33255
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33226
33256
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33227
|
-
id:
|
|
33257
|
+
id: id2,
|
|
33228
33258
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33229
33259
|
width: "32",
|
|
33230
33260
|
height: "32",
|