@mirohq/design-system-icons 0.4.0 → 0.5.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.
Files changed (48) hide show
  1. package/dist/main.js +539 -0
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +520 -1
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +41 -1
  6. package/package.json +1 -1
  7. package/react/align-bottom.tsx +32 -0
  8. package/react/align-left.tsx +32 -0
  9. package/react/align-right.tsx +32 -0
  10. package/react/align-top.tsx +32 -0
  11. package/react/bell-slash.tsx +31 -0
  12. package/react/bell-tilt.tsx +32 -0
  13. package/react/bell.tsx +32 -0
  14. package/react/calendar-blank.tsx +35 -0
  15. package/react/clock-overtime.tsx +31 -0
  16. package/react/clock.tsx +33 -0
  17. package/react/graduation-cap.tsx +35 -0
  18. package/react/index.ts +20 -0
  19. package/react/lifesaver.tsx +34 -0
  20. package/react/lightning.tsx +35 -0
  21. package/react/magnet.tsx +34 -0
  22. package/react/map.tsx +35 -0
  23. package/react/push-pin.tsx +31 -0
  24. package/react/sidebar-closed.tsx +35 -0
  25. package/react/sidebar-open.tsx +34 -0
  26. package/react/tag.tsx +29 -0
  27. package/react/timer.tsx +25 -0
  28. package/svg/24/align-bottom.svg +1 -0
  29. package/svg/24/align-left.svg +1 -0
  30. package/svg/24/align-right.svg +1 -0
  31. package/svg/24/align-top.svg +1 -0
  32. package/svg/24/bell-slash.svg +1 -0
  33. package/svg/24/bell-tilt.svg +1 -0
  34. package/svg/24/bell.svg +1 -0
  35. package/svg/24/calendar-blank.svg +1 -0
  36. package/svg/24/clock-overtime.svg +1 -0
  37. package/svg/24/clock.svg +1 -0
  38. package/svg/24/graduation-cap.svg +1 -0
  39. package/svg/24/lifesaver.svg +1 -0
  40. package/svg/24/lightning.svg +1 -0
  41. package/svg/24/magnet.svg +1 -0
  42. package/svg/24/map.svg +1 -0
  43. package/svg/24/push-pin.svg +1 -0
  44. package/svg/24/sidebar-closed.svg +1 -0
  45. package/svg/24/sidebar-open.svg +1 -0
  46. package/svg/24/tag.svg +1 -0
  47. package/svg/24/timer.svg +1 -0
  48. package/svg/meta.json +147 -1
package/dist/module.js CHANGED
@@ -23,6 +23,106 @@ const StyledIcon = styled(Primitive.svg, {
23
23
  }
24
24
  });
25
25
 
