@mirohq/design-system-icons 1.11.1 → 1.12.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 CHANGED
@@ -1948,6 +1948,34 @@ const IconBookmark = react.forwardRef(
1948
1948
  );
1949
1949
  IconBookmark[designSystemBaseIcon.iconSymbol] = true;
1950
1950
 
1951
+ const IconBoxCaptionsFilled = react.forwardRef(
1952
+ ({ size = "medium", ...props }, forwardRef2) => {
1953
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
1954
+ return react.createElement(
1955
+ StyledIcon,
1956
+ {
1957
+ ...props,
1958
+ debug,
1959
+ "aria-hidden": true,
1960
+ size,
1961
+ viewBox: "0 0 24 24",
1962
+ fill: "none",
1963
+ ref: forwardRef2
1964
+ },
1965
+ /* @__PURE__ */ jsxRuntime.jsx(
1966
+ "path",
1967
+ {
1968
+ fill: "currentColor",
1969
+ fillRule: "evenodd",
1970
+ d: "M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14ZM9.112 9.336c-.482 0-.943.097-1.348.287a2.662 2.662 0 0 0-.458.273c-.605.45-1.01 1.166-1.054 2.131a3.883 3.883 0 0 0 0 .346c.077 1.76 1.334 2.692 2.86 2.692 1.504 0 2.552-.825 2.656-2.097h-1.416a1.016 1.016 0 0 1-.501.695 1.263 1.263 0 0 1-.188.089 1.584 1.584 0 0 1-.705.09 1.47 1.47 0 0 1-.28-.053c-.58-.17-.998-.705-.998-1.589 0-.748.303-1.247.747-1.485.08-.043.166-.078.255-.104.133-.039.276-.06.422-.06a1.469 1.469 0 0 1 .45.063c.412.122.696.416.75.818H11.8c-.152-1.272-1.208-2.096-2.688-2.096Zm5.961 0c-.482 0-.943.097-1.348.287a2.66 2.66 0 0 0-.458.273c-.605.45-1.01 1.166-1.054 2.131a3.929 3.929 0 0 0 0 .346c.077 1.76 1.334 2.692 2.86 2.692 1.504 0 2.552-.825 2.655-2.097h-1.416a1.016 1.016 0 0 1-.5.695 1.258 1.258 0 0 1-.188.089 1.584 1.584 0 0 1-.705.09 1.47 1.47 0 0 1-.28-.053c-.58-.17-.998-.705-.998-1.589 0-.748.303-1.247.747-1.485.08-.043.166-.078.255-.104a1.5 1.5 0 0 1 .422-.06 1.467 1.467 0 0 1 .45.063c.412.122.695.416.75.818h1.496c-.152-1.272-1.208-2.096-2.688-2.096Z",
1971
+ clipRule: "evenodd"
1972
+ }
1973
+ )
1974
+ );
1975
+ }
1976
+ );
1977
+ IconBoxCaptionsFilled[designSystemBaseIcon.iconSymbol] = true;
1978
+
1951
1979
  const IconBoxCaptions = react.forwardRef(
1952
1980
  ({ size = "medium", ...props }, forwardRef2) => {
1953
1981
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -2532,6 +2560,32 @@ const IconChatCheck = react.forwardRef(
2532
2560
  );
2533
2561
  IconChatCheck[designSystemBaseIcon.iconSymbol] = true;
2534
2562
 
2563
+ const IconChatCross = react.forwardRef(
2564
+ ({ size = "medium", ...props }, forwardRef2) => {
2565
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
2566
+ return react.createElement(
2567
+ StyledIcon,
2568
+ {
2569
+ ...props,
2570
+ debug,
2571
+ "aria-hidden": true,
2572
+ size,
2573
+ viewBox: "0 0 24 24",
2574
+ fill: "none",
2575
+ ref: forwardRef2
2576
+ },
2577
+ /* @__PURE__ */ jsxRuntime.jsx(
2578
+ "path",
2579
+ {
2580
+ fill: "currentColor",
2581
+ d: "M21.707 2.707 19.414 5l2.293 2.293-1.414 1.414L18 6.414l-2.293 2.293-1.414-1.414L16.586 5l-2.293-2.293 1.414-1.414L18 3.586l2.293-2.293 1.414 1.414ZM2 12c0-5.147 3.889-9.386 8.89-9.94l.22 1.99a8.002 8.002 0 0 0-5.926 12.14l.103.821-.764 2.456 2.431-.77.83.104a7.966 7.966 0 0 0 4.216 1.2 8.002 8.002 0 0 0 7.951-7.111l1.988.22C21.387 18.11 17.148 22 12 22a9.973 9.973 0 0 1-4.865-1.263l-3.832 1.216-1.258-1.25 1.201-3.868A9.958 9.958 0 0 1 2 12Z"
2582
+ }
2583
+ )
2584
+ );
2585
+ }
2586
+ );
2587
+ IconChatCross[designSystemBaseIcon.iconSymbol] = true;
2588
+
2535
2589
  const IconChatDashesLinesTwo = react.forwardRef(
2536
2590
  ({ size = "medium", ...props }, forwardRef2) => {
2537
2591
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -6466,6 +6520,32 @@ const IconHighlighter = react.forwardRef(
6466
6520
  );
6467
6521
  IconHighlighter[designSystemBaseIcon.iconSymbol] = true;
6468
6522
 
6523
+ const IconHorizontalBlocks = react.forwardRef(
6524
+ ({ size = "medium", ...props }, forwardRef2) => {
6525
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
6526
+ return react.createElement(
6527
+ StyledIcon,
6528
+ {
6529
+ ...props,
6530
+ debug,
6531
+ "aria-hidden": true,
6532
+ size,
6533
+ viewBox: "0 0 24 24",
6534
+ fill: "none",
6535
+ ref: forwardRef2
6536
+ },
6537
+ /* @__PURE__ */ jsxRuntime.jsx(
6538
+ "path",
6539
+ {
6540
+ fill: "currentColor",
6541
+ d: "M5 15v4h10v-4H5Zm12 4a2 2 0 0 1-2 2H5a2 2 0 0 1-1.99-1.796L3 19v-4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4ZM5 5v4h14V5H5Zm16 4a2 2 0 0 1-2 2H5a2 2 0 0 1-1.99-1.796L3 9V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4Z"
6542
+ }
6543
+ )
6544
+ );
6545
+ }
6546
+ );
6547
+ IconHorizontalBlocks[designSystemBaseIcon.iconSymbol] = true;
6548
+
6469
6549
  const IconHouse = react.forwardRef(
6470
6550
  ({ size = "medium", ...props }, forwardRef2) => {
6471
6551
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -7100,6 +7180,26 @@ const IconLineTwoDiagonalTopRightDouble = react.forwardRef(
7100
7180
  );
7101
7181
  IconLineTwoDiagonalTopRightDouble[designSystemBaseIcon.iconSymbol] = true;
7102
7182
 
7183
+ const IconLineVertical = react.forwardRef(
7184
+ ({ size = "medium", ...props }, forwardRef2) => {
7185
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
7186
+ return react.createElement(
7187
+ StyledIcon,
7188
+ {
7189
+ ...props,
7190
+ debug,
7191
+ "aria-hidden": true,
7192
+ size,
7193
+ viewBox: "0 0 24 24",
7194
+ fill: "none",
7195
+ ref: forwardRef2
7196
+ },
7197
+ /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M14 20h-2V4h2v16Z" })
7198
+ );
7199
+ }
7200
+ );
7201
+ IconLineVertical[designSystemBaseIcon.iconSymbol] = true;
7202
+
7103
7203
  const IconLinesThreeHorizontalLineVerticalCenter = react.forwardRef(({ size = "medium", ...props }, forwardRef2) => {
7104
7204
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
7105
7205
  return react.createElement(
@@ -7470,6 +7570,34 @@ const IconMagnifyingGlassLightning = react.forwardRef(
7470
7570
  );
7471
7571
  IconMagnifyingGlassLightning[designSystemBaseIcon.iconSymbol] = true;
7472
7572
 
7573
+ const IconMagnifyingGlassMinus = react.forwardRef(
7574
+ ({ size = "medium", ...props }, forwardRef2) => {
7575
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
7576
+ return react.createElement(
7577
+ StyledIcon,
7578
+ {
7579
+ ...props,
7580
+ debug,
7581
+ "aria-hidden": true,
7582
+ size,
7583
+ viewBox: "0 0 24 24",
7584
+ fill: "none",
7585
+ ref: forwardRef2
7586
+ },
7587
+ /* @__PURE__ */ jsxRuntime.jsx(
7588
+ "path",
7589
+ {
7590
+ fill: "currentColor",
7591
+ fillRule: "evenodd",
7592
+ d: "M8.835 3.097c.054-.01.11-.018.165-.026V5.1a5 5 0 1 0 6 4.9h2a6.97 6.97 0 0 1-1.394 4.192l5.101 5.1-1.414 1.415-5.1-5.1a7 7 0 1 1-5.358-12.51ZM19 5v2h-7V5h7Z",
7593
+ clipRule: "evenodd"
7594
+ }
7595
+ )
7596
+ );
7597
+ }
7598
+ );
7599
+ IconMagnifyingGlassMinus[designSystemBaseIcon.iconSymbol] = true;
7600
+
7473
7601
  const IconMagnifyingGlassPlus = react.forwardRef(
7474
7602
  ({ size = "medium", ...props }, forwardRef2) => {
7475
7603
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -9672,7 +9800,7 @@ const IconProtoCheckbox = react.forwardRef(
9672
9800
  "path",
9673
9801
  {
9674
9802
  fill: "currentColor",
9675
- d: "M17 8a1 1 0 0 0-.898-.995L16 7H8a1 1 0 0 0-1 1v8l.005.102A1 1 0 0 0 8 17h8a1 1 0 0 0 1-1V8Zm2 8a3 3 0 0 1-3 3H8a3 3 0 0 1-2.996-2.846L5 16V8a3 3 0 0 1 3-3h8l.154.004A3 3 0 0 1 19 8v8Zm-3.737-5.354-3.393 4-1.528-.002-1.608-1.914 1.532-1.287.844 1.006 2.627-3.095 1.526 1.293Z"
9803
+ d: "M19 6a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6Zm2 12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12Zm-4.21-9.387-5.429 7-1.583-.004-2.571-3.347 1.586-1.219 1.781 2.32 4.636-5.976 1.58 1.226Z"
9676
9804
  }
9677
9805
  )
9678
9806
  );
@@ -9776,9 +9904,7 @@ const IconProtoRadio = react.forwardRef(
9776
9904
  "path",
9777
9905
  {
9778
9906
  fill: "currentColor",
9779
- fillRule: "evenodd",
9780
- d: "M12 17a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 2a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm3-7a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",
9781
- clipRule: "evenodd"
9907
+ d: "M19 12a7 7 0 1 0-7 7v2a9 9 0 1 1 0-18 9 9 0 0 1 0 18v-2a7 7 0 0 0 7-7Zm-3 0a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"
9782
9908
  }
9783
9909
  )
9784
9910
  );
@@ -10336,6 +10462,30 @@ const IconRectanglePortraitFilled = react.forwardRef(
10336
10462
  );
10337
10463
  IconRectanglePortraitFilled[designSystemBaseIcon.iconSymbol] = true;
10338
10464
 
10465
+ const IconRectanglePortraitSquareBottomRight = react.forwardRef(({ size = "medium", ...props }, forwardRef2) => {
10466
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10467
+ return react.createElement(
10468
+ StyledIcon,
10469
+ {
10470
+ ...props,
10471
+ debug,
10472
+ "aria-hidden": true,
10473
+ size,
10474
+ viewBox: "0 0 24 24",
10475
+ fill: "none",
10476
+ ref: forwardRef2
10477
+ },
10478
+ /* @__PURE__ */ jsxRuntime.jsx(
10479
+ "path",
10480
+ {
10481
+ fill: "currentColor",
10482
+ d: "M11.5 10.5h7v6h-7v-6ZM20 7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10l.005.102A1 1 0 0 0 5 18h14a1 1 0 0 0 1-1V7Zm2 10a3 3 0 0 1-3 3H5a3 3 0 0 1-2.996-2.846L2 17V7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10Z"
10483
+ }
10484
+ )
10485
+ );
10486
+ });
10487
+ IconRectanglePortraitSquareBottomRight[designSystemBaseIcon.iconSymbol] = true;
10488
+
10339
10489
  const IconRectanglePortraitSquareTopLeft = react.forwardRef(
10340
10490
  ({ size = "medium", ...props }, forwardRef2) => {
10341
10491
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -10442,6 +10592,32 @@ const IconRectangleTriangleBottomCenter = react.forwardRef(
10442
10592
  );
10443
10593
  IconRectangleTriangleBottomCenter[designSystemBaseIcon.iconSymbol] = true;
10444
10594
 
10595
+ const IconRectanglesLayout = react.forwardRef(
10596
+ ({ size = "medium", ...props }, forwardRef2) => {
10597
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10598
+ return react.createElement(
10599
+ StyledIcon,
10600
+ {
10601
+ ...props,
10602
+ debug,
10603
+ "aria-hidden": true,
10604
+ size,
10605
+ viewBox: "0 0 24 24",
10606
+ fill: "none",
10607
+ ref: forwardRef2
10608
+ },
10609
+ /* @__PURE__ */ jsxRuntime.jsx(
10610
+ "path",
10611
+ {
10612
+ fill: "currentColor",
10613
+ d: "m13 4-1 1v6l1 1h8l1-1V5l-1-1h-8Zm7 6h-6V6h6v4ZM3 3 2 4v15l1 1h6l1-1V4L9 3H3Zm5 15H4V5h4v13Zm5-4-1 1v5l1 1h6l1-1v-5l-1-1h-6Zm5 5h-4v-3h4v3Z"
10614
+ }
10615
+ )
10616
+ );
10617
+ }
10618
+ );
10619
+ IconRectanglesLayout[designSystemBaseIcon.iconSymbol] = true;
10620
+
10445
10621
  const IconRectanglesSquares = react.forwardRef(
10446
10622
  ({ size = "medium", ...props }, forwardRef2) => {
10447
10623
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -11988,6 +12164,32 @@ const IconSpinner = react.forwardRef(
11988
12164
  );
11989
12165
  IconSpinner[designSystemBaseIcon.iconSymbol] = true;
11990
12166
 
12167
+ const IconSplitHorizontal = react.forwardRef(
12168
+ ({ size = "medium", ...props }, forwardRef2) => {
12169
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
12170
+ return react.createElement(
12171
+ StyledIcon,
12172
+ {
12173
+ ...props,
12174
+ debug,
12175
+ "aria-hidden": true,
12176
+ size,
12177
+ viewBox: "0 0 24 24",
12178
+ fill: "none",
12179
+ ref: forwardRef2
12180
+ },
12181
+ /* @__PURE__ */ jsxRuntime.jsx(
12182
+ "path",
12183
+ {
12184
+ fill: "currentColor",
12185
+ d: "M3 18V6a3 3 0 0 1 3-3h2v2H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h2v2H6a3 3 0 0 1-3-3Zm16 0V6a1 1 0 0 0-1-1h-2V3h2a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3h-2v-2h2a1 1 0 0 0 1-1Zm-6 5h-2V1h2v22Z"
12186
+ }
12187
+ )
12188
+ );
12189
+ }
12190
+ );
12191
+ IconSplitHorizontal[designSystemBaseIcon.iconSymbol] = true;
12192
+
11991
12193
  const IconSplitVertical = react.forwardRef(
11992
12194
  ({ size = "medium", ...props }, forwardRef2) => {
11993
12195
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -14746,6 +14948,32 @@ const IconUsers = react.forwardRef(
14746
14948
  );
14747
14949
  IconUsers[designSystemBaseIcon.iconSymbol] = true;
14748
14950
 
14951
+ const IconVerticalBlocks = react.forwardRef(
14952
+ ({ size = "medium", ...props }, forwardRef2) => {
14953
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
14954
+ return react.createElement(
14955
+ StyledIcon,
14956
+ {
14957
+ ...props,
14958
+ debug,
14959
+ "aria-hidden": true,
14960
+ size,
14961
+ viewBox: "0 0 24 24",
14962
+ fill: "none",
14963
+ ref: forwardRef2
14964
+ },
14965
+ /* @__PURE__ */ jsxRuntime.jsx(
14966
+ "path",
14967
+ {
14968
+ fill: "currentColor",
14969
+ d: "M15 5h4v12h-4V5Zm4 14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4ZM5 5h4v14H5V5Zm4 16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4Z"
14970
+ }
14971
+ )
14972
+ );
14973
+ }
14974
+ );
14975
+ IconVerticalBlocks[designSystemBaseIcon.iconSymbol] = true;
14976
+
14749
14977
  const IconVideoCameraDot = react.forwardRef(
14750
14978
  ({ size = "medium", ...props }, forwardRef2) => {
14751
14979
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -15256,6 +15484,7 @@ exports.IconBoard = IconBoard;
15256
15484
  exports.IconBookOpenInfo = IconBookOpenInfo;
15257
15485
  exports.IconBookmark = IconBookmark;
15258
15486
  exports.IconBoxCaptions = IconBoxCaptions;
15487
+ exports.IconBoxCaptionsFilled = IconBoxCaptionsFilled;
15259
15488
  exports.IconBracketClose = IconBracketClose;
15260
15489
  exports.IconBracketCurlyLeft = IconBracketCurlyLeft;
15261
15490
  exports.IconBracketCurlyRight = IconBracketCurlyRight;
@@ -15278,6 +15507,7 @@ exports.IconChartBarY = IconChartBarY;
15278
15507
  exports.IconChartBarYSimple = IconChartBarYSimple;
15279
15508
  exports.IconChat = IconChat;
15280
15509
  exports.IconChatCheck = IconChatCheck;
15510
+ exports.IconChatCross = IconChatCross;
15281
15511
  exports.IconChatDashesLinesTwo = IconChatDashesLinesTwo;
15282
15512
  exports.IconChatLinesCross = IconChatLinesCross;
15283
15513
  exports.IconChatLinesDot = IconChatLinesDot;
@@ -15425,6 +15655,7 @@ exports.IconHexagon = IconHexagon;
15425
15655
  exports.IconHighlighter = IconHighlighter;
15426
15656
  exports.IconHighlighterColorSelection = IconHighlighterColorSelection;
15427
15657
  exports.IconHighlighterUnderline = IconHighlighterUnderline;
15658
+ exports.IconHorizontalBlocks = IconHorizontalBlocks;
15428
15659
  exports.IconHouse = IconHouse;
15429
15660
  exports.IconImage = IconImage;
15430
15661
  exports.IconIndentLeft = IconIndentLeft;
@@ -15449,6 +15680,7 @@ exports.IconLineHorizontal = IconLineHorizontal;
15449
15680
  exports.IconLineOrthogonal = IconLineOrthogonal;
15450
15681
  exports.IconLineStraight = IconLineStraight;
15451
15682
  exports.IconLineTwoDiagonalTopRightDouble = IconLineTwoDiagonalTopRightDouble;
15683
+ exports.IconLineVertical = IconLineVertical;
15452
15684
  exports.IconLinesThreeHorizontal = IconLinesThreeHorizontal;
15453
15685
  exports.IconLinesThreeHorizontalLineVerticalCenter = IconLinesThreeHorizontalLineVerticalCenter;
15454
15686
  exports.IconLinesThreeVertical = IconLinesThreeVertical;
@@ -15464,6 +15696,7 @@ exports.IconLogout = IconLogout;
15464
15696
  exports.IconMagnet = IconMagnet;
15465
15697
  exports.IconMagnifyingGlass = IconMagnifyingGlass;
15466
15698
  exports.IconMagnifyingGlassLightning = IconMagnifyingGlassLightning;
15699
+ exports.IconMagnifyingGlassMinus = IconMagnifyingGlassMinus;
15467
15700
  exports.IconMagnifyingGlassPlus = IconMagnifyingGlassPlus;
15468
15701
  exports.IconMap = IconMap;
15469
15702
  exports.IconMegaphone = IconMegaphone;
@@ -15572,9 +15805,11 @@ exports.IconRectanglePortraitDash = IconRectanglePortraitDash;
15572
15805
  exports.IconRectanglePortraitDashSquareTopCenter = IconRectanglePortraitDashSquareTopCenter;
15573
15806
  exports.IconRectanglePortraitDashSquareTopLeft = IconRectanglePortraitDashSquareTopLeft;
15574
15807
  exports.IconRectanglePortraitFilled = IconRectanglePortraitFilled;
15808
+ exports.IconRectanglePortraitSquareBottomRight = IconRectanglePortraitSquareBottomRight;
15575
15809
  exports.IconRectanglePortraitSquareTopLeft = IconRectanglePortraitSquareTopLeft;
15576
15810
  exports.IconRectangleTick = IconRectangleTick;
15577
15811
  exports.IconRectangleTriangleBottomCenter = IconRectangleTriangleBottomCenter;
15812
+ exports.IconRectanglesLayout = IconRectanglesLayout;
15578
15813
  exports.IconRectanglesSquares = IconRectanglesSquares;
15579
15814
  exports.IconRectanglesThreeAligned = IconRectanglesThreeAligned;
15580
15815
  exports.IconRectanglesThreeFree = IconRectanglesThreeFree;
@@ -15633,6 +15868,7 @@ exports.IconSparksFilled = IconSparksFilled;
15633
15868
  exports.IconSpeakerCross = IconSpeakerCross;
15634
15869
  exports.IconSpeakerHigh = IconSpeakerHigh;
15635
15870
  exports.IconSpinner = IconSpinner;
15871
+ exports.IconSplitHorizontal = IconSplitHorizontal;
15636
15872
  exports.IconSplitVertical = IconSplitVertical;
15637
15873
  exports.IconSquare = IconSquare;
15638
15874
  exports.IconSquareArrowIn = IconSquareArrowIn;
@@ -15736,6 +15972,7 @@ exports.IconUserPenLineBottom = IconUserPenLineBottom;
15736
15972
  exports.IconUserTickDown = IconUserTickDown;
15737
15973
  exports.IconUsers = IconUsers;
15738
15974
  exports.IconUsersThree = IconUsersThree;
15975
+ exports.IconVerticalBlocks = IconVerticalBlocks;
15739
15976
  exports.IconVideoCamera = IconVideoCamera;
15740
15977
  exports.IconVideoCameraDot = IconVideoCameraDot;
15741
15978
  exports.IconVideoCameraLines = IconVideoCameraLines;