@mirohq/design-system-icons 0.2.3-colors.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +593 -18
- package/dist/main.js.map +1 -1
- package/dist/module.js +572 -19
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +119 -141
- package/package.json +4 -4
- package/react/arrow-down.tsx +1 -1
- package/react/arrow-fat-right.tsx +32 -0
- package/react/arrow-up.tsx +1 -1
- package/react/chat.tsx +32 -0
- package/react/circle-motion-x.tsx +33 -0
- package/react/circle.tsx +32 -0
- package/react/exclamation-point-circle.tsx +2 -2
- package/react/funnel.tsx +33 -0
- package/react/index.ts +22 -0
- package/react/information-mark-circle.tsx +1 -1
- package/react/line-diagonal.tsx +33 -0
- package/react/microphone-slash.tsx +33 -0
- package/react/microphone.tsx +33 -0
- package/react/parallelogram.tsx +32 -0
- package/react/pause-circle.tsx +33 -0
- package/react/play-circle.tsx +26 -0
- package/react/playback-speed-circle.tsx +31 -0
- package/react/rhombus.tsx +32 -0
- package/react/shapes.tsx +33 -0
- package/react/sliders-x.tsx +33 -0
- package/react/sliders-y.tsx +33 -0
- package/react/speaker-cross.tsx +33 -0
- package/react/speaker-high.tsx +33 -0
- package/react/square-rounded.tsx +32 -0
- package/react/square.tsx +32 -0
- package/react/stop-circle.tsx +25 -0
- package/react/triangle.tsx +32 -0
- package/react/wallet.tsx +1 -1
- package/svg/24/arrow-down.svg +1 -1
- package/svg/24/arrow-fat-right.svg +1 -0
- package/svg/24/arrow-up.svg +1 -1
- package/svg/24/chat.svg +1 -0
- package/svg/24/circle-motion-x.svg +1 -0
- package/svg/24/circle.svg +1 -0
- package/svg/24/exclamation-point-circle.svg +1 -1
- package/svg/24/funnel.svg +1 -0
- package/svg/24/information-mark-circle.svg +1 -1
- package/svg/24/line-diagonal.svg +1 -0
- package/svg/24/microphone-slash.svg +1 -0
- package/svg/24/microphone.svg +1 -0
- package/svg/24/parallelogram.svg +1 -0
- package/svg/24/pause-circle.svg +1 -0
- package/svg/24/play-circle.svg +1 -0
- package/svg/24/playback-speed-circle.svg +1 -0
- package/svg/24/rhombus.svg +1 -0
- package/svg/24/shapes.svg +1 -0
- package/svg/24/sliders-x.svg +1 -0
- package/svg/24/sliders-y.svg +1 -0
- package/svg/24/speaker-cross.svg +1 -0
- package/svg/24/speaker-high.svg +1 -0
- package/svg/24/square-rounded.svg +1 -0
- package/svg/24/square.svg +1 -0
- package/svg/24/stop-circle.svg +1 -0
- package/svg/24/triangle.svg +1 -0
- package/svg/24/wallet.svg +1 -1
- package/svg/meta.json +143 -0
package/dist/main.js
CHANGED
|
@@ -102,11 +102,36 @@ const IconArrowDown = React.forwardRef(
|
|
|
102
102
|
stroke: "currentColor",
|
|
103
103
|
strokeLinecap: "round",
|
|
104
104
|
strokeWidth: 2,
|
|
105
|
-
d: "M12
|
|
105
|
+
d: "M12.205 3.205v17m-7-6.41 7 7 7-7"
|
|
106
106
|
})
|
|
107
107
|
)
|
|
108
108
|
);
|
|
109
109
|
|
|
110
|
+
const IconArrowFatRight = React.forwardRef(
|
|
111
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
112
|
+
StyledIcon,
|
|
113
|
+
{
|
|
114
|
+
...props,
|
|
115
|
+
size,
|
|
116
|
+
viewBox: "0 0 24 24",
|
|
117
|
+
fill: "none",
|
|
118
|
+
ref: forwardRef2
|
|
119
|
+
},
|
|
120
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
121
|
+
clipPath: "url(#a)"
|
|
122
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
123
|
+
stroke: "currentColor",
|
|
124
|
+
strokeWidth: 2,
|
|
125
|
+
d: "M11 7H3.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25H11v3.937c0 .216.257.33.418.185L21.5 12 11.418 2.878a.25.25 0 0 0-.418.185V7Z"
|
|
126
|
+
})),
|
|
127
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
128
|
+
id: "a"
|
|
129
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
130
|
+
d: "M0 0h24v24H0z"
|
|
131
|
+
})))
|
|
132
|
+
)
|
|
133
|
+
);
|
|
134
|
+
|
|
110
135
|
const IconArrowLeft = React.forwardRef(
|
|
111
136
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
112
137
|
StyledIcon,
|
|
@@ -197,7 +222,7 @@ const IconArrowUp = React.forwardRef(
|
|
|
197
222
|
stroke: "currentColor",
|
|
198
223
|
strokeLinecap: "round",
|
|
199
224
|
strokeWidth: 2,
|
|
200
|
-
d: "M12
|
|
225
|
+
d: "M12.205 20.795v-17m7 6.41-7-7-7 7"
|
|
201
226
|
})
|
|
202
227
|
)
|
|
203
228
|
);
|
|
@@ -221,6 +246,31 @@ const IconBarThree = React.forwardRef(
|
|
|
221
246
|
)
|
|
222
247
|
);
|
|
223
248
|
|
|
249
|
+
const IconChat = React.forwardRef(
|
|
250
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
251
|
+
StyledIcon,
|
|
252
|
+
{
|
|
253
|
+
...props,
|
|
254
|
+
size,
|
|
255
|
+
viewBox: "0 0 24 24",
|
|
256
|
+
fill: "none",
|
|
257
|
+
ref: forwardRef2
|
|
258
|
+
},
|
|
259
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
260
|
+
clipPath: "url(#a)"
|
|
261
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
262
|
+
stroke: "currentColor",
|
|
263
|
+
strokeWidth: 2,
|
|
264
|
+
d: "m12 18.5-3.847 2.404A.1.1 0 0 1 8 20.82V18.5H5.5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10.5a2 2 0 0 1-2 2H12Z"
|
|
265
|
+
})),
|
|
266
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
267
|
+
id: "a"
|
|
268
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
269
|
+
d: "M0 0h24v24H0z"
|
|
270
|
+
})))
|
|
271
|
+
)
|
|
272
|
+
);
|
|
273
|
+
|
|
224
274
|
const IconCheckMark = React.forwardRef(
|
|
225
275
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
226
276
|
StyledIcon,
|
|
@@ -316,6 +366,57 @@ const IconChevronUp = React.forwardRef(
|
|
|
316
366
|
)
|
|
317
367
|
);
|
|
318
368
|
|
|
369
|
+
const IconCircleMotionX = React.forwardRef(
|
|
370
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
371
|
+
StyledIcon,
|
|
372
|
+
{
|
|
373
|
+
...props,
|
|
374
|
+
size,
|
|
375
|
+
viewBox: "0 0 24 24",
|
|
376
|
+
fill: "none",
|
|
377
|
+
ref: forwardRef2
|
|
378
|
+
},
|
|
379
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
380
|
+
clipPath: "url(#a)"
|
|
381
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
382
|
+
stroke: "currentColor",
|
|
383
|
+
strokeLinecap: "round",
|
|
384
|
+
strokeWidth: 2,
|
|
385
|
+
d: "M3.5 6H5m3 0h7m0 0a6 6 0 1 0 0 12 6 6 0 0 0 0-12ZM2.5 10H9m-6 4h1m3 0h2m-5 4h10.5"
|
|
386
|
+
})),
|
|
387
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
388
|
+
id: "a"
|
|
389
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
390
|
+
d: "M0 0h24v24H0z"
|
|
391
|
+
})))
|
|
392
|
+
)
|
|
393
|
+
);
|
|
394
|
+
|
|
395
|
+
const IconCircle = React.forwardRef(
|
|
396
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
397
|
+
StyledIcon,
|
|
398
|
+
{
|
|
399
|
+
...props,
|
|
400
|
+
size,
|
|
401
|
+
viewBox: "0 0 24 24",
|
|
402
|
+
fill: "none",
|
|
403
|
+
ref: forwardRef2
|
|
404
|
+
},
|
|
405
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
406
|
+
clipPath: "url(#a)"
|
|
407
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
408
|
+
stroke: "currentColor",
|
|
409
|
+
strokeWidth: 2,
|
|
410
|
+
d: "M20.5 12c0 4.97-3.53 8.5-8.5 8.5-4.97 0-8.5-3.53-8.5-8.5 0-4.97 3.53-8.5 8.5-8.5 4.97 0 8.5 3.53 8.5 8.5Z"
|
|
411
|
+
})),
|
|
412
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
413
|
+
id: "a"
|
|
414
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
415
|
+
d: "M0 0h24v24H0z"
|
|
416
|
+
})))
|
|
417
|
+
)
|
|
418
|
+
);
|
|
419
|
+
|
|
319
420
|
const IconCog = React.forwardRef(
|
|
320
421
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
321
422
|
StyledIcon,
|
|
@@ -410,21 +511,45 @@ const IconExclamationPointCircle = React.forwardRef(
|
|
|
410
511
|
fill: "none",
|
|
411
512
|
ref: forwardRef2
|
|
412
513
|
},
|
|
413
|
-
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
414
|
-
cx: 12,
|
|
415
|
-
cy: 15.5,
|
|
416
|
-
r: 1,
|
|
417
|
-
fill: "currentColor"
|
|
418
|
-
}),
|
|
419
514
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
420
515
|
stroke: "currentColor",
|
|
421
516
|
strokeLinecap: "round",
|
|
422
517
|
strokeWidth: 2,
|
|
423
518
|
d: "M12 8v4m9 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5 3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"
|
|
519
|
+
}),
|
|
520
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
521
|
+
fill: "currentColor",
|
|
522
|
+
d: "M13 15.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
|
|
424
523
|
})
|
|
425
524
|
)
|
|
426
525
|
);
|
|
427
526
|
|
|
527
|
+
const IconFunnel = React.forwardRef(
|
|
528
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
529
|
+
StyledIcon,
|
|
530
|
+
{
|
|
531
|
+
...props,
|
|
532
|
+
size,
|
|
533
|
+
viewBox: "0 0 24 24",
|
|
534
|
+
fill: "none",
|
|
535
|
+
ref: forwardRef2
|
|
536
|
+
},
|
|
537
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
538
|
+
clipPath: "url(#a)"
|
|
539
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
540
|
+
stroke: "currentColor",
|
|
541
|
+
strokeLinecap: "round",
|
|
542
|
+
strokeWidth: 2,
|
|
543
|
+
d: "M19.772 4H4.228a.1.1 0 0 0-.073.168L10 10.5V19l3.447-1.724a1 1 0 0 0 .553-.894V10.5l5.845-6.332A.1.1 0 0 0 19.772 4Z"
|
|
544
|
+
})),
|
|
545
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
546
|
+
id: "a"
|
|
547
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
548
|
+
d: "M0 0h24v24H0z"
|
|
549
|
+
})))
|
|
550
|
+
)
|
|
551
|
+
);
|
|
552
|
+
|
|
428
553
|
const IconGlobe = React.forwardRef(
|
|
429
554
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
430
555
|
StyledIcon,
|
|
@@ -471,11 +596,9 @@ const IconInformationMarkCircle = React.forwardRef(
|
|
|
471
596
|
fill: "none",
|
|
472
597
|
ref: forwardRef2
|
|
473
598
|
},
|
|
474
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
r: 1,
|
|
478
|
-
fill: "currentColor"
|
|
599
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
600
|
+
fill: "currentColor",
|
|
601
|
+
d: "M13 8.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
|
|
479
602
|
}),
|
|
480
603
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
481
604
|
stroke: "currentColor",
|
|
@@ -486,6 +609,32 @@ const IconInformationMarkCircle = React.forwardRef(
|
|
|
486
609
|
)
|
|
487
610
|
);
|
|
488
611
|
|
|
612
|
+
const IconLineDiagonal = React.forwardRef(
|
|
613
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
614
|
+
StyledIcon,
|
|
615
|
+
{
|
|
616
|
+
...props,
|
|
617
|
+
size,
|
|
618
|
+
viewBox: "0 0 24 24",
|
|
619
|
+
fill: "none",
|
|
620
|
+
ref: forwardRef2
|
|
621
|
+
},
|
|
622
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
623
|
+
clipPath: "url(#a)"
|
|
624
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
625
|
+
stroke: "currentColor",
|
|
626
|
+
strokeLinecap: "round",
|
|
627
|
+
strokeWidth: 2,
|
|
628
|
+
d: "M4 20 20 4"
|
|
629
|
+
})),
|
|
630
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
631
|
+
id: "a"
|
|
632
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
633
|
+
d: "M0 0h24v24H0z"
|
|
634
|
+
})))
|
|
635
|
+
)
|
|
636
|
+
);
|
|
637
|
+
|
|
489
638
|
const IconLink = React.forwardRef(
|
|
490
639
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
491
640
|
StyledIcon,
|
|
@@ -574,6 +723,58 @@ const IconMagnifyingGlass = React.forwardRef(
|
|
|
574
723
|
)
|
|
575
724
|
);
|
|
576
725
|
|
|
726
|
+
const IconMicrophoneSlash = React.forwardRef(
|
|
727
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
728
|
+
StyledIcon,
|
|
729
|
+
{
|
|
730
|
+
...props,
|
|
731
|
+
size,
|
|
732
|
+
viewBox: "0 0 24 24",
|
|
733
|
+
fill: "none",
|
|
734
|
+
ref: forwardRef2
|
|
735
|
+
},
|
|
736
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
737
|
+
clipPath: "url(#a)"
|
|
738
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
739
|
+
stroke: "currentColor",
|
|
740
|
+
strokeLinecap: "round",
|
|
741
|
+
strokeWidth: 2,
|
|
742
|
+
d: "M19 8v3a7 7 0 0 1-7 7m0 0v3m0-3a6.984 6.984 0 0 1-5.284-2.409M15 7v4a3 3 0 0 1-5.387 1.818M15 7 4 18M15 7l4-4M5 8v3c0 .34.024.673.07 1M9 7.5V6a3 3 0 0 1 4.5-2.599"
|
|
743
|
+
})),
|
|
744
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
745
|
+
id: "a"
|
|
746
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
747
|
+
d: "M0 0h24v24H0z"
|
|
748
|
+
})))
|
|
749
|
+
)
|
|
750
|
+
);
|
|
751
|
+
|
|
752
|
+
const IconMicrophone = React.forwardRef(
|
|
753
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
754
|
+
StyledIcon,
|
|
755
|
+
{
|
|
756
|
+
...props,
|
|
757
|
+
size,
|
|
758
|
+
viewBox: "0 0 24 24",
|
|
759
|
+
fill: "none",
|
|
760
|
+
ref: forwardRef2
|
|
761
|
+
},
|
|
762
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
763
|
+
clipPath: "url(#a)"
|
|
764
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
765
|
+
stroke: "currentColor",
|
|
766
|
+
strokeLinecap: "round",
|
|
767
|
+
strokeWidth: 2,
|
|
768
|
+
d: "M5 8v3a7 7 0 0 0 7 7m7-10v3a7 7 0 0 1-7 7m0 0v3m3-15v5a3 3 0 1 1-6 0V6a3 3 0 1 1 6 0Z"
|
|
769
|
+
})),
|
|
770
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
771
|
+
id: "a"
|
|
772
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
773
|
+
d: "M0 0h24v24H0z"
|
|
774
|
+
})))
|
|
775
|
+
)
|
|
776
|
+
);
|
|
777
|
+
|
|
577
778
|
const IconMinus = React.forwardRef(
|
|
578
779
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
579
780
|
StyledIcon,
|
|
@@ -593,6 +794,57 @@ const IconMinus = React.forwardRef(
|
|
|
593
794
|
)
|
|
594
795
|
);
|
|
595
796
|
|
|
797
|
+
const IconParallelogram = React.forwardRef(
|
|
798
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
799
|
+
StyledIcon,
|
|
800
|
+
{
|
|
801
|
+
...props,
|
|
802
|
+
size,
|
|
803
|
+
viewBox: "0 0 24 24",
|
|
804
|
+
fill: "none",
|
|
805
|
+
ref: forwardRef2
|
|
806
|
+
},
|
|
807
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
808
|
+
clipPath: "url(#a)"
|
|
809
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
810
|
+
stroke: "currentColor",
|
|
811
|
+
strokeWidth: 2,
|
|
812
|
+
d: "M21.68 4H6.195a.25.25 0 0 0-.242.19l-3.875 15.5a.25.25 0 0 0 .242.31h15.485a.25.25 0 0 0 .242-.19l3.875-15.5A.25.25 0 0 0 21.68 4Z"
|
|
813
|
+
})),
|
|
814
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
815
|
+
id: "a"
|
|
816
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
817
|
+
d: "M0 0h24v24H0z"
|
|
818
|
+
})))
|
|
819
|
+
)
|
|
820
|
+
);
|
|
821
|
+
|
|
822
|
+
const IconPauseCircle = React.forwardRef(
|
|
823
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
824
|
+
StyledIcon,
|
|
825
|
+
{
|
|
826
|
+
...props,
|
|
827
|
+
size,
|
|
828
|
+
viewBox: "0 0 24 24",
|
|
829
|
+
fill: "none",
|
|
830
|
+
ref: forwardRef2
|
|
831
|
+
},
|
|
832
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
833
|
+
clipPath: "url(#a)"
|
|
834
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
835
|
+
stroke: "currentColor",
|
|
836
|
+
strokeLinecap: "round",
|
|
837
|
+
strokeWidth: 2,
|
|
838
|
+
d: "M13.889 9.167v5.666M10.11 9.167v5.666M20.5 12a8.5 8.5 0 1 1-17 0 8.5 8.5 0 0 1 17 0Z"
|
|
839
|
+
})),
|
|
840
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
841
|
+
id: "a"
|
|
842
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
843
|
+
d: "M0 0h24v24H0z"
|
|
844
|
+
})))
|
|
845
|
+
)
|
|
846
|
+
);
|
|
847
|
+
|
|
596
848
|
const IconPlaceholder = React.forwardRef(
|
|
597
849
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
598
850
|
StyledIcon,
|
|
@@ -612,6 +864,55 @@ const IconPlaceholder = React.forwardRef(
|
|
|
612
864
|
)
|
|
613
865
|
);
|
|
614
866
|
|
|
867
|
+
const IconPlayCircle = React.forwardRef(
|
|
868
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
869
|
+
StyledIcon,
|
|
870
|
+
{
|
|
871
|
+
...props,
|
|
872
|
+
size,
|
|
873
|
+
viewBox: "0 0 24 24",
|
|
874
|
+
fill: "none",
|
|
875
|
+
ref: forwardRef2
|
|
876
|
+
},
|
|
877
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
878
|
+
cx: 12,
|
|
879
|
+
cy: 12,
|
|
880
|
+
r: 8.5,
|
|
881
|
+
stroke: "currentColor",
|
|
882
|
+
strokeWidth: 2
|
|
883
|
+
}),
|
|
884
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
885
|
+
fill: "currentColor",
|
|
886
|
+
stroke: "currentColor",
|
|
887
|
+
d: "M15.099 12 10.5 15.066V8.934L15.099 12Z"
|
|
888
|
+
})
|
|
889
|
+
)
|
|
890
|
+
);
|
|
891
|
+
|
|
892
|
+
const IconPlaybackSpeedCircle = React.forwardRef(
|
|
893
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
894
|
+
StyledIcon,
|
|
895
|
+
{
|
|
896
|
+
...props,
|
|
897
|
+
size,
|
|
898
|
+
viewBox: "0 0 24 24",
|
|
899
|
+
fill: "none",
|
|
900
|
+
ref: forwardRef2
|
|
901
|
+
},
|
|
902
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
903
|
+
stroke: "currentColor",
|
|
904
|
+
strokeLinecap: "round",
|
|
905
|
+
strokeWidth: 2,
|
|
906
|
+
d: "M10.583 3.618a8.5 8.5 0 1 1 .173 16.792M7.3 4.917a8.547 8.547 0 0 0-2.222 2.15m-1.444 3.421a8.55 8.55 0 0 0-.016 2.929m1.479 3.543a8.55 8.55 0 0 0 1.709 1.769"
|
|
907
|
+
}),
|
|
908
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
909
|
+
fill: "currentColor",
|
|
910
|
+
stroke: "currentColor",
|
|
911
|
+
d: "M15.099 12 10.5 15.066V8.934L15.099 12Z"
|
|
912
|
+
})
|
|
913
|
+
)
|
|
914
|
+
);
|
|
915
|
+
|
|
615
916
|
const IconPlug = React.forwardRef(
|
|
616
917
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
617
918
|
StyledIcon,
|
|
@@ -669,6 +970,109 @@ const IconQuestionMarkCircle = React.forwardRef(
|
|
|
669
970
|
)
|
|
670
971
|
);
|
|
671
972
|
|
|
973
|
+
const IconRhombus = React.forwardRef(
|
|
974
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
975
|
+
StyledIcon,
|
|
976
|
+
{
|
|
977
|
+
...props,
|
|
978
|
+
size,
|
|
979
|
+
viewBox: "0 0 24 24",
|
|
980
|
+
fill: "none",
|
|
981
|
+
ref: forwardRef2
|
|
982
|
+
},
|
|
983
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
984
|
+
clipPath: "url(#a)"
|
|
985
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
986
|
+
stroke: "currentColor",
|
|
987
|
+
strokeWidth: 2,
|
|
988
|
+
d: "m11.823 3.177-8.646 8.646a.25.25 0 0 0 0 .354l8.646 8.646a.25.25 0 0 0 .354 0l8.646-8.646a.25.25 0 0 0 0-.354l-8.646-8.646a.25.25 0 0 0-.354 0Z"
|
|
989
|
+
})),
|
|
990
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
991
|
+
id: "a"
|
|
992
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
993
|
+
d: "M0 0h24v24H0z"
|
|
994
|
+
})))
|
|
995
|
+
)
|
|
996
|
+
);
|
|
997
|
+
|
|
998
|
+
const IconShapes = React.forwardRef(
|
|
999
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1000
|
+
StyledIcon,
|
|
1001
|
+
{
|
|
1002
|
+
...props,
|
|
1003
|
+
size,
|
|
1004
|
+
viewBox: "0 0 24 24",
|
|
1005
|
+
fill: "none",
|
|
1006
|
+
ref: forwardRef2
|
|
1007
|
+
},
|
|
1008
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1009
|
+
clipPath: "url(#a)"
|
|
1010
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1011
|
+
stroke: "currentColor",
|
|
1012
|
+
strokeLinecap: "round",
|
|
1013
|
+
strokeWidth: 2,
|
|
1014
|
+
d: "M8 9.5a6.5 6.5 0 1 1 6.5 6.5M3.25 10h10.5a.25.25 0 0 1 .25.25v10.5a.25.25 0 0 1-.25.25H3.25a.25.25 0 0 1-.25-.25v-10.5a.25.25 0 0 1 .25-.25Z"
|
|
1015
|
+
})),
|
|
1016
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1017
|
+
id: "a"
|
|
1018
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1019
|
+
d: "M0 0h24v24H0z"
|
|
1020
|
+
})))
|
|
1021
|
+
)
|
|
1022
|
+
);
|
|
1023
|
+
|
|
1024
|
+
const IconSlidersX = React.forwardRef(
|
|
1025
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1026
|
+
StyledIcon,
|
|
1027
|
+
{
|
|
1028
|
+
...props,
|
|
1029
|
+
size,
|
|
1030
|
+
viewBox: "0 0 24 24",
|
|
1031
|
+
fill: "none",
|
|
1032
|
+
ref: forwardRef2
|
|
1033
|
+
},
|
|
1034
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1035
|
+
clipPath: "url(#a)"
|
|
1036
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1037
|
+
stroke: "currentColor",
|
|
1038
|
+
strokeLinecap: "round",
|
|
1039
|
+
strokeWidth: 2,
|
|
1040
|
+
d: "M20 8h-5M9 8H4m11.5 8H4m8-6a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm6 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z"
|
|
1041
|
+
})),
|
|
1042
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1043
|
+
id: "a"
|
|
1044
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1045
|
+
d: "M0 0h24v24H0z"
|
|
1046
|
+
})))
|
|
1047
|
+
)
|
|
1048
|
+
);
|
|
1049
|
+
|
|
1050
|
+
const IconSlidersY = React.forwardRef(
|
|
1051
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1052
|
+
StyledIcon,
|
|
1053
|
+
{
|
|
1054
|
+
...props,
|
|
1055
|
+
size,
|
|
1056
|
+
viewBox: "0 0 24 24",
|
|
1057
|
+
fill: "none",
|
|
1058
|
+
ref: forwardRef2
|
|
1059
|
+
},
|
|
1060
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1061
|
+
clipPath: "url(#a)"
|
|
1062
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1063
|
+
stroke: "currentColor",
|
|
1064
|
+
strokeLinecap: "round",
|
|
1065
|
+
strokeWidth: 2,
|
|
1066
|
+
d: "M5 5v4m0 6v4m7-14v10m0 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm7-5.5V19M7 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm14-5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"
|
|
1067
|
+
})),
|
|
1068
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1069
|
+
id: "a"
|
|
1070
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1071
|
+
d: "M0 0h24v24H0z"
|
|
1072
|
+
})))
|
|
1073
|
+
)
|
|
1074
|
+
);
|
|
1075
|
+
|
|
672
1076
|
const IconSocialFacebook = React.forwardRef(
|
|
673
1077
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
674
1078
|
StyledIcon,
|
|
@@ -760,6 +1164,157 @@ const IconSocialYoutube = React.forwardRef(
|
|
|
760
1164
|
)
|
|
761
1165
|
);
|
|
762
1166
|
|
|
1167
|
+
const IconSpeakerCross = React.forwardRef(
|
|
1168
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1169
|
+
StyledIcon,
|
|
1170
|
+
{
|
|
1171
|
+
...props,
|
|
1172
|
+
size,
|
|
1173
|
+
viewBox: "0 0 24 24",
|
|
1174
|
+
fill: "none",
|
|
1175
|
+
ref: forwardRef2
|
|
1176
|
+
},
|
|
1177
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1178
|
+
clipPath: "url(#a)"
|
|
1179
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1180
|
+
stroke: "currentColor",
|
|
1181
|
+
strokeLinecap: "round",
|
|
1182
|
+
strokeWidth: 2,
|
|
1183
|
+
d: "m21 9.5-5 5m0-5 5 5M3.1 15h3.856a.1.1 0 0 1 .074.033l4.796 5.276A.1.1 0 0 0 12 20.24V3.76a.1.1 0 0 0-.174-.068L7.03 8.967A.1.1 0 0 1 6.956 9H3.1a.1.1 0 0 0-.1.1v5.8a.1.1 0 0 0 .1.1Z"
|
|
1184
|
+
})),
|
|
1185
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1186
|
+
id: "a"
|
|
1187
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1188
|
+
d: "M0 0h24v24H0z"
|
|
1189
|
+
})))
|
|
1190
|
+
)
|
|
1191
|
+
);
|
|
1192
|
+
|
|
1193
|
+
const IconSpeakerHigh = React.forwardRef(
|
|
1194
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1195
|
+
StyledIcon,
|
|
1196
|
+
{
|
|
1197
|
+
...props,
|
|
1198
|
+
size,
|
|
1199
|
+
viewBox: "0 0 24 24",
|
|
1200
|
+
fill: "none",
|
|
1201
|
+
ref: forwardRef2
|
|
1202
|
+
},
|
|
1203
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1204
|
+
clipPath: "url(#a)"
|
|
1205
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1206
|
+
stroke: "currentColor",
|
|
1207
|
+
strokeLinecap: "round",
|
|
1208
|
+
strokeWidth: 2,
|
|
1209
|
+
d: "M16 10v4m3-8.5V18M3.1 15h3.856a.1.1 0 0 1 .074.033l4.796 5.276A.1.1 0 0 0 12 20.24V3.76a.1.1 0 0 0-.174-.068L7.03 8.967A.1.1 0 0 1 6.956 9H3.1a.1.1 0 0 0-.1.1v5.8a.1.1 0 0 0 .1.1Z"
|
|
1210
|
+
})),
|
|
1211
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1212
|
+
id: "a"
|
|
1213
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1214
|
+
d: "M0 0h24v24H0z"
|
|
1215
|
+
})))
|
|
1216
|
+
)
|
|
1217
|
+
);
|
|
1218
|
+
|
|
1219
|
+
const IconSquareRounded = React.forwardRef(
|
|
1220
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1221
|
+
StyledIcon,
|
|
1222
|
+
{
|
|
1223
|
+
...props,
|
|
1224
|
+
size,
|
|
1225
|
+
viewBox: "0 0 24 24",
|
|
1226
|
+
fill: "none",
|
|
1227
|
+
ref: forwardRef2
|
|
1228
|
+
},
|
|
1229
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1230
|
+
clipPath: "url(#a)"
|
|
1231
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1232
|
+
stroke: "currentColor",
|
|
1233
|
+
strokeWidth: 2,
|
|
1234
|
+
d: "M16 4H8a4 4 0 0 0-4 4v8a4 4 0 0 0 4 4h8a4 4 0 0 0 4-4V8a4 4 0 0 0-4-4Z"
|
|
1235
|
+
})),
|
|
1236
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1237
|
+
id: "a"
|
|
1238
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1239
|
+
d: "M0 0h24v24H0z"
|
|
1240
|
+
})))
|
|
1241
|
+
)
|
|
1242
|
+
);
|
|
1243
|
+
|
|
1244
|
+
const IconSquare = React.forwardRef(
|
|
1245
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1246
|
+
StyledIcon,
|
|
1247
|
+
{
|
|
1248
|
+
...props,
|
|
1249
|
+
size,
|
|
1250
|
+
viewBox: "0 0 24 24",
|
|
1251
|
+
fill: "none",
|
|
1252
|
+
ref: forwardRef2
|
|
1253
|
+
},
|
|
1254
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1255
|
+
clipPath: "url(#a)"
|
|
1256
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1257
|
+
stroke: "currentColor",
|
|
1258
|
+
strokeWidth: 2,
|
|
1259
|
+
d: "M19.75 4H4.25a.25.25 0 0 0-.25.25v15.5c0 .138.112.25.25.25h15.5a.25.25 0 0 0 .25-.25V4.25a.25.25 0 0 0-.25-.25Z"
|
|
1260
|
+
})),
|
|
1261
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1262
|
+
id: "a"
|
|
1263
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1264
|
+
d: "M0 0h24v24H0z"
|
|
1265
|
+
})))
|
|
1266
|
+
)
|
|
1267
|
+
);
|
|
1268
|
+
|
|
1269
|
+
const IconStopCircle = React.forwardRef(
|
|
1270
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1271
|
+
StyledIcon,
|
|
1272
|
+
{
|
|
1273
|
+
...props,
|
|
1274
|
+
size,
|
|
1275
|
+
viewBox: "0 0 24 24",
|
|
1276
|
+
fill: "none",
|
|
1277
|
+
ref: forwardRef2
|
|
1278
|
+
},
|
|
1279
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
1280
|
+
cx: 12,
|
|
1281
|
+
cy: 12,
|
|
1282
|
+
r: 8.5,
|
|
1283
|
+
stroke: "currentColor",
|
|
1284
|
+
strokeWidth: 2
|
|
1285
|
+
}),
|
|
1286
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1287
|
+
fill: "currentColor",
|
|
1288
|
+
d: "M9 10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-4Z"
|
|
1289
|
+
})
|
|
1290
|
+
)
|
|
1291
|
+
);
|
|
1292
|
+
|
|
1293
|
+
const IconTriangle = React.forwardRef(
|
|
1294
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1295
|
+
StyledIcon,
|
|
1296
|
+
{
|
|
1297
|
+
...props,
|
|
1298
|
+
size,
|
|
1299
|
+
viewBox: "0 0 24 24",
|
|
1300
|
+
fill: "none",
|
|
1301
|
+
ref: forwardRef2
|
|
1302
|
+
},
|
|
1303
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1304
|
+
clipPath: "url(#a)"
|
|
1305
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1306
|
+
stroke: "currentColor",
|
|
1307
|
+
strokeWidth: 2,
|
|
1308
|
+
d: "M20.58 20.526H3.4a.25.25 0 0 1-.225-.359l8.138-16.729a.25.25 0 0 1 .445-.01l9.043 16.73a.25.25 0 0 1-.22.368Z"
|
|
1309
|
+
})),
|
|
1310
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1311
|
+
id: "a"
|
|
1312
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1313
|
+
d: "M0 0h24v24H0z"
|
|
1314
|
+
})))
|
|
1315
|
+
)
|
|
1316
|
+
);
|
|
1317
|
+
|
|
763
1318
|
const IconUserAdd = React.forwardRef(
|
|
764
1319
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
765
1320
|
StyledIcon,
|
|
@@ -833,11 +1388,9 @@ const IconWallet = React.forwardRef(
|
|
|
833
1388
|
strokeWidth: 2,
|
|
834
1389
|
d: "M20 16V4H6a2 2 0 0 0-2 2v11m14-1H6a2 2 0 1 0 0 4h12v-4Z"
|
|
835
1390
|
}),
|
|
836
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
r: 1.5,
|
|
840
|
-
fill: "currentColor"
|
|
1391
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1392
|
+
fill: "currentColor",
|
|
1393
|
+
d: "M17 10a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
|
|
841
1394
|
})
|
|
842
1395
|
)
|
|
843
1396
|
);
|
|
@@ -846,39 +1399,61 @@ exports.IconArrowBoxOut = IconArrowBoxOut;
|
|
|
846
1399
|
exports.IconArrowDown = IconArrowDown;
|
|
847
1400
|
exports.IconArrowDownLeft = IconArrowDownLeft;
|
|
848
1401
|
exports.IconArrowDownRight = IconArrowDownRight;
|
|
1402
|
+
exports.IconArrowFatRight = IconArrowFatRight;
|
|
849
1403
|
exports.IconArrowLeft = IconArrowLeft;
|
|
850
1404
|
exports.IconArrowRight = IconArrowRight;
|
|
851
1405
|
exports.IconArrowUp = IconArrowUp;
|
|
852
1406
|
exports.IconArrowUpLeft = IconArrowUpLeft;
|
|
853
1407
|
exports.IconArrowUpRight = IconArrowUpRight;
|
|
854
1408
|
exports.IconBarThree = IconBarThree;
|
|
1409
|
+
exports.IconChat = IconChat;
|
|
855
1410
|
exports.IconCheckMark = IconCheckMark;
|
|
856
1411
|
exports.IconChevronDown = IconChevronDown;
|
|
857
1412
|
exports.IconChevronLeft = IconChevronLeft;
|
|
858
1413
|
exports.IconChevronRight = IconChevronRight;
|
|
859
1414
|
exports.IconChevronUp = IconChevronUp;
|
|
1415
|
+
exports.IconCircle = IconCircle;
|
|
1416
|
+
exports.IconCircleMotionX = IconCircleMotionX;
|
|
860
1417
|
exports.IconCog = IconCog;
|
|
861
1418
|
exports.IconCross = IconCross;
|
|
862
1419
|
exports.IconCrossCircle = IconCrossCircle;
|
|
863
1420
|
exports.IconEnvelope = IconEnvelope;
|
|
864
1421
|
exports.IconExclamationPointCircle = IconExclamationPointCircle;
|
|
1422
|
+
exports.IconFunnel = IconFunnel;
|
|
865
1423
|
exports.IconGlobe = IconGlobe;
|
|
866
1424
|
exports.IconHouse = IconHouse;
|
|
867
1425
|
exports.IconInformationMarkCircle = IconInformationMarkCircle;
|
|
1426
|
+
exports.IconLineDiagonal = IconLineDiagonal;
|
|
868
1427
|
exports.IconLink = IconLink;
|
|
869
1428
|
exports.IconLockClosed = IconLockClosed;
|
|
870
1429
|
exports.IconLockOpen = IconLockOpen;
|
|
871
1430
|
exports.IconMagnifyingGlass = IconMagnifyingGlass;
|
|
1431
|
+
exports.IconMicrophone = IconMicrophone;
|
|
1432
|
+
exports.IconMicrophoneSlash = IconMicrophoneSlash;
|
|
872
1433
|
exports.IconMinus = IconMinus;
|
|
1434
|
+
exports.IconParallelogram = IconParallelogram;
|
|
1435
|
+
exports.IconPauseCircle = IconPauseCircle;
|
|
873
1436
|
exports.IconPlaceholder = IconPlaceholder;
|
|
1437
|
+
exports.IconPlayCircle = IconPlayCircle;
|
|
1438
|
+
exports.IconPlaybackSpeedCircle = IconPlaybackSpeedCircle;
|
|
874
1439
|
exports.IconPlug = IconPlug;
|
|
875
1440
|
exports.IconPlus = IconPlus;
|
|
876
1441
|
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
1442
|
+
exports.IconRhombus = IconRhombus;
|
|
1443
|
+
exports.IconShapes = IconShapes;
|
|
1444
|
+
exports.IconSlidersX = IconSlidersX;
|
|
1445
|
+
exports.IconSlidersY = IconSlidersY;
|
|
877
1446
|
exports.IconSocialFacebook = IconSocialFacebook;
|
|
878
1447
|
exports.IconSocialInstagram = IconSocialInstagram;
|
|
879
1448
|
exports.IconSocialLinkedin = IconSocialLinkedin;
|
|
880
1449
|
exports.IconSocialTwitter = IconSocialTwitter;
|
|
881
1450
|
exports.IconSocialYoutube = IconSocialYoutube;
|
|
1451
|
+
exports.IconSpeakerCross = IconSpeakerCross;
|
|
1452
|
+
exports.IconSpeakerHigh = IconSpeakerHigh;
|
|
1453
|
+
exports.IconSquare = IconSquare;
|
|
1454
|
+
exports.IconSquareRounded = IconSquareRounded;
|
|
1455
|
+
exports.IconStopCircle = IconStopCircle;
|
|
1456
|
+
exports.IconTriangle = IconTriangle;
|
|
882
1457
|
exports.IconUser = IconUser;
|
|
883
1458
|
exports.IconUserAdd = IconUserAdd;
|
|
884
1459
|
exports.IconUsers = IconUsers;
|