26
+ const IconAlignBottom = forwardRef(
27
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
28
+ StyledIcon,
29
+ {
30
+ ...props,
31
+ size,
32
+ viewBox: "0 0 24 24",
33
+ fill: "none",
34
+ ref: forwardRef2
35
+ },
36
+ /* @__PURE__ */ React.createElement("path", {
37
+ stroke: "currentColor",
38
+ strokeLinecap: "round",
39
+ strokeLinejoin: "round",
40
+ strokeMiterlimit: 1.414,
41
+ strokeWidth: 2,
42
+ d: "M3 20h18"
43
+ }),
44
+ /* @__PURE__ */ React.createElement("path", {
45
+ fill: "currentColor",
46
+ d: "M7 3.5a1.5 1.5 0 1 1 3 0v11a1.5 1.5 0 0 1-3 0v-11Zm7 5a1.5 1.5 0 0 1 3 0v6a1.5 1.5 0 0 1-3 0v-6Z"
47
+ })
48
+ )
49
+ );
50
+
51
+ const IconAlignLeft = forwardRef(
52
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
53
+ StyledIcon,
54
+ {
55
+ ...props,
56
+ size,
57
+ viewBox: "0 0 24 24",
58
+ fill: "none",
59
+ ref: forwardRef2
60
+ },
61
+ /* @__PURE__ */ React.createElement("path", {
62
+ stroke: "currentColor",
63
+ strokeLinecap: "round",
64
+ strokeLinejoin: "round",
65
+ strokeMiterlimit: 1.414,
66
+ strokeWidth: 2,
67
+ d: "M4 21V3"
68
+ }),
69
+ /* @__PURE__ */ React.createElement("path", {
70
+ fill: "currentColor",
71
+ d: "M8 15.5A1.5 1.5 0 0 1 9.5 14h5a1.5 1.5 0 0 1 0 3h-5A1.5 1.5 0 0 1 8 15.5Zm0-7A1.5 1.5 0 0 1 9.5 7h11a1.5 1.5 0 0 1 0 3h-11A1.5 1.5 0 0 1 8 8.5Z"
72
+ })
73
+ )
74
+ );
75
+
76
+ const IconAlignRight = forwardRef(
77
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
78
+ StyledIcon,
79
+ {
80
+ ...props,
81
+ size,
82
+ viewBox: "0 0 24 24",
83
+ fill: "none",
84
+ ref: forwardRef2
85
+ },
86
+ /* @__PURE__ */ React.createElement("path", {
87
+ stroke: "currentColor",
88
+ strokeLinecap: "round",
89
+ strokeLinejoin: "round",
90
+ strokeMiterlimit: 1.414,
91
+ strokeWidth: 2,
92
+ d: "M20 3v18"
93
+ }),
94
+ /* @__PURE__ */ React.createElement("path", {
95
+ fill: "currentColor",
96
+ d: "M2 8.5A1.5 1.5 0 0 1 3.5 7h11a1.5 1.5 0 0 1 0 3h-11A1.5 1.5 0 0 1 2 8.5Zm6 7A1.5 1.5 0 0 1 9.5 14h5a1.5 1.5 0 0 1 0 3h-5A1.5 1.5 0 0 1 8 15.5Z"
97
+ })
98
+ )
99
+ );
100
+
101
+ const IconAlignTop = forwardRef(
102
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
103
+ StyledIcon,
104
+ {
105
+ ...props,
106
+ size,
107
+ viewBox: "0 0 24 24",
108
+ fill: "none",
109
+ ref: forwardRef2
110
+ },
111
+ /* @__PURE__ */ React.createElement("path", {
112
+ stroke: "currentColor",
113
+ strokeLinecap: "round",
114
+ strokeLinejoin: "round",
115
+ strokeMiterlimit: 1.414,
116
+ strokeWidth: 2,
117
+ d: "M3 3h18"
118
+ }),
119
+ /* @__PURE__ */ React.createElement("path", {
120
+ fill: "currentColor",
121
+ d: "M7 8.5a1.5 1.5 0 1 1 3 0v11a1.5 1.5 0 0 1-3 0v-11Zm7 0a1.5 1.5 0 0 1 3 0v6a1.5 1.5 0 0 1-3 0v-6Z"
122
+ })
123
+ )
124
+ );
125
+
26
126
  const IconArrowBoxOut = forwardRef(
27
127
  ({ size = "medium", ...props }, forwardRef2) => createElement(
28
128
  StyledIcon,
@@ -420,6 +520,80 @@ const IconBarThree = forwardRef(
420
520
  )
421
521
  );
422
522
 
523
+ const IconBellSlash = forwardRef(
524
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
525
+ StyledIcon,
526
+ {
527
+ ...props,
528
+ size,
529
+ viewBox: "0 0 24 24",
530
+ fill: "none",
531
+ ref: forwardRef2
532
+ },
533
+ /* @__PURE__ */ React.createElement("g", {
534
+ clipPath: "url(#a)"
535
+ }, /* @__PURE__ */ React.createElement("path", {
536
+ fill: "currentColor",
537
+ d: "M17 12.5h-1a1 1 0 0 0 .168.555L17 12.5Zm2.482 3.723.832-.555-.832.555Zm-.416.777v1-1ZM7 12l.857.514A1 1 0 0 0 8 12H7Zm-1.494.546a1 1 0 0 0 1.715 1.03l-1.715-1.03Zm-2.213 6.747a1 1 0 1 0 1.414 1.414l-1.414-1.414ZM20.707 4.707a1 1 0 0 0-1.414-1.414l1.414 1.414ZM14 5.535a1 1 0 1 0 1.002-1.732L14 5.535ZM16 9v3.5h2V9h-2Zm.168 4.055 2.482 3.722 1.664-1.11-2.482-3.722-1.664 1.11Zm2.482 3.722a.5.5 0 0 1 .416-.777v2c1.198 0 1.912-1.335 1.248-2.332l-1.664 1.11ZM13 18a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2Zm-1 1a1 1 0 0 1-1-1H9a3 3 0 0 0 3 3v-2Zm3.757-11.377C15.914 8.05 16 8.514 16 9h2c0-.724-.129-1.42-.366-2.066l-1.877.689ZM19.066 16H7v2h12.066v-2ZM8 12V9H6v3h2Zm0-3a4 4 0 0 1 4-4V3a6 6 0 0 0-6 6h2Zm-.779 4.575.636-1.06-1.714-1.03-.637 1.061 1.715 1.03Zm-2.514 7.132 16-16-1.414-1.414-16 16 1.414 1.414ZM12 5c.73 0 1.412.195 2 .535l1-1.732A5.977 5.977 0 0 0 12 3v2Z"
538
+ })),
539
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
540
+ id: "a"
541
+ }, /* @__PURE__ */ React.createElement("path", {
542
+ d: "M0 0h24v24H0z"
543
+ })))
544
+ )
545
+ );
546
+
547
+ const IconBellTilt = forwardRef(
548
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
549
+ StyledIcon,
550
+ {
551
+ ...props,
552
+ size,
553
+ viewBox: "0 0 24 24",
554
+ fill: "none",
555
+ ref: forwardRef2
556
+ },
557
+ /* @__PURE__ */ React.createElement("g", {
558
+ clipPath: "url(#a)"
559
+ }, /* @__PURE__ */ React.createElement("path", {
560
+ stroke: "currentColor",
561
+ strokeWidth: 2,
562
+ d: "M11.646 17.795a2 2 0 0 1-3.465-2M8.583 9.1l1.5-2.598a5 5 0 0 1 8.66 5l-1.75 3.03.289 4.466a.5.5 0 0 1-.75.465L4.25 12.37a.5.5 0 0 1 .007-.87l4.326-2.402Z"
563
+ })),
564
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
565
+ id: "a"
566
+ }, /* @__PURE__ */ React.createElement("path", {
567
+ d: "M0 0h24v24H0z"
568
+ })))
569
+ )
570
+ );
571
+
572
+ const IconBell = forwardRef(
573
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
574
+ StyledIcon,
575
+ {
576
+ ...props,
577
+ size,
578
+ viewBox: "0 0 24 24",
579
+ fill: "none",
580
+ ref: forwardRef2
581
+ },
582
+ /* @__PURE__ */ React.createElement("g", {
583
+ clipPath: "url(#a)"
584
+ }, /* @__PURE__ */ React.createElement("path", {
585
+ stroke: "currentColor",
586
+ strokeWidth: 2,
587
+ d: "M14 18a2 2 0 1 1-4 0m-3-6V9a5 5 0 0 1 10 0v3.5l2.482 3.723a.5.5 0 0 1-.416.777H4.883a.5.5 0 0 1-.429-.757L7 12Z"
588
+ })),
589
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
590
+ id: "a"
591
+ }, /* @__PURE__ */ React.createElement("path", {
592
+ d: "M0 0h24v24H0z"
593
+ })))
594
+ )
595
+ );
596
+
423
597
  const IconBracketsAngleSlash = forwardRef(
424
598
  ({ size = "medium", ...props }, forwardRef2) => createElement(
425
599
  StyledIcon,
@@ -475,6 +649,34 @@ const IconBracketsCurlyCirclesThree = forwardRef(
475
649
  )
476
650
  );
477
651
 
652
+ const IconCalendarBlank = forwardRef(
653
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
654
+ StyledIcon,
655
+ {
656
+ ...props,
657
+ size,
658
+ viewBox: "0 0 24 24",
659
+ fill: "none",
660
+ ref: forwardRef2
661
+ },
662
+ /* @__PURE__ */ React.createElement("g", {
663
+ clipPath: "url(#a)"
664
+ }, /* @__PURE__ */ React.createElement("path", {
665
+ stroke: "currentColor",
666
+ strokeLinecap: "round",
667
+ strokeLinejoin: "round",
668
+ strokeMiterlimit: 1.414,
669
+ strokeWidth: 2,
670
+ d: "M3 11v10h18V11M3 11V5h18v6M3 11h18m-5-8v4M8 3v4"
671
+ })),
672
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
673
+ id: "a"
674
+ }, /* @__PURE__ */ React.createElement("path", {
675
+ d: "M0 0h24v24H0z"
676
+ })))
677
+ )
678
+ );
679
+
478
680
  const IconCamera = forwardRef(
479
681
  ({ size = "medium", ...props }, forwardRef2) => createElement(
480
682
  StyledIcon,
@@ -899,6 +1101,56 @@ const IconClockCounterClockwise = forwardRef(
899
1101
  )
900
1102
  );
901
1103
 
1104
+ const IconClockOvertime = forwardRef(
1105
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1106
+ StyledIcon,
1107
+ {
1108
+ ...props,
1109
+ size,
1110
+ viewBox: "0 0 24 24",
1111
+ fill: "none",
1112
+ ref: forwardRef2
1113
+ },
1114
+ /* @__PURE__ */ React.createElement("path", {
1115
+ stroke: "currentColor",
1116
+ strokeLinecap: "square",
1117
+ strokeMiterlimit: 1.414,
1118
+ strokeWidth: 2,
1119
+ d: "M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
1120
+ }),
1121
+ /* @__PURE__ */ React.createElement("path", {
1122
+ fill: "currentColor",
1123
+ d: "M12 12c.88.44 2.921 1.267 4.137 1.8.25.11.362.401.229.639a5 5 0 1 1-4.865-7.414c.274-.028.499.2.499.477V12Z"
1124
+ })
1125
+ )
1126
+ );
1127
+
1128
+ const IconClock = forwardRef(
1129
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1130
+ StyledIcon,
1131
+ {
1132
+ ...props,
1133
+ size,
1134
+ viewBox: "0 0 24 24",
1135
+ fill: "none",
1136
+ ref: forwardRef2
1137
+ },
1138
+ /* @__PURE__ */ React.createElement("g", {
1139
+ clipPath: "url(#a)"
1140
+ }, /* @__PURE__ */ React.createElement("path", {
1141
+ stroke: "currentColor",
1142
+ strokeLinecap: "round",
1143
+ strokeWidth: 2,
1144
+ d: "M11 7.4v4.05l2.7 2.25M20 11a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
1145
+ })),
1146
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
1147
+ id: "a"
1148
+ }, /* @__PURE__ */ React.createElement("path", {
1149
+ d: "M0 0h24v24H0z"
1150
+ })))
1151
+ )
1152
+ );
1153
+
902
1154
  const IconCluster = forwardRef(
903
1155
  ({ size = "medium", ...props }, forwardRef2) => createElement(
904
1156
  StyledIcon,
@@ -1270,6 +1522,34 @@ const IconGlobe = forwardRef(
1270
1522
  )
1271
1523
  );
1272
1524
 
1525
+ const IconGraduationCap = forwardRef(
1526
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1527
+ StyledIcon,
1528
+ {
1529
+ ...props,
1530
+ size,
1531
+ viewBox: "0 0 24 24",
1532
+ fill: "none",
1533
+ ref: forwardRef2
1534
+ },
1535
+ /* @__PURE__ */ React.createElement("g", {
1536
+ clipPath: "url(#a)"
1537
+ }, /* @__PURE__ */ React.createElement("path", {
1538
+ stroke: "currentColor",
1539
+ strokeLinecap: "round",
1540
+ strokeLinejoin: "round",
1541
+ strokeMiterlimit: 1.414,
1542
+ strokeWidth: 2,
1543
+ d: "M2 8.23 12.5 3 23 8.23 19.684 9.8M2 8.23V20M2 8.23 5.316 9.8m0 0 7.184 3.4 7.184-3.4m-14.368 0v3.016A7.184 7.184 0 0 0 12.5 20v0a7.184 7.184 0 0 0 7.184-7.184V9.8"
1544
+ })),
1545
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
1546
+ id: "a"
1547
+ }, /* @__PURE__ */ React.createElement("path", {
1548
+ d: "M0 0h24v24H0z"
1549
+ })))
1550
+ )
1551
+ );
1552
+
1273
1553
  const IconHandFilled = forwardRef(
1274
1554
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1275
1555
  StyledIcon,
@@ -1470,6 +1750,61 @@ const IconLaptop = forwardRef(
1470
1750
  )
1471
1751
  );
