@wistia/ui 0.0.8 → 0.0.9

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/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.0.8
3
+ * @license @wistia/ui v0.0.9
4
4
  *
5
5
  * Copyright (c) 2024-2024, Wistia, Inc. and its affiliates.
6
6
  *
@@ -1367,15 +1367,117 @@ var useAriaLive = () => {
1367
1367
  return context;
1368
1368
  };
1369
1369
 
1370
+ // src/components/Badge/Badge.tsx
1371
+ import { forwardRef } from "react";
1372
+ import styled from "styled-components";
1373
+ import { isNotNil } from "@wistia/type-guards";
1374
+
1375
+ // src/private/helpers/getColorScheme/getColorScheme.ts
1376
+ import { css as css9 } from "styled-components";
1377
+ var colorSchemeSchema = [
1378
+ { token: "bg-surface", step: "surface" },
1379
+ { token: "bg-surface-hover", step: "3" },
1380
+ { token: "bg-surface-active", step: "4" },
1381
+ { token: "bg-surface-secondary", step: "3" },
1382
+ { token: "bg-surface-secondary-hover", step: "4" },
1383
+ { token: "bg-surface-secondary-active", step: "5" },
1384
+ { token: "bg-surface-tertiary", step: "5" },
1385
+ { token: "bg-fill", step: "9" },
1386
+ { token: "bg-fill-hover", step: "10" },
1387
+ { token: "bg-fill-active", step: "11" },
1388
+ { token: "text", step: "11" },
1389
+ { token: "text-high-contrast", step: "12" },
1390
+ { token: "text-link", step: "9" },
1391
+ { token: "text-secondary", step: "11" },
1392
+ { token: "text-on-fill", step: "contrast" },
1393
+ { token: "border", step: "6" },
1394
+ { token: "icon", step: "11" },
1395
+ { token: "icon-on-fill", step: "contrast" }
1396
+ ];
1397
+ var defaultScheme = css9`
1398
+ --color-bg-surface: var(--gray-surface);
1399
+ --color-bg-surface-hover: var(--gray-3);
1400
+ --color-bg-surface-active: var(--gray-4);
1401
+ --color-bg-surface-secondary: var(--gray-3);
1402
+ --color-bg-surface-secondary-hover: var(--gray-4);
1403
+ --color-bg-surface-secondary-active: var(--gray-5);
1404
+ --color-bg-surface-tertiary: var(--gray-5);
1405
+ --color-bg-fill: var(--blue-9);
1406
+ --color-bg-fill-hover: var(--blue-10);
1407
+ --color-bg-fill-active: var(--blue-12);
1408
+ --color-text: var(--gray-12);
1409
+ --color-text-link: var(--blue-9);
1410
+ --color-text-secondary: var(--gray-11);
1411
+ --color-text-on-fill: var(--gray-contrast);
1412
+ --color-border: var(--gray-6);
1413
+ --color-icon: var(--gray-11);
1414
+ --color-icon-on-fill: var(--gray-contrast);
1415
+ `;
1416
+ var getColorScheme = (colorScheme) => {
1417
+ if (colorScheme === "inherit") {
1418
+ return null;
1419
+ }
1420
+ if (colorScheme === "default") {
1421
+ return defaultScheme;
1422
+ }
1423
+ return css9`
1424
+ ${colorSchemeSchema.map(({ token, step }) => {
1425
+ return `--color-${token}: var(--${colorScheme === "info" ? "blue" : colorScheme}-${step});`;
1426
+ })}
1427
+ `;
1428
+ };
1429
+
1430
+ // src/components/Badge/Badge.tsx
1431
+ import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
1432
+ var StyledBadge = styled.div`
1433
+ ${({ $colorScheme }) => getColorScheme($colorScheme)};
1434
+ align-items: center;
1435
+ background-color: var(--color-bg-surface-secondary);
1436
+ border-radius: var(--border-radius-rounded);
1437
+ color: var(--color-text);
1438
+ display: inline-flex;
1439
+ font-size: var(--typography-label-4-size);
1440
+ font-weight: var(--typography-label-4-weight);
1441
+ gap: var(--space-01);
1442
+ justify-content: center;
1443
+ padding: var(--space-01) var(--space-02);
1444
+ width: fit-content;
1445
+
1446
+ /* TODO should these be a token? */
1447
+ svg {
1448
+ height: 12px;
1449
+ width: 12px;
1450
+ }
1451
+ `;
1452
+ var Badge = forwardRef(
1453
+ ({ colorScheme = "inherit", label, icon, ...otherProps }, ref) => {
1454
+ const hasIcon = isNotNil(icon);
1455
+ return /* @__PURE__ */ jsxs2(
1456
+ StyledBadge,
1457
+ {
1458
+ ref,
1459
+ ...otherProps,
1460
+ $colorScheme: colorScheme,
1461
+ $hasIcon: hasIcon,
1462
+ children: [
1463
+ hasIcon ? icon : null,
1464
+ /* @__PURE__ */ jsx3("span", { children: label })
1465
+ ]
1466
+ }
1467
+ );
1468
+ }
1469
+ );
1470
+ Badge.displayName = "Badge";
1471
+
1370
1472
  // src/components/Box/Box.tsx
1371
1473
  import { Children, cloneElement } from "react";
1372
- import styled from "styled-components";
1373
- import { isNotNil, isNil as isNil3, isRecord } from "@wistia/type-guards";
1374
- import { jsx as jsx3 } from "react/jsx-runtime";
1474
+ import styled2 from "styled-components";
1475
+ import { isNotNil as isNotNil2, isNil as isNil3, isRecord } from "@wistia/type-guards";
1476
+ import { jsx as jsx4 } from "react/jsx-runtime";
1375
1477
  var isDev = process.env["NODE_ENV"] === "development";
1376
1478
  var PROPS_FOR_FLEX_CHILDREN = /* @__PURE__ */ new Set(["alignSelf", "basis", "grow", "order", "shrink"]);