1472
1752
 
1753
+ const IconLifesaver = forwardRef(
1754
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1755
+ StyledIcon,
1756
+ {
1757
+ ...props,
1758
+ size,
1759
+ viewBox: "0 0 24 24",
1760
+ fill: "none",
1761
+ ref: forwardRef2
1762
+ },
1763
+ /* @__PURE__ */ React.createElement("g", {
1764
+ clipPath: "url(#a)"
1765
+ }, /* @__PURE__ */ React.createElement("path", {
1766
+ stroke: "currentColor",
1767
+ strokeLinecap: "square",
1768
+ strokeMiterlimit: 1.414,
1769
+ strokeWidth: 2,
1770
+ d: "M14.828 14.828a4 4 0 0 1-5.656 0m5.656 0a4 4 0 0 0 0-5.656m0 5.656 3.182 3.182m-8.838-3.182a4 4 0 0 1 0-5.656m0 5.656L5.99 18.01m3.182-8.838a4 4 0 0 1 5.656 0m-5.656 0L5.99 5.99m8.838 3.182L18.01 5.99m.354 12.374A9 9 0 1 1 5.636 5.636a9 9 0 0 1 12.728 12.728Z"
1771
+ })),
1772
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
1773
+ id: "a"
1774
+ }, /* @__PURE__ */ React.createElement("path", {
1775
+ d: "M0 0h24v24H0z"
1776
+ })))
1777
+ )
1778
+ );
1779
+
1780
+ const IconLightning = forwardRef(
1781
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1782
+ StyledIcon,
1783
+ {
1784
+ ...props,
1785
+ size,
1786
+ viewBox: "0 0 24 24",
1787
+ fill: "none",
1788
+ ref: forwardRef2
1789
+ },
1790
+ /* @__PURE__ */ React.createElement("g", {
1791
+ clipPath: "url(#a)"
1792
+ }, /* @__PURE__ */ React.createElement("path", {
1793
+ stroke: "currentColor",
1794
+ strokeLinecap: "square",
1795
+ strokeLinejoin: "round",
1796
+ strokeMiterlimit: 1.414,
1797
+ strokeWidth: 2,
1798
+ d: "M11.973 1.867 4.231 14.62a.25.25 0 0 0 .213.38H11.5l-.44 7.04c-.016.258.32.368.46.152l8.232-12.807a.25.25 0 0 0-.21-.385H12l.437-6.987c.016-.261-.328-.37-.463-.146Z"
1799
+ })),
1800
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
1801
+ id: "a"
1802
+ }, /* @__PURE__ */ React.createElement("path", {
1803
+ d: "M0 0h24v24H0z"
1804
+ })))
1805
+ )
1806
+ );
1807
+
1473
1808
  const IconLineDiagonal = forwardRef(
1474
1809
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1475
1810
  StyledIcon,
@@ -1565,6 +1900,33 @@ const IconLockOpen = forwardRef(
1565
1900
  )
1566
1901
  );
1567
1902
 
1903
+ const IconMagnet = forwardRef(
1904
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1905
+ StyledIcon,
1906
+ {
1907
+ ...props,
1908
+ size,
1909
+ viewBox: "0 0 24 24",
1910
+ fill: "none",
1911
+ ref: forwardRef2
1912
+ },
1913
+ /* @__PURE__ */ React.createElement("g", {
1914
+ clipPath: "url(#a)"
1915
+ }, /* @__PURE__ */ React.createElement("path", {
1916
+ stroke: "currentColor",
1917
+ strokeLinecap: "square",
1918
+ strokeMiterlimit: 1.414,
1919
+ strokeWidth: 2,
1920
+ d: "M8.435 4.828 4.95 8.314a7 7 0 0 0 0 9.9l.641.64a7 7 0 0 0 9.858.041l3.556-3.497M8.435 4.828l2.475-2.474a.5.5 0 0 1 .707 0l2.293 2.293a.5.5 0 0 1 0 .707l-2.475 2.474m-3-3 3 3m0 0-3.314 3.314C6.95 12.314 7 14 8.121 15.385l.522.522c1.357 1.093 3.071 1.171 4.243 0l3.314-3.314m0 0 2.475-2.475a.5.5 0 0 1 .707 0l2.118 2.119a.5.5 0 0 1-.003.71l-2.492 2.451M16.2 12.593l2.805 2.805"
1921
+ })),
1922
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
1923
+ id: "a"
1924
+ }, /* @__PURE__ */ React.createElement("path", {
1925
+ d: "M0 0h24v24H0z"
1926
+ })))
1927
+ )
1928
+ );
1929
+
1568
1930
  const IconMagnifyingGlass = forwardRef(
1569
1931
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1570
1932
  StyledIcon,
@@ -1584,6 +1946,34 @@ const IconMagnifyingGlass = forwardRef(
1584
1946
  )
1585
1947
  );