1377
1479
  var getGapStyle = (gap) => {
1378
- if (isNotNil(gap)) {
1480
+ if (isNotNil2(gap)) {
1379
1481
  if (isRecord(gap)) {
1380
1482
  return Object.entries(gap).map(([key, value]) => `${key}-gap: ${value};`).join("");
1381
1483
  }
@@ -1413,26 +1515,26 @@ var getFillViewportStyle = (fillViewport) => {
1413
1515
  }
1414
1516
  return void 0;
1415
1517
  };
1416
- var BoxComponent = styled.div`
1518
+ var BoxComponent = styled2.div`
1417
1519
  align-content: ${({ alignContent }) => alignContent};
1418
1520
  align-items: ${({ alignItems }) => alignItems};
1419
1521
  align-self: ${({ alignSelf }) => alignSelf ?? null};
1420
- display: ${({ inline }) => isNotNil(inline) && inline ? "inline-flex" : "flex"};
1421
- flex-basis: ${({ basis }) => isNotNil(basis) ? basis : null};
1522
+ display: ${({ inline }) => isNotNil2(inline) && inline ? "inline-flex" : "flex"};
1523
+ flex-basis: ${({ basis }) => isNotNil2(basis) ? basis : null};
1422
1524
  flex-direction: ${({ flexDirection }) => flexDirection};
1423
1525
  ${({ fillBox: fill }) => getFillStyle(fill)};
1424
1526
  ${({ fillViewport }) => getFillViewportStyle(fillViewport)};
1425
1527
 
1426
1528
  /* Box children styles */
1427
- flex-grow: ${({ grow }) => isNotNil(grow) ? grow : null};
1428
- flex-shrink: ${({ shrink }) => isNotNil(shrink) ? shrink : null};
1529
+ flex-grow: ${({ grow }) => isNotNil2(grow) ? grow : null};
1530
+ flex-shrink: ${({ shrink }) => isNotNil2(shrink) ? shrink : null};
1429
1531
  flex-wrap: ${({ wrapItems }) => wrapItems ? "wrap" : "nowrap"};
1430
1532
  ${({ gap }) => getGapStyle(gap)};
1431
1533
  justify-content: ${({ justifyContent }) => justifyContent};
1432
- order: ${({ order }) => isNotNil(order) ? order : null};
1534
+ order: ${({ order }) => isNotNil2(order) ? order : null};
1433
1535
  `;
1434
1536
  var wrapChildren = (children) => {
1435
- if (isNotNil(children)) {
1537
+ if (isNotNil2(children)) {
1436
1538
  if (typeof children === "object" && isDev) {
1437
1539
  return Children.map(children, (child) => {
1438
1540
  if (isNil3(child)) return null;
@@ -1467,7 +1569,7 @@ var Box = ({
1467
1569
  }
1468
1570
  });
1469
1571
  }
1470
- return /* @__PURE__ */ jsx3(
1572
+ return /* @__PURE__ */ jsx4(
1471
1573
  BoxComponent,
1472
1574
  {
1473
1575
  alignContent,
@@ -1487,13 +1589,13 @@ var Box = ({
1487
1589
  Box.displayName = "Box";
1488
1590
 
1489
1591
  // src/components/Button/Button.tsx
1490
- import { forwardRef as forwardRef2 } from "react";
1491
- import { isNotNil as isNotNil3, isNotUndefined as isNotUndefined3 } from "@wistia/type-guards";
1492
- import styled4 from "styled-components";
1592
+ import { forwardRef as forwardRef3 } from "react";
1593
+ import { isNotNil as isNotNil4, isNotUndefined as isNotUndefined3 } from "@wistia/type-guards";
1594
+ import styled5 from "styled-components";
1493
1595
 
1494
1596
  // src/css/buttonResetCss.tsx
1495
- import { css as css9 } from "styled-components";
1496
- var buttonResetCss = css9`
1597
+ import { css as css10 } from "styled-components";
1598
+ var buttonResetCss = css10`
1497
1599
  align-items: center;
1498
1600
  background-color: transparent;
1499
1601
  background-image: none;
@@ -1538,8 +1640,8 @@ var buttonResetCss = css9`
1538
1640
  `;
1539
1641
 
1540
1642
  // src/components/Button/buttonStyles.tsx
1541
- import { css as css10 } from "styled-components";
1542
- var buttonSmallStyles = css10`
1643
+ import { css as css11 } from "styled-components";
1644
+ var buttonSmallStyles = css11`
1543
1645
  --button-padding-vertical: var(--space-01);
1544
1646
  --button-padding-horizontal: var(--space-02);
1545
1647
  --button-label-padding-horizontal: var(--space-01);
@@ -1550,7 +1652,7 @@ var buttonSmallStyles = css10`
1550
1652
  --button-icon-size: 12px;
1551
1653
  --button-label-gap: 4px;
1552
1654
  `;
1553
- var buttonMediumStyles = css10`
1655
+ var buttonMediumStyles = css11`
1554
1656
  --button-padding-vertical: var(--space-02);
1555
1657
  --button-padding-horizontal: var(--space-02);
1556
1658
  --button-label-padding-horizontal: 6px;
@@ -1561,7 +1663,7 @@ var buttonMediumStyles = css10`
1561
1663
  --button-icon-size: 16px;
1562
1664
  --button-label-gap: 6px;
1563
1665
  `;
1564
- var buttonLargeStyles = css10`
1666
+ var buttonLargeStyles = css11`
1565
1667
  --button-padding-vertical: var(--space-02);
1566
1668
  --button-padding-horizontal: var(--space-02);
1567
1669
  --button-label-padding-horizontal: var(--space-02);
@@ -1572,7 +1674,7 @@ var buttonLargeStyles = css10`
1572
1674
  --button-icon-size: 24px;
1573
1675
  --button-label-gap: 8px;
1574
1676
  `;
1575
- var buttonHeroStyles = css10`
1677
+ var buttonHeroStyles = css11`
1576
1678
  --button-padding-vertical: var(--space-03);
1577
1679
  --button-padding-horizontal: var(--space-03);
1578
1680
  --button-label-padding-horizontal: var(--space-02);
@@ -1583,35 +1685,35 @@ var buttonHeroStyles = css10`
1583
1685
  --button-icon-size: 24px;
1584
1686
  --button-label-gap: 8px;
1585
1687
  `;
1586
- var ghostButtonVariant = css10`
1688
+ var ghostButtonVariant = css11`
1587
1689
  --button-color-bg: transparent;
1588
1690
  --button-color-bg-hover: var(--color-bg-surface-hover);
1589
1691
  --button-color-bg-active: var(--color-bg-surface-active);
1590
1692
  --button-color-text: var(--color-text);
1591
1693
  --button-color-icon: var(--color-icon);
1592
1694
  `;
1593
- var outlineButtonVariant = css10`
1695
+ var outlineButtonVariant = css11`
1594
1696
  ${ghostButtonVariant};
1595
1697
  --button-color-border: var(--color-border);
1596
1698
 
1597
1699
  border: 1px solid var(--button-color-border);
1598
1700
  box-shadow: 0 0 0 2px var(--button-color-border) inset;
1599
1701
  `;
1600
- var softButtonVariant = css10`
1702
+ var softButtonVariant = css11`
1601
1703
  --button-color-bg: var(--color-bg-surface-secondary);
1602
1704
  --button-color-bg-hover: var(--color-bg-surface-secondary-hover);
1603
1705
  --button-color-bg-active: var(--color-bg-surface-secondary-active);
1604
1706
  --button-color-text: var(--color-text);
1605
1707
  --button-color-icon: var(--color-icon);
1606
1708
  `;
1607
- var solidButtonVariant = css10`
1709
+ var solidButtonVariant = css11`
1608
1710
  --button-color-bg: var(--color-bg-fill);
1609
1711
  --button-color-bg-hover: var(--color-bg-fill-hover);
1610
1712
  --button-color-bg-active: var(--color-bg-fill-active);
1611
1713
  --button-color-text: var(--color-text-on-fill);
1612
1714
  --button-color-icon: var(--color-icon-on-fill);
1613
1715
  `;
1614
- var disabledButtonVariant = css10`
1716
+ var disabledButtonVariant = css11`
1615
1717
  --button-color-bg: var(--color-bg-surface-disabled);
1616
1718
  --button-color-bg-hover: var(--color-bg-surface-disabled);
1617
1719
  --button-color-bg-active: var(--color-bg-surface-disabled);
@@ -1619,7 +1721,7 @@ var disabledButtonVariant = css10`
1619
1721
  --button-color-icon: var(--color-icon-disabled);
1620
1722
  --button-color-border: var(--color-border-disabled);
1621
1723
  `;
1622
- var pressedButtonVariant = css10`
1724
+ var pressedButtonVariant = css11`
1623
1725
  --button-color-bg: var(--color-bg-surface-selected);
1624
1726
  --button-color-bg-hover: var(--color-bg-surface-selected-hover);
1625
1727
  --button-color-bg-active: var(--color-bg-surface-selected-active);
@@ -1627,7 +1729,7 @@ var pressedButtonVariant = css10`
1627
1729
  --button-color-icon: var(--color-icon-selected);
1628
1730
  --button-color-border: var(--color-border-selected);
1629
1731
  `;
1630
- var buttonBaseStyles = css10`
1732
+ var buttonBaseStyles = css11`
1631
1733
  border-radius: var(--border-radius-rounded);
1632
1734
  font-family: var(--button-typography-family);
1633
1735
  font-size: var(--button-typography-size);
@@ -1693,74 +1795,19 @@ var buttonSizeStyles = {
1693
1795
  hero: buttonHeroStyles
1694
1796
  };
1695
1797
 
1696
- // src/private/helpers/getColorScheme/getColorScheme.ts
1697
- import { css as css11 } from "styled-components";
1698
- var colorSchemeSchema = [
1699
- { token: "bg-surface", step: "surface" },
1700
- { token: "bg-surface-hover", step: "3" },
1701
- { token: "bg-surface-active", step: "4" },
1702
- { token: "bg-surface-secondary", step: "3" },
1703
- { token: "bg-surface-secondary-hover", step: "4" },
1704
- { token: "bg-surface-secondary-active", step: "5" },
1705
- { token: "bg-surface-tertiary", step: "5" },
1706
- { token: "bg-fill", step: "9" },
1707
- { token: "bg-fill-hover", step: "10" },
1708
- { token: "bg-fill-active", step: "11" },
1709
- { token: "text", step: "11" },
1710
- { token: "text-high-contrast", step: "12" },
1711
- { token: "text-link", step: "9" },
1712
- { token: "text-secondary", step: "11" },
1713
- { token: "text-on-fill", step: "contrast" },
1714
- { token: "border", step: "6" },
1715
- { token: "icon", step: "11" },
1716
- { token: "icon-on-fill", step: "contrast" }
1717
- ];
1718
- var defaultScheme = css11`
1719
- --color-bg-surface: var(--gray-surface);
1720
- --color-bg-surface-hover: var(--gray-3);
1721
- --color-bg-surface-active: var(--gray-4);
1722
- --color-bg-surface-secondary: var(--gray-3);
1723
- --color-bg-surface-secondary-hover: var(--gray-4);
1724
- --color-bg-surface-secondary-active: var(--gray-5);
1725
- --color-bg-surface-tertiary: var(--gray-5);
1726
- --color-bg-fill: var(--blue-9);
1727
- --color-bg-fill-hover: var(--blue-10);
1728
- --color-bg-fill-active: var(--blue-12);
1729
- --color-text: var(--gray-12);
1730
- --color-text-link: var(--blue-9);
1731
- --color-text-secondary: var(--gray-11);
1732
- --color-text-on-fill: var(--gray-contrast);
1733
- --color-border: var(--gray-6);
1734
- --color-icon: var(--gray-11);
1735
- --color-icon-on-fill: var(--gray-contrast);
1736
- `;
1737
- var getColorScheme = (colorScheme) => {
1738
- if (colorScheme === "inherit") {
1739
- return null;
1740
- }
1741
- if (colorScheme === "default") {
1742
- return defaultScheme;
1743
- }
1744
- return css11`
1745
- ${colorSchemeSchema.map(({ token, step }) => {
1746
- return `--color-${token}: var(--${colorScheme === "info" ? "blue" : colorScheme}-${step});`;
1747
- })}
1748
- `;
1749
- };
1750
-
1751
1798
  // src/components/Icon/Icon.tsx
1752
1799
  import { isNil as isNil4 } from "@wistia/type-guards";
1753
- import styled2 from "styled-components";
1800
+ import styled3 from "styled-components";
1754
1801
 
1755
1802
  // src/components/Icon/icons/AbTestIcon.tsx
1756
- import { jsx as jsx4 } from "react/jsx-runtime";
1757
- var AbTestIcon = (props) => /* @__PURE__ */ jsx4(
1803
+ import { jsx as jsx5 } from "react/jsx-runtime";
1804
+ var AbTestIcon = (props) => /* @__PURE__ */ jsx5(
1758
1805
  "svg",
1759
1806
  {
1760
1807
  ...props,
1761
1808
  viewBox: "0 0 24 24",
1762
1809
  xmlns: "http://www.w3.org/2000/svg",
1763
- children: /* @__PURE__ */ jsx4(
1810
+ children: /* @__PURE__ */ jsx5(
1764
1811
  "path",
1765
1812
  {
1766
1813
  d: "M20.0599 18.296L15.3332 9.09199V3.33334H16.3332C16.8852 3.33334 17.3332 2.88534 17.3332 2.33334C17.3332 1.78134 16.8852 1.33334 16.3332 1.33334H7.66659C7.11459 1.33334 6.66659 1.78134 6.66659 2.33334C6.66659 2.88534 7.11459 3.33334 7.66659 3.33334H8.66658V9.09199L3.93993 18.296C3.4586 19.2333 3.4986 20.3293 4.04793 21.2293C4.59726 22.1293 5.55459 22.6666 6.60792 22.6666H17.3906C18.4452 22.6666 19.4026 22.1293 19.9506 21.2293C20.4999 20.3293 20.5399 19.2333 20.0586 18.296H20.0599ZM10.5559 9.79066C10.6292 9.64932 10.6666 9.49199 10.6666 9.33332V3.33334H13.3332V9.33332C13.3332 9.49199 13.3706 9.64932 13.4439 9.79066L15.6052 14H8.39458L10.5559 9.79066Z",
@@ -1771,14 +1818,14 @@ var AbTestIcon = (props) => /* @__PURE__ */ jsx4(
1771
1818
  );
1772
1819
 
1773
1820
  // src/components/Icon/icons/AccessibilityIcon.tsx
1774
- import { jsx as jsx5 } from "react/jsx-runtime";
1775
- var AccessibilityIcon = (props) => /* @__PURE__ */ jsx5(
1821
+ import { jsx as jsx6 } from "react/jsx-runtime";
1822
+ var AccessibilityIcon = (props) => /* @__PURE__ */ jsx6(
1776
1823
  "svg",
1777
1824
  {
1778
1825
  ...props,
1779
1826
  viewBox: "0 0 24 24",
1780
1827
  xmlns: "http://www.w3.org/2000/svg",
1781
- children: /* @__PURE__ */ jsx5(
1828
+ children: /* @__PURE__ */ jsx6(
1782
1829
  "path",
1783
1830
  {
1784
1831
  clipRule: "evenodd",
@@ -1791,14 +1838,14 @@ var AccessibilityIcon = (props) => /* @__PURE__ */ jsx5(
1791
1838
  );
1792
1839
 
1793
1840
  // src/components/Icon/icons/ActivityIcon.tsx
1794
- import { jsx as jsx6 } from "react/jsx-runtime";
1795
- var ActivityIcon = (props) => /* @__PURE__ */ jsx6(
1841
+ import { jsx as jsx7 } from "react/jsx-runtime";
1842
+ var ActivityIcon = (props) => /* @__PURE__ */ jsx7(
1796
1843
  "svg",
1797
1844
  {
1798
1845
  ...props,
1799
1846
  viewBox: "0 0 24 24",
1800
1847
  xmlns: "http://www.w3.org/2000/svg",
1801
- children: /* @__PURE__ */ jsx6(
1848
+ children: /* @__PURE__ */ jsx7(
1802
1849
  "path",
1803
1850
  {
1804
1851
  d: "M11.9998 1.33334C6.11847 1.33334 1.33315 6.11867 1.33315 12C1.33315 17.8813 6.11847 22.6666 11.9998 22.6666C17.8811 22.6666 22.6664 17.8813 22.6664 12C22.6664 6.11867 17.8811 1.33334 11.9998 1.33334ZM18.3731 10.3733L14.8451 13.9013C14.1971 14.5506 13.1371 14.5506 12.4878 13.9013L10.3331 11.7467L7.0398 15.04C6.84513 15.2346 6.58913 15.3333 6.33313 15.3333C6.07713 15.3333 5.82113 15.236 5.62647 15.04C5.2358 14.6493 5.2358 14.016 5.62647 13.6253L9.15446 10.0973C9.80246 9.44799 10.8625 9.44799 11.5118 10.0973L13.6664 12.252L16.9598 8.95866C17.3504 8.56799 17.9838 8.56799 18.3744 8.95866C18.7651 9.34932 18.7651 9.98266 18.3744 10.3733H18.3731Z",
@@ -1809,14 +1856,14 @@ var ActivityIcon = (props) => /* @__PURE__ */ jsx6(
1809
1856
  );
1810
1857
 
1811
1858
  // src/components/Icon/icons/AddMediaIcon.tsx
1812
- import { jsx as jsx7 } from "react/jsx-runtime";
1813
- var AddMediaIcon = (props) => /* @__PURE__ */ jsx7(
1859
+ import { jsx as jsx8 } from "react/jsx-runtime";
1860
+ var AddMediaIcon = (props) => /* @__PURE__ */ jsx8(
1814
1861
  "svg",
1815
1862
  {
1816
1863
  ...props,
1817
1864
  viewBox: "0 0 24 24",
1818
1865
  xmlns: "http://www.w3.org/2000/svg",
1819
- children: /* @__PURE__ */ jsx7(
1866
+ children: /* @__PURE__ */ jsx8(
1820
1867
  "path",
1821
1868
  {
1822
1869
  clipRule: "evenodd",
@@ -1829,14 +1876,14 @@ var AddMediaIcon = (props) => /* @__PURE__ */ jsx7(
1829
1876
  );
1830
1877
 
1831
1878
  // src/components/Icon/icons/AnnotationLinkIcon.tsx
1832
- import { jsx as jsx8 } from "react/jsx-runtime";
1833
- var AnnotationLinkIcon = (props) => /* @__PURE__ */ jsx8(
1879
+ import { jsx as jsx9 } from "react/jsx-runtime";
1880
+ var AnnotationLinkIcon = (props) => /* @__PURE__ */ jsx9(
1834
1881
  "svg",
1835
1882
  {
1836
1883
  ...props,
1837
1884
  viewBox: "0 0 24 24",
1838
1885
  xmlns: "http://www.w3.org/2000/svg",
1839
- children: /* @__PURE__ */ jsx8(
1886
+ children: /* @__PURE__ */ jsx9(
1840
1887
  "path",
1841
1888
  {
1842
1889
  clipRule: "evenodd",
@@ -1849,14 +1896,14 @@ var AnnotationLinkIcon = (props) => /* @__PURE__ */ jsx8(
1849
1896
  );
1850
1897
 
1851
1898
  // src/components/Icon/icons/AppearanceIcon.tsx
1852
- import { jsx as jsx9 } from "react/jsx-runtime";
1853
- var AppearanceIcon = (props) => /* @__PURE__ */ jsx9(
1899
+ import { jsx as jsx10 } from "react/jsx-runtime";
1900
+ var AppearanceIcon = (props) => /* @__PURE__ */ jsx10(
1854
1901
  "svg",
1855
1902
  {
1856
1903
  ...props,
1857
1904
  viewBox: "0 0 24 24",
1858
1905
  xmlns: "http://www.w3.org/2000/svg",
1859
- children: /* @__PURE__ */ jsx9(
1906
+ children: /* @__PURE__ */ jsx10(
1860
1907
  "path",
1861
1908
  {
1862
1909
  clipRule: "evenodd",
@@ -1869,14 +1916,14 @@ var AppearanceIcon = (props) => /* @__PURE__ */ jsx9(
1869
1916
  );
1870
1917
 
1871
1918
  // src/components/Icon/icons/ArchiveIcon.tsx
1872
- import { jsx as jsx10 } from "react/jsx-runtime";
1873
- var ArchiveIcon = (props) => /* @__PURE__ */ jsx10(
1919
+ import { jsx as jsx11 } from "react/jsx-runtime";
1920
+ var ArchiveIcon = (props) => /* @__PURE__ */ jsx11(
1874
1921
  "svg",
1875
1922
  {
1876
1923
  ...props,
1877
1924
  viewBox: "0 0 24 24",
1878
1925
  xmlns: "http://www.w3.org/2000/svg",
1879
- children: /* @__PURE__ */ jsx10(
1926
+ children: /* @__PURE__ */ jsx11(
1880
1927
  "path",
1881
1928
  {
1882
1929
  d: "M20.3329 2.66666H3.66623C2.37957 2.66666 1.3329 3.71332 1.3329 4.99998V6.99998C1.3329 8.17198 2.2049 9.13597 3.3329 9.29997V17.6666C3.3329 19.6893 4.97689 21.3333 6.99955 21.3333H16.9995C19.0222 21.3333 20.6662 19.6893 20.6662 17.6666V9.29997C21.7942 9.13597 22.6662 8.17331 22.6662 6.99998V4.99998C22.6662 3.71332 21.6195 2.66666 20.3329 2.66666ZM14.6662 13.3333H9.33288C8.78088 13.3333 8.33288 12.8853 8.33288 12.3333C8.33288 11.7813 8.78088 11.3333 9.33288 11.3333H14.6662C15.2182 11.3333 15.6662 11.7813 15.6662 12.3333C15.6662 12.8853 15.2182 13.3333 14.6662 13.3333ZM20.6662 6.99998C20.6662 7.18398 20.5169 7.33331 20.3329 7.33331H3.66623C3.48223 7.33331 3.3329 7.18398 3.3329 6.99998V4.99998C3.3329 4.81598 3.48223 4.66665 3.66623 4.66665H20.3329C20.5169 4.66665 20.6662 4.81598 20.6662 4.99998V6.99998Z",
@@ -1887,14 +1934,14 @@ var ArchiveIcon = (props) => /* @__PURE__ */ jsx10(
1887
1934
  );
1888
1935
 
1889
1936
  // src/components/Icon/icons/ArrowDownIcon.tsx
1890
- import { jsx as jsx11 } from "react/jsx-runtime";
1891
- var ArrowDownIcon = (props) => /* @__PURE__ */ jsx11(
1937
+ import { jsx as jsx12 } from "react/jsx-runtime";
1938
+ var ArrowDownIcon = (props) => /* @__PURE__ */ jsx12(
1892
1939
  "svg",
1893
1940
  {
1894
1941
  ...props,
1895
1942
  viewBox: "0 0 24 24",
1896
1943
  xmlns: "http://www.w3.org/2000/svg",
1897
- children: /* @__PURE__ */ jsx11(
1944
+ children: /* @__PURE__ */ jsx12(
1898
1945
  "path",
1899
1946
  {
1900
1947
  clipRule: "evenodd",
@@ -1907,14 +1954,14 @@ var ArrowDownIcon = (props) => /* @__PURE__ */ jsx11(
1907
1954
  );
1908
1955
 
1909
1956
  // src/components/Icon/icons/ArrowLeftIcon.tsx
1910
- import { jsx as jsx12 } from "react/jsx-runtime";
1911
- var ArrowLeftIcon = (props) => /* @__PURE__ */ jsx12(
1957
+ import { jsx as jsx13 } from "react/jsx-runtime";
1958
+ var ArrowLeftIcon = (props) => /* @__PURE__ */ jsx13(
1912
1959
  "svg",
1913
1960
  {
1914
1961
  ...props,
1915
1962
  viewBox: "0 0 24 24",
1916
1963
  xmlns: "http://www.w3.org/2000/svg",
1917
- children: /* @__PURE__ */ jsx12(
1964
+ children: /* @__PURE__ */ jsx13(
1918
1965
  "path",
1919
1966
  {
1920
1967
  clipRule: "evenodd",
@@ -1927,14 +1974,14 @@ var ArrowLeftIcon = (props) => /* @__PURE__ */ jsx12(
1927
1974
  );
1928
1975
 
1929
1976
  // src/components/Icon/icons/ArrowRightIcon.tsx
1930
- import { jsx as jsx13 } from "react/jsx-runtime";
1931
- var ArrowRightIcon = (props) => /* @__PURE__ */ jsx13(
1977
+ import { jsx as jsx14 } from "react/jsx-runtime";
1978
+ var ArrowRightIcon = (props) => /* @__PURE__ */ jsx14(
1932
1979
  "svg",
1933
1980
  {
1934
1981
  ...props,
1935
1982
  viewBox: "0 0 24 24",
1936
1983
  xmlns: "http://www.w3.org/2000/svg",
1937
- children: /* @__PURE__ */ jsx13(
1984
+ children: /* @__PURE__ */ jsx14(
1938
1985
  "path",
1939
1986
  {
1940
1987
  clipRule: "evenodd",
@@ -1947,14 +1994,14 @@ var ArrowRightIcon = (props) => /* @__PURE__ */ jsx13(
1947
1994
  );
1948
1995
 
1949
1996
  // src/components/Icon/icons/ArrowUpIcon.tsx
1950
- import { jsx as jsx14 } from "react/jsx-runtime";
1951
- var ArrowUpIcon = (props) => /* @__PURE__ */ jsx14(
1997
+ import { jsx as jsx15 } from "react/jsx-runtime";
1998
+ var ArrowUpIcon = (props) => /* @__PURE__ */ jsx15(
1952
1999
  "svg",
1953
2000
  {
1954
2001
  ...props,
1955
2002
  viewBox: "0 0 24 24",
1956
2003
  xmlns: "http://www.w3.org/2000/svg",
1957
- children: /* @__PURE__ */ jsx14(
2004
+ children: /* @__PURE__ */ jsx15(
1958
2005
  "path",
1959
2006
  {
1960
2007
  clipRule: "evenodd",
@@ -1967,14 +2014,14 @@ var ArrowUpIcon = (props) => /* @__PURE__ */ jsx14(
1967
2014
  );
1968
2015
 
1969
2016
  // src/components/Icon/icons/ArrowUpRightIcon.tsx
1970
- import { jsx as jsx15 } from "react/jsx-runtime";
1971
- var ArrowUpRightIcon = (props) => /* @__PURE__ */ jsx15(
2017
+ import { jsx as jsx16 } from "react/jsx-runtime";
2018
+ var ArrowUpRightIcon = (props) => /* @__PURE__ */ jsx16(
1972
2019
  "svg",
1973
2020
  {
1974
2021
  ...props,
1975
2022
  viewBox: "0 0 24 24",
1976
2023
  xmlns: "http://www.w3.org/2000/svg",
1977
- children: /* @__PURE__ */ jsx15(
2024
+ children: /* @__PURE__ */ jsx16(
1978
2025
  "path",
1979
2026
  {
1980
2027
  clipRule: "evenodd",
@@ -1987,14 +2034,14 @@ var ArrowUpRightIcon = (props) => /* @__PURE__ */ jsx15(
1987
2034
  );
1988
2035
 
1989
2036
  // src/components/Icon/icons/AsteriskIcon.tsx
1990
- import { jsx as jsx16 } from "react/jsx-runtime";
1991
- var AsteriskIcon = (props) => /* @__PURE__ */ jsx16(
2037
+ import { jsx as jsx17 } from "react/jsx-runtime";
2038
+ var AsteriskIcon = (props) => /* @__PURE__ */ jsx17(
1992
2039
  "svg",
1993
2040
  {
1994
2041
  ...props,
1995
2042
  viewBox: "0 0 24 24",
1996
2043
  xmlns: "http://www.w3.org/2000/svg",
1997
- children: /* @__PURE__ */ jsx16(
2044
+ children: /* @__PURE__ */ jsx17(
1998
2045
  "path",
1999
2046
  {
2000
2047
  clipRule: "evenodd",
@@ -2007,14 +2054,14 @@ var AsteriskIcon = (props) => /* @__PURE__ */ jsx16(
2007
2054
  );
2008
2055
 
2009
2056
  // src/components/Icon/icons/AudioDescriptionIcon.tsx
2010
- import { jsx as jsx17 } from "react/jsx-runtime";
2011
- var AudioDescriptionIcon = (props) => /* @__PURE__ */ jsx17(
2057
+ import { jsx as jsx18 } from "react/jsx-runtime";
2058
+ var AudioDescriptionIcon = (props) => /* @__PURE__ */ jsx18(
2012
2059
  "svg",
2013
2060
  {
2014
2061
  ...props,
2015
2062
  viewBox: "0 0 24 24",
2016
2063
  xmlns: "http://www.w3.org/2000/svg",
2017
- children: /* @__PURE__ */ jsx17(
2064
+ children: /* @__PURE__ */ jsx18(
2018
2065
  "path",
2019
2066
  {
2020
2067
  clipRule: "evenodd",
@@ -2027,14 +2074,14 @@ var AudioDescriptionIcon = (props) => /* @__PURE__ */ jsx17(
2027
2074
  );
2028
2075
 
2029
2076
  // src/components/Icon/icons/AutoScrollIcon.tsx
2030
- import { jsx as jsx18 } from "react/jsx-runtime";
2031
- var AutoScrollIcon = (props) => /* @__PURE__ */ jsx18(
2077
+ import { jsx as jsx19 } from "react/jsx-runtime";
2078
+ var AutoScrollIcon = (props) => /* @__PURE__ */ jsx19(
2032
2079
  "svg",
2033
2080
  {
2034
2081
  ...props,
2035
2082
  viewBox: "0 0 24 24",
2036
2083
  xmlns: "http://www.w3.org/2000/svg",
2037
- children: /* @__PURE__ */ jsx18(
2084
+ children: /* @__PURE__ */ jsx19(
2038
2085
  "path",
2039
2086
  {
2040
2087
  clipRule: "evenodd",
@@ -2047,14 +2094,14 @@ var AutoScrollIcon = (props) => /* @__PURE__ */ jsx18(
2047
2094
  );
2048
2095
 
2049
2096
  // src/components/Icon/icons/BackgroundIcon.tsx
2050
- import { jsx as jsx19 } from "react/jsx-runtime";
2051
- var BackgroundIcon = (props) => /* @__PURE__ */ jsx19(
2097
+ import { jsx as jsx20 } from "react/jsx-runtime";
2098
+ var BackgroundIcon = (props) => /* @__PURE__ */ jsx20(
2052
2099
  "svg",
2053
2100
  {
2054
2101
  ...props,
2055
2102
  viewBox: "0 0 24 24",
2056
2103
  xmlns: "http://www.w3.org/2000/svg",
2057
- children: /* @__PURE__ */ jsx19(
2104
+ children: /* @__PURE__ */ jsx20(
2058
2105
  "path",
2059
2106
  {
2060
2107
  clipRule: "evenodd",
@@ -2067,14 +2114,14 @@ var BackgroundIcon = (props) => /* @__PURE__ */ jsx19(
2067
2114
  );
2068
2115
 
2069
2116
  // src/components/Icon/icons/BellIcon.tsx
2070
- import { jsx as jsx20 } from "react/jsx-runtime";
2071
- var BellIcon = (props) => /* @__PURE__ */ jsx20(
2117
+ import { jsx as jsx21 } from "react/jsx-runtime";
2118
+ var BellIcon = (props) => /* @__PURE__ */ jsx21(
2072
2119
  "svg",
2073
2120
  {
2074
2121
  ...props,
2075
2122
  viewBox: "0 0 24 24",
2076
2123
  xmlns: "http://www.w3.org/2000/svg",
2077
- children: /* @__PURE__ */ jsx20(
2124
+ children: /* @__PURE__ */ jsx21(
2078
2125
  "path",
2079
2126
  {
2080
2127
  clipRule: "evenodd",
@@ -2087,14 +2134,14 @@ var BellIcon = (props) => /* @__PURE__ */ jsx20(
2087
2134
  );
2088
2135
 
2089
2136
  // src/components/Icon/icons/BoltIcon.tsx
2090
- import { jsx as jsx21 } from "react/jsx-runtime";
2091
- var BoltIcon = (props) => /* @__PURE__ */ jsx21(
2137
+ import { jsx as jsx22 } from "react/jsx-runtime";
2138
+ var BoltIcon = (props) => /* @__PURE__ */ jsx22(
2092
2139
  "svg",
2093
2140
  {
2094
2141
  ...props,
2095
2142
  viewBox: "0 0 24 24",
2096
2143
  xmlns: "http://www.w3.org/2000/svg",
2097
- children: /* @__PURE__ */ jsx21(
2144
+ children: /* @__PURE__ */ jsx22(
2098
2145
  "path",
2099
2146
  {
2100
2147
  d: "M20.2048 10.0546C19.9755 9.61061 19.5208 9.33328 19.0208 9.33328H13.4395L14.1288 2.5013C14.2155 1.89063 13.8768 1.30397 13.3021 1.07463C12.7301 0.8453 12.0781 1.03863 11.7208 1.5413L3.89017 12.5613C3.60084 12.9706 3.56484 13.5013 3.79417 13.9453C4.0235 14.3893 4.47817 14.6666 4.97817 14.6666H10.5595L9.87015 21.4986C9.78349 22.1092 10.1222 22.6959 10.6968 22.9252C10.8582 22.9892 11.0262 23.0212 11.1928 23.0212C11.6142 23.0212 12.0221 22.8199 12.2781 22.4586L20.1101 11.4386C20.3995 11.0293 20.4341 10.4986 20.2048 10.0546Z",
@@ -2105,14 +2152,14 @@ var BoltIcon = (props) => /* @__PURE__ */ jsx21(
2105
2152
  );
2106
2153
 
2107
2154
  // src/components/Icon/icons/CalendarIcon.tsx
2108
- import { jsx as jsx22 } from "react/jsx-runtime";
2109
- var CalendarIcon = (props) => /* @__PURE__ */ jsx22(
2155
+ import { jsx as jsx23 } from "react/jsx-runtime";
2156
+ var CalendarIcon = (props) => /* @__PURE__ */ jsx23(
2110
2157
  "svg",
2111
2158
  {
2112
2159
  ...props,
2113
2160
  viewBox: "0 0 24 24",
2114
2161
  xmlns: "http://www.w3.org/2000/svg",
2115
- children: /* @__PURE__ */ jsx22(
2162
+ children: /* @__PURE__ */ jsx23(
2116
2163
  "path",
2117
2164
  {
2118
2165
  clipRule: "evenodd",
@@ -2125,14 +2172,14 @@ var CalendarIcon = (props) => /* @__PURE__ */ jsx22(
2125
2172
  );
2126
2173
 
2127
2174
  // src/components/Icon/icons/CallToActionIcon.tsx
2128
- import { jsx as jsx23 } from "react/jsx-runtime";
2129
- var CallToActionIcon = (props) => /* @__PURE__ */ jsx23(
2175
+ import { jsx as jsx24 } from "react/jsx-runtime";
2176
+ var CallToActionIcon = (props) => /* @__PURE__ */ jsx24(
2130
2177
  "svg",
2131
2178
  {
2132
2179
  ...props,
2133
2180
  viewBox: "0 0 24 24",
2134
2181
  xmlns: "http://www.w3.org/2000/svg",
2135
- children: /* @__PURE__ */ jsx23(
2182
+ children: /* @__PURE__ */ jsx24(
2136
2183
  "path",
2137
2184
  {
2138
2185
  clipRule: "evenodd",
@@ -2145,14 +2192,14 @@ var CallToActionIcon = (props) => /* @__PURE__ */ jsx23(
2145
2192
  );
2146
2193
 
2147
2194
  // src/components/Icon/icons/CameraIcon.tsx
2148
- import { jsx as jsx24 } from "react/jsx-runtime";
2149
- var CameraIcon = (props) => /* @__PURE__ */ jsx24(
2195
+ import { jsx as jsx25 } from "react/jsx-runtime";
2196
+ var CameraIcon = (props) => /* @__PURE__ */ jsx25(
2150
2197
  "svg",
2151
2198
  {
2152
2199
  ...props,
2153
2200
  viewBox: "0 0 24 24",
2154
2201
  xmlns: "http://www.w3.org/2000/svg",
2155
- children: /* @__PURE__ */ jsx24(
2202
+ children: /* @__PURE__ */ jsx25(
2156
2203
  "path",
2157
2204
  {
2158
2205
  clipRule: "evenodd",
@@ -2165,14 +2212,14 @@ var CameraIcon = (props) => /* @__PURE__ */ jsx24(
2165
2212
  );
2166
2213
 
2167
2214
  // src/components/Icon/icons/CameraOffIcon.tsx
2168
- import { jsx as jsx25 } from "react/jsx-runtime";
2169
- var CameraOffIcon = (props) => /* @__PURE__ */ jsx25(
2215
+ import { jsx as jsx26 } from "react/jsx-runtime";
2216
+ var CameraOffIcon = (props) => /* @__PURE__ */ jsx26(
2170
2217
  "svg",
2171
2218
  {
2172
2219
  ...props,
2173
2220
  viewBox: "0 0 24 24",
2174
2221
  xmlns: "http://www.w3.org/2000/svg",
2175
- children: /* @__PURE__ */ jsx25(
2222
+ children: /* @__PURE__ */ jsx26(
2176
2223
  "path",
2177
2224
  {
2178
2225
  clipRule: "evenodd",
@@ -2185,14 +2232,14 @@ var CameraOffIcon = (props) => /* @__PURE__ */ jsx25(
2185
2232
  );
2186
2233
 
2187
2234
  // src/components/Icon/icons/CaretDownIcon.tsx
2188
- import { jsx as jsx26 } from "react/jsx-runtime";
2189
- var CaretDownIcon = (props) => /* @__PURE__ */ jsx26(
2235
+ import { jsx as jsx27 } from "react/jsx-runtime";
2236
+ var CaretDownIcon = (props) => /* @__PURE__ */ jsx27(
2190
2237
  "svg",
2191
2238
  {
2192
2239
  ...props,
2193
2240
  viewBox: "0 0 24 24",
2194
2241
  xmlns: "http://www.w3.org/2000/svg",
2195
- children: /* @__PURE__ */ jsx26(
2242
+ children: /* @__PURE__ */ jsx27(
2196
2243
  "path",
2197
2244
  {
2198
2245
  d: "M11.9999 19.3331C11.7439 19.3331 11.4879 19.2358 11.2932 19.0398L2.95992 10.7065C2.56926 10.3158 2.56926 9.68251 2.95992 9.29184C3.35059 8.90117 3.98392 8.90117 4.37459 9.29184L12.0012 16.9185L19.6279 9.29184C20.0185 8.90117 20.6519 8.90117 21.0425 9.29184C21.4332 9.68251 21.4332 10.3158 21.0425 10.7065L12.7092 19.0398C12.5146 19.2345 12.2586 19.3331 12.0026 19.3331H11.9999Z",
@@ -2203,14 +2250,14 @@ var CaretDownIcon = (props) => /* @__PURE__ */ jsx26(
2203
2250
  );
2204
2251
 
2205
2252
  // src/components/Icon/icons/CaretDownStrongIcon.tsx
2206
- import { jsx as jsx27 } from "react/jsx-runtime";
2207
- var CaretDownStrongIcon = (props) => /* @__PURE__ */ jsx27(
2253
+ import { jsx as jsx28 } from "react/jsx-runtime";
2254
+ var CaretDownStrongIcon = (props) => /* @__PURE__ */ jsx28(
2208
2255
  "svg",
2209
2256
  {
2210
2257
  ...props,
2211
2258
  viewBox: "0 0 24 24",
2212
2259
  xmlns: "http://www.w3.org/2000/svg",
2213
- children: /* @__PURE__ */ jsx27(
2260
+ children: /* @__PURE__ */ jsx28(
2214
2261
  "path",
2215
2262
  {
2216
2263
  d: "M18.6985 5.33321H5.30121C4.45054 5.33321 3.66654 5.79588 3.25721 6.54121C2.84788 7.28655 2.87454 8.19721 3.33054 8.91588L10.0292 19.4799C10.4599 20.1585 11.1959 20.5625 11.9999 20.5625C12.8039 20.5625 13.5399 20.1572 13.9705 19.4799L20.6705 8.91455C21.1252 8.19588 21.1532 7.28521 20.7439 6.53988C20.3345 5.79455 19.5505 5.33188 18.6999 5.33188L18.6985 5.33321Z",
@@ -2221,14 +2268,14 @@ var CaretDownStrongIcon = (props) => /* @__PURE__ */ jsx27(
2221
2268
  );
2222
2269
 
2223
2270
  // src/components/Icon/icons/CaretLeftIcon.tsx
2224
- import { jsx as jsx28 } from "react/jsx-runtime";
2225
- var CaretLeftIcon = (props) => /* @__PURE__ */ jsx28(
2271
+ import { jsx as jsx29 } from "react/jsx-runtime";
2272
+ var CaretLeftIcon = (props) => /* @__PURE__ */ jsx29(
2226
2273
  "svg",
2227
2274
  {
2228
2275
  ...props,
2229
2276
  viewBox: "0 0 24 24",
2230
2277
  xmlns: "http://www.w3.org/2000/svg",
2231
- children: /* @__PURE__ */ jsx28(
2278
+ children: /* @__PURE__ */ jsx29(
2232
2279
  "path",
2233
2280
  {
2234
2281
  d: "M15.3332 21.3332C15.0772 21.3332 14.8212 21.2358 14.6265 21.0398L6.29319 12.7065C5.90252 12.3158 5.90252 11.6825 6.29319 11.2918L14.6265 2.95987C15.0172 2.5692 15.6505 2.5692 16.0412 2.95987C16.4318 3.35054 16.4318 3.98387 16.0412 4.37453L8.41451 12.0012L16.0412 19.6278C16.4318 20.0185 16.4318 20.6518 16.0412 21.0425C15.8465 21.2372 15.5905 21.3358 15.3345 21.3358L15.3332 21.3332Z",
@@ -2239,14 +2286,14 @@ var CaretLeftIcon = (props) => /* @__PURE__ */ jsx28(
2239
2286
  );
2240
2287
 
2241
2288
  // src/components/Icon/icons/CaretLeftStrongIcon.tsx
2242
- import { jsx as jsx29 } from "react/jsx-runtime";
2243
- var CaretLeftStrongIcon = (props) => /* @__PURE__ */ jsx29(
2289
+ import { jsx as jsx30 } from "react/jsx-runtime";
2290
+ var CaretLeftStrongIcon = (props) => /* @__PURE__ */ jsx30(
2244
2291
  "svg",
2245
2292
  {
2246
2293
  ...props,
2247
2294
  viewBox: "0 0 24 24",
2248
2295
  xmlns: "http://www.w3.org/2000/svg",
2249
- children: /* @__PURE__ */ jsx29(
2296
+ children: /* @__PURE__ */ jsx30(
2250
2297
  "path",
2251
2298
  {
2252
2299
  d: "M4.51848 10.0292L15.0838 3.32921C15.8038 2.87321 16.7145 2.84521 17.4585 3.25587C18.2038 3.66654 18.6665 4.44921 18.6665 5.29987V18.6985C18.6665 19.5492 18.2038 20.3332 17.4585 20.7425C17.1078 20.9359 16.7198 21.0319 16.3331 21.0319C15.8985 21.0319 15.4638 20.9105 15.0825 20.6692L4.51848 13.9705C3.83981 13.5399 3.43581 12.8039 3.43581 11.9999C3.43581 11.1959 3.84115 10.4599 4.51848 10.0292Z",
@@ -2257,14 +2304,14 @@ var CaretLeftStrongIcon = (props) => /* @__PURE__ */ jsx29(
2257
2304
  );
2258
2305
 
2259
2306
  // src/components/Icon/icons/CaretRightIcon.tsx
2260
- import { jsx as jsx30 } from "react/jsx-runtime";
2261
- var CaretRightIcon = (props) => /* @__PURE__ */ jsx30(
2307
+ import { jsx as jsx31 } from "react/jsx-runtime";
2308
+ var CaretRightIcon = (props) => /* @__PURE__ */ jsx31(
2262
2309
  "svg",
2263
2310
  {
2264
2311
  ...props,
2265
2312
  viewBox: "0 0 24 24",
2266
2313
  xmlns: "http://www.w3.org/2000/svg",
2267
- children: /* @__PURE__ */ jsx30(
2314
+ children: /* @__PURE__ */ jsx31(
2268
2315
  "path",
2269
2316
  {
2270
2317
  d: "M17.7064 11.2932L9.37311 2.95987C8.98244 2.5692 8.34911 2.5692 7.95845 2.95987C7.56778 3.35054 7.56778 3.98387 7.95845 4.37453L15.5851 12.0012L7.95845 19.6278C7.56778 20.0185 7.56778 20.6518 7.95845 21.0425C8.15311 21.2372 8.40911 21.3358 8.66511 21.3358C8.92111 21.3358 9.17711 21.2385 9.37178 21.0425L17.7051 12.7092C18.0958 12.3185 18.0958 11.6852 17.7051 11.2945L17.7064 11.2932Z",
@@ -2275,14 +2322,14 @@ var CaretRightIcon = (props) => /* @__PURE__ */ jsx30(
2275
2322
  );
2276
2323
 
2277
2324
  // src/components/Icon/icons/CaretRightStrongIcon.tsx
2278
- import { jsx as jsx31 } from "react/jsx-runtime";
2279
- var CaretRightStrongIcon = (props) => /* @__PURE__ */ jsx31(
2325
+ import { jsx as jsx32 } from "react/jsx-runtime";
2326
+ var CaretRightStrongIcon = (props) => /* @__PURE__ */ jsx32(
2280
2327
  "svg",
2281
2328
  {
2282
2329
  ...props,
2283
2330
  viewBox: "0 0 24 24",
2284
2331
  xmlns: "http://www.w3.org/2000/svg",
2285
- children: /* @__PURE__ */ jsx31(
2332
+ children: /* @__PURE__ */ jsx32(
2286
2333
  "path",
2287
2334
  {
2288
2335
  d: "M19.4811 10.0292L8.91576 3.32921C8.19576 2.87321 7.28509 2.84521 6.54109 3.25587C5.79576 3.66654 5.33309 4.44921 5.33309 5.29987V18.6985C5.33309 19.5492 5.79576 20.3332 6.54109 20.7425C6.89176 20.9359 7.27976 21.0319 7.66643 21.0319C8.10109 21.0319 8.53576 20.9105 8.91709 20.6692L19.4811 13.9705C20.1598 13.5399 20.5638 12.8039 20.5638 11.9999C20.5638 11.1959 20.1584 10.4599 19.4811 10.0292Z",
@@ -2293,14 +2340,14 @@ var CaretRightStrongIcon = (props) => /* @__PURE__ */ jsx31(
2293
2340
  );
2294
2341
 
2295
2342
  // src/components/Icon/icons/CaretUpIcon.tsx
2296
- import { jsx as jsx32 } from "react/jsx-runtime";
2297
- var CaretUpIcon = (props) => /* @__PURE__ */ jsx32(
2343
+ import { jsx as jsx33 } from "react/jsx-runtime";
2344
+ var CaretUpIcon = (props) => /* @__PURE__ */ jsx33(
2298
2345
  "svg",
2299
2346
  {
2300
2347
  ...props,
2301
2348
  viewBox: "0 0 24 24",
2302
2349
  xmlns: "http://www.w3.org/2000/svg",
2303
- children: /* @__PURE__ */ jsx32(
2350
+ children: /* @__PURE__ */ jsx33(
2304
2351
  "path",
2305
2352
  {
2306
2353
  d: "M12.7064 6.29318C12.3157 5.90252 11.6824 5.90252 11.2917 6.29318L2.95974 14.6265C2.56907 15.0172 2.56907 15.6505 2.95974 16.0412C3.35041 16.4318 3.98374 16.4318 4.3744 16.0412L12.0011 8.41451L19.6277 16.0412C19.8224 16.2358 20.0784 16.3345 20.3344 16.3345C20.5904 16.3345 20.8464 16.2372 21.041 16.0412C21.4317 15.6505 21.4317 15.0172 21.041 14.6265L12.7077 6.29318H12.7064Z",
@@ -2311,14 +2358,14 @@ var CaretUpIcon = (props) => /* @__PURE__ */ jsx32(
2311
2358
  );
2312
2359
 
2313
2360
  // src/components/Icon/icons/CaretUpStrongIcon.tsx
2314
- import { jsx as jsx33 } from "react/jsx-runtime";
2315
- var CaretUpStrongIcon = (props) => /* @__PURE__ */ jsx33(
2361
+ import { jsx as jsx34 } from "react/jsx-runtime";
2362
+ var CaretUpStrongIcon = (props) => /* @__PURE__ */ jsx34(
2316
2363
  "svg",
2317
2364
  {
2318
2365
  ...props,
2319
2366
  viewBox: "0 0 24 24",
2320
2367
  xmlns: "http://www.w3.org/2000/svg",
2321
- children: /* @__PURE__ */ jsx33(
2368
+ children: /* @__PURE__ */ jsx34(
2322
2369
  "path",
2323
2370
  {
2324
2371
  d: "M18.6987 18.6665H5.30133C4.45066 18.6665 3.66666 18.2039 3.25733 17.4585C2.848 16.7132 2.87466 15.8025 3.33066 15.0839L10.0293 4.51988C10.46 3.84121 11.196 3.43721 12 3.43721C12.804 3.43721 13.54 3.84254 13.9707 4.51988L20.6707 15.0852C21.1253 15.8039 21.1533 16.7145 20.744 17.4599C20.3347 18.2052 19.5507 18.6679 18.7 18.6679L18.6987 18.6665Z",
@@ -2329,14 +2376,14 @@ var CaretUpStrongIcon = (props) => /* @__PURE__ */ jsx33(
2329
2376
  );
2330
2377
 
2331
2378
  // src/components/Icon/icons/ChannelIcon.tsx
2332
- import { jsx as jsx34 } from "react/jsx-runtime";
2333
- var ChannelIcon = (props) => /* @__PURE__ */ jsx34(
2379
+ import { jsx as jsx35 } from "react/jsx-runtime";
2380
+ var ChannelIcon = (props) => /* @__PURE__ */ jsx35(
2334
2381
  "svg",
2335
2382
  {
2336
2383
  ...props,
2337
2384
  viewBox: "0 0 24 24",
2338
2385
  xmlns: "http://www.w3.org/2000/svg",
2339
- children: /* @__PURE__ */ jsx34(
2386
+ children: /* @__PURE__ */ jsx35(
2340
2387
  "path",
2341
2388
  {
2342
2389
  clipRule: "evenodd",
@@ -2349,14 +2396,14 @@ var ChannelIcon = (props) => /* @__PURE__ */ jsx34(
2349
2396
  );
2350
2397
 
2351
2398
  // src/components/Icon/icons/ChaptersIcon.tsx
2352
- import { jsx as jsx35 } from "react/jsx-runtime";
2353
- var ChaptersIcon = (props) => /* @__PURE__ */ jsx35(
2399
+ import { jsx as jsx36 } from "react/jsx-runtime";
2400
+ var ChaptersIcon = (props) => /* @__PURE__ */ jsx36(
2354
2401
  "svg",
2355
2402
  {
2356
2403
  ...props,
2357
2404
  viewBox: "0 0 24 24",
2358
2405
  xmlns: "http://www.w3.org/2000/svg",
2359
- children: /* @__PURE__ */ jsx35(
2406
+ children: /* @__PURE__ */ jsx36(
2360
2407
  "path",
2361
2408
  {
2362
2409
  d: "M17.6666 2.66653H6.33325C4.31059 2.66653 2.6666 4.31053 2.6666 6.33319V17.6665C2.6666 19.6892 4.31059 21.3332 6.33325 21.3332H17.6666C19.6892 21.3332 21.3332 19.6892 21.3332 17.6665V6.33319C21.3332 4.31053 19.6892 2.66653 17.6666 2.66653ZM7.66658 17.3332C6.93058 17.3332 6.33325 16.7358 6.33325 15.9998C6.33325 15.2638 6.93058 14.6665 7.66658 14.6665C8.40258 14.6665 8.99991 15.2638 8.99991 15.9998C8.99991 16.7358 8.40258 17.3332 7.66658 17.3332ZM7.66658 13.3332C6.93058 13.3332 6.33325 12.7358 6.33325 11.9998C6.33325 11.2638 6.93058 10.6665 7.66658 10.6665C8.40258 10.6665 8.99991 11.2638 8.99991 11.9998C8.99991 12.7358 8.40258 13.3332 7.66658 13.3332ZM7.66658 9.66652C6.93058 9.66652 6.33325 9.06919 6.33325 8.33319C6.33325 7.59719 6.93058 6.99986 7.66658 6.99986C8.40258 6.99986 8.99991 7.59719 8.99991 8.33319C8.99991 9.06919 8.40258 9.66652 7.66658 9.66652ZM16.6666 16.6665H11.6666C11.1146 16.6665 10.6666 16.2185 10.6666 15.6665C10.6666 15.1145 11.1146 14.6665 11.6666 14.6665H16.6666C17.2186 14.6665 17.6666 15.1145 17.6666 15.6665C17.6666 16.2185 17.2186 16.6665 16.6666 16.6665ZM16.6666 12.9998H11.6666C11.1146 12.9998 10.6666 12.5518 10.6666 11.9998C10.6666 11.4478 11.1146 10.9998 11.6666 10.9998H16.6666C17.2186 10.9998 17.6666 11.4478 17.6666 11.9998C17.6666 12.5518 17.2186 12.9998 16.6666 12.9998ZM16.6666 9.33318H11.6666C11.1146 9.33318 10.6666 8.88519 10.6666 8.33319C10.6666 7.78119 11.1146 7.33319 11.6666 7.33319H16.6666C17.2186 7.33319 17.6666 7.78119 17.6666 8.33319C17.6666 8.88519 17.2186 9.33318 16.6666 9.33318Z",
@@ -2367,14 +2414,14 @@ var ChaptersIcon = (props) => /* @__PURE__ */ jsx35(
2367
2414
  );
2368
2415
 
2369
2416
  // src/components/Icon/icons/CheckmarkCircleIcon.tsx
2370
- import { jsx as jsx36 } from "react/jsx-runtime";
2371
- var CheckmarkCircleIcon = (props) => /* @__PURE__ */ jsx36(
2417
+ import { jsx as jsx37 } from "react/jsx-runtime";
2418
+ var CheckmarkCircleIcon = (props) => /* @__PURE__ */ jsx37(
2372
2419
  "svg",
2373
2420
  {
2374
2421
  ...props,
2375
2422
  viewBox: "0 0 24 24",
2376
2423
  xmlns: "http://www.w3.org/2000/svg",
2377
- children: /* @__PURE__ */ jsx36(
2424
+ children: /* @__PURE__ */ jsx37(
2378
2425
  "path",
2379
2426
  {
2380
2427
  d: "M11.9998 1.33322C6.11847 1.33322 1.33315 6.11854 1.33315 11.9999C1.33315 17.8812 6.11847 22.6665 11.9998 22.6665C17.8811 22.6665 22.6664 17.8812 22.6664 11.9999C22.6664 6.11854 17.8811 1.33322 11.9998 1.33322ZM17.1238 8.94387L11.4571 16.2772C11.2758 16.5119 10.9998 16.6545 10.7038 16.6652C10.6905 16.6652 10.6785 16.6652 10.6665 16.6652C10.3838 16.6652 10.1131 16.5452 9.92246 16.3345L6.92246 13.0012C6.55313 12.5905 6.58647 11.9585 6.99713 11.5879C7.40913 11.2199 8.03846 11.2519 8.41046 11.6625L10.6078 14.1052L15.5424 7.71987C15.8798 7.28254 16.5091 7.20254 16.9451 7.53987C17.3824 7.87721 17.4624 8.5052 17.1251 8.94254L17.1238 8.94387Z",
@@ -2385,14 +2432,14 @@ var CheckmarkCircleIcon = (props) => /* @__PURE__ */ jsx36(
2385
2432
  );
2386
2433
 
2387
2434
  // src/components/Icon/icons/CheckmarkCircleOutlineIcon.tsx
2388
- import { jsx as jsx37 } from "react/jsx-runtime";
2389
- var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ jsx37(
2435
+ import { jsx as jsx38 } from "react/jsx-runtime";
2436
+ var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ jsx38(
2390
2437
  "svg",
2391
2438
  {
2392
2439
  ...props,
2393
2440
  viewBox: "0 0 24 24",
2394
2441
  xmlns: "http://www.w3.org/2000/svg",
2395
- children: /* @__PURE__ */ jsx37(
2442
+ children: /* @__PURE__ */ jsx38(
2396
2443
  "path",
2397
2444
  {
2398
2445
  clipRule: "evenodd",
@@ -2405,14 +2452,14 @@ var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ jsx37(
2405
2452
  );
2406
2453
 
2407
2454
  // src/components/Icon/icons/CheckmarkIcon.tsx
2408
- import { jsx as jsx38 } from "react/jsx-runtime";
2409
- var CheckmarkIcon = (props) => /* @__PURE__ */ jsx38(
2455
+ import { jsx as jsx39 } from "react/jsx-runtime";
2456
+ var CheckmarkIcon = (props) => /* @__PURE__ */ jsx39(
2410
2457
  "svg",
2411
2458
  {
2412
2459
  ...props,
2413
2460
  viewBox: "0 0 24 24",
2414
2461
  xmlns: "http://www.w3.org/2000/svg",
2415
- children: /* @__PURE__ */ jsx38(
2462
+ children: /* @__PURE__ */ jsx39(
2416
2463
  "path",
2417
2464
  {
2418
2465
  d: "M8.99985 19.9998H8.99718C8.69451 19.9998 8.40785 19.8612 8.21985 19.6252L2.88653 12.9585C2.54119 12.5265 2.61053 11.8985 3.04253 11.5532C3.47586 11.2078 4.10386 11.2785 4.44786 11.7092L9.00518 17.4052L19.5558 4.37053C19.9038 3.9412 20.5318 3.8732 20.9625 4.22253C21.3918 4.57053 21.4585 5.19986 21.1105 5.62919L9.77718 19.6292C9.58651 19.8638 9.30118 19.9998 8.99985 19.9998Z",
@@ -2423,14 +2470,14 @@ var CheckmarkIcon = (props) => /* @__PURE__ */ jsx38(
2423
2470
  );
2424
2471
 
2425
2472
  // src/components/Icon/icons/CheckmarkThreeQuatersCircleIcon.tsx
2426
- import { jsx as jsx39 } from "react/jsx-runtime";
2427
- var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ jsx39(
2473
+ import { jsx as jsx40 } from "react/jsx-runtime";
2474
+ var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ jsx40(
2428
2475
  "svg",
2429
2476
  {
2430
2477
  ...props,
2431
2478
  viewBox: "0 0 24 24",
2432
2479
  xmlns: "http://www.w3.org/2000/svg",
2433
- children: /* @__PURE__ */ jsx39(
2480
+ children: /* @__PURE__ */ jsx40(
2434
2481
  "path",
2435
2482
  {
2436
2483
  clipRule: "evenodd",
@@ -2443,14 +2490,14 @@ var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ jsx39(
2443
2490
  );
2444
2491
 
2445
2492
  // src/components/Icon/icons/CircleSlashedIcon.tsx
2446
- import { jsx as jsx40 } from "react/jsx-runtime";
2447
- var CircleSlashedIcon = (props) => /* @__PURE__ */ jsx40(
2493
+ import { jsx as jsx41 } from "react/jsx-runtime";
2494
+ var CircleSlashedIcon = (props) => /* @__PURE__ */ jsx41(
2448
2495
  "svg",
2449
2496
  {
2450
2497
  ...props,
2451
2498
  viewBox: "0 0 24 24",
2452
2499
  xmlns: "http://www.w3.org/2000/svg",
2453
- children: /* @__PURE__ */ jsx40(
2500
+ children: /* @__PURE__ */ jsx41(
2454
2501
  "path",
2455
2502
  {
2456
2503
  clipRule: "evenodd",
@@ -2463,14 +2510,14 @@ var CircleSlashedIcon = (props) => /* @__PURE__ */ jsx40(
2463
2510
  );
2464
2511
 
2465
2512
  // src/components/Icon/icons/CloseIcon.tsx
2466
- import { jsx as jsx41 } from "react/jsx-runtime";
2467
- var CloseIcon = (props) => /* @__PURE__ */ jsx41(
2513
+ import { jsx as jsx42 } from "react/jsx-runtime";
2514
+ var CloseIcon = (props) => /* @__PURE__ */ jsx42(
2468
2515
  "svg",
2469
2516
  {
2470
2517
  ...props,
2471
2518
  viewBox: "0 0 24 24",
2472
2519
  xmlns: "http://www.w3.org/2000/svg",
2473
- children: /* @__PURE__ */ jsx41(
2520
+ children: /* @__PURE__ */ jsx42(
2474
2521
  "path",
2475
2522
  {
2476
2523
  clipRule: "evenodd",
@@ -2483,14 +2530,14 @@ var CloseIcon = (props) => /* @__PURE__ */ jsx41(
2483
2530
  );
2484
2531
 
2485
2532
  // src/components/Icon/icons/CloseOctagonIcon.tsx
2486
- import { jsx as jsx42 } from "react/jsx-runtime";
2487
- var CloseOctagonIcon = (props) => /* @__PURE__ */ jsx42(
2533
+ import { jsx as jsx43 } from "react/jsx-runtime";
2534
+ var CloseOctagonIcon = (props) => /* @__PURE__ */ jsx43(
2488
2535
  "svg",
2489
2536
  {
2490
2537
  ...props,
2491
2538
  viewBox: "0 0 24 24",
2492
2539
  xmlns: "http://www.w3.org/2000/svg",
2493
- children: /* @__PURE__ */ jsx42(
2540
+ children: /* @__PURE__ */ jsx43(
2494
2541
  "path",
2495
2542
  {
2496
2543
  clipRule: "evenodd",
@@ -2503,14 +2550,14 @@ var CloseOctagonIcon = (props) => /* @__PURE__ */ jsx42(
2503
2550
  );
2504
2551
 
2505
2552
  // src/components/Icon/icons/ClosedCaptionsIcon.tsx
2506
- import { jsx as jsx43 } from "react/jsx-runtime";
2507
- var ClosedCaptionsIcon = (props) => /* @__PURE__ */ jsx43(
2553
+ import { jsx as jsx44 } from "react/jsx-runtime";
2554
+ var ClosedCaptionsIcon = (props) => /* @__PURE__ */ jsx44(
2508
2555
  "svg",
2509
2556
  {
2510
2557
  ...props,
2511
2558
  viewBox: "0 0 24 24",
2512
2559
  xmlns: "http://www.w3.org/2000/svg",
2513
- children: /* @__PURE__ */ jsx43(
2560
+ children: /* @__PURE__ */ jsx44(
2514
2561
  "path",
2515
2562
  {
2516
2563
  d: "M19 2.66653H4.99999C2.97732 2.66653 1.33333 4.31053 1.33333 6.33319V17.6665C1.33333 19.6892 2.97732 21.3332 4.99999 21.3332H19C21.0226 21.3332 22.6666 19.6892 22.6666 17.6665V6.33319C22.6666 4.31053 21.0226 2.66653 19 2.66653ZM6.33332 11.3332H13C13.552 11.3332 14 11.7812 14 12.3332C14 12.8852 13.552 13.3332 13 13.3332H6.33332C5.78132 13.3332 5.33332 12.8852 5.33332 12.3332C5.33332 11.7812 5.78132 11.3332 6.33332 11.3332ZM7.66665 17.3332H6.33332C5.78132 17.3332 5.33332 16.8852 5.33332 16.3332C5.33332 15.7812 5.78132 15.3332 6.33332 15.3332H7.66665C8.21864 15.3332 8.66664 15.7812 8.66664 16.3332C8.66664 16.8852 8.21864 17.3332 7.66665 17.3332ZM17.6666 17.3332H11C10.448 17.3332 9.99997 16.8852 9.99997 16.3332C9.99997 15.7812 10.448 15.3332 11 15.3332H17.6666C18.2186 15.3332 18.6666 15.7812 18.6666 16.3332C18.6666 16.8852 18.2186 17.3332 17.6666 17.3332ZM17.6666 13.3332H16.3333C15.7813 13.3332 15.3333 12.8852 15.3333 12.3332C15.3333 11.7812 15.7813 11.3332 16.3333 11.3332H17.6666C18.2186 11.3332 18.6666 11.7812 18.6666 12.3332C18.6666 12.8852 18.2186 13.3332 17.6666 13.3332Z",
@@ -2521,14 +2568,14 @@ var ClosedCaptionsIcon = (props) => /* @__PURE__ */ jsx43(
2521
2568
  );
2522
2569
 
2523
2570
  // src/components/Icon/icons/CollapseDiagonalIcon.tsx
2524
- import { jsx as jsx44 } from "react/jsx-runtime";
2525
- var CollapseDiagonalIcon = (props) => /* @__PURE__ */ jsx44(
2571
+ import { jsx as jsx45 } from "react/jsx-runtime";
2572
+ var CollapseDiagonalIcon = (props) => /* @__PURE__ */ jsx45(
2526
2573
  "svg",
2527
2574
  {
2528
2575
  ...props,
2529
2576
  viewBox: "0 0 24 24",
2530
2577
  xmlns: "http://www.w3.org/2000/svg",
2531
- children: /* @__PURE__ */ jsx44(
2578
+ children: /* @__PURE__ */ jsx45(
2532
2579
  "path",
2533
2580
  {
2534
2581
  clipRule: "evenodd",
@@ -2541,14 +2588,14 @@ var CollapseDiagonalIcon = (props) => /* @__PURE__ */ jsx44(
2541
2588
  );
2542
2589
 
2543
2590
  // src/components/Icon/icons/CommentsIcon.tsx
2544
- import { jsx as jsx45 } from "react/jsx-runtime";
2545
- var CommentsIcon = (props) => /* @__PURE__ */ jsx45(
2591
+ import { jsx as jsx46 } from "react/jsx-runtime";
2592
+ var CommentsIcon = (props) => /* @__PURE__ */ jsx46(
2546
2593
  "svg",
2547
2594
  {
2548
2595
  ...props,
2549
2596
  viewBox: "0 0 24 24",
2550
2597
  xmlns: "http://www.w3.org/2000/svg",
2551
- children: /* @__PURE__ */ jsx45(
2598
+ children: /* @__PURE__ */ jsx46(
2552
2599
  "path",
2553
2600
  {
2554
2601
  d: "M11.9999 1.33322C6.11859 1.33322 1.33327 6.11854 1.33327 11.9999C1.33327 13.8612 1.82793 15.7012 2.74926 17.2945C3.0666 17.8892 2.6226 19.9638 1.6266 20.9598C1.34793 21.2385 1.2586 21.6558 1.39993 22.0238C1.54127 22.3918 1.8866 22.6438 2.27993 22.6652C2.38526 22.6705 2.49326 22.6732 2.60126 22.6732C4.12793 22.6732 5.98126 22.1305 7.18792 21.5118C8.08792 21.9692 9.04125 22.2945 10.0292 22.4825C10.6746 22.6052 11.3386 22.6665 11.9999 22.6665C17.8812 22.6665 22.6665 17.8812 22.6665 11.9999C22.6665 6.11854 17.8812 1.33322 11.9999 1.33322ZM11.3332 14.3332C11.3332 14.8852 10.8852 15.3332 10.3332 15.3332H7.66658C7.11459 15.3332 6.66659 14.8852 6.66659 14.3332V12.3332C6.66659 9.7292 7.57859 8.16254 9.53591 7.40121C10.0506 7.20121 10.6292 7.45721 10.8306 7.97054C11.0306 8.4852 10.7746 9.0652 10.2612 9.2652C9.59058 9.5252 8.93325 9.91187 8.73058 11.3332H10.3332C10.8852 11.3332 11.3332 11.7812 11.3332 12.3332V14.3332ZM17.3332 14.3332C17.3332 14.8852 16.8852 15.3332 16.3332 15.3332H13.6666C13.1146 15.3332 12.6666 14.8852 12.6666 14.3332V12.3332C12.6666 9.7292 13.5786 8.16254 15.5359 7.40121C16.0506 7.20121 16.6306 7.45721 16.8306 7.97054C17.0306 8.4852 16.7746 9.0652 16.2612 9.2652C15.5906 9.5252 14.9332 9.91187 14.7306 11.3332H16.3332C16.8852 11.3332 17.3332 11.7812 17.3332 12.3332V14.3332Z",
@@ -2559,14 +2606,14 @@ var CommentsIcon = (props) => /* @__PURE__ */ jsx45(
2559
2606
  );
2560
2607
 
2561
2608
  // src/components/Icon/icons/CompanyIcon.tsx
2562
- import { jsx as jsx46 } from "react/jsx-runtime";
2563
- var CompanyIcon = (props) => /* @__PURE__ */ jsx46(
2609
+ import { jsx as jsx47 } from "react/jsx-runtime";
2610
+ var CompanyIcon = (props) => /* @__PURE__ */ jsx47(
2564
2611
  "svg",
2565
2612
  {
2566
2613
  ...props,
2567
2614
  viewBox: "0 0 24 24",
2568
2615
  xmlns: "http://www.w3.org/2000/svg",
2569
- children: /* @__PURE__ */ jsx46(
2616
+ children: /* @__PURE__ */ jsx47(
2570
2617
  "path",
2571
2618
  {
2572
2619
  clipRule: "evenodd",
@@ -2579,14 +2626,14 @@ var CompanyIcon = (props) => /* @__PURE__ */ jsx46(
2579
2626
  );
2580
2627
 
2581
2628
  // src/components/Icon/icons/CompareIcon.tsx
2582
- import { jsx as jsx47 } from "react/jsx-runtime";
2583
- var CompareIcon = (props) => /* @__PURE__ */ jsx47(
2629
+ import { jsx as jsx48 } from "react/jsx-runtime";
2630
+ var CompareIcon = (props) => /* @__PURE__ */ jsx48(
2584
2631
  "svg",
2585
2632
  {
2586
2633
  ...props,
2587
2634
  viewBox: "0 0 24 24",
2588
2635
  xmlns: "http://www.w3.org/2000/svg",
2589
- children: /* @__PURE__ */ jsx47(
2636
+ children: /* @__PURE__ */ jsx48(
2590
2637
  "path",
2591
2638
  {
2592
2639
  d: "M16.9878 7.01321C15.9904 3.73055 12.9384 1.33322 9.33313 1.33322C4.92114 1.33322 1.33315 4.92121 1.33315 9.3332C1.33315 12.9372 3.72914 15.9905 7.0118 16.9865C8.00913 20.2692 11.0611 22.6665 14.6664 22.6665C19.0784 22.6665 22.6664 19.0785 22.6664 14.6665C22.6664 11.0625 20.2704 8.00921 16.9878 7.01321ZM3.33314 9.3332C3.33314 6.02521 6.02513 3.33322 9.33313 3.33322C11.6798 3.33322 13.6944 4.69988 14.6798 6.66654C14.6758 6.66654 14.6704 6.66654 14.6664 6.66654C10.2545 6.66654 6.66647 10.2545 6.66647 14.6665C6.66647 14.6705 6.66647 14.6759 6.66647 14.6799C4.69847 13.6945 3.33314 11.6799 3.33314 9.3332ZM14.6664 20.6665C12.3198 20.6665 10.3051 19.2998 9.31979 17.3332C9.32379 17.3332 9.32913 17.3332 9.33313 17.3332C13.7451 17.3332 17.3331 13.7452 17.3331 9.3332C17.3331 9.3292 17.3331 9.32387 17.3331 9.31987C19.3011 10.3052 20.6664 12.3199 20.6664 14.6665C20.6664 17.9745 17.9744 20.6665 14.6664 20.6665Z",
@@ -2597,14 +2644,14 @@ var CompareIcon = (props) => /* @__PURE__ */ jsx47(
2597
2644
  );
2598
2645
 
2599
2646
  // src/components/Icon/icons/ContentLibraryIcon.tsx
2600
- import { jsx as jsx48 } from "react/jsx-runtime";
2601
- var ContentLibraryIcon = (props) => /* @__PURE__ */ jsx48(
2647
+ import { jsx as jsx49 } from "react/jsx-runtime";
2648
+ var ContentLibraryIcon = (props) => /* @__PURE__ */ jsx49(
2602
2649
  "svg",
2603
2650
  {
2604
2651
  ...props,
2605
2652
  viewBox: "0 0 24 24",
2606
2653
  xmlns: "http://www.w3.org/2000/svg",
2607
- children: /* @__PURE__ */ jsx48(
2654
+ children: /* @__PURE__ */ jsx49(
2608
2655
  "path",
2609
2656
  {
2610
2657
  clipRule: "evenodd",
@@ -2617,14 +2664,14 @@ var ContentLibraryIcon = (props) => /* @__PURE__ */ jsx48(
2617
2664
  );
2618
2665
 
2619
2666
  // src/components/Icon/icons/ControlsIcon.tsx
2620
- import { jsx as jsx49 } from "react/jsx-runtime";
2621
- var ControlsIcon = (props) => /* @__PURE__ */ jsx49(
2667
+ import { jsx as jsx50 } from "react/jsx-runtime";
2668
+ var ControlsIcon = (props) => /* @__PURE__ */ jsx50(
2622
2669
  "svg",
2623
2670
  {
2624
2671
  ...props,
2625
2672
  viewBox: "0 0 24 24",
2626
2673
  xmlns: "http://www.w3.org/2000/svg",
2627
- children: /* @__PURE__ */ jsx49(
2674
+ children: /* @__PURE__ */ jsx50(
2628
2675
  "path",
2629
2676
  {
2630
2677
  clipRule: "evenodd",
@@ -2637,14 +2684,14 @@ var ControlsIcon = (props) => /* @__PURE__ */ jsx49(
2637
2684
  );
2638
2685
 
2639
2686
  // src/components/Icon/icons/CursorClickIcon.tsx
2640
- import { jsx as jsx50 } from "react/jsx-runtime";
2641
- var CursorClickIcon = (props) => /* @__PURE__ */ jsx50(
2687
+ import { jsx as jsx51 } from "react/jsx-runtime";
2688
+ var CursorClickIcon = (props) => /* @__PURE__ */ jsx51(
2642
2689
  "svg",
2643
2690
  {
2644
2691
  ...props,
2645
2692
  viewBox: "0 0 24 24",
2646
2693
  xmlns: "http://www.w3.org/2000/svg",
2647
- children: /* @__PURE__ */ jsx50(
2694
+ children: /* @__PURE__ */ jsx51(
2648
2695
  "path",
2649
2696
  {
2650
2697
  clipRule: "evenodd",
@@ -2657,14 +2704,14 @@ var CursorClickIcon = (props) => /* @__PURE__ */ jsx50(
2657
2704
  );
2658
2705
 
2659
2706
  // src/components/Icon/icons/DeleteIcon.tsx
2660
- import { jsx as jsx51 } from "react/jsx-runtime";
2661
- var DeleteIcon = (props) => /* @__PURE__ */ jsx51(
2707
+ import { jsx as jsx52 } from "react/jsx-runtime";
2708
+ var DeleteIcon = (props) => /* @__PURE__ */ jsx52(
2662
2709
  "svg",
2663
2710
  {
2664
2711
  ...props,
2665
2712
  viewBox: "0 0 24 24",
2666
2713
  xmlns: "http://www.w3.org/2000/svg",
2667
- children: /* @__PURE__ */ jsx51(
2714
+ children: /* @__PURE__ */ jsx52(
2668
2715
  "path",
2669
2716
  {
2670
2717
  clipRule: "evenodd",
@@ -2677,14 +2724,14 @@ var DeleteIcon = (props) => /* @__PURE__ */ jsx51(
2677
2724
  );
2678
2725
 
2679
2726
  // src/components/Icon/icons/DesktopIcon.tsx
2680
- import { jsx as jsx52 } from "react/jsx-runtime";
2681
- var DesktopIcon = (props) => /* @__PURE__ */ jsx52(
2727
+ import { jsx as jsx53 } from "react/jsx-runtime";
2728
+ var DesktopIcon = (props) => /* @__PURE__ */ jsx53(
2682
2729
  "svg",
2683
2730
  {
2684
2731
  ...props,
2685
2732
  viewBox: "0 0 24 24",
2686
2733
  xmlns: "http://www.w3.org/2000/svg",
2687
- children: /* @__PURE__ */ jsx52(
2734
+ children: /* @__PURE__ */ jsx53(
2688
2735
  "path",
2689
2736
  {
2690
2737
  clipRule: "evenodd",
@@ -2697,14 +2744,14 @@ var DesktopIcon = (props) => /* @__PURE__ */ jsx52(
2697
2744
  );
2698
2745
 
2699
2746
  // src/components/Icon/icons/DotsHorizontalIcon.tsx
2700
- import { jsx as jsx53 } from "react/jsx-runtime";
2701
- var DotsHorizontalIcon = (props) => /* @__PURE__ */ jsx53(
2747
+ import { jsx as jsx54 } from "react/jsx-runtime";
2748
+ var DotsHorizontalIcon = (props) => /* @__PURE__ */ jsx54(
2702
2749
  "svg",
2703
2750
  {
2704
2751
  ...props,
2705
2752
  viewBox: "0 0 24 24",
2706
2753
  xmlns: "http://www.w3.org/2000/svg",
2707
- children: /* @__PURE__ */ jsx53(
2754
+ children: /* @__PURE__ */ jsx54(
2708
2755
  "path",
2709
2756
  {
2710
2757
  clipRule: "evenodd",
@@ -2717,14 +2764,14 @@ var DotsHorizontalIcon = (props) => /* @__PURE__ */ jsx53(
2717
2764
  );
2718
2765
 
2719
2766
  // src/components/Icon/icons/DownloadIcon.tsx
2720
- import { jsx as jsx54 } from "react/jsx-runtime";
2721
- var DownloadIcon = (props) => /* @__PURE__ */ jsx54(
2767
+ import { jsx as jsx55 } from "react/jsx-runtime";
2768
+ var DownloadIcon = (props) => /* @__PURE__ */ jsx55(
2722
2769
  "svg",
2723
2770
  {
2724
2771
  ...props,
2725
2772
  viewBox: "0 0 24 24",
2726
2773
  xmlns: "http://www.w3.org/2000/svg",
2727
- children: /* @__PURE__ */ jsx54(
2774
+ children: /* @__PURE__ */ jsx55(
2728
2775
  "path",
2729
2776
  {
2730
2777
  clipRule: "evenodd",
@@ -2737,14 +2784,14 @@ var DownloadIcon = (props) => /* @__PURE__ */ jsx54(
2737
2784
  );
2738
2785
 
2739
2786
  // src/components/Icon/icons/EditTranscriptIcon.tsx
2740
- import { jsx as jsx55 } from "react/jsx-runtime";
2741
- var EditTranscriptIcon = (props) => /* @__PURE__ */ jsx55(
2787
+ import { jsx as jsx56 } from "react/jsx-runtime";
2788
+ var EditTranscriptIcon = (props) => /* @__PURE__ */ jsx56(
2742
2789
  "svg",
2743
2790
  {
2744
2791
  ...props,
2745
2792
  viewBox: "0 0 24 24",
2746
2793
  xmlns: "http://www.w3.org/2000/svg",
2747
- children: /* @__PURE__ */ jsx55(
2794
+ children: /* @__PURE__ */ jsx56(
2748
2795
  "path",
2749
2796
  {
2750
2797
  clipRule: "evenodd",
@@ -2757,14 +2804,14 @@ var EditTranscriptIcon = (props) => /* @__PURE__ */ jsx55(
2757
2804
  );
2758
2805
 
2759
2806
  // src/components/Icon/icons/EllipsesVerticalIcon.tsx
2760
- import { jsx as jsx56 } from "react/jsx-runtime";
2761
- var EllipsesVerticalIcon = (props) => /* @__PURE__ */ jsx56(
2807
+ import { jsx as jsx57 } from "react/jsx-runtime";
2808
+ var EllipsesVerticalIcon = (props) => /* @__PURE__ */ jsx57(
2762
2809
  "svg",
2763
2810
  {
2764
2811
  ...props,
2765
2812
  viewBox: "0 0 24 24",
2766
2813
  xmlns: "http://www.w3.org/2000/svg",
2767
- children: /* @__PURE__ */ jsx56(
2814
+ children: /* @__PURE__ */ jsx57(
2768
2815
  "path",
2769
2816
  {
2770
2817
  clipRule: "evenodd",
@@ -2777,14 +2824,14 @@ var EllipsesVerticalIcon = (props) => /* @__PURE__ */ jsx56(
2777
2824
  );
2778
2825
 
2779
2826
  // src/components/Icon/icons/EmbedIcon.tsx
2780
- import { jsx as jsx57 } from "react/jsx-runtime";
2781
- var EmbedIcon = (props) => /* @__PURE__ */ jsx57(
2827
+ import { jsx as jsx58 } from "react/jsx-runtime";
2828
+ var EmbedIcon = (props) => /* @__PURE__ */ jsx58(
2782
2829
  "svg",
2783
2830
  {
2784
2831
  ...props,
2785
2832
  viewBox: "0 0 24 24",
2786
2833
  xmlns: "http://www.w3.org/2000/svg",
2787
- children: /* @__PURE__ */ jsx57(
2834
+ children: /* @__PURE__ */ jsx58(
2788
2835
  "path",
2789
2836
  {
2790
2837
  clipRule: "evenodd",
@@ -2797,14 +2844,14 @@ var EmbedIcon = (props) => /* @__PURE__ */ jsx57(
2797
2844
  );
2798
2845
 
2799
2846
  // src/components/Icon/icons/EnvelopeIcon.tsx
2800
- import { jsx as jsx58 } from "react/jsx-runtime";
2801
- var EnvelopeIcon = (props) => /* @__PURE__ */ jsx58(
2847
+ import { jsx as jsx59 } from "react/jsx-runtime";
2848
+ var EnvelopeIcon = (props) => /* @__PURE__ */ jsx59(
2802
2849
  "svg",
2803
2850
  {
2804
2851
  ...props,
2805
2852
  viewBox: "0 0 24 24",
2806
2853
  xmlns: "http://www.w3.org/2000/svg",
2807
- children: /* @__PURE__ */ jsx58(
2854
+ children: /* @__PURE__ */ jsx59(
2808
2855
  "path",
2809
2856
  {
2810
2857
  clipRule: "evenodd",
@@ -2817,14 +2864,14 @@ var EnvelopeIcon = (props) => /* @__PURE__ */ jsx58(
2817
2864
  );
2818
2865
 
2819
2866
  // src/components/Icon/icons/ErrorIcon.tsx
2820
- import { jsx as jsx59 } from "react/jsx-runtime";
2821
- var ErrorIcon = (props) => /* @__PURE__ */ jsx59(
2867
+ import { jsx as jsx60 } from "react/jsx-runtime";
2868
+ var ErrorIcon = (props) => /* @__PURE__ */ jsx60(
2822
2869
  "svg",
2823
2870
  {
2824
2871
  ...props,
2825
2872
  viewBox: "0 0 24 24",
2826
2873
  xmlns: "http://www.w3.org/2000/svg",
2827
- children: /* @__PURE__ */ jsx59(
2874
+ children: /* @__PURE__ */ jsx60(
2828
2875
  "path",
2829
2876
  {
2830
2877
  d: "M21.9156 16.6878L14.6823 4.15987C14.1223 3.19054 13.1196 2.61188 11.9996 2.61188C10.8796 2.61188 9.87694 3.19054 9.31695 4.15987L2.08363 16.6878C1.52363 17.6572 1.52363 18.8145 2.08363 19.7838C2.64363 20.7545 3.64629 21.3332 4.76629 21.3332H19.2329C20.3529 21.3332 21.3556 20.7545 21.9156 19.7838C22.4756 18.8145 22.4756 17.6572 21.9156 16.6878ZM10.9996 8.66653C10.9996 8.11453 11.4476 7.66653 11.9996 7.66653C12.5516 7.66653 12.9996 8.11453 12.9996 8.66653V13.3332C12.9996 13.8852 12.5516 14.3332 11.9996 14.3332C11.4476 14.3332 10.9996 13.8852 10.9996 13.3332V8.66653ZM11.9996 18.0918C11.2636 18.0918 10.6663 17.4932 10.6663 16.7585C10.6663 16.0238 11.2636 15.4252 11.9996 15.4252C12.7356 15.4252 13.3329 16.0238 13.3329 16.7585C13.3329 17.4932 12.7356 18.0918 11.9996 18.0918Z",
@@ -2835,14 +2882,14 @@ var ErrorIcon = (props) => /* @__PURE__ */ jsx59(
2835
2882
  );
2836
2883
 
2837
2884
  // src/components/Icon/icons/ExpandDiagonalIcon.tsx
2838
- import { jsx as jsx60 } from "react/jsx-runtime";
2839
- var ExpandDiagonalIcon = (props) => /* @__PURE__ */ jsx60(
2885
+ import { jsx as jsx61 } from "react/jsx-runtime";
2886
+ var ExpandDiagonalIcon = (props) => /* @__PURE__ */ jsx61(
2840
2887
  "svg",
2841
2888
  {
2842
2889
  ...props,
2843
2890
  viewBox: "0 0 24 24",
2844
2891
  xmlns: "http://www.w3.org/2000/svg",
2845
- children: /* @__PURE__ */ jsx60(
2892
+ children: /* @__PURE__ */ jsx61(
2846
2893
  "path",
2847
2894
  {
2848
2895
  clipRule: "evenodd",
@@ -2855,14 +2902,14 @@ var ExpandDiagonalIcon = (props) => /* @__PURE__ */ jsx60(
2855
2902
  );
2856
2903
 
2857
2904
  // src/components/Icon/icons/ExpandIcon.tsx
2858
- import { jsx as jsx61 } from "react/jsx-runtime";
2859
- var ExpandIcon = (props) => /* @__PURE__ */ jsx61(
2905
+ import { jsx as jsx62 } from "react/jsx-runtime";
2906
+ var ExpandIcon = (props) => /* @__PURE__ */ jsx62(
2860
2907
  "svg",
2861
2908
  {
2862
2909
  ...props,
2863
2910
  viewBox: "0 0 24 24",
2864
2911
  xmlns: "http://www.w3.org/2000/svg",
2865
- children: /* @__PURE__ */ jsx61(
2912
+ children: /* @__PURE__ */ jsx62(
2866
2913
  "path",
2867
2914
  {
2868
2915
  clipRule: "evenodd",
@@ -2875,14 +2922,14 @@ var ExpandIcon = (props) => /* @__PURE__ */ jsx61(
2875
2922
  );
2876
2923
 
2877
2924
  // src/components/Icon/icons/FavoriteIcon.tsx
2878
- import { jsx as jsx62 } from "react/jsx-runtime";
2879
- var FavoriteIcon = (props) => /* @__PURE__ */ jsx62(
2925
+ import { jsx as jsx63 } from "react/jsx-runtime";
2926
+ var FavoriteIcon = (props) => /* @__PURE__ */ jsx63(
2880
2927
  "svg",
2881
2928
  {
2882
2929
  ...props,
2883
2930
  viewBox: "0 0 24 24",
2884
2931
  xmlns: "http://www.w3.org/2000/svg",
2885
- children: /* @__PURE__ */ jsx62(
2932
+ children: /* @__PURE__ */ jsx63(
2886
2933
  "path",
2887
2934
  {
2888
2935
  d: "M22.6168 9.04785C22.4995 8.68652 22.1861 8.42252 21.8101 8.36786L15.6501 7.47319L12.8955 1.89054C12.5595 1.20787 11.4382 1.20787 11.1022 1.89054L8.34749 7.47186L2.18751 8.36652C1.81151 8.42119 1.49818 8.68519 1.38084 9.04652C1.26351 9.40785 1.36084 9.80652 1.63418 10.0719L6.0915 14.4158L5.03817 20.5505C4.97417 20.9265 5.1275 21.3052 5.4355 21.5292C5.7435 21.7518 6.15283 21.7812 6.48883 21.6052L11.9981 18.7078L17.5075 21.6052C17.6541 21.6825 17.8128 21.7198 17.9728 21.7198C18.1795 21.7198 18.3861 21.6558 18.5608 21.5292C18.8688 21.3052 19.0235 20.9265 18.9581 20.5505L17.9048 14.4158L22.3621 10.0719C22.6355 9.80652 22.7328 9.40785 22.6155 9.04652L22.6168 9.04785Z",
@@ -2893,14 +2940,14 @@ var FavoriteIcon = (props) => /* @__PURE__ */ jsx62(
2893
2940
  );
2894
2941
 
2895
2942
  // src/components/Icon/icons/FavoriteOutlineIcon.tsx
2896
- import { jsx as jsx63 } from "react/jsx-runtime";
2897
- var FavoriteOutlineIcon = (props) => /* @__PURE__ */ jsx63(
2943
+ import { jsx as jsx64 } from "react/jsx-runtime";
2944
+ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ jsx64(
2898
2945
  "svg",
2899
2946
  {
2900
2947
  ...props,
2901
2948
  viewBox: "0 0 24 24",
2902
2949
  xmlns: "http://www.w3.org/2000/svg",
2903
- children: /* @__PURE__ */ jsx63(
2950
+ children: /* @__PURE__ */ jsx64(
2904
2951
  "path",
2905
2952
  {
2906
2953
  d: "M12 2.33321L14.9866 8.38519L21.6666 9.35586L16.8333 14.0678L17.9746 20.7198L12 17.5798L6.02532 20.7198L7.16665 14.0678L2.33333 9.35586L9.01331 8.38519L12 2.33321Z",
@@ -2914,14 +2961,14 @@ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ jsx63(
2914
2961
  );
2915
2962
 
2916
2963
  // src/components/Icon/icons/FileTreeIcon.tsx
2917
- import { jsx as jsx64 } from "react/jsx-runtime";
2918
- var FileTreeIcon = (props) => /* @__PURE__ */ jsx64(
2964
+ import { jsx as jsx65 } from "react/jsx-runtime";
2965
+ var FileTreeIcon = (props) => /* @__PURE__ */ jsx65(
2919
2966
  "svg",
2920
2967
  {
2921
2968
  ...props,
2922
2969
  viewBox: "0 0 24 24",
2923
2970
  xmlns: "http://www.w3.org/2000/svg",
2924
- children: /* @__PURE__ */ jsx64(
2971
+ children: /* @__PURE__ */ jsx65(
2925
2972
  "path",
2926
2973
  {
2927
2974
  clipRule: "evenodd",
@@ -2934,14 +2981,14 @@ var FileTreeIcon = (props) => /* @__PURE__ */ jsx64(
2934
2981
  );
2935
2982
 
2936
2983
  // src/components/Icon/icons/FilterIcon.tsx
2937
- import { jsx as jsx65 } from "react/jsx-runtime";
2938
- var FilterIcon = (props) => /* @__PURE__ */ jsx65(
2984
+ import { jsx as jsx66 } from "react/jsx-runtime";
2985
+ var FilterIcon = (props) => /* @__PURE__ */ jsx66(
2939
2986
  "svg",
2940
2987
  {
2941
2988
  ...props,
2942
2989
  viewBox: "0 0 24 24",
2943
2990
  xmlns: "http://www.w3.org/2000/svg",
2944
- children: /* @__PURE__ */ jsx65(
2991
+ children: /* @__PURE__ */ jsx66(
2945
2992
  "path",
2946
2993
  {
2947
2994
  clipRule: "evenodd",
@@ -2954,14 +3001,14 @@ var FilterIcon = (props) => /* @__PURE__ */ jsx65(
2954
3001
  );
2955
3002
 
2956
3003
  // src/components/Icon/icons/FontsIcon.tsx
2957
- import { jsx as jsx66 } from "react/jsx-runtime";
2958
- var FontsIcon = (props) => /* @__PURE__ */ jsx66(
3004
+ import { jsx as jsx67 } from "react/jsx-runtime";
3005
+ var FontsIcon = (props) => /* @__PURE__ */ jsx67(
2959
3006
  "svg",
2960
3007
  {
2961
3008
  ...props,
2962
3009
  viewBox: "0 0 24 24",
2963
3010
  xmlns: "http://www.w3.org/2000/svg",
2964
- children: /* @__PURE__ */ jsx66(
3011
+ children: /* @__PURE__ */ jsx67(
2965
3012
  "path",
2966
3013
  {
2967
3014
  clipRule: "evenodd",
@@ -2974,14 +3021,14 @@ var FontsIcon = (props) => /* @__PURE__ */ jsx66(
2974
3021
  );
2975
3022
 
2976
3023
  // src/components/Icon/icons/FullScreenIcon.tsx
2977
- import { jsx as jsx67 } from "react/jsx-runtime";
2978
- var FullScreenIcon = (props) => /* @__PURE__ */ jsx67(
3024
+ import { jsx as jsx68 } from "react/jsx-runtime";
3025
+ var FullScreenIcon = (props) => /* @__PURE__ */ jsx68(
2979
3026
  "svg",
2980
3027
  {
2981
3028
  ...props,
2982
3029
  viewBox: "0 0 24 24",
2983
3030
  xmlns: "http://www.w3.org/2000/svg",
2984
- children: /* @__PURE__ */ jsx67(
3031
+ children: /* @__PURE__ */ jsx68(
2985
3032
  "path",
2986
3033
  {
2987
3034
  clipRule: "evenodd",
@@ -2994,14 +3041,14 @@ var FullScreenIcon = (props) => /* @__PURE__ */ jsx67(
2994
3041
  );
2995
3042
 
2996
3043
  // src/components/Icon/icons/GearIcon.tsx
2997
- import { jsx as jsx68 } from "react/jsx-runtime";
2998
- var GearIcon = (props) => /* @__PURE__ */ jsx68(
3044
+ import { jsx as jsx69 } from "react/jsx-runtime";
3045
+ var GearIcon = (props) => /* @__PURE__ */ jsx69(
2999
3046
  "svg",
3000
3047
  {
3001
3048
  ...props,
3002
3049
  viewBox: "0 0 24 24",
3003
3050
  xmlns: "http://www.w3.org/2000/svg",
3004
- children: /* @__PURE__ */ jsx68(
3051
+ children: /* @__PURE__ */ jsx69(
3005
3052
  "path",
3006
3053
  {
3007
3054
  d: "M21.253 9.92118L19.837 9.70384C19.6717 9.13851 19.4477 8.59585 19.1637 8.07985L20.0117 6.92385C20.5024 6.25585 20.433 5.34385 19.8464 4.75985L19.2384 4.15186C18.6544 3.56652 17.7437 3.49719 17.073 3.98652L15.917 4.83585C15.401 4.55186 14.8584 4.32786 14.2944 4.16252L14.0757 2.74519C13.9491 1.92653 13.2571 1.33186 12.4291 1.33186H11.5691C10.7411 1.33186 10.0477 1.92653 9.9224 2.74653L9.70506 4.16252C9.13973 4.32786 8.59707 4.55186 8.08107 4.83585L6.92507 3.98786C6.25574 3.49852 5.34507 3.56786 4.76108 4.15452L4.15308 4.76252C3.56774 5.34785 3.49841 6.25852 3.98774 6.92785L4.83708 8.08385C4.55441 8.59985 4.32908 9.14251 4.16374 9.70651L2.74641 9.92517C1.92775 10.0518 1.33308 10.7438 1.33308 11.5718V12.4318C1.33308 13.2598 1.92775 13.9532 2.74775 14.0785L4.16374 14.2958C4.32908 14.8612 4.55308 15.4038 4.83708 15.9198L3.98908 17.0758C3.49975 17.7438 3.56908 18.6545 4.15574 19.2398L4.76374 19.8478C5.34907 20.4345 6.26107 20.5038 6.92907 20.0132L8.08507 19.1638C8.60107 19.4465 9.14373 19.6718 9.70773 19.8372L9.9264 21.2545C10.0531 22.0731 10.7451 22.6678 11.5731 22.6678H12.4331C13.2611 22.6678 13.9544 22.0731 14.0797 21.2531L14.2971 19.8372C14.8624 19.6718 15.405 19.4478 15.921 19.1638L17.077 20.0118C17.745 20.5025 18.6557 20.4318 19.241 19.8465L19.849 19.2385C20.4344 18.6532 20.5037 17.7425 20.0144 17.0732L19.165 15.9172C19.449 15.4012 19.673 14.8585 19.8384 14.2945L21.2557 14.0758C22.0744 13.9492 22.669 13.2572 22.669 12.4292V11.5692C22.669 10.7412 22.0744 10.0478 21.2557 9.92251L21.253 9.92118ZM11.9997 14.9998C10.3424 14.9998 8.99973 13.6572 8.99973 11.9998C8.99973 10.3425 10.3424 8.99984 11.9997 8.99984C13.6571 8.99984 14.9997 10.3425 14.9997 11.9998C14.9997 13.6572 13.6571 14.9998 11.9997 14.9998Z",
@@ -3012,14 +3059,14 @@ var GearIcon = (props) => /* @__PURE__ */ jsx68(
3012
3059
  );
3013
3060
 
3014
3061
  // src/components/Icon/icons/GettingStartedIcon.tsx
3015
- import { jsx as jsx69 } from "react/jsx-runtime";
3016
- var GettingStartedIcon = (props) => /* @__PURE__ */ jsx69(
3062
+ import { jsx as jsx70 } from "react/jsx-runtime";
3063
+ var GettingStartedIcon = (props) => /* @__PURE__ */ jsx70(
3017
3064
  "svg",
3018
3065
  {
3019
3066
  ...props,
3020
3067
  viewBox: "0 0 24 24",
3021
3068
  xmlns: "http://www.w3.org/2000/svg",
3022
- children: /* @__PURE__ */ jsx69(
3069
+ children: /* @__PURE__ */ jsx70(
3023
3070
  "path",
3024
3071
  {
3025
3072
  clipRule: "evenodd",
@@ -3032,14 +3079,14 @@ var GettingStartedIcon = (props) => /* @__PURE__ */ jsx69(
3032
3079
  );
3033
3080
 
3034
3081
  // src/components/Icon/icons/GridIcon.tsx
3035
- import { jsx as jsx70 } from "react/jsx-runtime";
3036
- var GridIcon = (props) => /* @__PURE__ */ jsx70(
3082
+ import { jsx as jsx71 } from "react/jsx-runtime";
3083
+ var GridIcon = (props) => /* @__PURE__ */ jsx71(
3037
3084
  "svg",
3038
3085
  {
3039
3086
  ...props,
3040
3087
  viewBox: "0 0 24 24",
3041
3088
  xmlns: "http://www.w3.org/2000/svg",
3042
- children: /* @__PURE__ */ jsx70(
3089
+ children: /* @__PURE__ */ jsx71(
3043
3090
  "path",
3044
3091
  {
3045
3092
  clipRule: "evenodd",
@@ -3052,14 +3099,14 @@ var GridIcon = (props) => /* @__PURE__ */ jsx70(
3052
3099
  );
3053
3100
 
3054
3101
  // src/components/Icon/icons/GripDotsVerticalIcon.tsx
3055
- import { jsx as jsx71 } from "react/jsx-runtime";
3056
- var GripDotsVerticalIcon = (props) => /* @__PURE__ */ jsx71(
3102
+ import { jsx as jsx72 } from "react/jsx-runtime";
3103
+ var GripDotsVerticalIcon = (props) => /* @__PURE__ */ jsx72(
3057
3104
  "svg",
3058
3105
  {
3059
3106
  ...props,
3060
3107
  viewBox: "0 0 24 24",
3061
3108
  xmlns: "http://www.w3.org/2000/svg",
3062
- children: /* @__PURE__ */ jsx71(
3109
+ children: /* @__PURE__ */ jsx72(
3063
3110
  "path",
3064
3111
  {
3065
3112
  clipRule: "evenodd",
@@ -3072,14 +3119,14 @@ var GripDotsVerticalIcon = (props) => /* @__PURE__ */ jsx71(
3072
3119
  );
3073
3120
 
3074
3121
  // src/components/Icon/icons/HelpCenterIcon.tsx
3075
- import { jsx as jsx72 } from "react/jsx-runtime";
3076
- var HelpCenterIcon = (props) => /* @__PURE__ */ jsx72(
3122
+ import { jsx as jsx73 } from "react/jsx-runtime";
3123
+ var HelpCenterIcon = (props) => /* @__PURE__ */ jsx73(
3077
3124
  "svg",
3078
3125
  {
3079
3126
  ...props,
3080
3127
  viewBox: "0 0 24 24",
3081
3128
  xmlns: "http://www.w3.org/2000/svg",
3082
- children: /* @__PURE__ */ jsx72(
3129
+ children: /* @__PURE__ */ jsx73(
3083
3130
  "path",
3084
3131
  {
3085
3132
  clipRule: "evenodd",
@@ -3092,14 +3139,14 @@ var HelpCenterIcon = (props) => /* @__PURE__ */ jsx72(
3092
3139
  );
3093
3140
 
3094
3141
  // src/components/Icon/icons/HideIcon.tsx
3095
- import { jsx as jsx73 } from "react/jsx-runtime";
3096
- var HideIcon = (props) => /* @__PURE__ */ jsx73(
3142
+ import { jsx as jsx74 } from "react/jsx-runtime";
3143
+ var HideIcon = (props) => /* @__PURE__ */ jsx74(
3097
3144
  "svg",
3098
3145
  {
3099
3146
  ...props,
3100
3147
  viewBox: "0 0 24 24",
3101
3148
  xmlns: "http://www.w3.org/2000/svg",
3102
- children: /* @__PURE__ */ jsx73(
3149
+ children: /* @__PURE__ */ jsx74(
3103
3150
  "path",
3104
3151
  {
3105
3152
  clipRule: "evenodd",
@@ -3112,14 +3159,14 @@ var HideIcon = (props) => /* @__PURE__ */ jsx73(
3112
3159
  );
3113
3160
 
3114
3161
  // src/components/Icon/icons/HomeIcon.tsx
3115
- import { jsx as jsx74 } from "react/jsx-runtime";
3116
- var HomeIcon = (props) => /* @__PURE__ */ jsx74(
3162
+ import { jsx as jsx75 } from "react/jsx-runtime";
3163
+ var HomeIcon = (props) => /* @__PURE__ */ jsx75(
3117
3164
  "svg",
3118
3165
  {
3119
3166
  ...props,
3120
3167
  viewBox: "0 0 24 24",
3121
3168
  xmlns: "http://www.w3.org/2000/svg",
3122
- children: /* @__PURE__ */ jsx74(
3169
+ children: /* @__PURE__ */ jsx75(
3123
3170
  "path",
3124
3171
  {
3125
3172
  d: "M20.4119 7.47053L13.4119 2.15054C12.5799 1.51721 11.4186 1.51854 10.5879 2.15054L3.58793 7.47053C3.01059 7.90919 2.6666 8.60386 2.6666 9.32786V18.9998C2.6666 21.0225 4.31059 22.6665 6.33325 22.6665H17.6666C19.6892 22.6665 21.3332 21.0225 21.3332 18.9998V9.32786C21.3332 8.60386 20.9892 7.91053 20.4119 7.47053Z",
@@ -3130,14 +3177,14 @@ var HomeIcon = (props) => /* @__PURE__ */ jsx74(
3130
3177
  );
3131
3178
 
3132
3179
  // src/components/Icon/icons/HourglassIcon.tsx
3133
- import { jsx as jsx75 } from "react/jsx-runtime";
3134
- var HourglassIcon = (props) => /* @__PURE__ */ jsx75(
3180
+ import { jsx as jsx76 } from "react/jsx-runtime";
3181
+ var HourglassIcon = (props) => /* @__PURE__ */ jsx76(
3135
3182
  "svg",
3136
3183
  {
3137
3184
  ...props,
3138
3185
  viewBox: "0 0 24 24",
3139
3186
  xmlns: "http://www.w3.org/2000/svg",
3140
- children: /* @__PURE__ */ jsx75(
3187
+ children: /* @__PURE__ */ jsx76(
3141
3188
  "path",
3142
3189
  {
3143
3190
  clipRule: "evenodd",
@@ -3150,14 +3197,14 @@ var HourglassIcon = (props) => /* @__PURE__ */ jsx75(
3150
3197
  );
3151
3198
 
3152
3199
  // src/components/Icon/icons/InfoIcon.tsx
3153
- import { jsx as jsx76 } from "react/jsx-runtime";
3154
- var InfoIcon = (props) => /* @__PURE__ */ jsx76(
3200
+ import { jsx as jsx77 } from "react/jsx-runtime";
3201
+ var InfoIcon = (props) => /* @__PURE__ */ jsx77(
3155
3202
  "svg",
3156
3203
  {
3157
3204
  ...props,
3158
3205
  viewBox: "0 0 24 24",
3159
3206
  xmlns: "http://www.w3.org/2000/svg",
3160
- children: /* @__PURE__ */ jsx76(
3207
+ children: /* @__PURE__ */ jsx77(
3161
3208
  "path",
3162
3209
  {
3163
3210
  d: "M11.9998 1.33321C6.11847 1.33321 1.33315 6.11853 1.33315 11.9998C1.33315 17.8812 6.11847 22.6665 11.9998 22.6665C17.8811 22.6665 22.6664 17.8812 22.6664 11.9998C22.6664 6.11853 17.8811 1.33321 11.9998 1.33321ZM12.9998 17.0918C12.9998 17.6438 12.5518 18.0918 11.9998 18.0918C11.4478 18.0918 10.9998 17.6438 10.9998 17.0918V10.9998C10.9998 10.4479 11.4478 9.99985 11.9998 9.99985C12.5518 9.99985 12.9998 10.4479 12.9998 10.9998V17.0918ZM11.9998 8.99985C11.2638 8.99985 10.6665 8.40119 10.6665 7.66652C10.6665 6.93186 11.2638 6.33319 11.9998 6.33319C12.7358 6.33319 13.3331 6.93186 13.3331 7.66652C13.3331 8.40119 12.7358 8.99985 11.9998 8.99985Z",
@@ -3168,14 +3215,14 @@ var InfoIcon = (props) => /* @__PURE__ */ jsx76(
3168
3215
  );
3169
3216
 
3170
3217
  // src/components/Icon/icons/IntegrationsIcon.tsx
3171
- import { jsx as jsx77 } from "react/jsx-runtime";
3172
- var IntegrationsIcon = (props) => /* @__PURE__ */ jsx77(
3218
+ import { jsx as jsx78 } from "react/jsx-runtime";
3219
+ var IntegrationsIcon = (props) => /* @__PURE__ */ jsx78(
3173
3220
  "svg",
3174
3221
  {
3175
3222
  ...props,
3176
3223
  viewBox: "0 0 24 24",
3177
3224
  xmlns: "http://www.w3.org/2000/svg",
3178
- children: /* @__PURE__ */ jsx77(
3225
+ children: /* @__PURE__ */ jsx78(
3179
3226
  "path",
3180
3227
  {
3181
3228
  clipRule: "evenodd",
@@ -3188,14 +3235,14 @@ var IntegrationsIcon = (props) => /* @__PURE__ */ jsx77(
3188
3235
  );
3189
3236
 
3190
3237
  // src/components/Icon/icons/LeaveIcon.tsx
3191
- import { jsx as jsx78 } from "react/jsx-runtime";
3192
- var LeaveIcon = (props) => /* @__PURE__ */ jsx78(
3238
+ import { jsx as jsx79 } from "react/jsx-runtime";
3239
+ var LeaveIcon = (props) => /* @__PURE__ */ jsx79(
3193
3240
  "svg",
3194
3241
  {
3195
3242
  ...props,
3196
3243
  viewBox: "0 0 24 24",
3197
3244
  xmlns: "http://www.w3.org/2000/svg",
3198
- children: /* @__PURE__ */ jsx78(
3245
+ children: /* @__PURE__ */ jsx79(
3199
3246
  "path",
3200
3247
  {
3201
3248
  clipRule: "evenodd",
@@ -3208,14 +3255,14 @@ var LeaveIcon = (props) => /* @__PURE__ */ jsx78(
3208
3255
  );
3209
3256
 
3210
3257
  // src/components/Icon/icons/LinkIcon.tsx
3211
- import { jsx as jsx79 } from "react/jsx-runtime";
3212
- var LinkIcon = (props) => /* @__PURE__ */ jsx79(
3258
+ import { jsx as jsx80 } from "react/jsx-runtime";
3259
+ var LinkIcon = (props) => /* @__PURE__ */ jsx80(
3213
3260
  "svg",
3214
3261
  {
3215
3262
  ...props,
3216
3263
  viewBox: "0 0 24 24",
3217
3264
  xmlns: "http://www.w3.org/2000/svg",
3218
- children: /* @__PURE__ */ jsx79(
3265
+ children: /* @__PURE__ */ jsx80(
3219
3266
  "path",
3220
3267
  {
3221
3268
  clipRule: "evenodd",
@@ -3228,14 +3275,14 @@ var LinkIcon = (props) => /* @__PURE__ */ jsx79(
3228
3275
  );
3229
3276
 
3230
3277
  // src/components/Icon/icons/ListIcon.tsx
3231
- import { jsx as jsx80 } from "react/jsx-runtime";
3232
- var ListIcon = (props) => /* @__PURE__ */ jsx80(
3278
+ import { jsx as jsx81 } from "react/jsx-runtime";
3279
+ var ListIcon = (props) => /* @__PURE__ */ jsx81(
3233
3280
  "svg",
3234
3281
  {
3235
3282
  ...props,
3236
3283
  viewBox: "0 0 24 24",
3237
3284
  xmlns: "http://www.w3.org/2000/svg",
3238
- children: /* @__PURE__ */ jsx80(
3285
+ children: /* @__PURE__ */ jsx81(
3239
3286
  "path",
3240
3287
  {
3241
3288
  clipRule: "evenodd",
@@ -3248,14 +3295,14 @@ var ListIcon = (props) => /* @__PURE__ */ jsx80(
3248
3295
  );
3249
3296
 
3250
3297
  // src/components/Icon/icons/LiveIcon.tsx
3251
- import { jsx as jsx81 } from "react/jsx-runtime";
3252
- var LiveIcon = (props) => /* @__PURE__ */ jsx81(
3298
+ import { jsx as jsx82 } from "react/jsx-runtime";
3299
+ var LiveIcon = (props) => /* @__PURE__ */ jsx82(
3253
3300
  "svg",
3254
3301
  {
3255
3302
  ...props,
3256
3303
  viewBox: "0 0 24 24",
3257
3304
  xmlns: "http://www.w3.org/2000/svg",
3258
- children: /* @__PURE__ */ jsx81(
3305
+ children: /* @__PURE__ */ jsx82(
3259
3306
  "path",
3260
3307
  {
3261
3308
  clipRule: "evenodd",
@@ -3268,14 +3315,14 @@ var LiveIcon = (props) => /* @__PURE__ */ jsx81(
3268
3315
  );
3269
3316
 
3270
3317
  // src/components/Icon/icons/LockIcon.tsx
3271
- import { jsx as jsx82 } from "react/jsx-runtime";
3272
- var LockIcon = (props) => /* @__PURE__ */ jsx82(
3318
+ import { jsx as jsx83 } from "react/jsx-runtime";
3319
+ var LockIcon = (props) => /* @__PURE__ */ jsx83(
3273
3320
  "svg",
3274
3321
  {
3275
3322
  ...props,
3276
3323
  viewBox: "0 0 24 24",
3277
3324
  xmlns: "http://www.w3.org/2000/svg",
3278
- children: /* @__PURE__ */ jsx82(
3325
+ children: /* @__PURE__ */ jsx83(
3279
3326
  "path",
3280
3327
  {
3281
3328
  clipRule: "evenodd",
@@ -3288,14 +3335,14 @@ var LockIcon = (props) => /* @__PURE__ */ jsx82(
3288
3335
  );
3289
3336
 
3290
3337
  // src/components/Icon/icons/LogoutIcon.tsx
3291
- import { jsx as jsx83 } from "react/jsx-runtime";
3292
- var LogoutIcon = (props) => /* @__PURE__ */ jsx83(
3338
+ import { jsx as jsx84 } from "react/jsx-runtime";
3339
+ var LogoutIcon = (props) => /* @__PURE__ */ jsx84(
3293
3340
  "svg",
3294
3341
  {
3295
3342
  ...props,
3296
3343
  viewBox: "0 0 24 24",
3297
3344
  xmlns: "http://www.w3.org/2000/svg",
3298
- children: /* @__PURE__ */ jsx83(
3345
+ children: /* @__PURE__ */ jsx84(
3299
3346
  "path",
3300
3347
  {
3301
3348
  clipRule: "evenodd",
@@ -3308,14 +3355,14 @@ var LogoutIcon = (props) => /* @__PURE__ */ jsx83(
3308
3355
  );
3309
3356
 
3310
3357
  // src/components/Icon/icons/MaximizeIcon.tsx
3311
- import { jsx as jsx84 } from "react/jsx-runtime";
3312
- var MaximizeIcon = (props) => /* @__PURE__ */ jsx84(
3358
+ import { jsx as jsx85 } from "react/jsx-runtime";
3359
+ var MaximizeIcon = (props) => /* @__PURE__ */ jsx85(
3313
3360
  "svg",
3314
3361
  {
3315
3362
  ...props,
3316
3363
  viewBox: "0 0 24 24",
3317
3364
  xmlns: "http://www.w3.org/2000/svg",
3318
- children: /* @__PURE__ */ jsx84(
3365
+ children: /* @__PURE__ */ jsx85(
3319
3366
  "path",
3320
3367
  {
3321
3368
  clipRule: "evenodd",
@@ -3328,14 +3375,14 @@ var MaximizeIcon = (props) => /* @__PURE__ */ jsx84(
3328
3375
  );
3329
3376
 
3330
3377
  // src/components/Icon/icons/MediaIcon.tsx
3331
- import { jsx as jsx85 } from "react/jsx-runtime";
3332
- var MediaIcon = (props) => /* @__PURE__ */ jsx85(
3378
+ import { jsx as jsx86 } from "react/jsx-runtime";
3379
+ var MediaIcon = (props) => /* @__PURE__ */ jsx86(
3333
3380
  "svg",
3334
3381
  {
3335
3382
  ...props,
3336
3383
  viewBox: "0 0 24 24",
3337
3384
  xmlns: "http://www.w3.org/2000/svg",
3338
- children: /* @__PURE__ */ jsx85(
3385
+ children: /* @__PURE__ */ jsx86(
3339
3386
  "path",
3340
3387
  {
3341
3388
  d: "M17.6666 2.66653H6.33325C4.31059 2.66653 2.6666 4.31053 2.6666 6.33319V17.6665C2.6666 19.6892 4.31059 21.3332 6.33325 21.3332H17.6666C19.6892 21.3332 21.3332 19.6892 21.3332 17.6665V6.33319C21.3332 4.31053 19.6892 2.66653 17.6666 2.66653ZM15.0372 12.8638L10.1706 15.7025C10.0132 15.7945 9.83991 15.8412 9.66658 15.8412C9.49591 15.8412 9.32525 15.7958 9.16791 15.7065C8.85325 15.5265 8.66658 15.2025 8.66658 14.8398V9.16118C8.66658 8.79852 8.85458 8.47452 9.16791 8.29452C9.48258 8.11319 9.85724 8.11585 10.1692 8.29719L15.0359 11.1358C15.3466 11.3172 15.5332 11.6398 15.5332 11.9998C15.5332 12.3598 15.3492 12.6825 15.0372 12.8638Z",
@@ -3346,14 +3393,14 @@ var MediaIcon = (props) => /* @__PURE__ */ jsx85(
3346
3393
  );
3347
3394
 
3348
3395
  // src/components/Icon/icons/MenuIcon.tsx
3349
- import { jsx as jsx86 } from "react/jsx-runtime";
3350
- var MenuIcon = (props) => /* @__PURE__ */ jsx86(
3396
+ import { jsx as jsx87 } from "react/jsx-runtime";
3397
+ var MenuIcon = (props) => /* @__PURE__ */ jsx87(
3351
3398
  "svg",
3352
3399
  {
3353
3400
  ...props,
3354
3401
  viewBox: "0 0 24 24",
3355
3402
  xmlns: "http://www.w3.org/2000/svg",
3356
- children: /* @__PURE__ */ jsx86(
3403
+ children: /* @__PURE__ */ jsx87(
3357
3404
  "path",
3358
3405
  {
3359
3406
  clipRule: "evenodd",
@@ -3366,14 +3413,14 @@ var MenuIcon = (props) => /* @__PURE__ */ jsx86(
3366
3413
  );
3367
3414
 
3368
3415
  // src/components/Icon/icons/MicIcon.tsx
3369
- import { jsx as jsx87 } from "react/jsx-runtime";
3370
- var MicIcon = (props) => /* @__PURE__ */ jsx87(
3416
+ import { jsx as jsx88 } from "react/jsx-runtime";
3417
+ var MicIcon = (props) => /* @__PURE__ */ jsx88(
3371
3418
  "svg",
3372
3419
  {
3373
3420
  ...props,
3374
3421
  viewBox: "0 0 24 24",
3375
3422
  xmlns: "http://www.w3.org/2000/svg",
3376
- children: /* @__PURE__ */ jsx87(
3423
+ children: /* @__PURE__ */ jsx88(
3377
3424
  "path",
3378
3425
  {
3379
3426
  clipRule: "evenodd",
@@ -3386,14 +3433,14 @@ var MicIcon = (props) => /* @__PURE__ */ jsx87(
3386
3433
  );
3387
3434
 
3388
3435
  // src/components/Icon/icons/MicOffIcon.tsx
3389
- import { jsx as jsx88 } from "react/jsx-runtime";
3390
- var MicOffIcon = (props) => /* @__PURE__ */ jsx88(
3436
+ import { jsx as jsx89 } from "react/jsx-runtime";
3437
+ var MicOffIcon = (props) => /* @__PURE__ */ jsx89(
3391
3438
  "svg",
3392
3439
  {
3393
3440
  ...props,
3394
3441
  viewBox: "0 0 24 24",
3395
3442
  xmlns: "http://www.w3.org/2000/svg",
3396
- children: /* @__PURE__ */ jsx88(
3443
+ children: /* @__PURE__ */ jsx89(
3397
3444
  "path",
3398
3445
  {
3399
3446
  clipRule: "evenodd",
@@ -3406,14 +3453,14 @@ var MicOffIcon = (props) => /* @__PURE__ */ jsx88(
3406
3453
  );
3407
3454
 
3408
3455
  // src/components/Icon/icons/MinimizeIcon.tsx
3409
- import { jsx as jsx89 } from "react/jsx-runtime";
3410
- var MinimizeIcon = (props) => /* @__PURE__ */ jsx89(
3456
+ import { jsx as jsx90 } from "react/jsx-runtime";
3457
+ var MinimizeIcon = (props) => /* @__PURE__ */ jsx90(
3411
3458
  "svg",
3412
3459
  {
3413
3460
  ...props,
3414
3461
  viewBox: "0 0 24 24",
3415
3462
  xmlns: "http://www.w3.org/2000/svg",
3416
- children: /* @__PURE__ */ jsx89(
3463
+ children: /* @__PURE__ */ jsx90(
3417
3464
  "path",
3418
3465
  {
3419
3466
  clipRule: "evenodd",
@@ -3426,14 +3473,14 @@ var MinimizeIcon = (props) => /* @__PURE__ */ jsx89(
3426
3473
  );
3427
3474
 
3428
3475
  // src/components/Icon/icons/MinusCircleIcon.tsx
3429
- import { jsx as jsx90 } from "react/jsx-runtime";
3430
- var MinusCircleIcon = (props) => /* @__PURE__ */ jsx90(
3476
+ import { jsx as jsx91 } from "react/jsx-runtime";
3477
+ var MinusCircleIcon = (props) => /* @__PURE__ */ jsx91(
3431
3478
  "svg",
3432
3479
  {
3433
3480
  ...props,
3434
3481
  viewBox: "0 0 24 24",
3435
3482
  xmlns: "http://www.w3.org/2000/svg",
3436
- children: /* @__PURE__ */ jsx90(
3483
+ children: /* @__PURE__ */ jsx91(
3437
3484
  "path",
3438
3485
  {
3439
3486
  d: "M11.9998 1.33321C6.11842 1.33321 1.33309 6.11855 1.33309 11.9999C1.33309 17.8812 6.11842 22.6665 11.9998 22.6665C17.8811 22.6665 22.6664 17.8812 22.6664 11.9999C22.6664 6.11855 17.8811 1.33321 11.9998 1.33321ZM16.3331 12.9999H7.66642C7.11442 12.9999 6.66642 12.5519 6.66642 11.9999C6.66642 11.4479 7.11442 10.9999 7.66642 10.9999H16.3331C16.8851 10.9999 17.3331 11.4479 17.3331 11.9999C17.3331 12.5519 16.8851 12.9999 16.3331 12.9999Z",
@@ -3444,14 +3491,14 @@ var MinusCircleIcon = (props) => /* @__PURE__ */ jsx90(
3444
3491
  );
3445
3492
 
3446
3493
  // src/components/Icon/icons/MobileIcon.tsx
3447
- import { jsx as jsx91 } from "react/jsx-runtime";
3448
- var MobileIcon = (props) => /* @__PURE__ */ jsx91(
3494
+ import { jsx as jsx92 } from "react/jsx-runtime";
3495
+ var MobileIcon = (props) => /* @__PURE__ */ jsx92(
3449
3496
  "svg",
3450
3497
  {
3451
3498
  ...props,
3452
3499
  viewBox: "0 0 24 24",
3453
3500
  xmlns: "http://www.w3.org/2000/svg",
3454
- children: /* @__PURE__ */ jsx91(
3501
+ children: /* @__PURE__ */ jsx92(
3455
3502
  "path",
3456
3503
  {
3457
3504
  clipRule: "evenodd",
@@ -3464,14 +3511,14 @@ var MobileIcon = (props) => /* @__PURE__ */ jsx91(
3464
3511
  );
3465
3512
 
3466
3513
  // src/components/Icon/icons/MoreOptionsIcon.tsx
3467
- import { jsx as jsx92 } from "react/jsx-runtime";
3468
- var MoreOptionsIcon = (props) => /* @__PURE__ */ jsx92(
3514
+ import { jsx as jsx93 } from "react/jsx-runtime";
3515
+ var MoreOptionsIcon = (props) => /* @__PURE__ */ jsx93(
3469
3516
  "svg",
3470
3517
  {
3471
3518
  ...props,
3472
3519
  viewBox: "0 0 24 24",
3473
3520
  xmlns: "http://www.w3.org/2000/svg",
3474
- children: /* @__PURE__ */ jsx92(
3521
+ children: /* @__PURE__ */ jsx93(
3475
3522
  "path",
3476
3523
  {
3477
3524
  clipRule: "evenodd",
@@ -3484,14 +3531,14 @@ var MoreOptionsIcon = (props) => /* @__PURE__ */ jsx92(
3484
3531
  );
3485
3532
 
3486
3533
  // src/components/Icon/icons/MoveLeftIcon.tsx
3487
- import { jsx as jsx93 } from "react/jsx-runtime";
3488
- var MoveLeftIcon = (props) => /* @__PURE__ */ jsx93(
3534
+ import { jsx as jsx94 } from "react/jsx-runtime";
3535
+ var MoveLeftIcon = (props) => /* @__PURE__ */ jsx94(
3489
3536
  "svg",
3490
3537
  {
3491
3538
  ...props,
3492
3539
  viewBox: "0 0 24 24",
3493
3540
  xmlns: "http://www.w3.org/2000/svg",
3494
- children: /* @__PURE__ */ jsx93(
3541
+ children: /* @__PURE__ */ jsx94(
3495
3542
  "path",
3496
3543
  {
3497
3544
  clipRule: "evenodd",
@@ -3504,14 +3551,14 @@ var MoveLeftIcon = (props) => /* @__PURE__ */ jsx93(
3504
3551
  );
3505
3552
 
3506
3553
  // src/components/Icon/icons/MoveRightIcon.tsx
3507
- import { jsx as jsx94 } from "react/jsx-runtime";
3508
- var MoveRightIcon = (props) => /* @__PURE__ */ jsx94(
3554
+ import { jsx as jsx95 } from "react/jsx-runtime";
3555
+ var MoveRightIcon = (props) => /* @__PURE__ */ jsx95(
3509
3556
  "svg",
3510
3557
  {
3511
3558
  ...props,
3512
3559
  viewBox: "0 0 24 24",
3513
3560
  xmlns: "http://www.w3.org/2000/svg",
3514
- children: /* @__PURE__ */ jsx94(
3561
+ children: /* @__PURE__ */ jsx95(
3515
3562
  "path",
3516
3563
  {
3517
3564
  clipRule: "evenodd",
@@ -3524,14 +3571,14 @@ var MoveRightIcon = (props) => /* @__PURE__ */ jsx94(
3524
3571
  );
3525
3572
 
3526
3573
  // src/components/Icon/icons/MusicIcon.tsx
3527
- import { jsx as jsx95 } from "react/jsx-runtime";
3528
- var MusicIcon = (props) => /* @__PURE__ */ jsx95(
3574
+ import { jsx as jsx96 } from "react/jsx-runtime";
3575
+ var MusicIcon = (props) => /* @__PURE__ */ jsx96(
3529
3576
  "svg",
3530
3577
  {
3531
3578
  ...props,
3532
3579
  viewBox: "0 0 24 24",
3533
3580
  xmlns: "http://www.w3.org/2000/svg",
3534
- children: /* @__PURE__ */ jsx95(
3581
+ children: /* @__PURE__ */ jsx96(
3535
3582
  "path",
3536
3583
  {
3537
3584
  d: "M17.9493 1.93853L8.61598 3.49453C7.48665 3.68253 6.66665 4.65053 6.66665 5.79586V15.0852C6.16398 14.8265 5.60265 14.6665 4.99999 14.6665C2.97732 14.6665 1.33333 16.3105 1.33333 18.3332C1.33333 20.3558 2.97732 21.9998 4.99999 21.9998C7.02265 21.9998 8.66664 20.3558 8.66664 18.3332V9.84651L18.6666 8.17985V13.0852C18.164 12.8265 17.6026 12.6665 17 12.6665C14.9773 12.6665 13.3333 14.3105 13.3333 16.3332C13.3333 18.3558 14.9773 19.9998 17 19.9998C19.0226 19.9998 20.6666 18.3558 20.6666 16.3332V4.2412C20.6666 3.5532 20.3653 2.9052 19.8413 2.4612C19.3159 2.0172 18.6306 1.82787 17.9493 1.93987V1.93853Z",
@@ -3542,14 +3589,14 @@ var MusicIcon = (props) => /* @__PURE__ */ jsx95(
3542
3589
  );
3543
3590
 
3544
3591
  // src/components/Icon/icons/OpenNewIcon.tsx
3545
- import { jsx as jsx96 } from "react/jsx-runtime";
3546
- var OpenNewIcon = (props) => /* @__PURE__ */ jsx96(
3592
+ import { jsx as jsx97 } from "react/jsx-runtime";
3593
+ var OpenNewIcon = (props) => /* @__PURE__ */ jsx97(
3547
3594
  "svg",
3548
3595
  {
3549
3596
  ...props,
3550
3597
  viewBox: "0 0 24 24",
3551
3598
  xmlns: "http://www.w3.org/2000/svg",
3552
- children: /* @__PURE__ */ jsx96(
3599
+ children: /* @__PURE__ */ jsx97(
3553
3600
  "path",
3554
3601
  {
3555
3602
  clipRule: "evenodd",
@@ -3562,14 +3609,14 @@ var OpenNewIcon = (props) => /* @__PURE__ */ jsx96(
3562
3609
  );
3563
3610
 
3564
3611
  // src/components/Icon/icons/OverviewIcon.tsx
3565
- import { jsx as jsx97 } from "react/jsx-runtime";
3566
- var OverviewIcon = (props) => /* @__PURE__ */ jsx97(
3612
+ import { jsx as jsx98 } from "react/jsx-runtime";
3613
+ var OverviewIcon = (props) => /* @__PURE__ */ jsx98(
3567
3614
  "svg",
3568
3615
  {
3569
3616
  ...props,
3570
3617
  viewBox: "0 0 24 24",
3571
3618
  xmlns: "http://www.w3.org/2000/svg",
3572
- children: /* @__PURE__ */ jsx97(
3619
+ children: /* @__PURE__ */ jsx98(
3573
3620
  "path",
3574
3621
  {
3575
3622
  clipRule: "evenodd",
@@ -3582,14 +3629,14 @@ var OverviewIcon = (props) => /* @__PURE__ */ jsx97(
3582
3629
  );
3583
3630
 
3584
3631
  // src/components/Icon/icons/PageIcon.tsx
3585
- import { jsx as jsx98 } from "react/jsx-runtime";
3586
- var PageIcon = (props) => /* @__PURE__ */ jsx98(
3632
+ import { jsx as jsx99 } from "react/jsx-runtime";
3633
+ var PageIcon = (props) => /* @__PURE__ */ jsx99(
3587
3634
  "svg",
3588
3635
  {
3589
3636
  ...props,
3590
3637
  viewBox: "0 0 24 24",
3591
3638
  xmlns: "http://www.w3.org/2000/svg",
3592
- children: /* @__PURE__ */ jsx98(
3639
+ children: /* @__PURE__ */ jsx99(
3593
3640
  "path",
3594
3641
  {
3595
3642
  clipRule: "evenodd",
@@ -3602,14 +3649,14 @@ var PageIcon = (props) => /* @__PURE__ */ jsx98(
3602
3649
  );
3603
3650
 
3604
3651
  // src/components/Icon/icons/PanelLeftIcon.tsx
3605
- import { jsx as jsx99 } from "react/jsx-runtime";
3606
- var PanelLeftIcon = (props) => /* @__PURE__ */ jsx99(
3652
+ import { jsx as jsx100 } from "react/jsx-runtime";
3653
+ var PanelLeftIcon = (props) => /* @__PURE__ */ jsx100(
3607
3654
  "svg",
3608
3655
  {
3609
3656
  ...props,
3610
3657
  viewBox: "0 0 24 24",
3611
3658
  xmlns: "http://www.w3.org/2000/svg",
3612
- children: /* @__PURE__ */ jsx99(
3659
+ children: /* @__PURE__ */ jsx100(
3613
3660
  "path",
3614
3661
  {
3615
3662
  d: "M18.9997 2.66653H4.99974C2.97708 2.66653 1.33309 4.31053 1.33309 6.33319V17.6665C1.33309 19.6892 2.97708 21.3332 4.99974 21.3332H18.9997C21.0224 21.3332 22.6664 19.6892 22.6664 17.6665V6.33319C22.6664 4.31053 21.0224 2.66653 18.9997 2.66653ZM7.33307 16.3332C7.33307 16.8852 6.88507 17.3332 6.33307 17.3332C5.78108 17.3332 5.33308 16.8852 5.33308 16.3332V7.66652C5.33308 7.11452 5.78108 6.66652 6.33307 6.66652C6.88507 6.66652 7.33307 7.11452 7.33307 7.66652V16.3332ZM17.6664 12.9998H12.0811L13.3744 14.2932C13.7651 14.6838 13.7651 15.3172 13.3744 15.7078C13.1797 15.9025 12.9237 16.0012 12.6677 16.0012C12.4117 16.0012 12.1557 15.9038 11.9611 15.7078L8.96107 12.7078C8.5704 12.3172 8.5704 11.6838 8.96107 11.2932L11.9611 8.29319C12.3517 7.90252 12.9851 7.90252 13.3757 8.29319C13.7664 8.68385 13.7664 9.31718 13.3757 9.70785L12.0824 11.0012H17.6677C18.2197 11.0012 18.6677 11.4492 18.6677 12.0012C18.6677 12.5532 18.2197 13.0012 17.6677 13.0012L17.6664 12.9998Z",
@@ -3620,14 +3667,14 @@ var PanelLeftIcon = (props) => /* @__PURE__ */ jsx99(
3620
3667
  );
3621
3668
 
3622
3669
  // src/components/Icon/icons/PanelRightIcon.tsx
3623
- import { jsx as jsx100 } from "react/jsx-runtime";
3624
- var PanelRightIcon = (props) => /* @__PURE__ */ jsx100(
3670
+ import { jsx as jsx101 } from "react/jsx-runtime";
3671
+ var PanelRightIcon = (props) => /* @__PURE__ */ jsx101(
3625
3672
  "svg",
3626
3673
  {
3627
3674
  ...props,
3628
3675
  viewBox: "0 0 24 24",
3629
3676
  xmlns: "http://www.w3.org/2000/svg",
3630
- children: /* @__PURE__ */ jsx100(
3677
+ children: /* @__PURE__ */ jsx101(
3631
3678
  "path",
3632
3679
  {
3633
3680
  d: "M18.9996 2.66653H4.99968C2.97702 2.66653 1.33302 4.31053 1.33302 6.33319V17.6665C1.33302 19.6892 2.97702 21.3332 4.99968 21.3332H18.9996C21.0223 21.3332 22.6663 19.6892 22.6663 17.6665V6.33319C22.6663 4.31053 21.0223 2.66653 18.9996 2.66653ZM7.33301 16.3332C7.33301 16.8852 6.88501 17.3332 6.33301 17.3332C5.78101 17.3332 5.33301 16.8852 5.33301 16.3332V7.66652C5.33301 7.11452 5.78101 6.66652 6.33301 6.66652C6.88501 6.66652 7.33301 7.11452 7.33301 7.66652V16.3332ZM18.373 12.7065L15.373 15.7065C15.1783 15.9012 14.9223 15.9998 14.6663 15.9998C14.4103 15.9998 14.1543 15.9025 13.9597 15.7065C13.569 15.3158 13.569 14.6825 13.9597 14.2918L15.253 12.9985H9.66634C9.11434 12.9985 8.66634 12.5505 8.66634 11.9985C8.66634 11.4465 9.11434 10.9985 9.66634 10.9985H15.2517L13.9583 9.70518C13.5677 9.31452 13.5677 8.68119 13.9583 8.29052C14.349 7.89985 14.9823 7.89985 15.373 8.29052L18.373 11.2905C18.7636 11.6812 18.7636 12.3158 18.373 12.7065Z",
@@ -3638,14 +3685,14 @@ var PanelRightIcon = (props) => /* @__PURE__ */ jsx100(
3638
3685
  );
3639
3686
 
3640
3687
  // src/components/Icon/icons/PanelUpIcon.tsx
3641
- import { jsx as jsx101 } from "react/jsx-runtime";
3642
- var PanelUpIcon = (props) => /* @__PURE__ */ jsx101(
3688
+ import { jsx as jsx102 } from "react/jsx-runtime";
3689
+ var PanelUpIcon = (props) => /* @__PURE__ */ jsx102(
3643
3690
  "svg",
3644
3691
  {
3645
3692
  ...props,
3646
3693
  viewBox: "0 0 24 24",
3647
3694
  xmlns: "http://www.w3.org/2000/svg",
3648
- children: /* @__PURE__ */ jsx101(
3695
+ children: /* @__PURE__ */ jsx102(
3649
3696
  "path",
3650
3697
  {
3651
3698
  d: "M18.9996 2.66653H4.99962C2.97696 2.66653 1.33296 4.31053 1.33296 6.33319V17.6665C1.33296 19.6892 2.97696 21.3332 4.99962 21.3332H18.9996C21.0222 21.3332 22.6662 19.6892 22.6662 17.6665V6.33319C22.6662 4.31053 21.0222 2.66653 18.9996 2.66653ZM15.5343 14.8678C15.3396 15.0625 15.0836 15.1612 14.8276 15.1612C14.5716 15.1612 14.3156 15.0638 14.1209 14.8678L12.9996 13.7465V16.6652C12.9996 17.2172 12.5516 17.6652 11.9996 17.6652C11.4476 17.6652 10.9996 17.2172 10.9996 16.6652V13.7465L9.87827 14.8678C9.48761 15.2585 8.85428 15.2585 8.46361 14.8678C8.07295 14.4772 8.07295 13.8438 8.46361 13.4532L11.2916 10.6252C11.6823 10.2345 12.3156 10.2345 12.7063 10.6252L15.5343 13.4532C15.9249 13.8438 15.9249 14.4772 15.5343 14.8678ZM17.6663 8.66652H6.33295C5.78095 8.66652 5.33295 8.21852 5.33295 7.66652C5.33295 7.11452 5.78095 6.66652 6.33295 6.66652H17.6663C18.2183 6.66652 18.6663 7.11452 18.6663 7.66652C18.6663 8.21852 18.2183 8.66652 17.6663 8.66652Z",
@@ -3656,14 +3703,14 @@ var PanelUpIcon = (props) => /* @__PURE__ */ jsx101(
3656
3703
  );
3657
3704
 
3658
3705
  // src/components/Icon/icons/PasswordIcon.tsx
3659
- import { jsx as jsx102 } from "react/jsx-runtime";
3660
- var PasswordIcon = (props) => /* @__PURE__ */ jsx102(
3706
+ import { jsx as jsx103 } from "react/jsx-runtime";
3707
+ var PasswordIcon = (props) => /* @__PURE__ */ jsx103(
3661
3708
  "svg",
3662
3709
  {
3663
3710
  ...props,
3664
3711
  viewBox: "0 0 24 24",
3665
3712
  xmlns: "http://www.w3.org/2000/svg",
3666
- children: /* @__PURE__ */ jsx102(
3713
+ children: /* @__PURE__ */ jsx103(
3667
3714
  "path",
3668
3715
  {
3669
3716
  clipRule: "evenodd",
@@ -3676,14 +3723,14 @@ var PasswordIcon = (props) => /* @__PURE__ */ jsx102(
3676
3723
  );
3677
3724
 
3678
3725
  // src/components/Icon/icons/PencilIcon.tsx
3679
- import { jsx as jsx103 } from "react/jsx-runtime";
3680
- var PencilIcon = (props) => /* @__PURE__ */ jsx103(
3726
+ import { jsx as jsx104 } from "react/jsx-runtime";
3727
+ var PencilIcon = (props) => /* @__PURE__ */ jsx104(
3681
3728
  "svg",
3682
3729
  {
3683
3730
  ...props,
3684
3731
  viewBox: "0 0 24 24",
3685
3732
  xmlns: "http://www.w3.org/2000/svg",
3686
- children: /* @__PURE__ */ jsx103(
3733
+ children: /* @__PURE__ */ jsx104(
3687
3734
  "path",
3688
3735
  {
3689
3736
  d: "M15.2186 3.7972L4.80665 14.2092C3.65599 15.3612 2.93866 18.7505 2.68266 20.1545C2.62399 20.4772 2.72799 20.8092 2.95999 21.0412C3.14932 21.2305 3.40399 21.3345 3.66666 21.3345C3.72532 21.3345 3.78532 21.3292 3.84532 21.3185C5.24932 21.0638 8.63864 20.3465 9.79064 19.1945L20.2026 8.78252C21.5759 7.40786 21.5759 5.1732 20.2026 3.79854C18.872 2.46787 16.5493 2.46787 15.2186 3.7972Z",
@@ -3694,14 +3741,14 @@ var PencilIcon = (props) => /* @__PURE__ */ jsx103(
3694
3741
  );
3695
3742
 
3696
3743
  // src/components/Icon/icons/PeopleIcon.tsx
3697
- import { jsx as jsx104 } from "react/jsx-runtime";
3698
- var PeopleIcon = (props) => /* @__PURE__ */ jsx104(
3744
+ import { jsx as jsx105 } from "react/jsx-runtime";
3745
+ var PeopleIcon = (props) => /* @__PURE__ */ jsx105(
3699
3746
  "svg",
3700
3747
  {
3701
3748
  ...props,
3702
3749
  viewBox: "0 0 24 24",
3703
3750
  xmlns: "http://www.w3.org/2000/svg",
3704
- children: /* @__PURE__ */ jsx104(
3751
+ children: /* @__PURE__ */ jsx105(
3705
3752
  "path",
3706
3753
  {
3707
3754
  clipRule: "evenodd",
@@ -3714,14 +3761,14 @@ var PeopleIcon = (props) => /* @__PURE__ */ jsx104(
3714
3761
  );
3715
3762
 
3716
3763
  // src/components/Icon/icons/PinIcon.tsx
3717
- import { jsx as jsx105 } from "react/jsx-runtime";
3718
- var PinIcon = (props) => /* @__PURE__ */ jsx105(
3764
+ import { jsx as jsx106 } from "react/jsx-runtime";
3765
+ var PinIcon = (props) => /* @__PURE__ */ jsx106(
3719
3766
  "svg",
3720
3767
  {
3721
3768
  ...props,
3722
3769
  viewBox: "0 0 24 24",
3723
3770
  xmlns: "http://www.w3.org/2000/svg",
3724
- children: /* @__PURE__ */ jsx105(
3771
+ children: /* @__PURE__ */ jsx106(
3725
3772
  "path",
3726
3773
  {
3727
3774
  clipRule: "evenodd",
@@ -3734,14 +3781,14 @@ var PinIcon = (props) => /* @__PURE__ */ jsx105(
3734
3781
  );
3735
3782
 
3736
3783
  // src/components/Icon/icons/PinSlashIcon.tsx
3737
- import { jsx as jsx106 } from "react/jsx-runtime";
3738
- var PinSlashIcon = (props) => /* @__PURE__ */ jsx106(
3784
+ import { jsx as jsx107 } from "react/jsx-runtime";
3785
+ var PinSlashIcon = (props) => /* @__PURE__ */ jsx107(
3739
3786
  "svg",
3740
3787
  {
3741
3788
  ...props,
3742
3789
  viewBox: "0 0 24 24",
3743
3790
  xmlns: "http://www.w3.org/2000/svg",
3744
- children: /* @__PURE__ */ jsx106(
3791
+ children: /* @__PURE__ */ jsx107(
3745
3792
  "path",
3746
3793
  {
3747
3794
  clipRule: "evenodd",
@@ -3754,14 +3801,14 @@ var PinSlashIcon = (props) => /* @__PURE__ */ jsx106(
3754
3801
  );
3755
3802
 
3756
3803
  // src/components/Icon/icons/PlayIcon.tsx
3757
- import { jsx as jsx107 } from "react/jsx-runtime";
3758
- var PlayIcon = (props) => /* @__PURE__ */ jsx107(
3804
+ import { jsx as jsx108 } from "react/jsx-runtime";
3805
+ var PlayIcon = (props) => /* @__PURE__ */ jsx108(
3759
3806
  "svg",
3760
3807
  {
3761
3808
  ...props,
3762
3809
  viewBox: "0 0 24 24",
3763
3810
  xmlns: "http://www.w3.org/2000/svg",
3764
- children: /* @__PURE__ */ jsx107(
3811
+ children: /* @__PURE__ */ jsx108(
3765
3812
  "path",
3766
3813
  {
3767
3814
  d: "M20.1332 9.97052L7.47719 2.96254C6.73986 2.55454 5.8692 2.56654 5.1452 2.9932C4.42787 3.41587 3.99987 4.16253 3.99987 4.99186V19.0078C3.99987 19.8372 4.42787 20.5838 5.1452 21.0065C5.5172 21.2252 5.92653 21.3358 6.33853 21.3358C6.7292 21.3358 7.11986 21.2358 7.47719 21.0385L20.1318 14.0305C20.8732 13.6212 21.3332 12.8425 21.3332 12.0012C21.3332 11.1598 20.8732 10.3799 20.1332 9.97052Z",
@@ -3772,14 +3819,14 @@ var PlayIcon = (props) => /* @__PURE__ */ jsx107(
3772
3819
  );
3773
3820
 
3774
3821
  // src/components/Icon/icons/PlayerIcon.tsx
3775
- import { jsx as jsx108 } from "react/jsx-runtime";
3776
- var PlayerIcon = (props) => /* @__PURE__ */ jsx108(
3822
+ import { jsx as jsx109 } from "react/jsx-runtime";
3823
+ var PlayerIcon = (props) => /* @__PURE__ */ jsx109(
3777
3824
  "svg",
3778
3825
  {
3779
3826
  ...props,
3780
3827
  viewBox: "0 0 24 24",
3781
3828
  xmlns: "http://www.w3.org/2000/svg",
3782
- children: /* @__PURE__ */ jsx108(
3829
+ children: /* @__PURE__ */ jsx109(
3783
3830
  "path",
3784
3831
  {
3785
3832
  d: "M18.9998 3.99987H4.9998C2.97714 3.99987 1.33315 5.64386 1.33315 7.66653V16.3332C1.33315 18.3558 2.97714 19.9998 4.9998 19.9998H18.9998C21.0224 19.9998 22.6664 18.3558 22.6664 16.3332V7.66653C22.6664 5.64386 21.0224 3.99987 18.9998 3.99987ZM15.0371 12.8638L10.1705 15.7025C10.0131 15.7945 9.83979 15.8412 9.66646 15.8412C9.49579 15.8412 9.32513 15.7958 9.16779 15.7065C8.85313 15.5265 8.66646 15.2025 8.66646 14.8398V9.16119C8.66646 8.79852 8.85446 8.47452 9.16779 8.29452C9.48246 8.11319 9.85712 8.11586 10.1691 8.29719L15.0358 11.1359C15.3464 11.3172 15.5331 11.6398 15.5331 11.9998C15.5331 12.3598 15.3491 12.6825 15.0371 12.8638Z",
@@ -3790,14 +3837,14 @@ var PlayerIcon = (props) => /* @__PURE__ */ jsx108(
3790
3837
  );
3791
3838
 
3792
3839
  // src/components/Icon/icons/PlusIcon.tsx
3793
- import { jsx as jsx109 } from "react/jsx-runtime";
3794
- var PlusIcon = (props) => /* @__PURE__ */ jsx109(
3840
+ import { jsx as jsx110 } from "react/jsx-runtime";
3841
+ var PlusIcon = (props) => /* @__PURE__ */ jsx110(
3795
3842
  "svg",
3796
3843
  {
3797
3844
  ...props,
3798
3845
  viewBox: "0 0 24 24",
3799
3846
  xmlns: "http://www.w3.org/2000/svg",
3800
- children: /* @__PURE__ */ jsx109(
3847
+ children: /* @__PURE__ */ jsx110(
3801
3848
  "path",
3802
3849
  {
3803
3850
  clipRule: "evenodd",
@@ -3810,14 +3857,14 @@ var PlusIcon = (props) => /* @__PURE__ */ jsx109(
3810
3857
  );
3811
3858
 
3812
3859
  // src/components/Icon/icons/PodcastIcon.tsx
3813
- import { jsx as jsx110 } from "react/jsx-runtime";
3814
- var PodcastIcon = (props) => /* @__PURE__ */ jsx110(
3860
+ import { jsx as jsx111 } from "react/jsx-runtime";
3861
+ var PodcastIcon = (props) => /* @__PURE__ */ jsx111(
3815
3862
  "svg",
3816
3863
  {
3817
3864
  ...props,
3818
3865
  viewBox: "0 0 24 24",
3819
3866
  xmlns: "http://www.w3.org/2000/svg",
3820
- children: /* @__PURE__ */ jsx110(
3867
+ children: /* @__PURE__ */ jsx111(
3821
3868
  "path",
3822
3869
  {
3823
3870
  clipRule: "evenodd",
@@ -3830,14 +3877,14 @@ var PodcastIcon = (props) => /* @__PURE__ */ jsx110(
3830
3877
  );
3831
3878
 
3832
3879
  // src/components/Icon/icons/PreviewIcon.tsx
3833
- import { jsx as jsx111 } from "react/jsx-runtime";
3834
- var PreviewIcon = (props) => /* @__PURE__ */ jsx111(
3880
+ import { jsx as jsx112 } from "react/jsx-runtime";
3881
+ var PreviewIcon = (props) => /* @__PURE__ */ jsx112(
3835
3882
  "svg",
3836
3883
  {
3837
3884
  ...props,
3838
3885
  viewBox: "0 0 24 24",
3839
3886
  xmlns: "http://www.w3.org/2000/svg",
3840
- children: /* @__PURE__ */ jsx111(
3887
+ children: /* @__PURE__ */ jsx112(
3841
3888
  "path",
3842
3889
  {
3843
3890
  clipRule: "evenodd",
@@ -3850,14 +3897,14 @@ var PreviewIcon = (props) => /* @__PURE__ */ jsx111(
3850
3897
  );
3851
3898
 
3852
3899
  // src/components/Icon/icons/PrivateUserSessionsIcon.tsx
3853
- import { jsx as jsx112 } from "react/jsx-runtime";
3854
- var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ jsx112(
3900
+ import { jsx as jsx113 } from "react/jsx-runtime";
3901
+ var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ jsx113(
3855
3902
  "svg",
3856
3903
  {
3857
3904
  ...props,
3858
3905
  viewBox: "0 0 24 24",
3859
3906
  xmlns: "http://www.w3.org/2000/svg",
3860
- children: /* @__PURE__ */ jsx112(
3907
+ children: /* @__PURE__ */ jsx113(
3861
3908
  "path",
3862
3909
  {
3863
3910
  clipRule: "evenodd",
@@ -3870,15 +3917,15 @@ var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ jsx112(
3870
3917
  );
3871
3918
 
3872
3919
  // src/components/Icon/icons/ProjectIcon.tsx
3873
- import { jsx as jsx113, jsxs as jsxs2 } from "react/jsx-runtime";
3874
- var ProjectIcon = (props) => /* @__PURE__ */ jsxs2(
3920
+ import { jsx as jsx114, jsxs as jsxs3 } from "react/jsx-runtime";
3921
+ var ProjectIcon = (props) => /* @__PURE__ */ jsxs3(
3875
3922
  "svg",
3876
3923
  {
3877
3924
  ...props,
3878
3925
  viewBox: "0 0 24 24",
3879
3926
  xmlns: "http://www.w3.org/2000/svg",
3880
3927
  children: [
3881
- /* @__PURE__ */ jsx113(
3928
+ /* @__PURE__ */ jsx114(
3882
3929
  "path",
3883
3930
  {
3884
3931
  clipRule: "evenodd",
@@ -3887,7 +3934,7 @@ var ProjectIcon = (props) => /* @__PURE__ */ jsxs2(
3887
3934
  fillRule: "evenodd"
3888
3935
  }
3889
3936
  ),
3890
- /* @__PURE__ */ jsx113(
3937
+ /* @__PURE__ */ jsx114(
3891
3938
  "path",
3892
3939
  {
3893
3940
  d: "M9.95639 4.13386L8.95738 4.79867L8.95787 4.79941L9.95639 4.13386ZM12 7.19985L11.0015 7.8654C11.224 8.19929 11.5987 8.39985 12 8.39985V7.19985ZM4.8 7.19985V5.39986H2.40001V7.19985H4.8ZM4.8 5.39986C4.8 5.069 5.06914 4.79986 5.4 4.79986V2.39987C3.74366 2.39987 2.40001 3.74352 2.40001 5.39986H4.8ZM5.4 4.79986H8.95799V2.39987H5.4V4.79986ZM8.95799 4.79986C8.95808 4.79986 8.95805 4.79986 8.95807 4.79987C8.95816 4.79989 8.95836 4.79996 8.95858 4.80007C8.95903 4.80031 8.95826 4.8 8.95738 4.79867L10.9554 3.46906C10.51 2.79971 9.75864 2.39987 8.95799 2.39987V4.79986ZM8.95787 4.79941L11.0015 7.8654L12.9985 6.5343L10.9549 3.46832L8.95787 4.79941ZM12 8.39985H18.6V5.99985H12V8.39985ZM18.6 8.39985C18.9308 8.39985 19.2 8.66899 19.2 8.99984H21.6C21.6 7.34351 20.2563 5.99985 18.6 5.99985V8.39985ZM19.2 8.99984V16.7998H21.6V8.99984H19.2ZM19.2 16.7998C19.2 18.1243 18.1244 19.1998 16.8 19.1998V21.5998C19.4499 21.5998 21.6 19.4498 21.6 16.7998H19.2ZM16.8 19.1998H7.2V21.5998H16.8V19.1998ZM7.2 19.1998C5.87554 19.1998 4.8 18.1243 4.8 16.7998H2.40001C2.40001 19.4498 4.55006 21.5998 7.2 21.5998V19.1998ZM4.8 16.7998V7.19986H2.40001V16.7998H4.8ZM4.8 7.19986V7.19985H2.40001V7.19986H4.8Z",
@@ -3899,14 +3946,14 @@ var ProjectIcon = (props) => /* @__PURE__ */ jsxs2(
3899
3946
  );
3900
3947
 
3901
3948
  // src/components/Icon/icons/PropertiesIcon.tsx
3902
- import { jsx as jsx114 } from "react/jsx-runtime";
3903
- var PropertiesIcon = (props) => /* @__PURE__ */ jsx114(
3949
+ import { jsx as jsx115 } from "react/jsx-runtime";
3950
+ var PropertiesIcon = (props) => /* @__PURE__ */ jsx115(
3904
3951
  "svg",
3905
3952
  {
3906
3953
  ...props,
3907
3954
  viewBox: "0 0 24 24",
3908
3955
  xmlns: "http://www.w3.org/2000/svg",
3909
- children: /* @__PURE__ */ jsx114(
3956
+ children: /* @__PURE__ */ jsx115(
3910
3957
  "path",
3911
3958
  {
3912
3959
  clipRule: "evenodd",
@@ -3919,14 +3966,14 @@ var PropertiesIcon = (props) => /* @__PURE__ */ jsx114(
3919
3966
  );
3920
3967
 
3921
3968
  // src/components/Icon/icons/QuestionMarkIcon.tsx
3922
- import { jsx as jsx115 } from "react/jsx-runtime";
3923
- var QuestionMarkIcon = (props) => /* @__PURE__ */ jsx115(
3969
+ import { jsx as jsx116 } from "react/jsx-runtime";
3970
+ var QuestionMarkIcon = (props) => /* @__PURE__ */ jsx116(
3924
3971
  "svg",
3925
3972
  {
3926
3973
  ...props,
3927
3974
  viewBox: "0 0 24 24",
3928
3975
  xmlns: "http://www.w3.org/2000/svg",
3929
- children: /* @__PURE__ */ jsx115(
3976
+ children: /* @__PURE__ */ jsx116(
3930
3977
  "path",
3931
3978
  {
3932
3979
  d: "M11.9998 1.33321C6.11853 1.33321 1.33321 6.11853 1.33321 11.9998C1.33321 17.8812 6.11853 22.6665 11.9998 22.6665C17.8812 22.6665 22.6665 17.8812 22.6665 11.9998C22.6665 6.11853 17.8812 1.33321 11.9998 1.33321ZM11.7212 18.0892C10.9852 18.0892 10.3879 17.4905 10.3879 16.7558C10.3879 16.0212 10.9852 15.4225 11.7212 15.4225C12.4572 15.4225 13.0545 16.0212 13.0545 16.7558C13.0545 17.4905 12.4572 18.0892 11.7212 18.0892ZM13.7598 12.2865C13.1505 12.7118 12.8532 12.9412 12.7532 13.5065C12.6692 13.9918 12.2465 14.3332 11.7705 14.3332C11.7132 14.3332 11.6545 14.3292 11.5958 14.3185C11.0518 14.2225 10.6878 13.7052 10.7852 13.1598C11.0332 11.7505 11.9478 11.1119 12.6172 10.6452C13.3198 10.1545 13.5638 9.94919 13.5638 9.24652C13.5638 8.13052 12.6332 7.83586 12.1412 7.83586C11.5892 7.83586 10.5985 8.00919 10.1719 9.16919C9.98118 9.68785 9.41052 9.95319 8.88785 9.76385C8.36919 9.57319 8.10386 8.99852 8.29452 8.48119C8.90252 6.82519 10.3399 5.83586 12.1412 5.83586C13.7998 5.83586 15.5638 7.03053 15.5638 9.24652C15.5638 11.0292 14.5225 11.7558 13.7598 12.2865Z",
@@ -3937,14 +3984,14 @@ var QuestionMarkIcon = (props) => /* @__PURE__ */ jsx115(
3937
3984
  );
3938
3985
 
3939
3986
  // src/components/Icon/icons/ReactIcon.tsx
3940
- import { jsx as jsx116 } from "react/jsx-runtime";
3941
- var ReactIcon = (props) => /* @__PURE__ */ jsx116(
3987
+ import { jsx as jsx117 } from "react/jsx-runtime";
3988
+ var ReactIcon = (props) => /* @__PURE__ */ jsx117(
3942
3989
  "svg",
3943
3990
  {
3944
3991
  ...props,
3945
3992
  viewBox: "0 0 24 24",
3946
3993
  xmlns: "http://www.w3.org/2000/svg",
3947
- children: /* @__PURE__ */ jsx116(
3994
+ children: /* @__PURE__ */ jsx117(
3948
3995
  "path",
3949
3996
  {
3950
3997
  d: "M11.9998 1.33321C6.11847 1.33321 1.33315 6.11853 1.33315 11.9998C1.33315 17.8812 6.11847 22.6665 11.9998 22.6665C17.8811 22.6665 22.6664 17.8812 22.6664 11.9998C22.6664 6.11853 17.8811 1.33321 11.9998 1.33321ZM6.66647 10.6665C6.66647 9.93052 7.2638 9.33319 7.9998 9.33319C8.73579 9.33319 9.33313 9.93052 9.33313 10.6665C9.33313 11.4025 8.73579 11.9998 7.9998 11.9998C7.2638 11.9998 6.66647 11.4025 6.66647 10.6665ZM11.9998 18.6665C9.95846 18.6665 8.18779 17.1465 7.88113 15.1318C7.8358 14.8372 7.93313 14.5398 8.13846 14.3345C8.33979 14.1345 8.61579 14.0452 8.90113 14.0878C10.9358 14.4078 13.0424 14.4078 15.0851 14.0892C15.3744 14.0465 15.6558 14.1372 15.8624 14.3412C16.0664 14.5452 16.1624 14.8385 16.1184 15.1265C15.8131 17.1438 14.0424 18.6652 11.9998 18.6652V18.6665ZM15.9998 11.9998C15.2638 11.9998 14.6664 11.4025 14.6664 10.6665C14.6664 9.93052 15.2638 9.33319 15.9998 9.33319C16.7358 9.33319 17.3331 9.93052 17.3331 10.6665C17.3331 11.4025 16.7358 11.9998 15.9998 11.9998Z",
@@ -3955,14 +4002,14 @@ var ReactIcon = (props) => /* @__PURE__ */ jsx116(
3955
4002
  );
3956
4003
 
3957
4004
  // src/components/Icon/icons/RecordIcon.tsx
3958
- import { jsx as jsx117 } from "react/jsx-runtime";
3959
- var RecordIcon = (props) => /* @__PURE__ */ jsx117(
4005
+ import { jsx as jsx118 } from "react/jsx-runtime";
4006
+ var RecordIcon = (props) => /* @__PURE__ */ jsx118(
3960
4007
  "svg",
3961
4008
  {
3962
4009
  ...props,
3963
4010
  viewBox: "0 0 24 24",
3964
4011
  xmlns: "http://www.w3.org/2000/svg",
3965
- children: /* @__PURE__ */ jsx117(
4012
+ children: /* @__PURE__ */ jsx118(
3966
4013
  "path",
3967
4014
  {
3968
4015
  clipRule: "evenodd",
@@ -3975,14 +4022,14 @@ var RecordIcon = (props) => /* @__PURE__ */ jsx117(
3975
4022
  );
3976
4023
 
3977
4024
  // src/components/Icon/icons/RedoIcon.tsx
3978
- import { jsx as jsx118 } from "react/jsx-runtime";
3979
- var RedoIcon = (props) => /* @__PURE__ */ jsx118(
4025
+ import { jsx as jsx119 } from "react/jsx-runtime";
4026
+ var RedoIcon = (props) => /* @__PURE__ */ jsx119(
3980
4027
  "svg",
3981
4028
  {
3982
4029
  ...props,
3983
4030
  viewBox: "0 0 24 24",
3984
4031
  xmlns: "http://www.w3.org/2000/svg",
3985
- children: /* @__PURE__ */ jsx118(
4032
+ children: /* @__PURE__ */ jsx119(
3986
4033
  "path",
3987
4034
  {
3988
4035
  clipRule: "evenodd",
@@ -3995,14 +4042,14 @@ var RedoIcon = (props) => /* @__PURE__ */ jsx118(
3995
4042
  );
3996
4043
 
3997
4044
  // src/components/Icon/icons/ReplaceIcon.tsx
3998
- import { jsx as jsx119 } from "react/jsx-runtime";
3999
- var ReplaceIcon = (props) => /* @__PURE__ */ jsx119(
4045
+ import { jsx as jsx120 } from "react/jsx-runtime";
4046
+ var ReplaceIcon = (props) => /* @__PURE__ */ jsx120(
4000
4047
  "svg",
4001
4048
  {
4002
4049
  ...props,
4003
4050
  viewBox: "0 0 24 24",
4004
4051
  xmlns: "http://www.w3.org/2000/svg",
4005
- children: /* @__PURE__ */ jsx119(
4052
+ children: /* @__PURE__ */ jsx120(
4006
4053
  "path",
4007
4054
  {
4008
4055
  clipRule: "evenodd",
@@ -4015,14 +4062,14 @@ var ReplaceIcon = (props) => /* @__PURE__ */ jsx119(
4015
4062
  );
4016
4063
 
4017
4064
  // src/components/Icon/icons/ReplyIcon.tsx
4018
- import { jsx as jsx120 } from "react/jsx-runtime";
4019
- var ReplyIcon = (props) => /* @__PURE__ */ jsx120(
4065
+ import { jsx as jsx121 } from "react/jsx-runtime";
4066
+ var ReplyIcon = (props) => /* @__PURE__ */ jsx121(
4020
4067
  "svg",
4021
4068
  {
4022
4069
  ...props,
4023
4070
  viewBox: "0 0 24 24",
4024
4071
  xmlns: "http://www.w3.org/2000/svg",
4025
- children: /* @__PURE__ */ jsx120(
4072
+ children: /* @__PURE__ */ jsx121(
4026
4073
  "path",
4027
4074
  {
4028
4075
  clipRule: "evenodd",
@@ -4035,14 +4082,14 @@ var ReplyIcon = (props) => /* @__PURE__ */ jsx120(
4035
4082
  );
4036
4083
 
4037
4084
  // src/components/Icon/icons/SaveAsCopyIcon.tsx
4038
- import { jsx as jsx121 } from "react/jsx-runtime";
4039
- var SaveAsCopyIcon = (props) => /* @__PURE__ */ jsx121(
4085
+ import { jsx as jsx122 } from "react/jsx-runtime";
4086
+ var SaveAsCopyIcon = (props) => /* @__PURE__ */ jsx122(
4040
4087
  "svg",
4041
4088
  {
4042
4089
  ...props,
4043
4090
  viewBox: "0 0 24 24",
4044
4091
  xmlns: "http://www.w3.org/2000/svg",
4045
- children: /* @__PURE__ */ jsx121(
4092
+ children: /* @__PURE__ */ jsx122(
4046
4093
  "path",
4047
4094
  {
4048
4095
  clipRule: "evenodd",
@@ -4055,14 +4102,14 @@ var SaveAsCopyIcon = (props) => /* @__PURE__ */ jsx121(
4055
4102
  );
4056
4103
 
4057
4104
  // src/components/Icon/icons/SaveIcon.tsx
4058
- import { jsx as jsx122 } from "react/jsx-runtime";
4059
- var SaveIcon = (props) => /* @__PURE__ */ jsx122(
4105
+ import { jsx as jsx123 } from "react/jsx-runtime";
4106
+ var SaveIcon = (props) => /* @__PURE__ */ jsx123(
4060
4107
  "svg",
4061
4108
  {
4062
4109
  ...props,
4063
4110
  viewBox: "0 0 24 24",
4064
4111
  xmlns: "http://www.w3.org/2000/svg",
4065
- children: /* @__PURE__ */ jsx122(
4112
+ children: /* @__PURE__ */ jsx123(
4066
4113
  "path",
4067
4114
  {
4068
4115
  d: "M21.3155 6.5692L17.4301 2.68387C16.9888 2.24254 16.4035 1.99987 15.7808 1.99987H5.87949C3.74083 1.99987 1.9995 3.7412 1.9995 5.87986V18.1198C1.9995 20.2585 3.74083 21.9998 5.87949 21.9998H18.1195C20.2581 21.9998 21.9995 20.2585 21.9995 18.1198V8.21852C21.9995 7.59586 21.7568 7.00919 21.3155 6.5692ZM6.66616 3.99987H14.6661V6.66653C14.6661 7.39986 14.0661 7.99986 13.3328 7.99986H7.99949C7.26616 7.99986 6.66616 7.39986 6.66616 6.66653V3.99987ZM17.3328 19.9998H6.66616V14.6665C6.66616 13.9332 7.26616 13.3332 7.99949 13.3332H15.9995C16.7328 13.3332 17.3328 13.9332 17.3328 14.6665V19.9998Z",
@@ -4073,14 +4120,14 @@ var SaveIcon = (props) => /* @__PURE__ */ jsx122(
4073
4120
  );
4074
4121
 
4075
4122
  // src/components/Icon/icons/ScissorsIcon.tsx
4076
- import { jsx as jsx123 } from "react/jsx-runtime";
4077
- var ScissorsIcon = (props) => /* @__PURE__ */ jsx123(
4123
+ import { jsx as jsx124 } from "react/jsx-runtime";
4124
+ var ScissorsIcon = (props) => /* @__PURE__ */ jsx124(
4078
4125
  "svg",
4079
4126
  {
4080
4127
  ...props,
4081
4128
  viewBox: "0 0 24 24",
4082
4129
  xmlns: "http://www.w3.org/2000/svg",
4083
- children: /* @__PURE__ */ jsx123(
4130
+ children: /* @__PURE__ */ jsx124(
4084
4131
  "path",
4085
4132
  {
4086
4133
  d: "M8.03042 13.6605C7.73535 14.0006 7.25074 14.0917 6.8028 14.0461C6.54217 14.0195 6.27019 14.0236 5.96972 14.0236C3.76414 14.0236 2.01959 16.1038 1.97773 18.0156C1.93586 19.9273 3.23259 22.2035 5.96972 22.0076C8.70686 21.8116 9.96172 20.2211 9.96172 18.0156C9.96172 17.6742 9.91811 17.3462 9.83672 17.0336C9.73128 16.6286 9.79891 16.1824 10.0948 15.8865L11.2506 14.7307C11.6411 14.3401 12.2743 14.3401 12.6648 14.7307L13.8206 15.8865C14.1165 16.1824 14.1841 16.6286 14.0787 17.0336C13.9973 17.3462 13.9537 17.6742 13.9537 18.0156C13.9537 20.2211 15.1616 22.1277 17.9457 22.0076C20.1138 22.0076 21.8769 20.2813 21.9362 18.1275C21.9382 18.0533 21.9472 17.9794 21.9583 17.906C22.2072 16.2536 19.8847 13.8188 17.9457 14.0236C17.606 14.0236 17.2796 14.0667 16.9684 14.1474C16.561 14.2529 16.1121 14.1834 15.8164 13.8839L15.5341 13.5979C15.1988 13.2583 15.1485 12.7314 15.4153 12.3357C16.7051 10.4232 20.3129 5.04458 20.9214 3.82741C21.5171 2.63608 20.8216 2.27428 20.5213 2.17749C20.4397 2.15115 20.3538 2.15005 20.2692 2.16438C19.9626 2.21628 19.1552 2.39484 18.4294 2.91739C17.5596 3.54369 11.1772 10.0335 8.03042 13.6605ZM7.96572 18.0156C7.96572 19.1134 7.62753 20.2005 5.93739 20.2918C4.24725 20.3831 4.00273 19.3194 3.97372 18.0156C3.94472 16.7117 4.78907 16.3065 5.90361 16.2727C7.01816 16.2389 7.96572 16.9178 7.96572 18.0156ZM19.5954 17.9155C19.5954 19.0133 18.9851 19.6891 17.8773 19.6891C16.7695 19.6891 16.2146 19.1796 16.2146 18.0818C16.2146 16.984 16.7141 16.3637 17.8219 16.3637C18.9297 16.3637 19.5954 16.8177 19.5954 17.9155ZM3.59453 4.26526C3.95765 4.87977 7.97772 9.95022 8.7319 10.3133C9.48608 10.6765 11.7442 7.95976 11.3532 7.17765C10.9621 6.39553 4.78187 2.23266 3.97372 2.04758C3.45763 1.92939 3.19544 2.20587 3.07334 2.42113C2.99439 2.56032 2.99979 2.7259 3.0443 2.87961C3.14116 3.21412 3.3405 3.83537 3.59453 4.26526Z",
@@ -4091,14 +4138,14 @@ var ScissorsIcon = (props) => /* @__PURE__ */ jsx123(
4091
4138
  );
4092
4139
 
4093
4140
  // src/components/Icon/icons/ScreenshareOffIcon.tsx
4094
- import { jsx as jsx124 } from "react/jsx-runtime";
4095
- var ScreenshareOffIcon = (props) => /* @__PURE__ */ jsx124(
4141
+ import { jsx as jsx125 } from "react/jsx-runtime";
4142
+ var ScreenshareOffIcon = (props) => /* @__PURE__ */ jsx125(
4096
4143
  "svg",
4097
4144
  {
4098
4145
  ...props,
4099
4146
  viewBox: "0 0 24 24",
4100
4147
  xmlns: "http://www.w3.org/2000/svg",
4101
- children: /* @__PURE__ */ jsx124(
4148
+ children: /* @__PURE__ */ jsx125(
4102
4149
  "path",
4103
4150
  {
4104
4151
  clipRule: "evenodd",
@@ -4111,14 +4158,14 @@ var ScreenshareOffIcon = (props) => /* @__PURE__ */ jsx124(
4111
4158
  );
4112
4159
 
4113
4160
  // src/components/Icon/icons/ScreenshareOnIcon.tsx
4114
- import { jsx as jsx125 } from "react/jsx-runtime";
4115
- var ScreenshareOnIcon = (props) => /* @__PURE__ */ jsx125(
4161
+ import { jsx as jsx126 } from "react/jsx-runtime";
4162
+ var ScreenshareOnIcon = (props) => /* @__PURE__ */ jsx126(
4116
4163
  "svg",
4117
4164
  {
4118
4165
  ...props,
4119
4166
  viewBox: "0 0 24 24",
4120
4167
  xmlns: "http://www.w3.org/2000/svg",
4121
- children: /* @__PURE__ */ jsx125(
4168
+ children: /* @__PURE__ */ jsx126(
4122
4169
  "path",
4123
4170
  {
4124
4171
  clipRule: "evenodd",
@@ -4131,14 +4178,14 @@ var ScreenshareOnIcon = (props) => /* @__PURE__ */ jsx125(
4131
4178
  );
4132
4179
 
4133
4180
  // src/components/Icon/icons/SearchIcon.tsx
4134
- import { jsx as jsx126 } from "react/jsx-runtime";
4135
- var SearchIcon = (props) => /* @__PURE__ */ jsx126(
4181
+ import { jsx as jsx127 } from "react/jsx-runtime";
4182
+ var SearchIcon = (props) => /* @__PURE__ */ jsx127(
4136
4183
  "svg",
4137
4184
  {
4138
4185
  ...props,
4139
4186
  viewBox: "0 0 24 24",
4140
4187
  xmlns: "http://www.w3.org/2000/svg",
4141
- children: /* @__PURE__ */ jsx126(
4188
+ children: /* @__PURE__ */ jsx127(
4142
4189
  "path",
4143
4190
  {
4144
4191
  clipRule: "evenodd",
@@ -4151,14 +4198,14 @@ var SearchIcon = (props) => /* @__PURE__ */ jsx126(
4151
4198
  );
4152
4199
 
4153
4200
  // src/components/Icon/icons/SendIcon.tsx
4154
- import { jsx as jsx127 } from "react/jsx-runtime";
4155
- var SendIcon = (props) => /* @__PURE__ */ jsx127(
4201
+ import { jsx as jsx128 } from "react/jsx-runtime";
4202
+ var SendIcon = (props) => /* @__PURE__ */ jsx128(
4156
4203
  "svg",
4157
4204
  {
4158
4205
  ...props,
4159
4206
  viewBox: "0 0 24 24",
4160
4207
  xmlns: "http://www.w3.org/2000/svg",
4161
- children: /* @__PURE__ */ jsx127(
4208
+ children: /* @__PURE__ */ jsx128(
4162
4209
  "path",
4163
4210
  {
4164
4211
  d: "M21.0892 10.5011L5.8012 2.56248C5.1972 2.25048 4.47187 2.32915 3.94787 2.75981C3.4252 3.19181 3.21187 3.89181 3.40387 4.54114L5.3172 10.9998H11.8478C12.3998 10.9998 12.8478 11.4478 12.8478 11.9998C12.8478 12.5518 12.3998 12.9998 11.8478 12.9998H5.3172L3.40387 19.4584C3.21054 20.1091 3.4252 20.8078 3.94787 21.2398C4.2572 21.4944 4.63853 21.6264 5.02253 21.6264C5.28787 21.6264 5.55453 21.5638 5.8012 21.4358L21.0892 13.4971C21.6505 13.2051 21.9998 12.6318 21.9998 11.9985C21.9998 11.3651 21.6505 10.7931 21.0892 10.5011Z",
@@ -4169,14 +4216,14 @@ var SendIcon = (props) => /* @__PURE__ */ jsx127(
4169
4216
  );
4170
4217
 
4171
4218
  // src/components/Icon/icons/ShapesIcon.tsx
4172
- import { jsx as jsx128 } from "react/jsx-runtime";
4173
- var ShapesIcon = (props) => /* @__PURE__ */ jsx128(
4219
+ import { jsx as jsx129 } from "react/jsx-runtime";
4220
+ var ShapesIcon = (props) => /* @__PURE__ */ jsx129(
4174
4221
  "svg",
4175
4222
  {
4176
4223
  ...props,
4177
4224
  viewBox: "0 0 24 24",
4178
4225
  xmlns: "http://www.w3.org/2000/svg",
4179
- children: /* @__PURE__ */ jsx128(
4226
+ children: /* @__PURE__ */ jsx129(
4180
4227
  "path",
4181
4228
  {
4182
4229
  clipRule: "evenodd",
@@ -4189,14 +4236,14 @@ var ShapesIcon = (props) => /* @__PURE__ */ jsx128(
4189
4236
  );
4190
4237
 
4191
4238
  // src/components/Icon/icons/ShareIcon.tsx
4192
- import { jsx as jsx129 } from "react/jsx-runtime";
4193
- var ShareIcon = (props) => /* @__PURE__ */ jsx129(
4239
+ import { jsx as jsx130 } from "react/jsx-runtime";
4240
+ var ShareIcon = (props) => /* @__PURE__ */ jsx130(
4194
4241
  "svg",
4195
4242
  {
4196
4243
  ...props,
4197
4244
  viewBox: "0 0 24 24",
4198
4245
  xmlns: "http://www.w3.org/2000/svg",
4199
- children: /* @__PURE__ */ jsx129(
4246
+ children: /* @__PURE__ */ jsx130(
4200
4247
  "path",
4201
4248
  {
4202
4249
  clipRule: "evenodd",
@@ -4209,14 +4256,14 @@ var ShareIcon = (props) => /* @__PURE__ */ jsx129(
4209
4256
  );
4210
4257
 
4211
4258
  // src/components/Icon/icons/SharingPermissionsIcon.tsx
4212
- import { jsx as jsx130 } from "react/jsx-runtime";
4213
- var SharingPermissionsIcon = (props) => /* @__PURE__ */ jsx130(
4259
+ import { jsx as jsx131 } from "react/jsx-runtime";
4260
+ var SharingPermissionsIcon = (props) => /* @__PURE__ */ jsx131(
4214
4261
  "svg",
4215
4262
  {
4216
4263
  ...props,
4217
4264
  viewBox: "0 0 24 24",
4218
4265
  xmlns: "http://www.w3.org/2000/svg",
4219
- children: /* @__PURE__ */ jsx130(
4266
+ children: /* @__PURE__ */ jsx131(
4220
4267
  "path",
4221
4268
  {
4222
4269
  clipRule: "evenodd",
@@ -4229,14 +4276,14 @@ var SharingPermissionsIcon = (props) => /* @__PURE__ */ jsx130(
4229
4276
  );
4230
4277
 
4231
4278
  // src/components/Icon/icons/SimulcastIcon.tsx
4232
- import { jsx as jsx131 } from "react/jsx-runtime";
4233
- var SimulcastIcon = (props) => /* @__PURE__ */ jsx131(
4279
+ import { jsx as jsx132 } from "react/jsx-runtime";
4280
+ var SimulcastIcon = (props) => /* @__PURE__ */ jsx132(
4234
4281
  "svg",
4235
4282
  {
4236
4283
  ...props,
4237
4284
  viewBox: "0 0 24 24",
4238
4285
  xmlns: "http://www.w3.org/2000/svg",
4239
- children: /* @__PURE__ */ jsx131(
4286
+ children: /* @__PURE__ */ jsx132(
4240
4287
  "path",
4241
4288
  {
4242
4289
  clipRule: "evenodd",
@@ -4249,14 +4296,14 @@ var SimulcastIcon = (props) => /* @__PURE__ */ jsx131(
4249
4296
  );
4250
4297
 
4251
4298
  // src/components/Icon/icons/SortIcon.tsx
4252
- import { jsx as jsx132 } from "react/jsx-runtime";
4253
- var SortIcon = (props) => /* @__PURE__ */ jsx132(
4299
+ import { jsx as jsx133 } from "react/jsx-runtime";
4300
+ var SortIcon = (props) => /* @__PURE__ */ jsx133(
4254
4301
  "svg",
4255
4302
  {
4256
4303
  ...props,
4257
4304
  viewBox: "0 0 24 24",
4258
4305
  xmlns: "http://www.w3.org/2000/svg",
4259
- children: /* @__PURE__ */ jsx132(
4306
+ children: /* @__PURE__ */ jsx133(
4260
4307
  "path",
4261
4308
  {
4262
4309
  clipRule: "evenodd",
@@ -4269,14 +4316,14 @@ var SortIcon = (props) => /* @__PURE__ */ jsx132(
4269
4316
  );
4270
4317
 
4271
4318
  // src/components/Icon/icons/SparkleIcon.tsx
4272
- import { jsx as jsx133 } from "react/jsx-runtime";
4273
- var SparkleIcon = (props) => /* @__PURE__ */ jsx133(
4319
+ import { jsx as jsx134 } from "react/jsx-runtime";
4320
+ var SparkleIcon = (props) => /* @__PURE__ */ jsx134(
4274
4321
  "svg",
4275
4322
  {
4276
4323
  ...props,
4277
4324
  viewBox: "0 0 24 24",
4278
4325
  xmlns: "http://www.w3.org/2000/svg",
4279
- children: /* @__PURE__ */ jsx133(
4326
+ children: /* @__PURE__ */ jsx134(
4280
4327
  "path",
4281
4328
  {
4282
4329
  clipRule: "evenodd",
@@ -4289,14 +4336,14 @@ var SparkleIcon = (props) => /* @__PURE__ */ jsx133(
4289
4336
  );
4290
4337
 
4291
4338
  // src/components/Icon/icons/SpinnerIcon.tsx
4292
- import { jsx as jsx134 } from "react/jsx-runtime";
4293
- var SpinnerIcon = (props) => /* @__PURE__ */ jsx134(
4339
+ import { jsx as jsx135 } from "react/jsx-runtime";
4340
+ var SpinnerIcon = (props) => /* @__PURE__ */ jsx135(
4294
4341
  "svg",
4295
4342
  {
4296
4343
  ...props,
4297
4344
  viewBox: "0 0 24 24",
4298
4345
  xmlns: "http://www.w3.org/2000/svg",
4299
- children: /* @__PURE__ */ jsx134(
4346
+ children: /* @__PURE__ */ jsx135(
4300
4347
  "path",
4301
4348
  {
4302
4349
  clipRule: "evenodd",
@@ -4309,14 +4356,14 @@ var SpinnerIcon = (props) => /* @__PURE__ */ jsx134(
4309
4356
  );
4310
4357
 
4311
4358
  // src/components/Icon/icons/StatsIcon.tsx
4312
- import { jsx as jsx135 } from "react/jsx-runtime";
4313
- var StatsIcon = (props) => /* @__PURE__ */ jsx135(
4359
+ import { jsx as jsx136 } from "react/jsx-runtime";
4360
+ var StatsIcon = (props) => /* @__PURE__ */ jsx136(
4314
4361
  "svg",
4315
4362
  {
4316
4363
  ...props,
4317
4364
  viewBox: "0 0 24 24",
4318
4365
  xmlns: "http://www.w3.org/2000/svg",
4319
- children: /* @__PURE__ */ jsx135(
4366
+ children: /* @__PURE__ */ jsx136(
4320
4367
  "path",
4321
4368
  {
4322
4369
  clipRule: "evenodd",
@@ -4329,14 +4376,14 @@ var StatsIcon = (props) => /* @__PURE__ */ jsx135(
4329
4376
  );
4330
4377
 
4331
4378
  // src/components/Icon/icons/SwitchAccountsIcon.tsx
4332
- import { jsx as jsx136 } from "react/jsx-runtime";
4333
- var SwitchAccountsIcon = (props) => /* @__PURE__ */ jsx136(
4379
+ import { jsx as jsx137 } from "react/jsx-runtime";
4380
+ var SwitchAccountsIcon = (props) => /* @__PURE__ */ jsx137(
4334
4381
  "svg",
4335
4382
  {
4336
4383
  ...props,
4337
4384
  viewBox: "0 0 24 24",
4338
4385
  xmlns: "http://www.w3.org/2000/svg",
4339
- children: /* @__PURE__ */ jsx136(
4386
+ children: /* @__PURE__ */ jsx137(
4340
4387
  "path",
4341
4388
  {
4342
4389
  clipRule: "evenodd",
@@ -4349,14 +4396,14 @@ var SwitchAccountsIcon = (props) => /* @__PURE__ */ jsx136(
4349
4396
  );
4350
4397
 
4351
4398
  // src/components/Icon/icons/TagIcon.tsx
4352
- import { jsx as jsx137 } from "react/jsx-runtime";
4353
- var TagIcon = (props) => /* @__PURE__ */ jsx137(
4399
+ import { jsx as jsx138 } from "react/jsx-runtime";
4400
+ var TagIcon = (props) => /* @__PURE__ */ jsx138(
4354
4401
  "svg",
4355
4402
  {
4356
4403
  ...props,
4357
4404
  viewBox: "0 0 24 24",
4358
4405
  xmlns: "http://www.w3.org/2000/svg",
4359
- children: /* @__PURE__ */ jsx137(
4406
+ children: /* @__PURE__ */ jsx138(
4360
4407
  "path",
4361
4408
  {
4362
4409
  d: "M16.3331 1.33315H7.66641C5.64374 1.33315 3.99975 2.97714 3.99975 4.9998V21.6664C3.99975 22.0344 4.20241 22.3744 4.52775 22.5478C4.85308 22.7224 5.24775 22.7038 5.55441 22.4984L11.9997 18.2011L18.445 22.4984C18.6117 22.6091 18.8064 22.6664 18.9997 22.6664C19.1624 22.6664 19.3237 22.6278 19.4717 22.5478C19.797 22.3744 19.9997 22.0344 19.9997 21.6664V4.9998C19.9997 2.97714 18.3557 1.33315 16.3331 1.33315Z",
@@ -4367,14 +4414,14 @@ var TagIcon = (props) => /* @__PURE__ */ jsx137(
4367
4414
  );
4368
4415
 
4369
4416
  // src/components/Icon/icons/ThumbnailIcon.tsx
4370
- import { jsx as jsx138 } from "react/jsx-runtime";
4371
- var ThumbnailIcon = (props) => /* @__PURE__ */ jsx138(
4417
+ import { jsx as jsx139 } from "react/jsx-runtime";
4418
+ var ThumbnailIcon = (props) => /* @__PURE__ */ jsx139(
4372
4419
  "svg",
4373
4420
  {
4374
4421
  ...props,
4375
4422
  viewBox: "0 0 24 24",
4376
4423
  xmlns: "http://www.w3.org/2000/svg",
4377
- children: /* @__PURE__ */ jsx138(
4424
+ children: /* @__PURE__ */ jsx139(
4378
4425
  "path",
4379
4426
  {
4380
4427
  clipRule: "evenodd",
@@ -4387,14 +4434,14 @@ var ThumbnailIcon = (props) => /* @__PURE__ */ jsx138(
4387
4434
  );
4388
4435
 
4389
4436
  // src/components/Icon/icons/ThumbsDownIcon.tsx
4390
- import { jsx as jsx139 } from "react/jsx-runtime";
4391
- var ThumbsDownIcon = (props) => /* @__PURE__ */ jsx139(
4437
+ import { jsx as jsx140 } from "react/jsx-runtime";
4438
+ var ThumbsDownIcon = (props) => /* @__PURE__ */ jsx140(
4392
4439
  "svg",
4393
4440
  {
4394
4441
  ...props,
4395
4442
  viewBox: "0 0 24 24",
4396
4443
  xmlns: "http://www.w3.org/2000/svg",
4397
- children: /* @__PURE__ */ jsx139(
4444
+ children: /* @__PURE__ */ jsx140(
4398
4445
  "path",
4399
4446
  {
4400
4447
  clipRule: "evenodd",
@@ -4407,14 +4454,14 @@ var ThumbsDownIcon = (props) => /* @__PURE__ */ jsx139(
4407
4454
  );
4408
4455
 
4409
4456
  // src/components/Icon/icons/ThumbsUpIcon.tsx
4410
- import { jsx as jsx140 } from "react/jsx-runtime";
4411
- var ThumbsUpIcon = (props) => /* @__PURE__ */ jsx140(
4457
+ import { jsx as jsx141 } from "react/jsx-runtime";
4458
+ var ThumbsUpIcon = (props) => /* @__PURE__ */ jsx141(
4412
4459
  "svg",
4413
4460
  {
4414
4461
  ...props,
4415
4462
  viewBox: "0 0 24 24",
4416
4463
  xmlns: "http://www.w3.org/2000/svg",
4417
- children: /* @__PURE__ */ jsx140(
4464
+ children: /* @__PURE__ */ jsx141(
4418
4465
  "path",
4419
4466
  {
4420
4467
  clipRule: "evenodd",
@@ -4427,14 +4474,14 @@ var ThumbsUpIcon = (props) => /* @__PURE__ */ jsx140(
4427
4474
  );
4428
4475
 
4429
4476
  // src/components/Icon/icons/TransitionsIcon.tsx
4430
- import { jsx as jsx141 } from "react/jsx-runtime";
4431
- var TransitionsIcon = (props) => /* @__PURE__ */ jsx141(
4477
+ import { jsx as jsx142 } from "react/jsx-runtime";
4478
+ var TransitionsIcon = (props) => /* @__PURE__ */ jsx142(
4432
4479
  "svg",
4433
4480
  {
4434
4481
  ...props,
4435
4482
  viewBox: "0 0 24 24",
4436
4483
  xmlns: "http://www.w3.org/2000/svg",
4437
- children: /* @__PURE__ */ jsx141(
4484
+ children: /* @__PURE__ */ jsx142(
4438
4485
  "path",
4439
4486
  {
4440
4487
  clipRule: "evenodd",
@@ -4447,14 +4494,14 @@ var TransitionsIcon = (props) => /* @__PURE__ */ jsx141(
4447
4494
  );
4448
4495
 
4449
4496
  // src/components/Icon/icons/TrimIcon.tsx
4450
- import { jsx as jsx142 } from "react/jsx-runtime";
4451
- var TrimIcon = (props) => /* @__PURE__ */ jsx142(
4497
+ import { jsx as jsx143 } from "react/jsx-runtime";
4498
+ var TrimIcon = (props) => /* @__PURE__ */ jsx143(
4452
4499
  "svg",
4453
4500
  {
4454
4501
  ...props,
4455
4502
  viewBox: "0 0 24 24",
4456
4503
  xmlns: "http://www.w3.org/2000/svg",
4457
- children: /* @__PURE__ */ jsx142(
4504
+ children: /* @__PURE__ */ jsx143(
4458
4505
  "path",
4459
4506
  {
4460
4507
  clipRule: "evenodd",
@@ -4467,14 +4514,14 @@ var TrimIcon = (props) => /* @__PURE__ */ jsx142(
4467
4514
  );
4468
4515
 
4469
4516
  // src/components/Icon/icons/TurnstileIcon.tsx
4470
- import { jsx as jsx143 } from "react/jsx-runtime";
4471
- var TurnstileIcon = (props) => /* @__PURE__ */ jsx143(
4517
+ import { jsx as jsx144 } from "react/jsx-runtime";
4518
+ var TurnstileIcon = (props) => /* @__PURE__ */ jsx144(
4472
4519
  "svg",
4473
4520
  {
4474
4521
  ...props,
4475
4522
  viewBox: "0 0 24 24",
4476
4523
  xmlns: "http://www.w3.org/2000/svg",
4477
- children: /* @__PURE__ */ jsx143(
4524
+ children: /* @__PURE__ */ jsx144(
4478
4525
  "path",
4479
4526
  {
4480
4527
  clipRule: "evenodd",
@@ -4487,14 +4534,14 @@ var TurnstileIcon = (props) => /* @__PURE__ */ jsx143(
4487
4534
  );
4488
4535
 
4489
4536
  // src/components/Icon/icons/UndoIcon.tsx
4490
- import { jsx as jsx144 } from "react/jsx-runtime";
4491
- var UndoIcon = (props) => /* @__PURE__ */ jsx144(
4537
+ import { jsx as jsx145 } from "react/jsx-runtime";
4538
+ var UndoIcon = (props) => /* @__PURE__ */ jsx145(
4492
4539
  "svg",
4493
4540
  {
4494
4541
  ...props,
4495
4542
  viewBox: "0 0 24 24",
4496
4543
  xmlns: "http://www.w3.org/2000/svg",
4497
- children: /* @__PURE__ */ jsx144(
4544
+ children: /* @__PURE__ */ jsx145(
4498
4545
  "path",
4499
4546
  {
4500
4547
  clipRule: "evenodd",
@@ -4507,14 +4554,14 @@ var UndoIcon = (props) => /* @__PURE__ */ jsx144(
4507
4554
  );
4508
4555
 
4509
4556
  // src/components/Icon/icons/UnlockIcon.tsx
4510
- import { jsx as jsx145 } from "react/jsx-runtime";
4511
- var UnlockIcon = (props) => /* @__PURE__ */ jsx145(
4557
+ import { jsx as jsx146 } from "react/jsx-runtime";
4558
+ var UnlockIcon = (props) => /* @__PURE__ */ jsx146(
4512
4559
  "svg",
4513
4560
  {
4514
4561
  ...props,
4515
4562
  viewBox: "0 0 24 24",
4516
4563
  xmlns: "http://www.w3.org/2000/svg",
4517
- children: /* @__PURE__ */ jsx145(
4564
+ children: /* @__PURE__ */ jsx146(
4518
4565
  "path",
4519
4566
  {
4520
4567
  clipRule: "evenodd",
@@ -4527,14 +4574,14 @@ var UnlockIcon = (props) => /* @__PURE__ */ jsx145(
4527
4574
  );
4528
4575
 
4529
4576
  // src/components/Icon/icons/UploadIcon.tsx
4530
- import { jsx as jsx146 } from "react/jsx-runtime";
4531
- var UploadIcon = (props) => /* @__PURE__ */ jsx146(
4577
+ import { jsx as jsx147 } from "react/jsx-runtime";
4578
+ var UploadIcon = (props) => /* @__PURE__ */ jsx147(
4532
4579
  "svg",
4533
4580
  {
4534
4581
  ...props,
4535
4582
  viewBox: "0 0 24 24",
4536
4583
  xmlns: "http://www.w3.org/2000/svg",
4537
- children: /* @__PURE__ */ jsx146(
4584
+ children: /* @__PURE__ */ jsx147(
4538
4585
  "path",
4539
4586
  {
4540
4587
  clipRule: "evenodd",
@@ -4547,14 +4594,14 @@ var UploadIcon = (props) => /* @__PURE__ */ jsx146(
4547
4594
  );
4548
4595
 
4549
4596
  // src/components/Icon/icons/UsersPermissionsIcon.tsx
4550
- import { jsx as jsx147 } from "react/jsx-runtime";
4551
- var UsersPermissionsIcon = (props) => /* @__PURE__ */ jsx147(
4597
+ import { jsx as jsx148 } from "react/jsx-runtime";
4598
+ var UsersPermissionsIcon = (props) => /* @__PURE__ */ jsx148(
4552
4599
  "svg",
4553
4600
  {
4554
4601
  ...props,
4555
4602
  viewBox: "0 0 24 24",
4556
4603
  xmlns: "http://www.w3.org/2000/svg",
4557
- children: /* @__PURE__ */ jsx147(
4604
+ children: /* @__PURE__ */ jsx148(
4558
4605
  "path",
4559
4606
  {
4560
4607
  clipRule: "evenodd",
@@ -4567,14 +4614,14 @@ var UsersPermissionsIcon = (props) => /* @__PURE__ */ jsx147(
4567
4614
  );
4568
4615
 
4569
4616
  // src/components/Icon/icons/ViewStreamIcon.tsx
4570
- import { jsx as jsx148 } from "react/jsx-runtime";
4571
- var ViewStreamIcon = (props) => /* @__PURE__ */ jsx148(
4617
+ import { jsx as jsx149 } from "react/jsx-runtime";
4618
+ var ViewStreamIcon = (props) => /* @__PURE__ */ jsx149(
4572
4619
  "svg",
4573
4620
  {
4574
4621
  ...props,
4575
4622
  viewBox: "0 0 24 24",
4576
4623
  xmlns: "http://www.w3.org/2000/svg",
4577
- children: /* @__PURE__ */ jsx148(
4624
+ children: /* @__PURE__ */ jsx149(
4578
4625
  "path",
4579
4626
  {
4580
4627
  clipRule: "evenodd",
@@ -4587,14 +4634,14 @@ var ViewStreamIcon = (props) => /* @__PURE__ */ jsx148(
4587
4634
  );
4588
4635
 
4589
4636
  // src/components/Icon/icons/VolumeIcon.tsx
4590
- import { jsx as jsx149 } from "react/jsx-runtime";
4591
- var VolumeIcon = (props) => /* @__PURE__ */ jsx149(
4637
+ import { jsx as jsx150 } from "react/jsx-runtime";
4638
+ var VolumeIcon = (props) => /* @__PURE__ */ jsx150(
4592
4639
  "svg",
4593
4640
  {
4594
4641
  ...props,
4595
4642
  viewBox: "0 0 24 24",
4596
4643
  xmlns: "http://www.w3.org/2000/svg",
4597
- children: /* @__PURE__ */ jsx149(
4644
+ children: /* @__PURE__ */ jsx150(
4598
4645
  "path",
4599
4646
  {
4600
4647
  d: "M19.133 2.08909C18.5996 1.79709 17.9476 1.81843 17.4356 2.14776L10.3756 6.66643H5.66763C4.01297 6.66643 2.66763 8.01176 2.66763 9.66643V14.3331C2.66763 15.9878 4.01297 17.3331 5.66763 17.3331H10.3756L17.4356 21.8518C17.709 22.0264 18.021 22.1158 18.3356 22.1158C18.6103 22.1158 18.885 22.0478 19.1343 21.9118C19.669 21.6198 20.001 21.0584 20.001 20.4491V3.55176C20.001 2.94243 19.6676 2.38243 19.133 2.08909Z",
@@ -4605,14 +4652,14 @@ var VolumeIcon = (props) => /* @__PURE__ */ jsx149(
4605
4652
  );
4606
4653
 
4607
4654
  // src/components/Icon/icons/VolumeOffIcon.tsx
4608
- import { jsx as jsx150 } from "react/jsx-runtime";
4609
- var VolumeOffIcon = (props) => /* @__PURE__ */ jsx150(
4655
+ import { jsx as jsx151 } from "react/jsx-runtime";
4656
+ var VolumeOffIcon = (props) => /* @__PURE__ */ jsx151(
4610
4657
  "svg",
4611
4658
  {
4612
4659
  ...props,
4613
4660
  viewBox: "0 0 24 24",
4614
4661
  xmlns: "http://www.w3.org/2000/svg",
4615
- children: /* @__PURE__ */ jsx150(
4662
+ children: /* @__PURE__ */ jsx151(
4616
4663
  "path",
4617
4664
  {
4618
4665
  clipRule: "evenodd",
@@ -4625,14 +4672,14 @@ var VolumeOffIcon = (props) => /* @__PURE__ */ jsx150(
4625
4672
  );
4626
4673
 
4627
4674
  // src/components/Icon/icons/VolumeUpIcon.tsx
4628
- import { jsx as jsx151 } from "react/jsx-runtime";
4629
- var VolumeUpIcon = (props) => /* @__PURE__ */ jsx151(
4675
+ import { jsx as jsx152 } from "react/jsx-runtime";
4676
+ var VolumeUpIcon = (props) => /* @__PURE__ */ jsx152(
4630
4677
  "svg",
4631
4678
  {
4632
4679
  ...props,
4633
4680
  viewBox: "0 0 24 24",
4634
4681
  xmlns: "http://www.w3.org/2000/svg",
4635
- children: /* @__PURE__ */ jsx151(
4682
+ children: /* @__PURE__ */ jsx152(
4636
4683
  "path",
4637
4684
  {
4638
4685
  clipRule: "evenodd",
@@ -4645,14 +4692,14 @@ var VolumeUpIcon = (props) => /* @__PURE__ */ jsx151(
4645
4692
  );
4646
4693
 
4647
4694
  // src/components/Icon/icons/VolumeXIcon.tsx
4648
- import { jsx as jsx152 } from "react/jsx-runtime";
4649
- var VolumeXIcon = (props) => /* @__PURE__ */ jsx152(
4695
+ import { jsx as jsx153 } from "react/jsx-runtime";
4696
+ var VolumeXIcon = (props) => /* @__PURE__ */ jsx153(
4650
4697
  "svg",
4651
4698
  {
4652
4699
  ...props,
4653
4700
  viewBox: "0 0 24 24",
4654
4701
  xmlns: "http://www.w3.org/2000/svg",
4655
- children: /* @__PURE__ */ jsx152(
4702
+ children: /* @__PURE__ */ jsx153(
4656
4703
  "path",
4657
4704
  {
4658
4705
  clipRule: "evenodd",
@@ -4665,14 +4712,14 @@ var VolumeXIcon = (props) => /* @__PURE__ */ jsx152(
4665
4712
  );
4666
4713
 
4667
4714
  // src/components/Icon/icons/WandIcon.tsx
4668
- import { jsx as jsx153 } from "react/jsx-runtime";
4669
- var WandIcon = (props) => /* @__PURE__ */ jsx153(
4715
+ import { jsx as jsx154 } from "react/jsx-runtime";
4716
+ var WandIcon = (props) => /* @__PURE__ */ jsx154(
4670
4717
  "svg",
4671
4718
  {
4672
4719
  ...props,
4673
4720
  viewBox: "0 0 24 24",
4674
4721
  xmlns: "http://www.w3.org/2000/svg",
4675
- children: /* @__PURE__ */ jsx153(
4722
+ children: /* @__PURE__ */ jsx154(
4676
4723
  "path",
4677
4724
  {
4678
4725
  clipRule: "evenodd",
@@ -4685,14 +4732,14 @@ var WandIcon = (props) => /* @__PURE__ */ jsx153(
4685
4732
  );
4686
4733
 
4687
4734
  // src/components/Icon/icons/ZoomInIcon.tsx
4688
- import { jsx as jsx154 } from "react/jsx-runtime";
4689
- var ZoomInIcon = (props) => /* @__PURE__ */ jsx154(
4735
+ import { jsx as jsx155 } from "react/jsx-runtime";
4736
+ var ZoomInIcon = (props) => /* @__PURE__ */ jsx155(
4690
4737
  "svg",
4691
4738
  {
4692
4739
  ...props,
4693
4740
  viewBox: "0 0 24 24",
4694
4741
  xmlns: "http://www.w3.org/2000/svg",
4695
- children: /* @__PURE__ */ jsx154(
4742
+ children: /* @__PURE__ */ jsx155(
4696
4743
  "path",
4697
4744
  {
4698
4745
  clipRule: "evenodd",
@@ -4705,14 +4752,14 @@ var ZoomInIcon = (props) => /* @__PURE__ */ jsx154(
4705
4752
  );
4706
4753
 
4707
4754
  // src/components/Icon/icons/ZoomOutIcon.tsx
4708
- import { jsx as jsx155 } from "react/jsx-runtime";
4709
- var ZoomOutIcon = (props) => /* @__PURE__ */ jsx155(
4755
+ import { jsx as jsx156 } from "react/jsx-runtime";
4756
+ var ZoomOutIcon = (props) => /* @__PURE__ */ jsx156(
4710
4757
  "svg",
4711
4758
  {
4712
4759
  ...props,
4713
4760
  viewBox: "0 0 24 24",
4714
4761
  xmlns: "http://www.w3.org/2000/svg",
4715
- children: /* @__PURE__ */ jsx155(
4762
+ children: /* @__PURE__ */ jsx156(
4716
4763
  "path",
4717
4764
  {
4718
4765
  clipRule: "evenodd",
@@ -4898,7 +4945,7 @@ var useResponsiveProp = (values) => {
4898
4945
  };
4899
4946
 
4900
4947
  // src/components/Icon/Icon.tsx
4901
- import { jsx as jsx156 } from "react/jsx-runtime";
4948
+ import { jsx as jsx157 } from "react/jsx-runtime";
4902
4949
  var iconSizeMap = {
4903
4950
  sm: "12",
4904
4951
  md: "16",
@@ -4906,7 +4953,7 @@ var iconSizeMap = {
4906
4953
  xl: "32",
4907
4954
  xxl: "48"
4908
4955
  };
4909
- var StyledIcon = styled2.svg`
4956
+ var StyledIcon = styled3.svg`
4910
4957
  ${({ $colorScheme }) => getColorScheme($colorScheme ?? "inherit")}
4911
4958
  `;
4912
4959
  var Icon = ({
@@ -4935,7 +4982,7 @@ var Icon = ({
4935
4982
  ...style
4936
4983
  };
4937
4984
  const iconColor = invertColor ? "var(--color-icon-on-fill)" : "var(--color-icon)";
4938
- return /* @__PURE__ */ jsx156(
4985
+ return /* @__PURE__ */ jsx157(
4939
4986
  StyledIcon,
4940
4987
  {
4941
4988
  $colorScheme: colorScheme,
@@ -4955,11 +5002,11 @@ var Icon = ({
4955
5002
  Icon.displayName = "Icon";
4956
5003
 
4957
5004
  // src/components/Link/Link.tsx
4958
- import { forwardRef } from "react";
4959
- import { isNil as isNil5, isNotNil as isNotNil2, isNotUndefined as isNotUndefined2, isUndefined as isUndefined2 } from "@wistia/type-guards";
4960
- import styled3 from "styled-components";
5005
+ import { forwardRef as forwardRef2 } from "react";
5006
+ import { isNil as isNil5, isNotNil as isNotNil3, isNotUndefined as isNotUndefined2, isUndefined as isUndefined2 } from "@wistia/type-guards";
5007
+ import styled4 from "styled-components";
4961
5008
  import { Link as RouterLink, useInRouterContext } from "react-router-dom";
4962
- import { jsx as jsx157 } from "react/jsx-runtime";
5009
+ import { jsx as jsx158 } from "react/jsx-runtime";
4963
5010
  var generateHref = (href, type, disabled) => {
4964
5011
  if (disabled || isNil5(href)) {
4965
5012
  return void 0;
@@ -4975,7 +5022,7 @@ var generateHref = (href, type, disabled) => {
4975
5022
  };
4976
5023
  var isButton = (props) => isUndefined2(props.href);
4977
5024
  var isLink = (props) => isNotUndefined2(props.href);
4978
- var StyledLink = styled3.a`
5025
+ var StyledLink = styled4.a`
4979
5026
  ${({ href }) => isNil5(href) && buttonResetCss};
4980
5027
  ${({ $colorScheme }) => getColorScheme($colorScheme)}
4981
5028
  cursor: pointer;
@@ -4983,7 +5030,7 @@ var StyledLink = styled3.a`
4983
5030
  color: var(--color-text-link);
4984
5031
  text-decoration: ${({ $underline }) => $underline ? "underline" : "none"};
4985
5032
  `;
4986
- var Link = forwardRef(
5033
+ var Link = forwardRef2(
4987
5034
  ({
4988
5035
  beforeAction,
4989
5036
  children,
@@ -5007,7 +5054,7 @@ var Link = forwardRef(
5007
5054
  } finally {
5008
5055
  if (routingCallback !== null) {
5009
5056
  routingCallback();
5010
- } else if (isNotNil2(to)) {
5057
+ } else if (isNotNil3(to)) {
5011
5058
  window.location.assign(to);
5012
5059
  } else {
5013
5060
  }
@@ -5021,7 +5068,7 @@ var Link = forwardRef(
5021
5068
  onClick: handleClick
5022
5069
  };
5023
5070
  if (isButton(props)) {
5024
- return /* @__PURE__ */ jsx157(
5071
+ return /* @__PURE__ */ jsx158(
5025
5072
  StyledLink,
5026
5073
  {
5027
5074
  ref,
@@ -5041,7 +5088,7 @@ var Link = forwardRef(
5041
5088
  ...commonProps,
5042
5089
  ...externalLinkProps
5043
5090
  };
5044
- return inRouterContext && type !== "external" ? /* @__PURE__ */ jsx157(
5091
+ return inRouterContext && type !== "external" ? /* @__PURE__ */ jsx158(
5045
5092
  StyledLink,
5046
5093
  {
5047
5094
  as: RouterLink,
@@ -5049,7 +5096,7 @@ var Link = forwardRef(
5049
5096
  to: to ?? "",
5050
5097
  children
5051
5098
  }
5052
- ) : /* @__PURE__ */ jsx157(
5099
+ ) : /* @__PURE__ */ jsx158(
5053
5100
  StyledLink,
5054
5101
  {
5055
5102
  as: "a",
@@ -5065,9 +5112,9 @@ var Link = forwardRef(
5065
5112
  Link.displayName = "Link";
5066
5113
 
5067
5114
  // src/components/Button/Button.tsx
5068
- import { Fragment, jsx as jsx158, jsxs as jsxs3 } from "react/jsx-runtime";
5115
+ import { Fragment, jsx as jsx159, jsxs as jsxs4 } from "react/jsx-runtime";
5069
5116
  var isLink2 = (props) => isNotUndefined3(props.href);
5070
- var StyledButton = styled4.button`
5117
+ var StyledButton = styled5.button`
5071
5118
  ${buttonResetCss}
5072
5119
  ${({ colorScheme }) => getColorScheme(colorScheme)}
5073
5120
  ${({ size }) => buttonSizeStyles[size]}
@@ -5076,7 +5123,7 @@ var StyledButton = styled4.button`
5076
5123
  ${({ fullWidth }) => fullWidth && "width: 100%;"}
5077
5124
  position: relative;
5078
5125
  `;
5079
- var StyledButtonContent = styled4.div`
5126
+ var StyledButtonContent = styled5.div`
5080
5127
  align-items: center;
5081
5128
  display: inline-flex;
5082
5129
  flex-grow: 1;
@@ -5088,11 +5135,11 @@ var StyledButtonContent = styled4.div`
5088
5135
  ${({ $hasLeftIcon }) => $hasLeftIcon && "padding-left: 0;"}
5089
5136
  ${({ $hasRightIcon }) => $hasRightIcon && "padding-right: 0;"}
5090
5137
  `;
5091
- var StyledButtonContentLabel = styled4.span`
5138
+ var StyledButtonContentLabel = styled5.span`
5092
5139
  flex: 1;
5093
5140
  text-align: center;
5094
5141
  `;
5095
- var StyledButtonLoading = styled4.div`
5142
+ var StyledButtonLoading = styled5.div`
5096
5143
  position: absolute;
5097
5144
  display: flex;
5098
5145
  `;
@@ -5102,24 +5149,24 @@ var ButtonContent = ({
5102
5149
  rightIcon,
5103
5150
  children
5104
5151
  }) => {
5105
- return /* @__PURE__ */ jsxs3(Fragment, { children: [
5106
- isLoading ? /* @__PURE__ */ jsx158(StyledButtonLoading, { children: /* @__PURE__ */ jsx158(Icon, { type: "spinner" }) }) : null,
5107
- /* @__PURE__ */ jsxs3(
5152
+ return /* @__PURE__ */ jsxs4(Fragment, { children: [
5153
+ isLoading ? /* @__PURE__ */ jsx159(StyledButtonLoading, { children: /* @__PURE__ */ jsx159(Icon, { type: "spinner" }) }) : null,
5154
+ /* @__PURE__ */ jsxs4(
5108
5155
  StyledButtonContent,
5109
5156
  {
5110
- $hasLeftIcon: isNotNil3(leftIcon),
5111
- $hasRightIcon: isNotNil3(rightIcon),
5157
+ $hasLeftIcon: isNotNil4(leftIcon),
5158
+ $hasRightIcon: isNotNil4(rightIcon),
5112
5159
  $isLoading: isLoading,
5113
5160
  children: [
5114
5161
  leftIcon ?? null,
5115
- /* @__PURE__ */ jsx158(StyledButtonContentLabel, { children }),
5162
+ /* @__PURE__ */ jsx159(StyledButtonContentLabel, { children }),
5116
5163
  rightIcon ?? null
5117
5164
  ]
5118
5165
  }
5119
5166
  )
5120
5167
  ] });
5121
5168
  };
5122
- var Button = forwardRef2(
5169
+ var Button = forwardRef3(
5123
5170
  ({
5124
5171
  children,
5125
5172
  forceState,
@@ -5154,14 +5201,14 @@ var Button = forwardRef2(
5154
5201
  commonProps.className = `${className ?? ""} force-state-${forceState}`;
5155
5202
  }
5156
5203
  if (isLink2(props)) {
5157
- return /* @__PURE__ */ jsx158(
5204
+ return /* @__PURE__ */ jsx159(
5158
5205
  StyledButton,
5159
5206
  {
5160
5207
  ref,
5161
5208
  as: Link,
5162
5209
  ...props,
5163
5210
  ...commonProps,
5164
- children: /* @__PURE__ */ jsx158(
5211
+ children: /* @__PURE__ */ jsx159(
5165
5212
  ButtonContent,
5166
5213
  {
5167
5214
  isLoading,
@@ -5178,11 +5225,11 @@ var Button = forwardRef2(
5178
5225
  event.preventDefault();
5179
5226
  return;
5180
5227
  }
5181
- if (isNotNil3(onClick)) {
5228
+ if (isNotNil4(onClick)) {
5182
5229
  onClick(event);
5183
5230
  }
5184
5231
  };
5185
- return /* @__PURE__ */ jsx158(
5232
+ return /* @__PURE__ */ jsx159(
5186
5233
  StyledButton,
5187
5234
  {
5188
5235
  ref,
@@ -5190,7 +5237,7 @@ var Button = forwardRef2(
5190
5237
  type: "button",
5191
5238
  ...props,
5192
5239
  ...commonProps,
5193
- children: /* @__PURE__ */ jsx158(
5240
+ children: /* @__PURE__ */ jsx159(
5194
5241
  ButtonContent,
5195
5242
  {
5196
5243
  isLoading,
@@ -5206,9 +5253,9 @@ var Button = forwardRef2(
5206
5253
  Button.displayName = "Button";
5207
5254
 
5208
5255
  // src/components/ButtonGroup/ButtonGroup.tsx
5209
- import styled5 from "styled-components";
5256
+ import styled6 from "styled-components";
5210
5257
  import { isNil as isNil6 } from "@wistia/type-guards";
5211
- import { jsx as jsx159 } from "react/jsx-runtime";
5258
+ import { jsx as jsx160 } from "react/jsx-runtime";
5212
5259
  var getAlignment = (align) => {
5213
5260
  if (align === "center") {
5214
5261
  return "center";
@@ -5221,7 +5268,7 @@ var getAlignment = (align) => {
5221
5268
  }
5222
5269
  return void 0;
5223
5270
  };
5224
- var ButtonGroupComponent = styled5.div`
5271
+ var ButtonGroupComponent = styled6.div`
5225
5272
  display: flex;
5226
5273
 
5227
5274
  /* this helps ensure that primary buttons appear at the top of the column */
@@ -5250,7 +5297,7 @@ var ButtonGroup = ({
5250
5297
  if (isNil6(children)) {
5251
5298
  return null;
5252
5299
  }
5253
- return /* @__PURE__ */ jsx159(
5300
+ return /* @__PURE__ */ jsx160(
5254
5301
  ButtonGroupComponent,
5255
5302
  {
5256
5303
  align,
@@ -5263,13 +5310,13 @@ var ButtonGroup = ({
5263
5310
  ButtonGroup.displayName = "ButtonGroup";
5264
5311
 
5265
5312
  // src/components/Divider/Divider.tsx
5266
- import styled6 from "styled-components";
5267
- import { jsx as jsx160 } from "react/jsx-runtime";
5313
+ import styled7 from "styled-components";
5314
+ import { jsx as jsx161 } from "react/jsx-runtime";
5268
5315
  var sizeToPixelMap = {
5269
5316
  lg: 4,
5270
5317
  sm: 1
5271
5318
  };
5272
- var DividerComponent = styled6.hr`
5319
+ var DividerComponent = styled7.hr`
5273
5320
  background: none;
5274
5321
  border-bottom: none;
5275
5322
  border-left: none;
@@ -5284,7 +5331,7 @@ var DividerComponent = styled6.hr`
5284
5331
  `;
5285
5332
  var Divider = ({ size = "sm", ...otherProps }) => {
5286
5333
  const responsiveSize = useResponsiveProp(size);
5287
- return /* @__PURE__ */ jsx160(
5334
+ return /* @__PURE__ */ jsx161(
5288
5335
  DividerComponent,
5289
5336
  {
5290
5337
  borderHeight: sizeToPixelMap[responsiveSize],
@@ -5295,9 +5342,9 @@ var Divider = ({ size = "sm", ...otherProps }) => {
5295
5342
  Divider.displayName = "Divider";
5296
5343
 
5297
5344
  // src/components/Ellipsis/Ellipsis.tsx
5298
- import { isNotNil as isNotNil4 } from "@wistia/type-guards";
5299
- import styled7, { css as css12 } from "styled-components";
5300
- import { jsx as jsx161 } from "react/jsx-runtime";
5345
+ import { isNotNil as isNotNil5 } from "@wistia/type-guards";
5346
+ import styled8, { css as css12 } from "styled-components";
5347
+ import { jsx as jsx162 } from "react/jsx-runtime";
5301
5348
  var ellipsisStyle = css12`
5302
5349
  overflow: hidden;
5303
5350
  text-overflow: ellipsis;
@@ -5324,10 +5371,10 @@ var ellipsisStyle = css12`
5324
5371
  var ellipsisFlexParentStyle = css12`
5325
5372
  min-width: 0;
5326
5373
  `;
5327
- var EllipsisComponent = styled7.div`
5374
+ var EllipsisComponent = styled8.div`
5328
5375
  ${ellipsisStyle};
5329
5376
  ${({ lines }) => {
5330
- if (isNotNil4(lines)) {
5377
+ if (isNotNil5(lines)) {
5331
5378
  return css12`
5332
5379
  -webkit-box-orient: vertical;
5333
5380
  -webkit-line-clamp: ${lines};
@@ -5338,7 +5385,7 @@ var EllipsisComponent = styled7.div`
5338
5385
  return void 0;
5339
5386
  }}
5340
5387
  `;
5341
- var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ jsx161(
5388
+ var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ jsx162(
5342
5389
  EllipsisComponent,
5343
5390
  {
5344
5391
  lines,
@@ -5349,8 +5396,8 @@ var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ jsx161(
5349
5396
  Ellipsis.displayName = "Ellipsis";
5350
5397
 
5351
5398
  // src/components/Heading/Heading.tsx
5352
- import { forwardRef as forwardRef3 } from "react";
5353
- import styled8, { css as css13 } from "styled-components";
5399
+ import { forwardRef as forwardRef4 } from "react";
5400
+ import styled9, { css as css13 } from "styled-components";
5354
5401
 
5355
5402
  // src/private/helpers/makePolymorphic/makePolymorphic.tsx
5356
5403
  var makePolymorphic = (component) => {
@@ -5358,7 +5405,7 @@ var makePolymorphic = (component) => {
5358
5405
  };
5359
5406
 
5360
5407
  // src/components/Heading/Heading.tsx
5361
- import { jsx as jsx162 } from "react/jsx-runtime";
5408
+ import { jsx as jsx163 } from "react/jsx-runtime";
5362
5409
  var heroStyle = css13`
5363
5410
  --font-family: var(--typography-heading-hero-family);
5364
5411
  --font-size: var(--typography-heading-hero-size);
@@ -5411,7 +5458,7 @@ var variantStyleMap = {
5411
5458
  heading6: heading6TextStyle
5412
5459
  };
5413
5460
  var DEFAULT_ELEMENT = "h1";
5414
- var StyledHeading = styled8.div`
5461
+ var StyledHeading = styled9.div`
5415
5462
  ${({ colorScheme }) => getColorScheme(colorScheme)};
5416
5463
  font-family: var(--font-family);
5417
5464
  font-size: var(--font-size);
@@ -5443,7 +5490,7 @@ var variantElementMap = {
5443
5490
  heading5: "h5",
5444
5491
  heading6: "h6"
5445
5492
  };
5446
- var HeadingComponent = forwardRef3(
5493
+ var HeadingComponent = forwardRef4(
5447
5494
  ({
5448
5495
  align = "left",
5449
5496
  colorScheme = "inherit",
@@ -5454,7 +5501,7 @@ var HeadingComponent = forwardRef3(
5454
5501
  variant = "heading1",
5455
5502
  renderAs,
5456
5503
  ...otherProps
5457
- }, ref) => /* @__PURE__ */ jsx162(
5504
+ }, ref) => /* @__PURE__ */ jsx163(
5458
5505
  StyledHeading,
5459
5506
  {
5460
5507
  ref,
@@ -5474,8 +5521,8 @@ HeadingComponent.displayName = "Heading";
5474
5521
  var Heading = makePolymorphic(HeadingComponent);
5475
5522
 
5476
5523
  // src/components/IconButton/IconButton.tsx
5477
- import { Children as Children2, cloneElement as cloneElement2, forwardRef as forwardRef4 } from "react";
5478
- import styled10 from "styled-components";
5524
+ import { Children as Children2, cloneElement as cloneElement2, forwardRef as forwardRef5 } from "react";
5525
+ import styled11 from "styled-components";
5479
5526
 
5480
5527
  // src/components/Tooltip/Tooltip.tsx
5481
5528
  import {
@@ -5485,8 +5532,8 @@ import {
5485
5532
  Portal,
5486
5533
  Arrow
5487
5534
  } from "@radix-ui/react-tooltip";
5488
- import styled9, { css as css14 } from "styled-components";
5489
- import { jsx as jsx163, jsxs as jsxs4 } from "react/jsx-runtime";
5535
+ import styled10, { css as css14 } from "styled-components";
5536
+ import { jsx as jsx164, jsxs as jsxs5 } from "react/jsx-runtime";
5490
5537
  var CompactTooltipStyles = css14`
5491
5538
  --tooltip-font-size: var(--typography-label-4-size);
5492
5539
  --tooltip-line-height: var(--typography-label-4-line-height);
@@ -5494,7 +5541,7 @@ var CompactTooltipStyles = css14`
5494
5541
  --tooltip-horizontal-padding: var(--space-02);
5495
5542
  --tooltip-vertical-padding: var(--space-03);
5496
5543
  `;
5497
- var StyledContent = styled9(Content)`
5544
+ var StyledContent = styled10(Content)`
5498
5545
  --tooltip-font-family: var(--typography-family-default);
5499
5546
  --tooltip-border-radius: var(--border-radius-05);
5500
5547
  --tooltip-bg: var(--color-bg-tooltip);
@@ -5552,14 +5599,14 @@ var Tooltip = ({
5552
5599
  if (forceOpen === true) {
5553
5600
  rootProps.open = true;
5554
5601
  }
5555
- return /* @__PURE__ */ jsxs4(
5602
+ return /* @__PURE__ */ jsxs5(
5556
5603
  Root,
5557
5604
  {
5558
5605
  delayDuration: delay,
5559
5606
  ...rootProps,
5560
5607
  children: [
5561
- /* @__PURE__ */ jsx163(Trigger, { asChild: true, children }),
5562
- /* @__PURE__ */ jsx163(Portal, { children: /* @__PURE__ */ jsxs4(
5608
+ /* @__PURE__ */ jsx164(Trigger, { asChild: true, children }),
5609
+ /* @__PURE__ */ jsx164(Portal, { children: /* @__PURE__ */ jsxs5(
5563
5610
  StyledContent,
5564
5611
  {
5565
5612
  $compact: compact,
@@ -5567,7 +5614,7 @@ var Tooltip = ({
5567
5614
  sideOffset: hideArrow ? VISUAL_OFFSET : VISUAL_OFFSET - 2,
5568
5615
  children: [
5569
5616
  content,
5570
- !hideArrow ? /* @__PURE__ */ jsx163(Arrow, { asChild: true, children: /* @__PURE__ */ jsx163(
5617
+ !hideArrow ? /* @__PURE__ */ jsx164(Arrow, { asChild: true, children: /* @__PURE__ */ jsx164(
5571
5618
  "svg",
5572
5619
  {
5573
5620
  fill: "var(--tooltip-bg)",
@@ -5576,7 +5623,7 @@ var Tooltip = ({
5576
5623
  viewBox: "0 0 12 8",
5577
5624
  width: "12",
5578
5625
  xmlns: "http://www.w3.org/2000/svg",
5579
- children: /* @__PURE__ */ jsx163("path", { d: "M6.8 6.93333C6.4 7.46667 5.6 7.46667 5.2 6.93333L-2.54292e-07 -1.04907e-06L12 0L6.8 6.93333Z" })
5626
+ children: /* @__PURE__ */ jsx164("path", { d: "M6.8 6.93333C6.4 7.46667 5.6 7.46667 5.2 6.93333L-2.54292e-07 -1.04907e-06L12 0L6.8 6.93333Z" })
5580
5627
  }
5581
5628
  ) }) : null
5582
5629
  ]
@@ -5589,14 +5636,14 @@ var Tooltip = ({
5589
5636
  Tooltip.displayName = "Tooltip";
5590
5637
 
5591
5638
  // src/components/IconButton/IconButton.tsx
5592
- import { jsx as jsx164 } from "react/jsx-runtime";
5639
+ import { jsx as jsx165 } from "react/jsx-runtime";
5593
5640
  var buttonIconSizeMap = {
5594
5641
  small: "sm",
5595
5642
  medium: "md",
5596
5643
  large: "lg",
5597
5644
  hero: "xl"
5598
5645
  };
5599
- var StyledButton2 = styled10(Button)`
5646
+ var StyledButton2 = styled11(Button)`
5600
5647
  --icon-button-size-small: 24px;
5601
5648
  --icon-button-size-medium: 32px;
5602
5649
  --icon-button-size-large: 40px;
@@ -5610,10 +5657,10 @@ var StyledButton2 = styled10(Button)`
5610
5657
  align-items: center;
5611
5658
  line-height: 1;
5612
5659
  `;
5613
- var IconButton = forwardRef4(
5660
+ var IconButton = forwardRef5(
5614
5661
  ({ children, label, disableTooltip = false, size = "medium", ...props }, ref) => {
5615
5662
  const responsiveSize = useResponsiveProp(size);
5616
- const button = /* @__PURE__ */ jsx164(
5663
+ const button = /* @__PURE__ */ jsx165(
5617
5664
  StyledButton2,
5618
5665
  {
5619
5666
  ...props,
@@ -5629,17 +5676,17 @@ var IconButton = forwardRef4(
5629
5676
  if (disableTooltip) {
5630
5677
  return button;
5631
5678
  }
5632
- return /* @__PURE__ */ jsx164(Tooltip, { content: label, children: button });
5679
+ return /* @__PURE__ */ jsx165(Tooltip, { content: label, children: button });
5633
5680
  }
5634
5681
  );
5635
5682
  IconButton.displayName = "IconButton";
5636
5683
 
5637
5684
  // src/components/ScreenReaderOnly/ScreenReaderOnly.tsx
5638
- import styled11 from "styled-components";
5639
- import { isNotNil as isNotNil5 } from "@wistia/type-guards";
5640
- import { jsx as jsx165 } from "react/jsx-runtime";
5641
- var VisuallyHidden = styled11.div({ ...visuallyHiddenStyle });
5642
- var VisuallyHiddenButFocusable = styled11.div({
5685
+ import styled12 from "styled-components";
5686
+ import { isNotNil as isNotNil6 } from "@wistia/type-guards";
5687
+ import { jsx as jsx166 } from "react/jsx-runtime";
5688
+ var VisuallyHidden = styled12.div({ ...visuallyHiddenStyle });
5689
+ var VisuallyHiddenButFocusable = styled12.div({
5643
5690
  "&:not(:focus-within)": visuallyHiddenStyle
5644
5691
  });
5645
5692
  var ScreenReaderOnly = ({
@@ -5648,20 +5695,20 @@ var ScreenReaderOnly = ({
5648
5695
  focusable = false,
5649
5696
  ...otherProps
5650
5697
  }) => {
5651
- const accessibleText = isNotNil5(text) ? text : children;
5698
+ const accessibleText = isNotNil6(text) ? text : children;
5652
5699
  if (focusable) {
5653
- return /* @__PURE__ */ jsx165(VisuallyHiddenButFocusable, { ...otherProps, children: accessibleText });
5700
+ return /* @__PURE__ */ jsx166(VisuallyHiddenButFocusable, { ...otherProps, children: accessibleText });
5654
5701
  }
5655
- return /* @__PURE__ */ jsx165(VisuallyHidden, { ...otherProps, children: accessibleText });
5702
+ return /* @__PURE__ */ jsx166(VisuallyHidden, { ...otherProps, children: accessibleText });
5656
5703
  };
5657
5704
  ScreenReaderOnly.displayName = "ScreenReaderOnly";
5658
5705
 
5659
5706
  // src/components/Stack/Stack.tsx
5660
- import { forwardRef as forwardRef5 } from "react";
5661
- import styled12 from "styled-components";
5662
- import { jsx as jsx166 } from "react/jsx-runtime";
5707
+ import { forwardRef as forwardRef6 } from "react";
5708
+ import styled13 from "styled-components";
5709
+ import { jsx as jsx167 } from "react/jsx-runtime";
5663
5710
  var DEFAULT_ELEMENT2 = "div";
5664
- var StyledStack = styled12.div`
5711
+ var StyledStack = styled13.div`
5665
5712
  display: flex;
5666
5713
  flex-direction: ${({ $direction }) => $direction === "horizontal" ? "row" : "column"};
5667
5714
  gap: ${({ gap }) => `var(--${gap})`};
@@ -5670,11 +5717,11 @@ var StyledStack = styled12.div`
5670
5717
  flex: 1;
5671
5718
  }
5672
5719
  `;
5673
- var StackComponent = forwardRef5(
5720
+ var StackComponent = forwardRef6(
5674
5721
  ({ renderAs, direction = "vertical", gap = "space-02", ...props }, ref) => {
5675
5722
  const responsiveGap = useResponsiveProp(gap);
5676
5723
  const responsiveDirection = useResponsiveProp(direction);
5677
- return /* @__PURE__ */ jsx166(
5724
+ return /* @__PURE__ */ jsx167(
5678
5725
  StyledStack,
5679
5726
  {
5680
5727
  ref,
@@ -5690,9 +5737,9 @@ StackComponent.displayName = "Stack";
5690
5737
  var Stack = makePolymorphic(StackComponent);
5691
5738
 
5692
5739
  // src/components/Text/Text.tsx
5693
- import { forwardRef as forwardRef6 } from "react";
5694
- import styled13, { css as css15 } from "styled-components";
5695
- import { jsx as jsx167 } from "react/jsx-runtime";
5740
+ import { forwardRef as forwardRef7 } from "react";
5741
+ import styled14, { css as css15 } from "styled-components";
5742
+ import { jsx as jsx168 } from "react/jsx-runtime";
5696
5743
  var bodyBoldStyles = css15`
5697
5744
  > strong,
5698
5745
  b {
@@ -5805,7 +5852,7 @@ var prominenceMap = {
5805
5852
  vibrant: vibrantProminenceStyle,
5806
5853
  secondary: secondaryProminenceStyle
5807
5854
  };
5808
- var StyledText = styled13.div`
5855
+ var StyledText = styled14.div`
5809
5856
  ${({ colorScheme }) => getColorScheme(colorScheme)};
5810
5857
  font-family: var(--font-family);
5811
5858
  font-size: var(--font-size);
@@ -5834,7 +5881,7 @@ var StyledText = styled13.div`
5834
5881
  `}
5835
5882
  `;
5836
5883
  var DEFAULT_ELEMENT3 = "div";
5837
- var TextComponent = forwardRef6(
5884
+ var TextComponent = forwardRef7(
5838
5885
  ({
5839
5886
  align = "left",
5840
5887
  colorScheme = "inherit",
@@ -5847,7 +5894,7 @@ var TextComponent = forwardRef6(
5847
5894
  renderAs,
5848
5895
  ...otherProps
5849
5896
  }, ref) => {
5850
- return /* @__PURE__ */ jsx167(
5897
+ return /* @__PURE__ */ jsx168(
5851
5898
  StyledText,
5852
5899
  {
5853
5900
  ref,
@@ -5869,20 +5916,20 @@ TextComponent.displayName = "Text";
5869
5916
  var Text = makePolymorphic(TextComponent);
5870
5917
 
5871
5918
  // src/components/WistiaLogo/WistiaLogo.tsx
5872
- import styled14 from "styled-components";
5873
- import { isNotNil as isNotNil6 } from "@wistia/type-guards";
5874
- import { jsx as jsx168, jsxs as jsxs5 } from "react/jsx-runtime";
5919
+ import styled15 from "styled-components";
5920
+ import { isNotNil as isNotNil7 } from "@wistia/type-guards";
5921
+ import { jsx as jsx169, jsxs as jsxs6 } from "react/jsx-runtime";
5875
5922
  var renderBrandmark = (brandmarkColor, iconOnly) => {
5876
5923
  if (iconOnly) {
5877
- return /* @__PURE__ */ jsx168("g", { fill: brandmarkColor, children: /* @__PURE__ */ jsx168("path", { d: "M16.09 17.1h-5.2c-1.58 0-3.08.68-4.11 1.87L.21 26.53c4.78.25 9.78.25 13.3.25 18.31 0 20.89-11.27 20.89-16.55-1.59 1.93-6.06 6.87-18.32 6.87ZM32.14 0c-.08.92-.59 4.69-11.31 4.69-8.72 0-12.24 0-20.83-.17l6.44 7.4a6.657 6.657 0 0 0 4.96 2.3c2.13.03 5.05.06 5.53.06 11.01 0 17.19-5.05 17.19-9.89 0-2.01-.67-3.44-1.97-4.4Z" }) });
5924
+ return /* @__PURE__ */ jsx169("g", { fill: brandmarkColor, children: /* @__PURE__ */ jsx169("path", { d: "M16.09 17.1h-5.2c-1.58 0-3.08.68-4.11 1.87L.21 26.53c4.78.25 9.78.25 13.3.25 18.31 0 20.89-11.27 20.89-16.55-1.59 1.93-6.06 6.87-18.32 6.87ZM32.14 0c-.08.92-.59 4.69-11.31 4.69-8.72 0-12.24 0-20.83-.17l6.44 7.4a6.657 6.657 0 0 0 4.96 2.3c2.13.03 5.05.06 5.53.06 11.01 0 17.19-5.05 17.19-9.89 0-2.01-.67-3.44-1.97-4.4Z" }) });
5878
5925
  }
5879
- return /* @__PURE__ */ jsx168("g", { fill: brandmarkColor, children: /* @__PURE__ */ jsx168("path", { d: "M16.09 21.37h-5.2c-1.58 0-3.08.68-4.11 1.87L.21 30.8c4.78.25 9.78.25 13.3.25 18.31 0 20.89-11.27 20.89-16.55-1.59 1.93-6.06 6.87-18.32 6.87Zm16.05-17.1c-.08.92-.59 4.69-11.31 4.69-8.72 0-12.24 0-20.83-.17l6.44 7.4a6.657 6.657 0 0 0 4.96 2.3c2.13.03 5.05.06 5.53.06 11.01 0 17.19-5.05 17.19-9.89 0-2.01-.67-3.44-1.97-4.4Z" }) });
5926
+ return /* @__PURE__ */ jsx169("g", { fill: brandmarkColor, children: /* @__PURE__ */ jsx169("path", { d: "M16.09 21.37h-5.2c-1.58 0-3.08.68-4.11 1.87L.21 30.8c4.78.25 9.78.25 13.3.25 18.31 0 20.89-11.27 20.89-16.55-1.59 1.93-6.06 6.87-18.32 6.87Zm16.05-17.1c-.08.92-.59 4.69-11.31 4.69-8.72 0-12.24 0-20.83-.17l6.44 7.4a6.657 6.657 0 0 0 4.96 2.3c2.13.03 5.05.06 5.53.06 11.01 0 17.19-5.05 17.19-9.89 0-2.01-.67-3.44-1.97-4.4Z" }) });
5880
5927
  };
5881
5928
  var renderLogotype = (logotypeColor, iconOnly) => {
5882
5929
  if (iconOnly) {
5883
5930
  return null;
5884
5931
  }
5885
- return /* @__PURE__ */ jsx168("g", { fill: logotypeColor, children: /* @__PURE__ */ jsx168("path", { d: "M70.16 8.66v15.18c0 1.68-.35 3.09-1.05 4.23a6.612 6.612 0 0 1-2.85 2.54c-1.19.55-2.52.82-4.01.82s-2.8-.28-4.01-.85a6.655 6.655 0 0 1-3.11-2.96c-.08.15-.16.29-.24.42a6.552 6.552 0 0 1-2.87 2.54c-1.2.56-2.54.85-4.01.85s-2.8-.27-3.94-.82a6.214 6.214 0 0 1-2.71-2.52c-.67-1.14-1.01-2.56-1.02-4.25l-.22-15.18h7.34V22.3c0 .82.19 1.37.56 1.67.39.28.85.42 1.38.42s1.02-.15 1.45-.45c.43-.3.65-.85.65-1.65V8.65h7.3v13.64c0 .8.22 1.35.65 1.65.43.3.91.45 1.45.45s.99-.14 1.36-.42c.39-.3.58-.85.58-1.67V8.66h7.34Zm2.45 0v22.26h7.34V8.66h-7.34Zm5.67-1.87c.61-.3 1.08-.71 1.42-1.25.36-.55.53-1.19.53-1.94s-.18-1.34-.53-1.89A3.43 3.43 0 0 0 78.28.44c-.59-.3-1.25-.45-1.98-.45s-1.42.15-2.02.45c-.59.3-1.07.72-1.42 1.27-.36.55-.53 1.18-.53 1.89 0 1.1.38 1.97 1.13 2.63.76.65 1.71.98 2.85.98.73 0 1.39-.14 1.98-.42Zm8.86 1.96c-1.42.4-2.6 1.11-3.54 2.14-.93 1.02-1.4 2.4-1.4 4.12 0 1.11.17 2.09.51 2.94.36.85.82 1.62 1.38 2.34.22.28.55.65.98 1.11.37.4.64.72.8.96.18.24.27.47.27.69 0 .5-.4.87-1.2 1.09-.8.21-1.62.31-2.47.31-.1-.01-.22-.02-.33-.02l1.02 6.94c.42.07.92.11 1.51.11 1.9 0 3.6-.28 5.1-.85 1.5-.56 2.68-1.42 3.54-2.56.88-1.14 1.31-2.55 1.31-4.23 0-.68-.07-1.31-.22-1.87-.13-.58-.32-1.09-.56-1.54a6.64 6.64 0 0 0-.8-1.27c-.3-.37-.74-.82-1.34-1.36-.39-.33-.67-.59-.85-.8-.18-.22-.27-.45-.27-.67 0-.46.26-.79.78-.98.53-.19 1.17-.29 1.91-.29.25 0 .51.01.78.04l-.71-6.88a10.4 10.4 0 0 0-1.56-.11c-1.66 0-3.21.21-4.65.62Zm19.54 15.71c-.99 0-1.71-.23-2.14-.69-.42-.47-.62-1.18-.62-2.11v-6.57h4.21V8.66h-4.21V3.38l-7.34 1.85V24.1c0 2.45.47 4.29 1.4 5.52.95 1.22 2.45 1.83 4.49 1.83.95 0 1.86-.07 2.74-.22.88-.13 1.62-.34 2.25-.62l1.38-6.3c-.55.1-1.27.16-2.16.16Zm4.13-15.8v22.26h7.34V8.66h-7.34Zm5.67-1.87c.61-.3 1.08-.71 1.42-1.25.36-.55.53-1.19.53-1.94s-.18-1.34-.53-1.89a3.43 3.43 0 0 0-1.42-1.27c-.59-.3-1.25-.45-1.98-.45s-1.42.15-2.02.45c-.59.3-1.07.72-1.42 1.27-.36.55-.53 1.18-.53 1.89 0 1.1.38 1.97 1.14 2.63.76.65 1.71.98 2.85.98.73 0 1.39-.14 1.98-.42Zm27.51 1.87v22.26h-7.34v-2.28c-.41.43-.85.83-1.34 1.19-1.44 1.07-3.12 1.6-5.05 1.6s-3.61-.52-5.1-1.56c-1.48-1.05-2.63-2.47-3.45-4.25-.82-1.78-1.22-3.73-1.22-5.85s.41-4.07 1.22-5.83c.82-1.78 1.97-3.19 3.45-4.23 1.48-1.05 3.18-1.58 5.1-1.58s3.61.53 5.05 1.6c.48.36.93.75 1.34 1.19V8.66h7.34Zm-7.1 11.11c0-.8-.19-1.53-.56-2.18-.37-.67-.88-1.19-1.54-1.58-.64-.39-1.34-.58-2.09-.58s-1.45.19-2.09.58c-.64.39-1.15.91-1.54 1.58-.37.67-.56 1.39-.56 2.18s.19 1.51.56 2.18c.39.67.9 1.19 1.54 1.58.64.39 1.34.58 2.09.58s1.45-.19 2.09-.58c.65-.39 1.16-.91 1.54-1.56.37-.67.56-1.4.56-2.2Z" }) });
5932
+ return /* @__PURE__ */ jsx169("g", { fill: logotypeColor, children: /* @__PURE__ */ jsx169("path", { d: "M70.16 8.66v15.18c0 1.68-.35 3.09-1.05 4.23a6.612 6.612 0 0 1-2.85 2.54c-1.19.55-2.52.82-4.01.82s-2.8-.28-4.01-.85a6.655 6.655 0 0 1-3.11-2.96c-.08.15-.16.29-.24.42a6.552 6.552 0 0 1-2.87 2.54c-1.2.56-2.54.85-4.01.85s-2.8-.27-3.94-.82a6.214 6.214 0 0 1-2.71-2.52c-.67-1.14-1.01-2.56-1.02-4.25l-.22-15.18h7.34V22.3c0 .82.19 1.37.56 1.67.39.28.85.42 1.38.42s1.02-.15 1.45-.45c.43-.3.65-.85.65-1.65V8.65h7.3v13.64c0 .8.22 1.35.65 1.65.43.3.91.45 1.45.45s.99-.14 1.36-.42c.39-.3.58-.85.58-1.67V8.66h7.34Zm2.45 0v22.26h7.34V8.66h-7.34Zm5.67-1.87c.61-.3 1.08-.71 1.42-1.25.36-.55.53-1.19.53-1.94s-.18-1.34-.53-1.89A3.43 3.43 0 0 0 78.28.44c-.59-.3-1.25-.45-1.98-.45s-1.42.15-2.02.45c-.59.3-1.07.72-1.42 1.27-.36.55-.53 1.18-.53 1.89 0 1.1.38 1.97 1.13 2.63.76.65 1.71.98 2.85.98.73 0 1.39-.14 1.98-.42Zm8.86 1.96c-1.42.4-2.6 1.11-3.54 2.14-.93 1.02-1.4 2.4-1.4 4.12 0 1.11.17 2.09.51 2.94.36.85.82 1.62 1.38 2.34.22.28.55.65.98 1.11.37.4.64.72.8.96.18.24.27.47.27.69 0 .5-.4.87-1.2 1.09-.8.21-1.62.31-2.47.31-.1-.01-.22-.02-.33-.02l1.02 6.94c.42.07.92.11 1.51.11 1.9 0 3.6-.28 5.1-.85 1.5-.56 2.68-1.42 3.54-2.56.88-1.14 1.31-2.55 1.31-4.23 0-.68-.07-1.31-.22-1.87-.13-.58-.32-1.09-.56-1.54a6.64 6.64 0 0 0-.8-1.27c-.3-.37-.74-.82-1.34-1.36-.39-.33-.67-.59-.85-.8-.18-.22-.27-.45-.27-.67 0-.46.26-.79.78-.98.53-.19 1.17-.29 1.91-.29.25 0 .51.01.78.04l-.71-6.88a10.4 10.4 0 0 0-1.56-.11c-1.66 0-3.21.21-4.65.62Zm19.54 15.71c-.99 0-1.71-.23-2.14-.69-.42-.47-.62-1.18-.62-2.11v-6.57h4.21V8.66h-4.21V3.38l-7.34 1.85V24.1c0 2.45.47 4.29 1.4 5.52.95 1.22 2.45 1.83 4.49 1.83.95 0 1.86-.07 2.74-.22.88-.13 1.62-.34 2.25-.62l1.38-6.3c-.55.1-1.27.16-2.16.16Zm4.13-15.8v22.26h7.34V8.66h-7.34Zm5.67-1.87c.61-.3 1.08-.71 1.42-1.25.36-.55.53-1.19.53-1.94s-.18-1.34-.53-1.89a3.43 3.43 0 0 0-1.42-1.27c-.59-.3-1.25-.45-1.98-.45s-1.42.15-2.02.45c-.59.3-1.07.72-1.42 1.27-.36.55-.53 1.18-.53 1.89 0 1.1.38 1.97 1.14 2.63.76.65 1.71.98 2.85.98.73 0 1.39-.14 1.98-.42Zm27.51 1.87v22.26h-7.34v-2.28c-.41.43-.85.83-1.34 1.19-1.44 1.07-3.12 1.6-5.05 1.6s-3.61-.52-5.1-1.56c-1.48-1.05-2.63-2.47-3.45-4.25-.82-1.78-1.22-3.73-1.22-5.85s.41-4.07 1.22-5.83c.82-1.78 1.97-3.19 3.45-4.23 1.48-1.05 3.18-1.58 5.1-1.58s3.61.53 5.05 1.6c.48.36.93.75 1.34 1.19V8.66h7.34Zm-7.1 11.11c0-.8-.19-1.53-.56-2.18-.37-.67-.88-1.19-1.54-1.58-.64-.39-1.34-.58-2.09-.58s-1.45.19-2.09.58c-.64.39-1.15.91-1.54 1.58-.37.67-.56 1.39-.56 2.18s.19 1.51.56 2.18c.39.67.9 1.19 1.54 1.58.64.39 1.34.58 2.09.58s1.45-.19 2.09-.58c.65-.39 1.16-.91 1.54-1.56.37-.67.56-1.4.56-2.2Z" }) });
5886
5933
  };
5887
5934
  var computedViewBox = (iconOnly) => {
5888
5935
  if (iconOnly) {
@@ -5890,7 +5937,7 @@ var computedViewBox = (iconOnly) => {
5890
5937
  }
5891
5938
  return "0 0 144 31.47";
5892
5939
  };
5893
- var WistiaLogoComponent = styled14.svg`
5940
+ var WistiaLogoComponent = styled15.svg`
5894
5941
  height: ${({ height }) => `${height}px`};
5895
5942
 
5896
5943
  /* ensure it will always fit on mobile */
@@ -5932,7 +5979,7 @@ var WistiaLogo = ({
5932
5979
  };
5933
5980
  const brandmarkColor = VARIANT_COLORS[variant].brandmark;
5934
5981
  const logotypeColor = VARIANT_COLORS[variant].logotype;
5935
- const Logo = /* @__PURE__ */ jsxs5(
5982
+ const Logo = /* @__PURE__ */ jsxs6(
5936
5983
  WistiaLogoComponent,
5937
5984
  {
5938
5985
  height,
@@ -5942,20 +5989,42 @@ var WistiaLogo = ({
5942
5989
  xmlns: "http://www.w3.org/2000/svg",
5943
5990
  ...otherProps,
5944
5991
  children: [
5945
- /* @__PURE__ */ jsx168("title", { children: title }),
5946
- isNotNil6(description) ? /* @__PURE__ */ jsx168("desc", { children: description }) : null,
5992
+ /* @__PURE__ */ jsx169("title", { children: title }),
5993
+ isNotNil7(description) ? /* @__PURE__ */ jsx169("desc", { children: description }) : null,
5947
5994
  renderBrandmark(brandmarkColor, iconOnly),
5948
5995
  renderLogotype(logotypeColor, iconOnly)
5949
5996
  ]
5950
5997
  }
5951
5998
  );
5952
- return href !== void 0 ? /* @__PURE__ */ jsx168("a", { href, children: Logo }) : Logo;
5999
+ return href !== void 0 ? /* @__PURE__ */ jsx169("a", { href, children: Logo }) : Logo;
5953
6000
  };
5954
6001
  WistiaLogo.displayName = "WistiaLogo";
6002
+
6003
+ // src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
6004
+ import styled16 from "styled-components";
6005
+ import { jsx as jsx170 } from "react/jsx-runtime";
6006
+ var StyledColorSchemeWrapper = styled16.div`
6007
+ ${({ colorScheme }) => getColorScheme(colorScheme)};
6008
+ `;
6009
+ var ColorSchemeWrapper = ({
6010
+ colorScheme,
6011
+ children,
6012
+ ...otherProps
6013
+ }) => /* @__PURE__ */ jsx170(
6014
+ StyledColorSchemeWrapper,
6015
+ {
6016
+ colorScheme,
6017
+ ...otherProps,
6018
+ children
6019
+ }
6020
+ );
6021
+ ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
5955
6022
  export {
6023
+ Badge,
5956
6024
  Box,
5957
6025
  Button,
5958
6026
  ButtonGroup,
6027
+ ColorSchemeWrapper,
5959
6028
  Divider,
5960
6029
  Ellipsis,
5961
6030
  Heading,