1586
1948
 
1949
+ const IconMap = forwardRef(
1950
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1951
+ StyledIcon,
1952
+ {
1953
+ ...props,
1954
+ size,
1955
+ viewBox: "0 0 24 24",
1956
+ fill: "none",
1957
+ ref: forwardRef2
1958
+ },
1959
+ /* @__PURE__ */ React.createElement("g", {
1960
+ clipPath: "url(#a)"
1961
+ }, /* @__PURE__ */ React.createElement("path", {
1962
+ stroke: "currentColor",
1963
+ strokeLinecap: "round",
1964
+ strokeLinejoin: "round",
1965
+ strokeMiterlimit: 1.414,
1966
+ strokeWidth: 2,
1967
+ d: "M9 4 3 6v15l6-2.5M9 4l6 2M9 4v14.5M15 6l6-2v14.5L15 21m0-15v15m0 0-6-2.5"
1968
+ })),
1969
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
1970
+ id: "a"
1971
+ }, /* @__PURE__ */ React.createElement("path", {
1972
+ d: "M0 0h24v24H0z"
1973
+ })))
1974
+ )
1975
+ );
1976
+
1587
1977
  const IconMicrophoneSlash = forwardRef(
1588
1978
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1589
1979
  StyledIcon,
@@ -1860,6 +2250,30 @@ const IconPlus = forwardRef(
1860
2250
  )
1861
2251
  );
1862
2252
 
2253
+ const IconPushPin = forwardRef(
2254
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2255
+ StyledIcon,
2256
+ {
2257
+ ...props,
2258
+ size,
2259
+ viewBox: "0 0 24 24",
2260
+ fill: "none",
2261
+ ref: forwardRef2
2262
+ },
2263
+ /* @__PURE__ */ React.createElement("g", {
2264
+ clipPath: "url(#a)"
2265
+ }, /* @__PURE__ */ React.createElement("path", {
2266
+ fill: "currentColor",
2267
+ d: "M14.092 2.293a1 1 0 1 0-1.415 1.414l1.415-1.414Zm-9.948 8.55a1 1 0 0 0 1.173 1.62l-1.173-1.62Zm15.471-1.612.708-.707-.708.707Zm.678 2.091a1 1 0 0 0 1.414-1.414l-1.414 1.415Zm-8.757 7.36-.586.81 1.62 1.174.586-.81-1.62-1.173Zm1.142 3.025a1 1 0 0 0 1.414-1.414l-1.415 1.414ZM3.707 9.908a1 1 0 1 0-1.415 1.415l1.414-1.415ZM2.292 20.293a1 1 0 1 0 1.414 1.414l-1.414-1.414ZM12.677 3.707l1.385 1.385 1.414-1.414-1.384-1.385-1.415 1.414Zm1.506-.132L4.144 10.844l1.173 1.62 10.039-7.27-1.173-1.62Zm-.12 1.517 4.845 4.846 1.415-1.414-4.847-4.846-1.414 1.414Zm4.845 4.846 1.385 1.384 1.414-1.414-1.384-1.384-1.415 1.414Zm-.103-1.294-7.269 10.039 1.62 1.173 7.27-10.039-1.62-1.173Zm-4.713 11.649L8.899 15.1l-1.414 1.414 5.192 5.192 1.415-1.414ZM8.899 15.1 3.707 9.908l-1.414 1.415 5.192 5.192L8.9 15.1Zm-5.192 6.606L8.9 16.515 7.485 15.1l-5.192 5.192 1.414 1.414Z"
2268
+ })),
2269
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2270
+ id: "a"
2271
+ }, /* @__PURE__ */ React.createElement("path", {
2272
+ d: "M0 0h24v24H0z"
2273
+ })))
2274
+ )
2275
+ );
2276
+
1863
2277
  const IconQuestionMarkCircle = forwardRef(
1864
2278
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1865
2279
  StyledIcon,
@@ -2003,6 +2417,61 @@ const IconShieldLock = forwardRef(
2003
2417
  )
2004
2418
  );
2005
2419
 
2420
+ const IconSidebarClosed = forwardRef(
2421
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2422
+ StyledIcon,
2423
+ {
2424
+ ...props,
2425
+ size,
2426
+ viewBox: "0 0 24 24",
2427
+ fill: "none",
2428
+ ref: forwardRef2
2429
+ },
2430
+ /* @__PURE__ */ React.createElement("g", {
2431
+ clipPath: "url(#a)"
2432
+ }, /* @__PURE__ */ React.createElement("path", {
2433
+ stroke: "currentColor",
2434
+ strokeLinecap: "round",
2435
+ strokeLinejoin: "round",
2436
+ strokeMiterlimit: 1.414,
2437
+ strokeWidth: 2,
2438
+ d: "M11 4H4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h7m0-16h9a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-9m0-16v16M6 8h2m-2 4h2m-2 4h2"
2439
+ })),
2440
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2441
+ id: "a"
2442
+ }, /* @__PURE__ */ React.createElement("path", {
2443
+ d: "M0 0h24v24H0z"
2444
+ })))
2445
+ )
2446
+ );
2447
+
2448
+ const IconSidebarOpen = forwardRef(
2449
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2450
+ StyledIcon,
2451
+ {
2452
+ ...props,
2453
+ size,
2454
+ viewBox: "0 0 24 24",
2455
+ fill: "none",
2456
+ ref: forwardRef2
2457
+ },
2458
+ /* @__PURE__ */ React.createElement("path", {
2459
+ stroke: "currentColor",
2460
+ strokeLinecap: "round",
2461
+ strokeLinejoin: "round",
2462
+ strokeMiterlimit: 1.414,
2463
+ strokeWidth: 2,
2464
+ d: "M21 19V5a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1Z"
2465
+ }),
2466
+ /* @__PURE__ */ React.createElement("path", {
2467
+ fill: "currentColor",
2468
+ fillRule: "evenodd",
2469
+ d: "M11 5H3v14h8V5ZM6 7a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2H6Zm0 4a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2H6Zm0 4a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2H6Z",
2470
+ clipRule: "evenodd"
2471
+ })
2472
+ )
2473
+ );
2474
+
2006
2475
  const IconSlidersX = forwardRef(
2007
2476
  ({ size = "medium", ...props }, forwardRef2) => createElement(
2008
2477
  StyledIcon,
@@ -2425,6 +2894,33 @@ const IconStopCircle = forwardRef(
2425
2894
  )
2426
2895
  );
2427
2896
 
2897
+ const IconTag = forwardRef(
2898
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2899
+ StyledIcon,
2900
+ {
2901
+ ...props,
2902
+ size,
2903
+ viewBox: "0 0 24 24",
2904
+ fill: "none",
2905
+ ref: forwardRef2
2906
+ },
2907
+ /* @__PURE__ */ React.createElement("path", {
2908
+ stroke: "currentColor",
2909
+ strokeLinecap: "square",
2910
+ strokeLinejoin: "round",
2911
+ strokeMiterlimit: 1.414,
2912
+ strokeWidth: 2,
2913
+ d: "M11.953 4H4v8l8.839 8.617 7.778-7.778L11.953 4Z"
2914
+ }),
2915
+ /* @__PURE__ */ React.createElement("circle", {
2916
+ cx: 8.5,
2917
+ cy: 8.5,
2918
+ r: 1.5,
2919
+ fill: "currentColor"
2920
+ })
2921
+ )
2922
+ );
2923
+
2428
2924
  const IconTextT = forwardRef(
2429
2925
  ({ size = "medium", ...props }, forwardRef2) => createElement(
2430
2926
  StyledIcon,
@@ -2494,6 +2990,29 @@ const IconTicket = forwardRef(
2494
2990
  )
2495
2991
  );
2496
2992
 
2993
+ const IconTimer = forwardRef(
2994
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2995
+ StyledIcon,
2996
+ {
2997
+ ...props,
2998
+ size,
2999
+ viewBox: "0 0 24 24",
3000
+ fill: "none",
3001
+ ref: forwardRef2
3002
+ },
3003
+ /* @__PURE__ */ React.createElement("path", {
3004
+ fill: "currentColor",
3005
+ d: "m11.293 11.293-.707.707L12 13.414l.707-.707-1.414-1.414Zm4.414-1.586a1 1 0 0 0-1.414-1.414l1.414 1.414ZM13 1a1 1 0 1 0-2 0h2Zm-.293 11.707 3-3-1.414-1.414-3 3 1.414 1.414ZM20 12a8 8 0 0 1-8 8v2c5.523 0 10-4.477 10-10h-2Zm-8 8a8 8 0 0 1-8-8H2c0 5.523 4.477 10 10 10v-2Zm-8-8a8 8 0 0 1 8-8V2C6.477 2 2 6.477 2 12h2Zm8-8a8 8 0 0 1 8 8h2c0-5.523-4.477-10-10-10v2Zm1-1V1h-2v2h2Z"
3006
+ }),
3007
+ /* @__PURE__ */ React.createElement("circle", {
3008
+ cx: 12,
3009
+ cy: 12,
3010
+ r: 2,
3011
+ fill: "currentColor"
3012
+ })
3013
+ )
3014
+ );
3015
+
2497
3016
  const IconTrackpad = forwardRef(
2498
3017
  ({ size = "medium", ...props }, forwardRef2) => createElement(
2499
3018
  StyledIcon,
@@ -2710,5 +3229,5 @@ const IconWallet = forwardRef(
2710
3229
  )
2711
3230
  );
2712
3231
 
2713
- export { IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconBarThree, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleMotionX, IconCircleNotch, IconCirclesConnected, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconCluster, IconClustered, IconCog, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCursor, IconCursorFilled, IconEnvelope, IconExclamationPointCircle, IconFactory, IconFactoryHouse, IconFunnel, IconGauge, IconGlobe, IconHand, IconHandFilled, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLineDiagonal, IconLink, IconLockClosed, IconLockOpen, IconMagnifyingGlass, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMouse, IconParallelogram, IconPauseCircle, IconPdf, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconQuestionMarkCircle, IconRhombus, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareRounded, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresThree, IconStickyNote, IconStopCircle, IconTextT, IconThumbsUp, IconTicket, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconUser, IconUserAdd, IconUsers, IconWallet };
3232
+ export { IconAlignBottom, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconBarThree, IconBell, IconBellSlash, IconBellTilt, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleMotionX, IconCircleNotch, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCluster, IconClustered, IconCog, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCursor, IconCursorFilled, IconEnvelope, IconExclamationPointCircle, IconFactory, IconFactoryHouse, IconFunnel, IconGauge, IconGlobe, IconGraduationCap, IconHand, IconHandFilled, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLifesaver, IconLightning, IconLineDiagonal, IconLink, IconLockClosed, IconLockOpen, IconMagnet, IconMagnifyingGlass, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMouse, IconParallelogram, IconPauseCircle, IconPdf, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPushPin, IconQuestionMarkCircle, IconRhombus, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareRounded, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresThree, IconStickyNote, IconStopCircle, IconTag, IconTextT, IconThumbsUp, IconTicket, IconTimer, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconUser, IconUserAdd, IconUsers, IconWallet };
2714
3233
  //# sourceMappingURL=module.js.map