@wistia/ui 0.0.7 → 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.7
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";
1592
+ import { forwardRef as forwardRef3 } from "react";
1491
1593
  import { isNotNil as isNotNil4, isNotUndefined as isNotUndefined3 } from "@wistia/type-guards";
1492
- import styled3 from "styled-components";
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,73 +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
- import { isNil as isNil4, isNotNil as isNotNil2 } from "@wistia/type-guards";
1799
+ import { isNil as isNil4 } from "@wistia/type-guards";
1800
+ import styled3 from "styled-components";
1753
1801
 
1754
1802
  // src/components/Icon/icons/AbTestIcon.tsx
1755
- import { jsx as jsx4 } from "react/jsx-runtime";
1756
- var AbTestIcon = (props) => /* @__PURE__ */ jsx4(
1803
+ import { jsx as jsx5 } from "react/jsx-runtime";
1804
+ var AbTestIcon = (props) => /* @__PURE__ */ jsx5(
1757
1805
  "svg",
1758
1806
  {
1759
1807
  ...props,
1760
1808
  viewBox: "0 0 24 24",
1761
1809
  xmlns: "http://www.w3.org/2000/svg",
1762
- children: /* @__PURE__ */ jsx4(
1810
+ children: /* @__PURE__ */ jsx5(
1763
1811
  "path",
1764
1812
  {
1765
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",
@@ -1770,14 +1818,14 @@ var AbTestIcon = (props) => /* @__PURE__ */ jsx4(
1770
1818
  );
1771
1819
 
1772
1820
  // src/components/Icon/icons/AccessibilityIcon.tsx
1773
- import { jsx as jsx5 } from "react/jsx-runtime";
1774
- var AccessibilityIcon = (props) => /* @__PURE__ */ jsx5(
1821
+ import { jsx as jsx6 } from "react/jsx-runtime";
1822
+ var AccessibilityIcon = (props) => /* @__PURE__ */ jsx6(
1775
1823
  "svg",
1776
1824
  {
1777
1825
  ...props,
1778
1826
  viewBox: "0 0 24 24",
1779
1827
  xmlns: "http://www.w3.org/2000/svg",
1780
- children: /* @__PURE__ */ jsx5(
1828
+ children: /* @__PURE__ */ jsx6(
1781
1829
  "path",
1782
1830
  {
1783
1831
  clipRule: "evenodd",
@@ -1790,14 +1838,14 @@ var AccessibilityIcon = (props) => /* @__PURE__ */ jsx5(
1790
1838
  );
1791
1839
 
1792
1840
  // src/components/Icon/icons/ActivityIcon.tsx
1793
- import { jsx as jsx6 } from "react/jsx-runtime";
1794
- var ActivityIcon = (props) => /* @__PURE__ */ jsx6(
1841
+ import { jsx as jsx7 } from "react/jsx-runtime";
1842
+ var ActivityIcon = (props) => /* @__PURE__ */ jsx7(
1795
1843
  "svg",
1796
1844
  {
1797
1845
  ...props,
1798
1846
  viewBox: "0 0 24 24",
1799
1847
  xmlns: "http://www.w3.org/2000/svg",
1800
- children: /* @__PURE__ */ jsx6(
1848
+ children: /* @__PURE__ */ jsx7(
1801
1849
  "path",
1802
1850
  {
1803
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",
@@ -1808,14 +1856,14 @@ var ActivityIcon = (props) => /* @__PURE__ */ jsx6(
1808
1856
  );
1809
1857
 
1810
1858
  // src/components/Icon/icons/AddMediaIcon.tsx
1811
- import { jsx as jsx7 } from "react/jsx-runtime";
1812
- var AddMediaIcon = (props) => /* @__PURE__ */ jsx7(
1859
+ import { jsx as jsx8 } from "react/jsx-runtime";
1860
+ var AddMediaIcon = (props) => /* @__PURE__ */ jsx8(
1813
1861
  "svg",
1814
1862
  {
1815
1863
  ...props,
1816
1864
  viewBox: "0 0 24 24",
1817
1865
  xmlns: "http://www.w3.org/2000/svg",
1818
- children: /* @__PURE__ */ jsx7(
1866
+ children: /* @__PURE__ */ jsx8(
1819
1867
  "path",
1820
1868
  {
1821
1869
  clipRule: "evenodd",
@@ -1828,14 +1876,14 @@ var AddMediaIcon = (props) => /* @__PURE__ */ jsx7(
1828
1876
  );
1829
1877
 
1830
1878
  // src/components/Icon/icons/AnnotationLinkIcon.tsx
1831
- import { jsx as jsx8 } from "react/jsx-runtime";
1832
- var AnnotationLinkIcon = (props) => /* @__PURE__ */ jsx8(
1879
+ import { jsx as jsx9 } from "react/jsx-runtime";
1880
+ var AnnotationLinkIcon = (props) => /* @__PURE__ */ jsx9(
1833
1881
  "svg",
1834
1882
  {
1835
1883
  ...props,
1836
1884
  viewBox: "0 0 24 24",
1837
1885
  xmlns: "http://www.w3.org/2000/svg",
1838
- children: /* @__PURE__ */ jsx8(
1886
+ children: /* @__PURE__ */ jsx9(
1839
1887
  "path",
1840
1888
  {
1841
1889
  clipRule: "evenodd",
@@ -1848,14 +1896,14 @@ var AnnotationLinkIcon = (props) => /* @__PURE__ */ jsx8(
1848
1896
  );
1849
1897
 
1850
1898
  // src/components/Icon/icons/AppearanceIcon.tsx
1851
- import { jsx as jsx9 } from "react/jsx-runtime";
1852
- var AppearanceIcon = (props) => /* @__PURE__ */ jsx9(
1899
+ import { jsx as jsx10 } from "react/jsx-runtime";
1900
+ var AppearanceIcon = (props) => /* @__PURE__ */ jsx10(
1853
1901
  "svg",
1854
1902
  {
1855
1903
  ...props,
1856
1904
  viewBox: "0 0 24 24",
1857
1905
  xmlns: "http://www.w3.org/2000/svg",
1858
- children: /* @__PURE__ */ jsx9(
1906
+ children: /* @__PURE__ */ jsx10(
1859
1907
  "path",
1860
1908
  {
1861
1909
  clipRule: "evenodd",
@@ -1868,14 +1916,14 @@ var AppearanceIcon = (props) => /* @__PURE__ */ jsx9(
1868
1916
  );
1869
1917
 
1870
1918
  // src/components/Icon/icons/ArchiveIcon.tsx
1871
- import { jsx as jsx10 } from "react/jsx-runtime";
1872
- var ArchiveIcon = (props) => /* @__PURE__ */ jsx10(
1919
+ import { jsx as jsx11 } from "react/jsx-runtime";
1920
+ var ArchiveIcon = (props) => /* @__PURE__ */ jsx11(
1873
1921
  "svg",
1874
1922
  {
1875
1923
  ...props,
1876
1924
  viewBox: "0 0 24 24",
1877
1925
  xmlns: "http://www.w3.org/2000/svg",
1878
- children: /* @__PURE__ */ jsx10(
1926
+ children: /* @__PURE__ */ jsx11(
1879
1927
  "path",
1880
1928
  {
1881
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",
@@ -1886,14 +1934,14 @@ var ArchiveIcon = (props) => /* @__PURE__ */ jsx10(
1886
1934
  );
1887
1935
 
1888
1936
  // src/components/Icon/icons/ArrowDownIcon.tsx
1889
- import { jsx as jsx11 } from "react/jsx-runtime";
1890
- var ArrowDownIcon = (props) => /* @__PURE__ */ jsx11(
1937
+ import { jsx as jsx12 } from "react/jsx-runtime";
1938
+ var ArrowDownIcon = (props) => /* @__PURE__ */ jsx12(
1891
1939
  "svg",
1892
1940
  {
1893
1941
  ...props,
1894
1942
  viewBox: "0 0 24 24",
1895
1943
  xmlns: "http://www.w3.org/2000/svg",
1896
- children: /* @__PURE__ */ jsx11(
1944
+ children: /* @__PURE__ */ jsx12(
1897
1945
  "path",
1898
1946
  {
1899
1947
  clipRule: "evenodd",
@@ -1906,14 +1954,14 @@ var ArrowDownIcon = (props) => /* @__PURE__ */ jsx11(
1906
1954
  );
1907
1955
 
1908
1956
  // src/components/Icon/icons/ArrowLeftIcon.tsx
1909
- import { jsx as jsx12 } from "react/jsx-runtime";
1910
- var ArrowLeftIcon = (props) => /* @__PURE__ */ jsx12(
1957
+ import { jsx as jsx13 } from "react/jsx-runtime";
1958
+ var ArrowLeftIcon = (props) => /* @__PURE__ */ jsx13(
1911
1959
  "svg",
1912
1960
  {
1913
1961
  ...props,
1914
1962
  viewBox: "0 0 24 24",
1915
1963
  xmlns: "http://www.w3.org/2000/svg",
1916
- children: /* @__PURE__ */ jsx12(
1964
+ children: /* @__PURE__ */ jsx13(
1917
1965
  "path",
1918
1966
  {
1919
1967
  clipRule: "evenodd",
@@ -1926,14 +1974,14 @@ var ArrowLeftIcon = (props) => /* @__PURE__ */ jsx12(
1926
1974
  );
1927
1975
 
1928
1976
  // src/components/Icon/icons/ArrowRightIcon.tsx
1929
- import { jsx as jsx13 } from "react/jsx-runtime";
1930
- var ArrowRightIcon = (props) => /* @__PURE__ */ jsx13(
1977
+ import { jsx as jsx14 } from "react/jsx-runtime";
1978
+ var ArrowRightIcon = (props) => /* @__PURE__ */ jsx14(
1931
1979
  "svg",
1932
1980
  {
1933
1981
  ...props,
1934
1982
  viewBox: "0 0 24 24",
1935
1983
  xmlns: "http://www.w3.org/2000/svg",
1936
- children: /* @__PURE__ */ jsx13(
1984
+ children: /* @__PURE__ */ jsx14(
1937
1985
  "path",
1938
1986
  {
1939
1987
  clipRule: "evenodd",
@@ -1946,14 +1994,14 @@ var ArrowRightIcon = (props) => /* @__PURE__ */ jsx13(
1946
1994
  );
1947
1995
 
1948
1996
  // src/components/Icon/icons/ArrowUpIcon.tsx
1949
- import { jsx as jsx14 } from "react/jsx-runtime";
1950
- var ArrowUpIcon = (props) => /* @__PURE__ */ jsx14(
1997
+ import { jsx as jsx15 } from "react/jsx-runtime";
1998
+ var ArrowUpIcon = (props) => /* @__PURE__ */ jsx15(
1951
1999
  "svg",
1952
2000
  {
1953
2001
  ...props,
1954
2002
  viewBox: "0 0 24 24",
1955
2003
  xmlns: "http://www.w3.org/2000/svg",
1956
- children: /* @__PURE__ */ jsx14(
2004
+ children: /* @__PURE__ */ jsx15(
1957
2005
  "path",
1958
2006
  {
1959
2007
  clipRule: "evenodd",
@@ -1966,14 +2014,14 @@ var ArrowUpIcon = (props) => /* @__PURE__ */ jsx14(
1966
2014
  );
1967
2015
 
1968
2016
  // src/components/Icon/icons/ArrowUpRightIcon.tsx
1969
- import { jsx as jsx15 } from "react/jsx-runtime";
1970
- var ArrowUpRightIcon = (props) => /* @__PURE__ */ jsx15(
2017
+ import { jsx as jsx16 } from "react/jsx-runtime";
2018
+ var ArrowUpRightIcon = (props) => /* @__PURE__ */ jsx16(
1971
2019
  "svg",
1972
2020
  {
1973
2021
  ...props,
1974
2022
  viewBox: "0 0 24 24",
1975
2023
  xmlns: "http://www.w3.org/2000/svg",
1976
- children: /* @__PURE__ */ jsx15(
2024
+ children: /* @__PURE__ */ jsx16(
1977
2025
  "path",
1978
2026
  {
1979
2027
  clipRule: "evenodd",
@@ -1986,14 +2034,14 @@ var ArrowUpRightIcon = (props) => /* @__PURE__ */ jsx15(
1986
2034
  );
1987
2035
 
1988
2036
  // src/components/Icon/icons/AsteriskIcon.tsx
1989
- import { jsx as jsx16 } from "react/jsx-runtime";
1990
- var AsteriskIcon = (props) => /* @__PURE__ */ jsx16(
2037
+ import { jsx as jsx17 } from "react/jsx-runtime";
2038
+ var AsteriskIcon = (props) => /* @__PURE__ */ jsx17(
1991
2039
  "svg",
1992
2040
  {
1993
2041
  ...props,
1994
2042
  viewBox: "0 0 24 24",
1995
2043
  xmlns: "http://www.w3.org/2000/svg",
1996
- children: /* @__PURE__ */ jsx16(
2044
+ children: /* @__PURE__ */ jsx17(
1997
2045
  "path",
1998
2046
  {
1999
2047
  clipRule: "evenodd",
@@ -2006,14 +2054,14 @@ var AsteriskIcon = (props) => /* @__PURE__ */ jsx16(
2006
2054
  );
2007
2055
 
2008
2056
  // src/components/Icon/icons/AudioDescriptionIcon.tsx
2009
- import { jsx as jsx17 } from "react/jsx-runtime";
2010
- var AudioDescriptionIcon = (props) => /* @__PURE__ */ jsx17(
2057
+ import { jsx as jsx18 } from "react/jsx-runtime";
2058
+ var AudioDescriptionIcon = (props) => /* @__PURE__ */ jsx18(
2011
2059
  "svg",
2012
2060
  {
2013
2061
  ...props,
2014
2062
  viewBox: "0 0 24 24",
2015
2063
  xmlns: "http://www.w3.org/2000/svg",
2016
- children: /* @__PURE__ */ jsx17(
2064
+ children: /* @__PURE__ */ jsx18(
2017
2065
  "path",
2018
2066
  {
2019
2067
  clipRule: "evenodd",
@@ -2026,14 +2074,14 @@ var AudioDescriptionIcon = (props) => /* @__PURE__ */ jsx17(
2026
2074
  );
2027
2075
 
2028
2076
  // src/components/Icon/icons/AutoScrollIcon.tsx
2029
- import { jsx as jsx18 } from "react/jsx-runtime";
2030
- var AutoScrollIcon = (props) => /* @__PURE__ */ jsx18(
2077
+ import { jsx as jsx19 } from "react/jsx-runtime";
2078
+ var AutoScrollIcon = (props) => /* @__PURE__ */ jsx19(
2031
2079
  "svg",
2032
2080
  {
2033
2081
  ...props,
2034
2082
  viewBox: "0 0 24 24",
2035
2083
  xmlns: "http://www.w3.org/2000/svg",
2036
- children: /* @__PURE__ */ jsx18(
2084
+ children: /* @__PURE__ */ jsx19(
2037
2085
  "path",
2038
2086
  {
2039
2087
  clipRule: "evenodd",
@@ -2046,14 +2094,14 @@ var AutoScrollIcon = (props) => /* @__PURE__ */ jsx18(
2046
2094
  );
2047
2095
 
2048
2096
  // src/components/Icon/icons/BackgroundIcon.tsx
2049
- import { jsx as jsx19 } from "react/jsx-runtime";
2050
- var BackgroundIcon = (props) => /* @__PURE__ */ jsx19(
2097
+ import { jsx as jsx20 } from "react/jsx-runtime";
2098
+ var BackgroundIcon = (props) => /* @__PURE__ */ jsx20(
2051
2099
  "svg",
2052
2100
  {
2053
2101
  ...props,
2054
2102
  viewBox: "0 0 24 24",
2055
2103
  xmlns: "http://www.w3.org/2000/svg",
2056
- children: /* @__PURE__ */ jsx19(
2104
+ children: /* @__PURE__ */ jsx20(
2057
2105
  "path",
2058
2106
  {
2059
2107
  clipRule: "evenodd",
@@ -2066,14 +2114,14 @@ var BackgroundIcon = (props) => /* @__PURE__ */ jsx19(
2066
2114
  );
2067
2115
 
2068
2116
  // src/components/Icon/icons/BellIcon.tsx
2069
- import { jsx as jsx20 } from "react/jsx-runtime";
2070
- var BellIcon = (props) => /* @__PURE__ */ jsx20(
2117
+ import { jsx as jsx21 } from "react/jsx-runtime";
2118
+ var BellIcon = (props) => /* @__PURE__ */ jsx21(
2071
2119
  "svg",
2072
2120
  {
2073
2121
  ...props,
2074
2122
  viewBox: "0 0 24 24",
2075
2123
  xmlns: "http://www.w3.org/2000/svg",
2076
- children: /* @__PURE__ */ jsx20(
2124
+ children: /* @__PURE__ */ jsx21(
2077
2125
  "path",
2078
2126
  {
2079
2127
  clipRule: "evenodd",
@@ -2086,14 +2134,14 @@ var BellIcon = (props) => /* @__PURE__ */ jsx20(
2086
2134
  );
2087
2135
 
2088
2136
  // src/components/Icon/icons/BoltIcon.tsx
2089
- import { jsx as jsx21 } from "react/jsx-runtime";
2090
- var BoltIcon = (props) => /* @__PURE__ */ jsx21(
2137
+ import { jsx as jsx22 } from "react/jsx-runtime";
2138
+ var BoltIcon = (props) => /* @__PURE__ */ jsx22(
2091
2139
  "svg",
2092
2140
  {
2093
2141
  ...props,
2094
2142
  viewBox: "0 0 24 24",
2095
2143
  xmlns: "http://www.w3.org/2000/svg",
2096
- children: /* @__PURE__ */ jsx21(
2144
+ children: /* @__PURE__ */ jsx22(
2097
2145
  "path",
2098
2146
  {
2099
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",
@@ -2104,14 +2152,14 @@ var BoltIcon = (props) => /* @__PURE__ */ jsx21(
2104
2152
  );
2105
2153
 
2106
2154
  // src/components/Icon/icons/CalendarIcon.tsx
2107
- import { jsx as jsx22 } from "react/jsx-runtime";
2108
- var CalendarIcon = (props) => /* @__PURE__ */ jsx22(
2155
+ import { jsx as jsx23 } from "react/jsx-runtime";
2156
+ var CalendarIcon = (props) => /* @__PURE__ */ jsx23(
2109
2157
  "svg",
2110
2158
  {
2111
2159
  ...props,
2112
2160
  viewBox: "0 0 24 24",
2113
2161
  xmlns: "http://www.w3.org/2000/svg",
2114
- children: /* @__PURE__ */ jsx22(
2162
+ children: /* @__PURE__ */ jsx23(
2115
2163
  "path",
2116
2164
  {
2117
2165
  clipRule: "evenodd",
@@ -2124,14 +2172,14 @@ var CalendarIcon = (props) => /* @__PURE__ */ jsx22(
2124
2172
  );
2125
2173
 
2126
2174
  // src/components/Icon/icons/CallToActionIcon.tsx
2127
- import { jsx as jsx23 } from "react/jsx-runtime";
2128
- var CallToActionIcon = (props) => /* @__PURE__ */ jsx23(
2175
+ import { jsx as jsx24 } from "react/jsx-runtime";
2176
+ var CallToActionIcon = (props) => /* @__PURE__ */ jsx24(
2129
2177
  "svg",
2130
2178
  {
2131
2179
  ...props,
2132
2180
  viewBox: "0 0 24 24",
2133
2181
  xmlns: "http://www.w3.org/2000/svg",
2134
- children: /* @__PURE__ */ jsx23(
2182
+ children: /* @__PURE__ */ jsx24(
2135
2183
  "path",
2136
2184
  {
2137
2185
  clipRule: "evenodd",
@@ -2144,14 +2192,14 @@ var CallToActionIcon = (props) => /* @__PURE__ */ jsx23(
2144
2192
  );
2145
2193
 
2146
2194
  // src/components/Icon/icons/CameraIcon.tsx
2147
- import { jsx as jsx24 } from "react/jsx-runtime";
2148
- var CameraIcon = (props) => /* @__PURE__ */ jsx24(
2195
+ import { jsx as jsx25 } from "react/jsx-runtime";
2196
+ var CameraIcon = (props) => /* @__PURE__ */ jsx25(
2149
2197
  "svg",
2150
2198
  {
2151
2199
  ...props,
2152
2200
  viewBox: "0 0 24 24",
2153
2201
  xmlns: "http://www.w3.org/2000/svg",
2154
- children: /* @__PURE__ */ jsx24(
2202
+ children: /* @__PURE__ */ jsx25(
2155
2203
  "path",
2156
2204
  {
2157
2205
  clipRule: "evenodd",
@@ -2164,14 +2212,14 @@ var CameraIcon = (props) => /* @__PURE__ */ jsx24(
2164
2212
  );
2165
2213
 
2166
2214
  // src/components/Icon/icons/CameraOffIcon.tsx
2167
- import { jsx as jsx25 } from "react/jsx-runtime";
2168
- var CameraOffIcon = (props) => /* @__PURE__ */ jsx25(
2215
+ import { jsx as jsx26 } from "react/jsx-runtime";
2216
+ var CameraOffIcon = (props) => /* @__PURE__ */ jsx26(
2169
2217
  "svg",
2170
2218
  {
2171
2219
  ...props,
2172
2220
  viewBox: "0 0 24 24",
2173
2221
  xmlns: "http://www.w3.org/2000/svg",
2174
- children: /* @__PURE__ */ jsx25(
2222
+ children: /* @__PURE__ */ jsx26(
2175
2223
  "path",
2176
2224
  {
2177
2225
  clipRule: "evenodd",
@@ -2184,14 +2232,14 @@ var CameraOffIcon = (props) => /* @__PURE__ */ jsx25(
2184
2232
  );
2185
2233
 
2186
2234
  // src/components/Icon/icons/CaretDownIcon.tsx
2187
- import { jsx as jsx26 } from "react/jsx-runtime";
2188
- var CaretDownIcon = (props) => /* @__PURE__ */ jsx26(
2235
+ import { jsx as jsx27 } from "react/jsx-runtime";
2236
+ var CaretDownIcon = (props) => /* @__PURE__ */ jsx27(
2189
2237
  "svg",
2190
2238
  {
2191
2239
  ...props,
2192
2240
  viewBox: "0 0 24 24",
2193
2241
  xmlns: "http://www.w3.org/2000/svg",
2194
- children: /* @__PURE__ */ jsx26(
2242
+ children: /* @__PURE__ */ jsx27(
2195
2243
  "path",
2196
2244
  {
2197
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",
@@ -2202,14 +2250,14 @@ var CaretDownIcon = (props) => /* @__PURE__ */ jsx26(
2202
2250
  );
2203
2251
 
2204
2252
  // src/components/Icon/icons/CaretDownStrongIcon.tsx
2205
- import { jsx as jsx27 } from "react/jsx-runtime";
2206
- var CaretDownStrongIcon = (props) => /* @__PURE__ */ jsx27(
2253
+ import { jsx as jsx28 } from "react/jsx-runtime";
2254
+ var CaretDownStrongIcon = (props) => /* @__PURE__ */ jsx28(
2207
2255
  "svg",
2208
2256
  {
2209
2257
  ...props,
2210
2258
  viewBox: "0 0 24 24",
2211
2259
  xmlns: "http://www.w3.org/2000/svg",
2212
- children: /* @__PURE__ */ jsx27(
2260
+ children: /* @__PURE__ */ jsx28(
2213
2261
  "path",
2214
2262
  {
2215
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",
@@ -2220,14 +2268,14 @@ var CaretDownStrongIcon = (props) => /* @__PURE__ */ jsx27(
2220
2268
  );
2221
2269
 
2222
2270
  // src/components/Icon/icons/CaretLeftIcon.tsx
2223
- import { jsx as jsx28 } from "react/jsx-runtime";
2224
- var CaretLeftIcon = (props) => /* @__PURE__ */ jsx28(
2271
+ import { jsx as jsx29 } from "react/jsx-runtime";
2272
+ var CaretLeftIcon = (props) => /* @__PURE__ */ jsx29(
2225
2273
  "svg",
2226
2274
  {
2227
2275
  ...props,
2228
2276
  viewBox: "0 0 24 24",
2229
2277
  xmlns: "http://www.w3.org/2000/svg",
2230
- children: /* @__PURE__ */ jsx28(
2278
+ children: /* @__PURE__ */ jsx29(
2231
2279
  "path",
2232
2280
  {
2233
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",
@@ -2238,14 +2286,14 @@ var CaretLeftIcon = (props) => /* @__PURE__ */ jsx28(
2238
2286
  );
2239
2287
 
2240
2288
  // src/components/Icon/icons/CaretLeftStrongIcon.tsx
2241
- import { jsx as jsx29 } from "react/jsx-runtime";
2242
- var CaretLeftStrongIcon = (props) => /* @__PURE__ */ jsx29(
2289
+ import { jsx as jsx30 } from "react/jsx-runtime";
2290
+ var CaretLeftStrongIcon = (props) => /* @__PURE__ */ jsx30(
2243
2291
  "svg",
2244
2292
  {
2245
2293
  ...props,
2246
2294
  viewBox: "0 0 24 24",
2247
2295
  xmlns: "http://www.w3.org/2000/svg",
2248
- children: /* @__PURE__ */ jsx29(
2296
+ children: /* @__PURE__ */ jsx30(
2249
2297
  "path",
2250
2298
  {
2251
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",
@@ -2256,14 +2304,14 @@ var CaretLeftStrongIcon = (props) => /* @__PURE__ */ jsx29(
2256
2304
  );
2257
2305
 
2258
2306
  // src/components/Icon/icons/CaretRightIcon.tsx
2259
- import { jsx as jsx30 } from "react/jsx-runtime";
2260
- var CaretRightIcon = (props) => /* @__PURE__ */ jsx30(
2307
+ import { jsx as jsx31 } from "react/jsx-runtime";
2308
+ var CaretRightIcon = (props) => /* @__PURE__ */ jsx31(
2261
2309
  "svg",
2262
2310
  {
2263
2311
  ...props,
2264
2312
  viewBox: "0 0 24 24",
2265
2313
  xmlns: "http://www.w3.org/2000/svg",
2266
- children: /* @__PURE__ */ jsx30(
2314
+ children: /* @__PURE__ */ jsx31(
2267
2315
  "path",
2268
2316
  {
2269
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",
@@ -2274,14 +2322,14 @@ var CaretRightIcon = (props) => /* @__PURE__ */ jsx30(
2274
2322
  );
2275
2323
 
2276
2324
  // src/components/Icon/icons/CaretRightStrongIcon.tsx
2277
- import { jsx as jsx31 } from "react/jsx-runtime";
2278
- var CaretRightStrongIcon = (props) => /* @__PURE__ */ jsx31(
2325
+ import { jsx as jsx32 } from "react/jsx-runtime";
2326
+ var CaretRightStrongIcon = (props) => /* @__PURE__ */ jsx32(
2279
2327
  "svg",
2280
2328
  {
2281
2329
  ...props,
2282
2330
  viewBox: "0 0 24 24",
2283
2331
  xmlns: "http://www.w3.org/2000/svg",
2284
- children: /* @__PURE__ */ jsx31(
2332
+ children: /* @__PURE__ */ jsx32(
2285
2333
  "path",
2286
2334
  {
2287
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",
@@ -2292,14 +2340,14 @@ var CaretRightStrongIcon = (props) => /* @__PURE__ */ jsx31(
2292
2340
  );
2293
2341
 
2294
2342
  // src/components/Icon/icons/CaretUpIcon.tsx
2295
- import { jsx as jsx32 } from "react/jsx-runtime";
2296
- var CaretUpIcon = (props) => /* @__PURE__ */ jsx32(
2343
+ import { jsx as jsx33 } from "react/jsx-runtime";
2344
+ var CaretUpIcon = (props) => /* @__PURE__ */ jsx33(
2297
2345
  "svg",
2298
2346
  {
2299
2347
  ...props,
2300
2348
  viewBox: "0 0 24 24",
2301
2349
  xmlns: "http://www.w3.org/2000/svg",
2302
- children: /* @__PURE__ */ jsx32(
2350
+ children: /* @__PURE__ */ jsx33(
2303
2351
  "path",
2304
2352
  {
2305
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",
@@ -2310,14 +2358,14 @@ var CaretUpIcon = (props) => /* @__PURE__ */ jsx32(
2310
2358
  );
2311
2359
 
2312
2360
  // src/components/Icon/icons/CaretUpStrongIcon.tsx
2313
- import { jsx as jsx33 } from "react/jsx-runtime";
2314
- var CaretUpStrongIcon = (props) => /* @__PURE__ */ jsx33(
2361
+ import { jsx as jsx34 } from "react/jsx-runtime";
2362
+ var CaretUpStrongIcon = (props) => /* @__PURE__ */ jsx34(
2315
2363
  "svg",
2316
2364
  {
2317
2365
  ...props,
2318
2366
  viewBox: "0 0 24 24",
2319
2367
  xmlns: "http://www.w3.org/2000/svg",
2320
- children: /* @__PURE__ */ jsx33(
2368
+ children: /* @__PURE__ */ jsx34(
2321
2369
  "path",
2322
2370
  {
2323
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",
@@ -2328,14 +2376,14 @@ var CaretUpStrongIcon = (props) => /* @__PURE__ */ jsx33(
2328
2376
  );
2329
2377
 
2330
2378
  // src/components/Icon/icons/ChannelIcon.tsx
2331
- import { jsx as jsx34 } from "react/jsx-runtime";
2332
- var ChannelIcon = (props) => /* @__PURE__ */ jsx34(
2379
+ import { jsx as jsx35 } from "react/jsx-runtime";
2380
+ var ChannelIcon = (props) => /* @__PURE__ */ jsx35(
2333
2381
  "svg",
2334
2382
  {
2335
2383
  ...props,
2336
2384
  viewBox: "0 0 24 24",
2337
2385
  xmlns: "http://www.w3.org/2000/svg",
2338
- children: /* @__PURE__ */ jsx34(
2386
+ children: /* @__PURE__ */ jsx35(
2339
2387
  "path",
2340
2388
  {
2341
2389
  clipRule: "evenodd",
@@ -2348,14 +2396,14 @@ var ChannelIcon = (props) => /* @__PURE__ */ jsx34(
2348
2396
  );
2349
2397
 
2350
2398
  // src/components/Icon/icons/ChaptersIcon.tsx
2351
- import { jsx as jsx35 } from "react/jsx-runtime";
2352
- var ChaptersIcon = (props) => /* @__PURE__ */ jsx35(
2399
+ import { jsx as jsx36 } from "react/jsx-runtime";
2400
+ var ChaptersIcon = (props) => /* @__PURE__ */ jsx36(
2353
2401
  "svg",
2354
2402
  {
2355
2403
  ...props,
2356
2404
  viewBox: "0 0 24 24",
2357
2405
  xmlns: "http://www.w3.org/2000/svg",
2358
- children: /* @__PURE__ */ jsx35(
2406
+ children: /* @__PURE__ */ jsx36(
2359
2407
  "path",
2360
2408
  {
2361
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",
@@ -2366,14 +2414,14 @@ var ChaptersIcon = (props) => /* @__PURE__ */ jsx35(
2366
2414
  );
2367
2415
 
2368
2416
  // src/components/Icon/icons/CheckmarkCircleIcon.tsx
2369
- import { jsx as jsx36 } from "react/jsx-runtime";
2370
- var CheckmarkCircleIcon = (props) => /* @__PURE__ */ jsx36(
2417
+ import { jsx as jsx37 } from "react/jsx-runtime";
2418
+ var CheckmarkCircleIcon = (props) => /* @__PURE__ */ jsx37(
2371
2419
  "svg",
2372
2420
  {
2373
2421
  ...props,
2374
2422
  viewBox: "0 0 24 24",
2375
2423
  xmlns: "http://www.w3.org/2000/svg",
2376
- children: /* @__PURE__ */ jsx36(
2424
+ children: /* @__PURE__ */ jsx37(
2377
2425
  "path",
2378
2426
  {
2379
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",
@@ -2384,14 +2432,14 @@ var CheckmarkCircleIcon = (props) => /* @__PURE__ */ jsx36(
2384
2432
  );
2385
2433
 
2386
2434
  // src/components/Icon/icons/CheckmarkCircleOutlineIcon.tsx
2387
- import { jsx as jsx37 } from "react/jsx-runtime";
2388
- var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ jsx37(
2435
+ import { jsx as jsx38 } from "react/jsx-runtime";
2436
+ var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ jsx38(
2389
2437
  "svg",
2390
2438
  {
2391
2439
  ...props,
2392
2440
  viewBox: "0 0 24 24",
2393
2441
  xmlns: "http://www.w3.org/2000/svg",
2394
- children: /* @__PURE__ */ jsx37(
2442
+ children: /* @__PURE__ */ jsx38(
2395
2443
  "path",
2396
2444
  {
2397
2445
  clipRule: "evenodd",
@@ -2404,14 +2452,14 @@ var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ jsx37(
2404
2452
  );
2405
2453
 
2406
2454
  // src/components/Icon/icons/CheckmarkIcon.tsx
2407
- import { jsx as jsx38 } from "react/jsx-runtime";
2408
- var CheckmarkIcon = (props) => /* @__PURE__ */ jsx38(
2455
+ import { jsx as jsx39 } from "react/jsx-runtime";
2456
+ var CheckmarkIcon = (props) => /* @__PURE__ */ jsx39(
2409
2457
  "svg",
2410
2458
  {
2411
2459
  ...props,
2412
2460
  viewBox: "0 0 24 24",
2413
2461
  xmlns: "http://www.w3.org/2000/svg",
2414
- children: /* @__PURE__ */ jsx38(
2462
+ children: /* @__PURE__ */ jsx39(
2415
2463
  "path",
2416
2464
  {
2417
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",
@@ -2422,14 +2470,14 @@ var CheckmarkIcon = (props) => /* @__PURE__ */ jsx38(
2422
2470
  );
2423
2471
 
2424
2472
  // src/components/Icon/icons/CheckmarkThreeQuatersCircleIcon.tsx
2425
- import { jsx as jsx39 } from "react/jsx-runtime";
2426
- var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ jsx39(
2473
+ import { jsx as jsx40 } from "react/jsx-runtime";
2474
+ var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ jsx40(
2427
2475
  "svg",
2428
2476
  {
2429
2477
  ...props,
2430
2478
  viewBox: "0 0 24 24",
2431
2479
  xmlns: "http://www.w3.org/2000/svg",
2432
- children: /* @__PURE__ */ jsx39(
2480
+ children: /* @__PURE__ */ jsx40(
2433
2481
  "path",
2434
2482
  {
2435
2483
  clipRule: "evenodd",
@@ -2442,14 +2490,14 @@ var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ jsx39(
2442
2490
  );
2443
2491
 
2444
2492
  // src/components/Icon/icons/CircleSlashedIcon.tsx
2445
- import { jsx as jsx40 } from "react/jsx-runtime";
2446
- var CircleSlashedIcon = (props) => /* @__PURE__ */ jsx40(
2493
+ import { jsx as jsx41 } from "react/jsx-runtime";
2494
+ var CircleSlashedIcon = (props) => /* @__PURE__ */ jsx41(
2447
2495
  "svg",
2448
2496
  {
2449
2497
  ...props,
2450
2498
  viewBox: "0 0 24 24",
2451
2499
  xmlns: "http://www.w3.org/2000/svg",
2452
- children: /* @__PURE__ */ jsx40(
2500
+ children: /* @__PURE__ */ jsx41(
2453
2501
  "path",
2454
2502
  {
2455
2503
  clipRule: "evenodd",
@@ -2462,14 +2510,14 @@ var CircleSlashedIcon = (props) => /* @__PURE__ */ jsx40(
2462
2510
  );
2463
2511
 
2464
2512
  // src/components/Icon/icons/CloseIcon.tsx
2465
- import { jsx as jsx41 } from "react/jsx-runtime";
2466
- var CloseIcon = (props) => /* @__PURE__ */ jsx41(
2513
+ import { jsx as jsx42 } from "react/jsx-runtime";
2514
+ var CloseIcon = (props) => /* @__PURE__ */ jsx42(
2467
2515
  "svg",
2468
2516
  {
2469
2517
  ...props,
2470
2518
  viewBox: "0 0 24 24",
2471
2519
  xmlns: "http://www.w3.org/2000/svg",
2472
- children: /* @__PURE__ */ jsx41(
2520
+ children: /* @__PURE__ */ jsx42(
2473
2521
  "path",
2474
2522
  {
2475
2523
  clipRule: "evenodd",
@@ -2482,14 +2530,14 @@ var CloseIcon = (props) => /* @__PURE__ */ jsx41(
2482
2530
  );
2483
2531
 
2484
2532
  // src/components/Icon/icons/CloseOctagonIcon.tsx
2485
- import { jsx as jsx42 } from "react/jsx-runtime";
2486
- var CloseOctagonIcon = (props) => /* @__PURE__ */ jsx42(
2533
+ import { jsx as jsx43 } from "react/jsx-runtime";
2534
+ var CloseOctagonIcon = (props) => /* @__PURE__ */ jsx43(
2487
2535
  "svg",
2488
2536
  {
2489
2537
  ...props,
2490
2538
  viewBox: "0 0 24 24",
2491
2539
  xmlns: "http://www.w3.org/2000/svg",
2492
- children: /* @__PURE__ */ jsx42(
2540
+ children: /* @__PURE__ */ jsx43(
2493
2541
  "path",
2494
2542
  {
2495
2543
  clipRule: "evenodd",
@@ -2502,14 +2550,14 @@ var CloseOctagonIcon = (props) => /* @__PURE__ */ jsx42(
2502
2550
  );
2503
2551
 
2504
2552
  // src/components/Icon/icons/ClosedCaptionsIcon.tsx
2505
- import { jsx as jsx43 } from "react/jsx-runtime";
2506
- var ClosedCaptionsIcon = (props) => /* @__PURE__ */ jsx43(
2553
+ import { jsx as jsx44 } from "react/jsx-runtime";
2554
+ var ClosedCaptionsIcon = (props) => /* @__PURE__ */ jsx44(
2507
2555
  "svg",
2508
2556
  {
2509
2557
  ...props,
2510
2558
  viewBox: "0 0 24 24",
2511
2559
  xmlns: "http://www.w3.org/2000/svg",
2512
- children: /* @__PURE__ */ jsx43(
2560
+ children: /* @__PURE__ */ jsx44(
2513
2561
  "path",
2514
2562
  {
2515
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",
@@ -2520,14 +2568,14 @@ var ClosedCaptionsIcon = (props) => /* @__PURE__ */ jsx43(
2520
2568
  );
2521
2569
 
2522
2570
  // src/components/Icon/icons/CollapseDiagonalIcon.tsx
2523
- import { jsx as jsx44 } from "react/jsx-runtime";
2524
- var CollapseDiagonalIcon = (props) => /* @__PURE__ */ jsx44(
2571
+ import { jsx as jsx45 } from "react/jsx-runtime";
2572
+ var CollapseDiagonalIcon = (props) => /* @__PURE__ */ jsx45(
2525
2573
  "svg",
2526
2574
  {
2527
2575
  ...props,
2528
2576
  viewBox: "0 0 24 24",
2529
2577
  xmlns: "http://www.w3.org/2000/svg",
2530
- children: /* @__PURE__ */ jsx44(
2578
+ children: /* @__PURE__ */ jsx45(
2531
2579
  "path",
2532
2580
  {
2533
2581
  clipRule: "evenodd",
@@ -2540,14 +2588,14 @@ var CollapseDiagonalIcon = (props) => /* @__PURE__ */ jsx44(
2540
2588
  );
2541
2589
 
2542
2590
  // src/components/Icon/icons/CommentsIcon.tsx
2543
- import { jsx as jsx45 } from "react/jsx-runtime";
2544
- var CommentsIcon = (props) => /* @__PURE__ */ jsx45(
2591
+ import { jsx as jsx46 } from "react/jsx-runtime";
2592
+ var CommentsIcon = (props) => /* @__PURE__ */ jsx46(
2545
2593
  "svg",
2546
2594
  {
2547
2595
  ...props,
2548
2596
  viewBox: "0 0 24 24",
2549
2597
  xmlns: "http://www.w3.org/2000/svg",
2550
- children: /* @__PURE__ */ jsx45(
2598
+ children: /* @__PURE__ */ jsx46(
2551
2599
  "path",
2552
2600
  {
2553
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",
@@ -2558,14 +2606,14 @@ var CommentsIcon = (props) => /* @__PURE__ */ jsx45(
2558
2606
  );
2559
2607
 
2560
2608
  // src/components/Icon/icons/CompanyIcon.tsx
2561
- import { jsx as jsx46 } from "react/jsx-runtime";
2562
- var CompanyIcon = (props) => /* @__PURE__ */ jsx46(
2609
+ import { jsx as jsx47 } from "react/jsx-runtime";
2610
+ var CompanyIcon = (props) => /* @__PURE__ */ jsx47(
2563
2611
  "svg",
2564
2612
  {
2565
2613
  ...props,
2566
2614
  viewBox: "0 0 24 24",
2567
2615
  xmlns: "http://www.w3.org/2000/svg",
2568
- children: /* @__PURE__ */ jsx46(
2616
+ children: /* @__PURE__ */ jsx47(
2569
2617
  "path",
2570
2618
  {
2571
2619
  clipRule: "evenodd",
@@ -2578,14 +2626,14 @@ var CompanyIcon = (props) => /* @__PURE__ */ jsx46(
2578
2626
  );
2579
2627
 
2580
2628
  // src/components/Icon/icons/CompareIcon.tsx
2581
- import { jsx as jsx47 } from "react/jsx-runtime";
2582
- var CompareIcon = (props) => /* @__PURE__ */ jsx47(
2629
+ import { jsx as jsx48 } from "react/jsx-runtime";
2630
+ var CompareIcon = (props) => /* @__PURE__ */ jsx48(
2583
2631
  "svg",
2584
2632
  {
2585
2633
  ...props,
2586
2634
  viewBox: "0 0 24 24",
2587
2635
  xmlns: "http://www.w3.org/2000/svg",
2588
- children: /* @__PURE__ */ jsx47(
2636
+ children: /* @__PURE__ */ jsx48(
2589
2637
  "path",
2590
2638
  {
2591
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",
@@ -2596,14 +2644,14 @@ var CompareIcon = (props) => /* @__PURE__ */ jsx47(
2596
2644
  );
2597
2645
 
2598
2646
  // src/components/Icon/icons/ContentLibraryIcon.tsx
2599
- import { jsx as jsx48 } from "react/jsx-runtime";
2600
- var ContentLibraryIcon = (props) => /* @__PURE__ */ jsx48(
2647
+ import { jsx as jsx49 } from "react/jsx-runtime";
2648
+ var ContentLibraryIcon = (props) => /* @__PURE__ */ jsx49(
2601
2649
  "svg",
2602
2650
  {
2603
2651
  ...props,
2604
2652
  viewBox: "0 0 24 24",
2605
2653
  xmlns: "http://www.w3.org/2000/svg",
2606
- children: /* @__PURE__ */ jsx48(
2654
+ children: /* @__PURE__ */ jsx49(
2607
2655
  "path",
2608
2656
  {
2609
2657
  clipRule: "evenodd",
@@ -2616,14 +2664,14 @@ var ContentLibraryIcon = (props) => /* @__PURE__ */ jsx48(
2616
2664
  );
2617
2665
 
2618
2666
  // src/components/Icon/icons/ControlsIcon.tsx
2619
- import { jsx as jsx49 } from "react/jsx-runtime";
2620
- var ControlsIcon = (props) => /* @__PURE__ */ jsx49(
2667
+ import { jsx as jsx50 } from "react/jsx-runtime";
2668
+ var ControlsIcon = (props) => /* @__PURE__ */ jsx50(
2621
2669
  "svg",
2622
2670
  {
2623
2671
  ...props,
2624
2672
  viewBox: "0 0 24 24",
2625
2673
  xmlns: "http://www.w3.org/2000/svg",
2626
- children: /* @__PURE__ */ jsx49(
2674
+ children: /* @__PURE__ */ jsx50(
2627
2675
  "path",
2628
2676
  {
2629
2677
  clipRule: "evenodd",
@@ -2636,14 +2684,14 @@ var ControlsIcon = (props) => /* @__PURE__ */ jsx49(
2636
2684
  );
2637
2685
 
2638
2686
  // src/components/Icon/icons/CursorClickIcon.tsx
2639
- import { jsx as jsx50 } from "react/jsx-runtime";
2640
- var CursorClickIcon = (props) => /* @__PURE__ */ jsx50(
2687
+ import { jsx as jsx51 } from "react/jsx-runtime";
2688
+ var CursorClickIcon = (props) => /* @__PURE__ */ jsx51(
2641
2689
  "svg",
2642
2690
  {
2643
2691
  ...props,
2644
2692
  viewBox: "0 0 24 24",
2645
2693
  xmlns: "http://www.w3.org/2000/svg",
2646
- children: /* @__PURE__ */ jsx50(
2694
+ children: /* @__PURE__ */ jsx51(
2647
2695
  "path",
2648
2696
  {
2649
2697
  clipRule: "evenodd",
@@ -2656,14 +2704,14 @@ var CursorClickIcon = (props) => /* @__PURE__ */ jsx50(
2656
2704
  );
2657
2705
 
2658
2706
  // src/components/Icon/icons/DeleteIcon.tsx
2659
- import { jsx as jsx51 } from "react/jsx-runtime";
2660
- var DeleteIcon = (props) => /* @__PURE__ */ jsx51(
2707
+ import { jsx as jsx52 } from "react/jsx-runtime";
2708
+ var DeleteIcon = (props) => /* @__PURE__ */ jsx52(
2661
2709
  "svg",
2662
2710
  {
2663
2711
  ...props,
2664
2712
  viewBox: "0 0 24 24",
2665
2713
  xmlns: "http://www.w3.org/2000/svg",
2666
- children: /* @__PURE__ */ jsx51(
2714
+ children: /* @__PURE__ */ jsx52(
2667
2715
  "path",
2668
2716
  {
2669
2717
  clipRule: "evenodd",
@@ -2676,14 +2724,14 @@ var DeleteIcon = (props) => /* @__PURE__ */ jsx51(
2676
2724
  );
2677
2725
 
2678
2726
  // src/components/Icon/icons/DesktopIcon.tsx
2679
- import { jsx as jsx52 } from "react/jsx-runtime";
2680
- var DesktopIcon = (props) => /* @__PURE__ */ jsx52(
2727
+ import { jsx as jsx53 } from "react/jsx-runtime";
2728
+ var DesktopIcon = (props) => /* @__PURE__ */ jsx53(
2681
2729
  "svg",
2682
2730
  {
2683
2731
  ...props,
2684
2732
  viewBox: "0 0 24 24",
2685
2733
  xmlns: "http://www.w3.org/2000/svg",
2686
- children: /* @__PURE__ */ jsx52(
2734
+ children: /* @__PURE__ */ jsx53(
2687
2735
  "path",
2688
2736
  {
2689
2737
  clipRule: "evenodd",
@@ -2696,14 +2744,14 @@ var DesktopIcon = (props) => /* @__PURE__ */ jsx52(
2696
2744
  );
2697
2745
 
2698
2746
  // src/components/Icon/icons/DotsHorizontalIcon.tsx
2699
- import { jsx as jsx53 } from "react/jsx-runtime";
2700
- var DotsHorizontalIcon = (props) => /* @__PURE__ */ jsx53(
2747
+ import { jsx as jsx54 } from "react/jsx-runtime";
2748
+ var DotsHorizontalIcon = (props) => /* @__PURE__ */ jsx54(
2701
2749
  "svg",
2702
2750
  {
2703
2751
  ...props,
2704
2752
  viewBox: "0 0 24 24",
2705
2753
  xmlns: "http://www.w3.org/2000/svg",
2706
- children: /* @__PURE__ */ jsx53(
2754
+ children: /* @__PURE__ */ jsx54(
2707
2755
  "path",
2708
2756
  {
2709
2757
  clipRule: "evenodd",
@@ -2716,14 +2764,14 @@ var DotsHorizontalIcon = (props) => /* @__PURE__ */ jsx53(
2716
2764
  );
2717
2765
 
2718
2766
  // src/components/Icon/icons/DownloadIcon.tsx
2719
- import { jsx as jsx54 } from "react/jsx-runtime";
2720
- var DownloadIcon = (props) => /* @__PURE__ */ jsx54(
2767
+ import { jsx as jsx55 } from "react/jsx-runtime";
2768
+ var DownloadIcon = (props) => /* @__PURE__ */ jsx55(
2721
2769
  "svg",
2722
2770
  {
2723
2771
  ...props,
2724
2772
  viewBox: "0 0 24 24",
2725
2773
  xmlns: "http://www.w3.org/2000/svg",
2726
- children: /* @__PURE__ */ jsx54(
2774
+ children: /* @__PURE__ */ jsx55(
2727
2775
  "path",
2728
2776
  {
2729
2777
  clipRule: "evenodd",
@@ -2736,14 +2784,14 @@ var DownloadIcon = (props) => /* @__PURE__ */ jsx54(
2736
2784
  );
2737
2785
 
2738
2786
  // src/components/Icon/icons/EditTranscriptIcon.tsx
2739
- import { jsx as jsx55 } from "react/jsx-runtime";
2740
- var EditTranscriptIcon = (props) => /* @__PURE__ */ jsx55(
2787
+ import { jsx as jsx56 } from "react/jsx-runtime";
2788
+ var EditTranscriptIcon = (props) => /* @__PURE__ */ jsx56(
2741
2789
  "svg",
2742
2790
  {
2743
2791
  ...props,
2744
2792
  viewBox: "0 0 24 24",
2745
2793
  xmlns: "http://www.w3.org/2000/svg",
2746
- children: /* @__PURE__ */ jsx55(
2794
+ children: /* @__PURE__ */ jsx56(
2747
2795
  "path",
2748
2796
  {
2749
2797
  clipRule: "evenodd",
@@ -2756,14 +2804,14 @@ var EditTranscriptIcon = (props) => /* @__PURE__ */ jsx55(
2756
2804
  );
2757
2805
 
2758
2806
  // src/components/Icon/icons/EllipsesVerticalIcon.tsx
2759
- import { jsx as jsx56 } from "react/jsx-runtime";
2760
- var EllipsesVerticalIcon = (props) => /* @__PURE__ */ jsx56(
2807
+ import { jsx as jsx57 } from "react/jsx-runtime";
2808
+ var EllipsesVerticalIcon = (props) => /* @__PURE__ */ jsx57(
2761
2809
  "svg",
2762
2810
  {
2763
2811
  ...props,
2764
2812
  viewBox: "0 0 24 24",
2765
2813
  xmlns: "http://www.w3.org/2000/svg",
2766
- children: /* @__PURE__ */ jsx56(
2814
+ children: /* @__PURE__ */ jsx57(
2767
2815
  "path",
2768
2816
  {
2769
2817
  clipRule: "evenodd",
@@ -2776,14 +2824,14 @@ var EllipsesVerticalIcon = (props) => /* @__PURE__ */ jsx56(
2776
2824
  );
2777
2825
 
2778
2826
  // src/components/Icon/icons/EmbedIcon.tsx
2779
- import { jsx as jsx57 } from "react/jsx-runtime";
2780
- var EmbedIcon = (props) => /* @__PURE__ */ jsx57(
2827
+ import { jsx as jsx58 } from "react/jsx-runtime";
2828
+ var EmbedIcon = (props) => /* @__PURE__ */ jsx58(
2781
2829
  "svg",
2782
2830
  {
2783
2831
  ...props,
2784
2832
  viewBox: "0 0 24 24",
2785
2833
  xmlns: "http://www.w3.org/2000/svg",
2786
- children: /* @__PURE__ */ jsx57(
2834
+ children: /* @__PURE__ */ jsx58(
2787
2835
  "path",
2788
2836
  {
2789
2837
  clipRule: "evenodd",
@@ -2796,14 +2844,14 @@ var EmbedIcon = (props) => /* @__PURE__ */ jsx57(
2796
2844
  );
2797
2845
 
2798
2846
  // src/components/Icon/icons/EnvelopeIcon.tsx
2799
- import { jsx as jsx58 } from "react/jsx-runtime";
2800
- var EnvelopeIcon = (props) => /* @__PURE__ */ jsx58(
2847
+ import { jsx as jsx59 } from "react/jsx-runtime";
2848
+ var EnvelopeIcon = (props) => /* @__PURE__ */ jsx59(
2801
2849
  "svg",
2802
2850
  {
2803
2851
  ...props,
2804
2852
  viewBox: "0 0 24 24",
2805
2853
  xmlns: "http://www.w3.org/2000/svg",
2806
- children: /* @__PURE__ */ jsx58(
2854
+ children: /* @__PURE__ */ jsx59(
2807
2855
  "path",
2808
2856
  {
2809
2857
  clipRule: "evenodd",
@@ -2816,14 +2864,14 @@ var EnvelopeIcon = (props) => /* @__PURE__ */ jsx58(
2816
2864
  );
2817
2865
 
2818
2866
  // src/components/Icon/icons/ErrorIcon.tsx
2819
- import { jsx as jsx59 } from "react/jsx-runtime";
2820
- var ErrorIcon = (props) => /* @__PURE__ */ jsx59(
2867
+ import { jsx as jsx60 } from "react/jsx-runtime";
2868
+ var ErrorIcon = (props) => /* @__PURE__ */ jsx60(
2821
2869
  "svg",
2822
2870
  {
2823
2871
  ...props,
2824
2872
  viewBox: "0 0 24 24",
2825
2873
  xmlns: "http://www.w3.org/2000/svg",
2826
- children: /* @__PURE__ */ jsx59(
2874
+ children: /* @__PURE__ */ jsx60(
2827
2875
  "path",
2828
2876
  {
2829
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",
@@ -2834,14 +2882,14 @@ var ErrorIcon = (props) => /* @__PURE__ */ jsx59(
2834
2882
  );
2835
2883
 
2836
2884
  // src/components/Icon/icons/ExpandDiagonalIcon.tsx
2837
- import { jsx as jsx60 } from "react/jsx-runtime";
2838
- var ExpandDiagonalIcon = (props) => /* @__PURE__ */ jsx60(
2885
+ import { jsx as jsx61 } from "react/jsx-runtime";
2886
+ var ExpandDiagonalIcon = (props) => /* @__PURE__ */ jsx61(
2839
2887
  "svg",
2840
2888
  {
2841
2889
  ...props,
2842
2890
  viewBox: "0 0 24 24",
2843
2891
  xmlns: "http://www.w3.org/2000/svg",
2844
- children: /* @__PURE__ */ jsx60(
2892
+ children: /* @__PURE__ */ jsx61(
2845
2893
  "path",
2846
2894
  {
2847
2895
  clipRule: "evenodd",
@@ -2854,14 +2902,14 @@ var ExpandDiagonalIcon = (props) => /* @__PURE__ */ jsx60(
2854
2902
  );
2855
2903
 
2856
2904
  // src/components/Icon/icons/ExpandIcon.tsx
2857
- import { jsx as jsx61 } from "react/jsx-runtime";
2858
- var ExpandIcon = (props) => /* @__PURE__ */ jsx61(
2905
+ import { jsx as jsx62 } from "react/jsx-runtime";
2906
+ var ExpandIcon = (props) => /* @__PURE__ */ jsx62(
2859
2907
  "svg",
2860
2908
  {
2861
2909
  ...props,
2862
2910
  viewBox: "0 0 24 24",
2863
2911
  xmlns: "http://www.w3.org/2000/svg",
2864
- children: /* @__PURE__ */ jsx61(
2912
+ children: /* @__PURE__ */ jsx62(
2865
2913
  "path",
2866
2914
  {
2867
2915
  clipRule: "evenodd",
@@ -2874,14 +2922,14 @@ var ExpandIcon = (props) => /* @__PURE__ */ jsx61(
2874
2922
  );
2875
2923
 
2876
2924
  // src/components/Icon/icons/FavoriteIcon.tsx
2877
- import { jsx as jsx62 } from "react/jsx-runtime";
2878
- var FavoriteIcon = (props) => /* @__PURE__ */ jsx62(
2925
+ import { jsx as jsx63 } from "react/jsx-runtime";
2926
+ var FavoriteIcon = (props) => /* @__PURE__ */ jsx63(
2879
2927
  "svg",
2880
2928
  {
2881
2929
  ...props,
2882
2930
  viewBox: "0 0 24 24",
2883
2931
  xmlns: "http://www.w3.org/2000/svg",
2884
- children: /* @__PURE__ */ jsx62(
2932
+ children: /* @__PURE__ */ jsx63(
2885
2933
  "path",
2886
2934
  {
2887
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",
@@ -2892,14 +2940,14 @@ var FavoriteIcon = (props) => /* @__PURE__ */ jsx62(
2892
2940
  );
2893
2941
 
2894
2942
  // src/components/Icon/icons/FavoriteOutlineIcon.tsx
2895
- import { jsx as jsx63 } from "react/jsx-runtime";
2896
- var FavoriteOutlineIcon = (props) => /* @__PURE__ */ jsx63(
2943
+ import { jsx as jsx64 } from "react/jsx-runtime";
2944
+ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ jsx64(
2897
2945
  "svg",
2898
2946
  {
2899
2947
  ...props,
2900
2948
  viewBox: "0 0 24 24",
2901
2949
  xmlns: "http://www.w3.org/2000/svg",
2902
- children: /* @__PURE__ */ jsx63(
2950
+ children: /* @__PURE__ */ jsx64(
2903
2951
  "path",
2904
2952
  {
2905
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",
@@ -2913,14 +2961,14 @@ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ jsx63(
2913
2961
  );
2914
2962
 
2915
2963
  // src/components/Icon/icons/FileTreeIcon.tsx
2916
- import { jsx as jsx64 } from "react/jsx-runtime";
2917
- var FileTreeIcon = (props) => /* @__PURE__ */ jsx64(
2964
+ import { jsx as jsx65 } from "react/jsx-runtime";
2965
+ var FileTreeIcon = (props) => /* @__PURE__ */ jsx65(
2918
2966
  "svg",
2919
2967
  {
2920
2968
  ...props,
2921
2969
  viewBox: "0 0 24 24",
2922
2970
  xmlns: "http://www.w3.org/2000/svg",
2923
- children: /* @__PURE__ */ jsx64(
2971
+ children: /* @__PURE__ */ jsx65(
2924
2972
  "path",
2925
2973
  {
2926
2974
  clipRule: "evenodd",
@@ -2933,14 +2981,14 @@ var FileTreeIcon = (props) => /* @__PURE__ */ jsx64(
2933
2981
  );
2934
2982
 
2935
2983
  // src/components/Icon/icons/FilterIcon.tsx
2936
- import { jsx as jsx65 } from "react/jsx-runtime";
2937
- var FilterIcon = (props) => /* @__PURE__ */ jsx65(
2984
+ import { jsx as jsx66 } from "react/jsx-runtime";
2985
+ var FilterIcon = (props) => /* @__PURE__ */ jsx66(
2938
2986
  "svg",
2939
2987
  {
2940
2988
  ...props,
2941
2989
  viewBox: "0 0 24 24",
2942
2990
  xmlns: "http://www.w3.org/2000/svg",
2943
- children: /* @__PURE__ */ jsx65(
2991
+ children: /* @__PURE__ */ jsx66(
2944
2992
  "path",
2945
2993
  {
2946
2994
  clipRule: "evenodd",
@@ -2953,14 +3001,14 @@ var FilterIcon = (props) => /* @__PURE__ */ jsx65(
2953
3001
  );
2954
3002
 
2955
3003
  // src/components/Icon/icons/FontsIcon.tsx
2956
- import { jsx as jsx66 } from "react/jsx-runtime";
2957
- var FontsIcon = (props) => /* @__PURE__ */ jsx66(
3004
+ import { jsx as jsx67 } from "react/jsx-runtime";
3005
+ var FontsIcon = (props) => /* @__PURE__ */ jsx67(
2958
3006
  "svg",
2959
3007
  {
2960
3008
  ...props,
2961
3009
  viewBox: "0 0 24 24",
2962
3010
  xmlns: "http://www.w3.org/2000/svg",
2963
- children: /* @__PURE__ */ jsx66(
3011
+ children: /* @__PURE__ */ jsx67(
2964
3012
  "path",
2965
3013
  {
2966
3014
  clipRule: "evenodd",
@@ -2973,14 +3021,14 @@ var FontsIcon = (props) => /* @__PURE__ */ jsx66(
2973
3021
  );
2974
3022
 
2975
3023
  // src/components/Icon/icons/FullScreenIcon.tsx
2976
- import { jsx as jsx67 } from "react/jsx-runtime";
2977
- var FullScreenIcon = (props) => /* @__PURE__ */ jsx67(
3024
+ import { jsx as jsx68 } from "react/jsx-runtime";
3025
+ var FullScreenIcon = (props) => /* @__PURE__ */ jsx68(
2978
3026
  "svg",
2979
3027
  {
2980
3028
  ...props,
2981
3029
  viewBox: "0 0 24 24",
2982
3030
  xmlns: "http://www.w3.org/2000/svg",
2983
- children: /* @__PURE__ */ jsx67(
3031
+ children: /* @__PURE__ */ jsx68(
2984
3032
  "path",
2985
3033
  {
2986
3034
  clipRule: "evenodd",
@@ -2993,14 +3041,14 @@ var FullScreenIcon = (props) => /* @__PURE__ */ jsx67(
2993
3041
  );
2994
3042
 
2995
3043
  // src/components/Icon/icons/GearIcon.tsx
2996
- import { jsx as jsx68 } from "react/jsx-runtime";
2997
- var GearIcon = (props) => /* @__PURE__ */ jsx68(
3044
+ import { jsx as jsx69 } from "react/jsx-runtime";
3045
+ var GearIcon = (props) => /* @__PURE__ */ jsx69(
2998
3046
  "svg",
2999
3047
  {
3000
3048
  ...props,
3001
3049
  viewBox: "0 0 24 24",
3002
3050
  xmlns: "http://www.w3.org/2000/svg",
3003
- children: /* @__PURE__ */ jsx68(
3051
+ children: /* @__PURE__ */ jsx69(
3004
3052
  "path",
3005
3053
  {
3006
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",
@@ -3011,14 +3059,14 @@ var GearIcon = (props) => /* @__PURE__ */ jsx68(
3011
3059
  );
3012
3060
 
3013
3061
  // src/components/Icon/icons/GettingStartedIcon.tsx
3014
- import { jsx as jsx69 } from "react/jsx-runtime";
3015
- var GettingStartedIcon = (props) => /* @__PURE__ */ jsx69(
3062
+ import { jsx as jsx70 } from "react/jsx-runtime";
3063
+ var GettingStartedIcon = (props) => /* @__PURE__ */ jsx70(
3016
3064
  "svg",
3017
3065
  {
3018
3066
  ...props,
3019
3067
  viewBox: "0 0 24 24",
3020
3068
  xmlns: "http://www.w3.org/2000/svg",
3021
- children: /* @__PURE__ */ jsx69(
3069
+ children: /* @__PURE__ */ jsx70(
3022
3070
  "path",
3023
3071
  {
3024
3072
  clipRule: "evenodd",
@@ -3031,14 +3079,14 @@ var GettingStartedIcon = (props) => /* @__PURE__ */ jsx69(
3031
3079
  );
3032
3080
 
3033
3081
  // src/components/Icon/icons/GridIcon.tsx
3034
- import { jsx as jsx70 } from "react/jsx-runtime";
3035
- var GridIcon = (props) => /* @__PURE__ */ jsx70(
3082
+ import { jsx as jsx71 } from "react/jsx-runtime";
3083
+ var GridIcon = (props) => /* @__PURE__ */ jsx71(
3036
3084
  "svg",
3037
3085
  {
3038
3086
  ...props,
3039
3087
  viewBox: "0 0 24 24",
3040
3088
  xmlns: "http://www.w3.org/2000/svg",
3041
- children: /* @__PURE__ */ jsx70(
3089
+ children: /* @__PURE__ */ jsx71(
3042
3090
  "path",
3043
3091
  {
3044
3092
  clipRule: "evenodd",
@@ -3051,14 +3099,14 @@ var GridIcon = (props) => /* @__PURE__ */ jsx70(
3051
3099
  );
3052
3100
 
3053
3101
  // src/components/Icon/icons/GripDotsVerticalIcon.tsx
3054
- import { jsx as jsx71 } from "react/jsx-runtime";
3055
- var GripDotsVerticalIcon = (props) => /* @__PURE__ */ jsx71(
3102
+ import { jsx as jsx72 } from "react/jsx-runtime";
3103
+ var GripDotsVerticalIcon = (props) => /* @__PURE__ */ jsx72(
3056
3104
  "svg",
3057
3105
  {
3058
3106
  ...props,
3059
3107
  viewBox: "0 0 24 24",
3060
3108
  xmlns: "http://www.w3.org/2000/svg",
3061
- children: /* @__PURE__ */ jsx71(
3109
+ children: /* @__PURE__ */ jsx72(
3062
3110
  "path",
3063
3111
  {
3064
3112
  clipRule: "evenodd",
@@ -3071,14 +3119,14 @@ var GripDotsVerticalIcon = (props) => /* @__PURE__ */ jsx71(
3071
3119
  );
3072
3120
 
3073
3121
  // src/components/Icon/icons/HelpCenterIcon.tsx
3074
- import { jsx as jsx72 } from "react/jsx-runtime";
3075
- var HelpCenterIcon = (props) => /* @__PURE__ */ jsx72(
3122
+ import { jsx as jsx73 } from "react/jsx-runtime";
3123
+ var HelpCenterIcon = (props) => /* @__PURE__ */ jsx73(
3076
3124
  "svg",
3077
3125
  {
3078
3126
  ...props,
3079
3127
  viewBox: "0 0 24 24",
3080
3128
  xmlns: "http://www.w3.org/2000/svg",
3081
- children: /* @__PURE__ */ jsx72(
3129
+ children: /* @__PURE__ */ jsx73(
3082
3130
  "path",
3083
3131
  {
3084
3132
  clipRule: "evenodd",
@@ -3091,14 +3139,14 @@ var HelpCenterIcon = (props) => /* @__PURE__ */ jsx72(
3091
3139
  );
3092
3140
 
3093
3141
  // src/components/Icon/icons/HideIcon.tsx
3094
- import { jsx as jsx73 } from "react/jsx-runtime";
3095
- var HideIcon = (props) => /* @__PURE__ */ jsx73(
3142
+ import { jsx as jsx74 } from "react/jsx-runtime";
3143
+ var HideIcon = (props) => /* @__PURE__ */ jsx74(
3096
3144
  "svg",
3097
3145
  {
3098
3146
  ...props,
3099
3147
  viewBox: "0 0 24 24",
3100
3148
  xmlns: "http://www.w3.org/2000/svg",
3101
- children: /* @__PURE__ */ jsx73(
3149
+ children: /* @__PURE__ */ jsx74(
3102
3150
  "path",
3103
3151
  {
3104
3152
  clipRule: "evenodd",
@@ -3111,14 +3159,14 @@ var HideIcon = (props) => /* @__PURE__ */ jsx73(
3111
3159
  );
3112
3160
 
3113
3161
  // src/components/Icon/icons/HomeIcon.tsx
3114
- import { jsx as jsx74 } from "react/jsx-runtime";
3115
- var HomeIcon = (props) => /* @__PURE__ */ jsx74(
3162
+ import { jsx as jsx75 } from "react/jsx-runtime";
3163
+ var HomeIcon = (props) => /* @__PURE__ */ jsx75(
3116
3164
  "svg",
3117
3165
  {
3118
3166
  ...props,
3119
3167
  viewBox: "0 0 24 24",
3120
3168
  xmlns: "http://www.w3.org/2000/svg",
3121
- children: /* @__PURE__ */ jsx74(
3169
+ children: /* @__PURE__ */ jsx75(
3122
3170
  "path",
3123
3171
  {
3124
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",
@@ -3129,14 +3177,14 @@ var HomeIcon = (props) => /* @__PURE__ */ jsx74(
3129
3177
  );
3130
3178
 
3131
3179
  // src/components/Icon/icons/HourglassIcon.tsx
3132
- import { jsx as jsx75 } from "react/jsx-runtime";
3133
- var HourglassIcon = (props) => /* @__PURE__ */ jsx75(
3180
+ import { jsx as jsx76 } from "react/jsx-runtime";
3181
+ var HourglassIcon = (props) => /* @__PURE__ */ jsx76(
3134
3182
  "svg",
3135
3183
  {
3136
3184
  ...props,
3137
3185
  viewBox: "0 0 24 24",
3138
3186
  xmlns: "http://www.w3.org/2000/svg",
3139
- children: /* @__PURE__ */ jsx75(
3187
+ children: /* @__PURE__ */ jsx76(
3140
3188
  "path",
3141
3189
  {
3142
3190
  clipRule: "evenodd",
@@ -3149,14 +3197,14 @@ var HourglassIcon = (props) => /* @__PURE__ */ jsx75(
3149
3197
  );
3150
3198
 
3151
3199
  // src/components/Icon/icons/InfoIcon.tsx
3152
- import { jsx as jsx76 } from "react/jsx-runtime";
3153
- var InfoIcon = (props) => /* @__PURE__ */ jsx76(
3200
+ import { jsx as jsx77 } from "react/jsx-runtime";
3201
+ var InfoIcon = (props) => /* @__PURE__ */ jsx77(
3154
3202
  "svg",
3155
3203
  {
3156
3204
  ...props,
3157
3205
  viewBox: "0 0 24 24",
3158
3206
  xmlns: "http://www.w3.org/2000/svg",
3159
- children: /* @__PURE__ */ jsx76(
3207
+ children: /* @__PURE__ */ jsx77(
3160
3208
  "path",
3161
3209
  {
3162
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",
@@ -3167,14 +3215,14 @@ var InfoIcon = (props) => /* @__PURE__ */ jsx76(
3167
3215
  );
3168
3216
 
3169
3217
  // src/components/Icon/icons/IntegrationsIcon.tsx
3170
- import { jsx as jsx77 } from "react/jsx-runtime";
3171
- var IntegrationsIcon = (props) => /* @__PURE__ */ jsx77(
3218
+ import { jsx as jsx78 } from "react/jsx-runtime";
3219
+ var IntegrationsIcon = (props) => /* @__PURE__ */ jsx78(
3172
3220
  "svg",
3173
3221
  {
3174
3222
  ...props,
3175
3223
  viewBox: "0 0 24 24",
3176
3224
  xmlns: "http://www.w3.org/2000/svg",
3177
- children: /* @__PURE__ */ jsx77(
3225
+ children: /* @__PURE__ */ jsx78(
3178
3226
  "path",
3179
3227
  {
3180
3228
  clipRule: "evenodd",
@@ -3187,14 +3235,14 @@ var IntegrationsIcon = (props) => /* @__PURE__ */ jsx77(
3187
3235
  );
3188
3236
 
3189
3237
  // src/components/Icon/icons/LeaveIcon.tsx
3190
- import { jsx as jsx78 } from "react/jsx-runtime";
3191
- var LeaveIcon = (props) => /* @__PURE__ */ jsx78(
3238
+ import { jsx as jsx79 } from "react/jsx-runtime";
3239
+ var LeaveIcon = (props) => /* @__PURE__ */ jsx79(
3192
3240
  "svg",
3193
3241
  {
3194
3242
  ...props,
3195
3243
  viewBox: "0 0 24 24",
3196
3244
  xmlns: "http://www.w3.org/2000/svg",
3197
- children: /* @__PURE__ */ jsx78(
3245
+ children: /* @__PURE__ */ jsx79(
3198
3246
  "path",
3199
3247
  {
3200
3248
  clipRule: "evenodd",
@@ -3207,14 +3255,14 @@ var LeaveIcon = (props) => /* @__PURE__ */ jsx78(
3207
3255
  );
3208
3256
 
3209
3257
  // src/components/Icon/icons/LinkIcon.tsx
3210
- import { jsx as jsx79 } from "react/jsx-runtime";
3211
- var LinkIcon = (props) => /* @__PURE__ */ jsx79(
3258
+ import { jsx as jsx80 } from "react/jsx-runtime";
3259
+ var LinkIcon = (props) => /* @__PURE__ */ jsx80(
3212
3260
  "svg",
3213
3261
  {
3214
3262
  ...props,
3215
3263
  viewBox: "0 0 24 24",
3216
3264
  xmlns: "http://www.w3.org/2000/svg",
3217
- children: /* @__PURE__ */ jsx79(
3265
+ children: /* @__PURE__ */ jsx80(
3218
3266
  "path",
3219
3267
  {
3220
3268
  clipRule: "evenodd",
@@ -3227,14 +3275,14 @@ var LinkIcon = (props) => /* @__PURE__ */ jsx79(
3227
3275
  );
3228
3276
 
3229
3277
  // src/components/Icon/icons/ListIcon.tsx
3230
- import { jsx as jsx80 } from "react/jsx-runtime";
3231
- var ListIcon = (props) => /* @__PURE__ */ jsx80(
3278
+ import { jsx as jsx81 } from "react/jsx-runtime";
3279
+ var ListIcon = (props) => /* @__PURE__ */ jsx81(
3232
3280
  "svg",
3233
3281
  {
3234
3282
  ...props,
3235
3283
  viewBox: "0 0 24 24",
3236
3284
  xmlns: "http://www.w3.org/2000/svg",
3237
- children: /* @__PURE__ */ jsx80(
3285
+ children: /* @__PURE__ */ jsx81(
3238
3286
  "path",
3239
3287
  {
3240
3288
  clipRule: "evenodd",
@@ -3247,14 +3295,14 @@ var ListIcon = (props) => /* @__PURE__ */ jsx80(
3247
3295
  );
3248
3296
 
3249
3297
  // src/components/Icon/icons/LiveIcon.tsx
3250
- import { jsx as jsx81 } from "react/jsx-runtime";
3251
- var LiveIcon = (props) => /* @__PURE__ */ jsx81(
3298
+ import { jsx as jsx82 } from "react/jsx-runtime";
3299
+ var LiveIcon = (props) => /* @__PURE__ */ jsx82(
3252
3300
  "svg",
3253
3301
  {
3254
3302
  ...props,
3255
3303
  viewBox: "0 0 24 24",
3256
3304
  xmlns: "http://www.w3.org/2000/svg",
3257
- children: /* @__PURE__ */ jsx81(
3305
+ children: /* @__PURE__ */ jsx82(
3258
3306
  "path",
3259
3307
  {
3260
3308
  clipRule: "evenodd",
@@ -3267,14 +3315,14 @@ var LiveIcon = (props) => /* @__PURE__ */ jsx81(
3267
3315
  );
3268
3316
 
3269
3317
  // src/components/Icon/icons/LockIcon.tsx
3270
- import { jsx as jsx82 } from "react/jsx-runtime";
3271
- var LockIcon = (props) => /* @__PURE__ */ jsx82(
3318
+ import { jsx as jsx83 } from "react/jsx-runtime";
3319
+ var LockIcon = (props) => /* @__PURE__ */ jsx83(
3272
3320
  "svg",
3273
3321
  {
3274
3322
  ...props,
3275
3323
  viewBox: "0 0 24 24",
3276
3324
  xmlns: "http://www.w3.org/2000/svg",
3277
- children: /* @__PURE__ */ jsx82(
3325
+ children: /* @__PURE__ */ jsx83(
3278
3326
  "path",
3279
3327
  {
3280
3328
  clipRule: "evenodd",
@@ -3287,14 +3335,14 @@ var LockIcon = (props) => /* @__PURE__ */ jsx82(
3287
3335
  );
3288
3336
 
3289
3337
  // src/components/Icon/icons/LogoutIcon.tsx
3290
- import { jsx as jsx83 } from "react/jsx-runtime";
3291
- var LogoutIcon = (props) => /* @__PURE__ */ jsx83(
3338
+ import { jsx as jsx84 } from "react/jsx-runtime";
3339
+ var LogoutIcon = (props) => /* @__PURE__ */ jsx84(
3292
3340
  "svg",
3293
3341
  {
3294
3342
  ...props,
3295
3343
  viewBox: "0 0 24 24",
3296
3344
  xmlns: "http://www.w3.org/2000/svg",
3297
- children: /* @__PURE__ */ jsx83(
3345
+ children: /* @__PURE__ */ jsx84(
3298
3346
  "path",
3299
3347
  {
3300
3348
  clipRule: "evenodd",
@@ -3307,14 +3355,14 @@ var LogoutIcon = (props) => /* @__PURE__ */ jsx83(
3307
3355
  );
3308
3356
 
3309
3357
  // src/components/Icon/icons/MaximizeIcon.tsx
3310
- import { jsx as jsx84 } from "react/jsx-runtime";
3311
- var MaximizeIcon = (props) => /* @__PURE__ */ jsx84(
3358
+ import { jsx as jsx85 } from "react/jsx-runtime";
3359
+ var MaximizeIcon = (props) => /* @__PURE__ */ jsx85(
3312
3360
  "svg",
3313
3361
  {
3314
3362
  ...props,
3315
3363
  viewBox: "0 0 24 24",
3316
3364
  xmlns: "http://www.w3.org/2000/svg",
3317
- children: /* @__PURE__ */ jsx84(
3365
+ children: /* @__PURE__ */ jsx85(
3318
3366
  "path",
3319
3367
  {
3320
3368
  clipRule: "evenodd",
@@ -3327,14 +3375,14 @@ var MaximizeIcon = (props) => /* @__PURE__ */ jsx84(
3327
3375
  );
3328
3376
 
3329
3377
  // src/components/Icon/icons/MediaIcon.tsx
3330
- import { jsx as jsx85 } from "react/jsx-runtime";
3331
- var MediaIcon = (props) => /* @__PURE__ */ jsx85(
3378
+ import { jsx as jsx86 } from "react/jsx-runtime";
3379
+ var MediaIcon = (props) => /* @__PURE__ */ jsx86(
3332
3380
  "svg",
3333
3381
  {
3334
3382
  ...props,
3335
3383
  viewBox: "0 0 24 24",
3336
3384
  xmlns: "http://www.w3.org/2000/svg",
3337
- children: /* @__PURE__ */ jsx85(
3385
+ children: /* @__PURE__ */ jsx86(
3338
3386
  "path",
3339
3387
  {
3340
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",
@@ -3345,14 +3393,14 @@ var MediaIcon = (props) => /* @__PURE__ */ jsx85(
3345
3393
  );
3346
3394
 
3347
3395
  // src/components/Icon/icons/MenuIcon.tsx
3348
- import { jsx as jsx86 } from "react/jsx-runtime";
3349
- var MenuIcon = (props) => /* @__PURE__ */ jsx86(
3396
+ import { jsx as jsx87 } from "react/jsx-runtime";
3397
+ var MenuIcon = (props) => /* @__PURE__ */ jsx87(
3350
3398
  "svg",
3351
3399
  {
3352
3400
  ...props,
3353
3401
  viewBox: "0 0 24 24",
3354
3402
  xmlns: "http://www.w3.org/2000/svg",
3355
- children: /* @__PURE__ */ jsx86(
3403
+ children: /* @__PURE__ */ jsx87(
3356
3404
  "path",
3357
3405
  {
3358
3406
  clipRule: "evenodd",
@@ -3365,14 +3413,14 @@ var MenuIcon = (props) => /* @__PURE__ */ jsx86(
3365
3413
  );
3366
3414
 
3367
3415
  // src/components/Icon/icons/MicIcon.tsx
3368
- import { jsx as jsx87 } from "react/jsx-runtime";
3369
- var MicIcon = (props) => /* @__PURE__ */ jsx87(
3416
+ import { jsx as jsx88 } from "react/jsx-runtime";
3417
+ var MicIcon = (props) => /* @__PURE__ */ jsx88(
3370
3418
  "svg",
3371
3419
  {
3372
3420
  ...props,
3373
3421
  viewBox: "0 0 24 24",
3374
3422
  xmlns: "http://www.w3.org/2000/svg",
3375
- children: /* @__PURE__ */ jsx87(
3423
+ children: /* @__PURE__ */ jsx88(
3376
3424
  "path",
3377
3425
  {
3378
3426
  clipRule: "evenodd",
@@ -3385,14 +3433,14 @@ var MicIcon = (props) => /* @__PURE__ */ jsx87(
3385
3433
  );
3386
3434
 
3387
3435
  // src/components/Icon/icons/MicOffIcon.tsx
3388
- import { jsx as jsx88 } from "react/jsx-runtime";
3389
- var MicOffIcon = (props) => /* @__PURE__ */ jsx88(
3436
+ import { jsx as jsx89 } from "react/jsx-runtime";
3437
+ var MicOffIcon = (props) => /* @__PURE__ */ jsx89(
3390
3438
  "svg",
3391
3439
  {
3392
3440
  ...props,
3393
3441
  viewBox: "0 0 24 24",
3394
3442
  xmlns: "http://www.w3.org/2000/svg",
3395
- children: /* @__PURE__ */ jsx88(
3443
+ children: /* @__PURE__ */ jsx89(
3396
3444
  "path",
3397
3445
  {
3398
3446
  clipRule: "evenodd",
@@ -3405,14 +3453,14 @@ var MicOffIcon = (props) => /* @__PURE__ */ jsx88(
3405
3453
  );
3406
3454
 
3407
3455
  // src/components/Icon/icons/MinimizeIcon.tsx
3408
- import { jsx as jsx89 } from "react/jsx-runtime";
3409
- var MinimizeIcon = (props) => /* @__PURE__ */ jsx89(
3456
+ import { jsx as jsx90 } from "react/jsx-runtime";
3457
+ var MinimizeIcon = (props) => /* @__PURE__ */ jsx90(
3410
3458
  "svg",
3411
3459
  {
3412
3460
  ...props,
3413
3461
  viewBox: "0 0 24 24",
3414
3462
  xmlns: "http://www.w3.org/2000/svg",
3415
- children: /* @__PURE__ */ jsx89(
3463
+ children: /* @__PURE__ */ jsx90(
3416
3464
  "path",
3417
3465
  {
3418
3466
  clipRule: "evenodd",
@@ -3425,14 +3473,14 @@ var MinimizeIcon = (props) => /* @__PURE__ */ jsx89(
3425
3473
  );
3426
3474
 
3427
3475
  // src/components/Icon/icons/MinusCircleIcon.tsx
3428
- import { jsx as jsx90 } from "react/jsx-runtime";
3429
- var MinusCircleIcon = (props) => /* @__PURE__ */ jsx90(
3476
+ import { jsx as jsx91 } from "react/jsx-runtime";
3477
+ var MinusCircleIcon = (props) => /* @__PURE__ */ jsx91(
3430
3478
  "svg",
3431
3479
  {
3432
3480
  ...props,
3433
3481
  viewBox: "0 0 24 24",
3434
3482
  xmlns: "http://www.w3.org/2000/svg",
3435
- children: /* @__PURE__ */ jsx90(
3483
+ children: /* @__PURE__ */ jsx91(
3436
3484
  "path",
3437
3485
  {
3438
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",
@@ -3443,14 +3491,14 @@ var MinusCircleIcon = (props) => /* @__PURE__ */ jsx90(
3443
3491
  );
3444
3492
 
3445
3493
  // src/components/Icon/icons/MobileIcon.tsx
3446
- import { jsx as jsx91 } from "react/jsx-runtime";
3447
- var MobileIcon = (props) => /* @__PURE__ */ jsx91(
3494
+ import { jsx as jsx92 } from "react/jsx-runtime";
3495
+ var MobileIcon = (props) => /* @__PURE__ */ jsx92(
3448
3496
  "svg",
3449
3497
  {
3450
3498
  ...props,
3451
3499
  viewBox: "0 0 24 24",
3452
3500
  xmlns: "http://www.w3.org/2000/svg",
3453
- children: /* @__PURE__ */ jsx91(
3501
+ children: /* @__PURE__ */ jsx92(
3454
3502
  "path",
3455
3503
  {
3456
3504
  clipRule: "evenodd",
@@ -3463,14 +3511,14 @@ var MobileIcon = (props) => /* @__PURE__ */ jsx91(
3463
3511
  );
3464
3512
 
3465
3513
  // src/components/Icon/icons/MoreOptionsIcon.tsx
3466
- import { jsx as jsx92 } from "react/jsx-runtime";
3467
- var MoreOptionsIcon = (props) => /* @__PURE__ */ jsx92(
3514
+ import { jsx as jsx93 } from "react/jsx-runtime";
3515
+ var MoreOptionsIcon = (props) => /* @__PURE__ */ jsx93(
3468
3516
  "svg",
3469
3517
  {
3470
3518
  ...props,
3471
3519
  viewBox: "0 0 24 24",
3472
3520
  xmlns: "http://www.w3.org/2000/svg",
3473
- children: /* @__PURE__ */ jsx92(
3521
+ children: /* @__PURE__ */ jsx93(
3474
3522
  "path",
3475
3523
  {
3476
3524
  clipRule: "evenodd",
@@ -3483,14 +3531,14 @@ var MoreOptionsIcon = (props) => /* @__PURE__ */ jsx92(
3483
3531
  );
3484
3532
 
3485
3533
  // src/components/Icon/icons/MoveLeftIcon.tsx
3486
- import { jsx as jsx93 } from "react/jsx-runtime";
3487
- var MoveLeftIcon = (props) => /* @__PURE__ */ jsx93(
3534
+ import { jsx as jsx94 } from "react/jsx-runtime";
3535
+ var MoveLeftIcon = (props) => /* @__PURE__ */ jsx94(
3488
3536
  "svg",
3489
3537
  {
3490
3538
  ...props,
3491
3539
  viewBox: "0 0 24 24",
3492
3540
  xmlns: "http://www.w3.org/2000/svg",
3493
- children: /* @__PURE__ */ jsx93(
3541
+ children: /* @__PURE__ */ jsx94(
3494
3542
  "path",
3495
3543
  {
3496
3544
  clipRule: "evenodd",
@@ -3503,14 +3551,14 @@ var MoveLeftIcon = (props) => /* @__PURE__ */ jsx93(
3503
3551
  );
3504
3552
 
3505
3553
  // src/components/Icon/icons/MoveRightIcon.tsx
3506
- import { jsx as jsx94 } from "react/jsx-runtime";
3507
- var MoveRightIcon = (props) => /* @__PURE__ */ jsx94(
3554
+ import { jsx as jsx95 } from "react/jsx-runtime";
3555
+ var MoveRightIcon = (props) => /* @__PURE__ */ jsx95(
3508
3556
  "svg",
3509
3557
  {
3510
3558
  ...props,
3511
3559
  viewBox: "0 0 24 24",
3512
3560
  xmlns: "http://www.w3.org/2000/svg",
3513
- children: /* @__PURE__ */ jsx94(
3561
+ children: /* @__PURE__ */ jsx95(
3514
3562
  "path",
3515
3563
  {
3516
3564
  clipRule: "evenodd",
@@ -3523,14 +3571,14 @@ var MoveRightIcon = (props) => /* @__PURE__ */ jsx94(
3523
3571
  );
3524
3572
 
3525
3573
  // src/components/Icon/icons/MusicIcon.tsx
3526
- import { jsx as jsx95 } from "react/jsx-runtime";
3527
- var MusicIcon = (props) => /* @__PURE__ */ jsx95(
3574
+ import { jsx as jsx96 } from "react/jsx-runtime";
3575
+ var MusicIcon = (props) => /* @__PURE__ */ jsx96(
3528
3576
  "svg",
3529
3577
  {
3530
3578
  ...props,
3531
3579
  viewBox: "0 0 24 24",
3532
3580
  xmlns: "http://www.w3.org/2000/svg",
3533
- children: /* @__PURE__ */ jsx95(
3581
+ children: /* @__PURE__ */ jsx96(
3534
3582
  "path",
3535
3583
  {
3536
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",
@@ -3541,14 +3589,14 @@ var MusicIcon = (props) => /* @__PURE__ */ jsx95(
3541
3589
  );
3542
3590
 
3543
3591
  // src/components/Icon/icons/OpenNewIcon.tsx
3544
- import { jsx as jsx96 } from "react/jsx-runtime";
3545
- var OpenNewIcon = (props) => /* @__PURE__ */ jsx96(
3592
+ import { jsx as jsx97 } from "react/jsx-runtime";
3593
+ var OpenNewIcon = (props) => /* @__PURE__ */ jsx97(
3546
3594
  "svg",
3547
3595
  {
3548
3596
  ...props,
3549
3597
  viewBox: "0 0 24 24",
3550
3598
  xmlns: "http://www.w3.org/2000/svg",
3551
- children: /* @__PURE__ */ jsx96(
3599
+ children: /* @__PURE__ */ jsx97(
3552
3600
  "path",
3553
3601
  {
3554
3602
  clipRule: "evenodd",
@@ -3561,14 +3609,14 @@ var OpenNewIcon = (props) => /* @__PURE__ */ jsx96(
3561
3609
  );
3562
3610
 
3563
3611
  // src/components/Icon/icons/OverviewIcon.tsx
3564
- import { jsx as jsx97 } from "react/jsx-runtime";
3565
- var OverviewIcon = (props) => /* @__PURE__ */ jsx97(
3612
+ import { jsx as jsx98 } from "react/jsx-runtime";
3613
+ var OverviewIcon = (props) => /* @__PURE__ */ jsx98(
3566
3614
  "svg",
3567
3615
  {
3568
3616
  ...props,
3569
3617
  viewBox: "0 0 24 24",
3570
3618
  xmlns: "http://www.w3.org/2000/svg",
3571
- children: /* @__PURE__ */ jsx97(
3619
+ children: /* @__PURE__ */ jsx98(
3572
3620
  "path",
3573
3621
  {
3574
3622
  clipRule: "evenodd",
@@ -3581,14 +3629,14 @@ var OverviewIcon = (props) => /* @__PURE__ */ jsx97(
3581
3629
  );
3582
3630
 
3583
3631
  // src/components/Icon/icons/PageIcon.tsx
3584
- import { jsx as jsx98 } from "react/jsx-runtime";
3585
- var PageIcon = (props) => /* @__PURE__ */ jsx98(
3632
+ import { jsx as jsx99 } from "react/jsx-runtime";
3633
+ var PageIcon = (props) => /* @__PURE__ */ jsx99(
3586
3634
  "svg",
3587
3635
  {
3588
3636
  ...props,
3589
3637
  viewBox: "0 0 24 24",
3590
3638
  xmlns: "http://www.w3.org/2000/svg",
3591
- children: /* @__PURE__ */ jsx98(
3639
+ children: /* @__PURE__ */ jsx99(
3592
3640
  "path",
3593
3641
  {
3594
3642
  clipRule: "evenodd",
@@ -3601,14 +3649,14 @@ var PageIcon = (props) => /* @__PURE__ */ jsx98(
3601
3649
  );
3602
3650
 
3603
3651
  // src/components/Icon/icons/PanelLeftIcon.tsx
3604
- import { jsx as jsx99 } from "react/jsx-runtime";
3605
- var PanelLeftIcon = (props) => /* @__PURE__ */ jsx99(
3652
+ import { jsx as jsx100 } from "react/jsx-runtime";
3653
+ var PanelLeftIcon = (props) => /* @__PURE__ */ jsx100(
3606
3654
  "svg",
3607
3655
  {
3608
3656
  ...props,
3609
3657
  viewBox: "0 0 24 24",
3610
3658
  xmlns: "http://www.w3.org/2000/svg",
3611
- children: /* @__PURE__ */ jsx99(
3659
+ children: /* @__PURE__ */ jsx100(
3612
3660
  "path",
3613
3661
  {
3614
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",
@@ -3619,14 +3667,14 @@ var PanelLeftIcon = (props) => /* @__PURE__ */ jsx99(
3619
3667
  );
3620
3668
 
3621
3669
  // src/components/Icon/icons/PanelRightIcon.tsx
3622
- import { jsx as jsx100 } from "react/jsx-runtime";
3623
- var PanelRightIcon = (props) => /* @__PURE__ */ jsx100(
3670
+ import { jsx as jsx101 } from "react/jsx-runtime";
3671
+ var PanelRightIcon = (props) => /* @__PURE__ */ jsx101(
3624
3672
  "svg",
3625
3673
  {
3626
3674
  ...props,
3627
3675
  viewBox: "0 0 24 24",
3628
3676
  xmlns: "http://www.w3.org/2000/svg",
3629
- children: /* @__PURE__ */ jsx100(
3677
+ children: /* @__PURE__ */ jsx101(
3630
3678
  "path",
3631
3679
  {
3632
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",
@@ -3637,14 +3685,14 @@ var PanelRightIcon = (props) => /* @__PURE__ */ jsx100(
3637
3685
  );
3638
3686
 
3639
3687
  // src/components/Icon/icons/PanelUpIcon.tsx
3640
- import { jsx as jsx101 } from "react/jsx-runtime";
3641
- var PanelUpIcon = (props) => /* @__PURE__ */ jsx101(
3688
+ import { jsx as jsx102 } from "react/jsx-runtime";
3689
+ var PanelUpIcon = (props) => /* @__PURE__ */ jsx102(
3642
3690
  "svg",
3643
3691
  {
3644
3692
  ...props,
3645
3693
  viewBox: "0 0 24 24",
3646
3694
  xmlns: "http://www.w3.org/2000/svg",
3647
- children: /* @__PURE__ */ jsx101(
3695
+ children: /* @__PURE__ */ jsx102(
3648
3696
  "path",
3649
3697
  {
3650
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",
@@ -3655,14 +3703,14 @@ var PanelUpIcon = (props) => /* @__PURE__ */ jsx101(
3655
3703
  );
3656
3704
 
3657
3705
  // src/components/Icon/icons/PasswordIcon.tsx
3658
- import { jsx as jsx102 } from "react/jsx-runtime";
3659
- var PasswordIcon = (props) => /* @__PURE__ */ jsx102(
3706
+ import { jsx as jsx103 } from "react/jsx-runtime";
3707
+ var PasswordIcon = (props) => /* @__PURE__ */ jsx103(
3660
3708
  "svg",
3661
3709
  {
3662
3710
  ...props,
3663
3711
  viewBox: "0 0 24 24",
3664
3712
  xmlns: "http://www.w3.org/2000/svg",
3665
- children: /* @__PURE__ */ jsx102(
3713
+ children: /* @__PURE__ */ jsx103(
3666
3714
  "path",
3667
3715
  {
3668
3716
  clipRule: "evenodd",
@@ -3675,14 +3723,14 @@ var PasswordIcon = (props) => /* @__PURE__ */ jsx102(
3675
3723
  );
3676
3724
 
3677
3725
  // src/components/Icon/icons/PencilIcon.tsx
3678
- import { jsx as jsx103 } from "react/jsx-runtime";
3679
- var PencilIcon = (props) => /* @__PURE__ */ jsx103(
3726
+ import { jsx as jsx104 } from "react/jsx-runtime";
3727
+ var PencilIcon = (props) => /* @__PURE__ */ jsx104(
3680
3728
  "svg",
3681
3729
  {
3682
3730
  ...props,
3683
3731
  viewBox: "0 0 24 24",
3684
3732
  xmlns: "http://www.w3.org/2000/svg",
3685
- children: /* @__PURE__ */ jsx103(
3733
+ children: /* @__PURE__ */ jsx104(
3686
3734
  "path",
3687
3735
  {
3688
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",
@@ -3693,14 +3741,14 @@ var PencilIcon = (props) => /* @__PURE__ */ jsx103(
3693
3741
  );
3694
3742
 
3695
3743
  // src/components/Icon/icons/PeopleIcon.tsx
3696
- import { jsx as jsx104 } from "react/jsx-runtime";
3697
- var PeopleIcon = (props) => /* @__PURE__ */ jsx104(
3744
+ import { jsx as jsx105 } from "react/jsx-runtime";
3745
+ var PeopleIcon = (props) => /* @__PURE__ */ jsx105(
3698
3746
  "svg",
3699
3747
  {
3700
3748
  ...props,
3701
3749
  viewBox: "0 0 24 24",
3702
3750
  xmlns: "http://www.w3.org/2000/svg",
3703
- children: /* @__PURE__ */ jsx104(
3751
+ children: /* @__PURE__ */ jsx105(
3704
3752
  "path",
3705
3753
  {
3706
3754
  clipRule: "evenodd",
@@ -3713,14 +3761,14 @@ var PeopleIcon = (props) => /* @__PURE__ */ jsx104(
3713
3761
  );
3714
3762
 
3715
3763
  // src/components/Icon/icons/PinIcon.tsx
3716
- import { jsx as jsx105 } from "react/jsx-runtime";
3717
- var PinIcon = (props) => /* @__PURE__ */ jsx105(
3764
+ import { jsx as jsx106 } from "react/jsx-runtime";
3765
+ var PinIcon = (props) => /* @__PURE__ */ jsx106(
3718
3766
  "svg",
3719
3767
  {
3720
3768
  ...props,
3721
3769
  viewBox: "0 0 24 24",
3722
3770
  xmlns: "http://www.w3.org/2000/svg",
3723
- children: /* @__PURE__ */ jsx105(
3771
+ children: /* @__PURE__ */ jsx106(
3724
3772
  "path",
3725
3773
  {
3726
3774
  clipRule: "evenodd",
@@ -3733,14 +3781,14 @@ var PinIcon = (props) => /* @__PURE__ */ jsx105(
3733
3781
  );
3734
3782
 
3735
3783
  // src/components/Icon/icons/PinSlashIcon.tsx
3736
- import { jsx as jsx106 } from "react/jsx-runtime";
3737
- var PinSlashIcon = (props) => /* @__PURE__ */ jsx106(
3784
+ import { jsx as jsx107 } from "react/jsx-runtime";
3785
+ var PinSlashIcon = (props) => /* @__PURE__ */ jsx107(
3738
3786
  "svg",
3739
3787
  {
3740
3788
  ...props,
3741
3789
  viewBox: "0 0 24 24",
3742
3790
  xmlns: "http://www.w3.org/2000/svg",
3743
- children: /* @__PURE__ */ jsx106(
3791
+ children: /* @__PURE__ */ jsx107(
3744
3792
  "path",
3745
3793
  {
3746
3794
  clipRule: "evenodd",
@@ -3753,14 +3801,14 @@ var PinSlashIcon = (props) => /* @__PURE__ */ jsx106(
3753
3801
  );
3754
3802
 
3755
3803
  // src/components/Icon/icons/PlayIcon.tsx
3756
- import { jsx as jsx107 } from "react/jsx-runtime";
3757
- var PlayIcon = (props) => /* @__PURE__ */ jsx107(
3804
+ import { jsx as jsx108 } from "react/jsx-runtime";
3805
+ var PlayIcon = (props) => /* @__PURE__ */ jsx108(
3758
3806
  "svg",
3759
3807
  {
3760
3808
  ...props,
3761
3809
  viewBox: "0 0 24 24",
3762
3810
  xmlns: "http://www.w3.org/2000/svg",
3763
- children: /* @__PURE__ */ jsx107(
3811
+ children: /* @__PURE__ */ jsx108(
3764
3812
  "path",
3765
3813
  {
3766
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",
@@ -3771,14 +3819,14 @@ var PlayIcon = (props) => /* @__PURE__ */ jsx107(
3771
3819
  );
3772
3820
 
3773
3821
  // src/components/Icon/icons/PlayerIcon.tsx
3774
- import { jsx as jsx108 } from "react/jsx-runtime";
3775
- var PlayerIcon = (props) => /* @__PURE__ */ jsx108(
3822
+ import { jsx as jsx109 } from "react/jsx-runtime";
3823
+ var PlayerIcon = (props) => /* @__PURE__ */ jsx109(
3776
3824
  "svg",
3777
3825
  {
3778
3826
  ...props,
3779
3827
  viewBox: "0 0 24 24",
3780
3828
  xmlns: "http://www.w3.org/2000/svg",
3781
- children: /* @__PURE__ */ jsx108(
3829
+ children: /* @__PURE__ */ jsx109(
3782
3830
  "path",
3783
3831
  {
3784
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",
@@ -3789,14 +3837,14 @@ var PlayerIcon = (props) => /* @__PURE__ */ jsx108(
3789
3837
  );
3790
3838
 
3791
3839
  // src/components/Icon/icons/PlusIcon.tsx
3792
- import { jsx as jsx109 } from "react/jsx-runtime";
3793
- var PlusIcon = (props) => /* @__PURE__ */ jsx109(
3840
+ import { jsx as jsx110 } from "react/jsx-runtime";
3841
+ var PlusIcon = (props) => /* @__PURE__ */ jsx110(
3794
3842
  "svg",
3795
3843
  {
3796
3844
  ...props,
3797
3845
  viewBox: "0 0 24 24",
3798
3846
  xmlns: "http://www.w3.org/2000/svg",
3799
- children: /* @__PURE__ */ jsx109(
3847
+ children: /* @__PURE__ */ jsx110(
3800
3848
  "path",
3801
3849
  {
3802
3850
  clipRule: "evenodd",
@@ -3809,14 +3857,14 @@ var PlusIcon = (props) => /* @__PURE__ */ jsx109(
3809
3857
  );
3810
3858
 
3811
3859
  // src/components/Icon/icons/PodcastIcon.tsx
3812
- import { jsx as jsx110 } from "react/jsx-runtime";
3813
- var PodcastIcon = (props) => /* @__PURE__ */ jsx110(
3860
+ import { jsx as jsx111 } from "react/jsx-runtime";
3861
+ var PodcastIcon = (props) => /* @__PURE__ */ jsx111(
3814
3862
  "svg",
3815
3863
  {
3816
3864
  ...props,
3817
3865
  viewBox: "0 0 24 24",
3818
3866
  xmlns: "http://www.w3.org/2000/svg",
3819
- children: /* @__PURE__ */ jsx110(
3867
+ children: /* @__PURE__ */ jsx111(
3820
3868
  "path",
3821
3869
  {
3822
3870
  clipRule: "evenodd",
@@ -3829,14 +3877,14 @@ var PodcastIcon = (props) => /* @__PURE__ */ jsx110(
3829
3877
  );
3830
3878
 
3831
3879
  // src/components/Icon/icons/PreviewIcon.tsx
3832
- import { jsx as jsx111 } from "react/jsx-runtime";
3833
- var PreviewIcon = (props) => /* @__PURE__ */ jsx111(
3880
+ import { jsx as jsx112 } from "react/jsx-runtime";
3881
+ var PreviewIcon = (props) => /* @__PURE__ */ jsx112(
3834
3882
  "svg",
3835
3883
  {
3836
3884
  ...props,
3837
3885
  viewBox: "0 0 24 24",
3838
3886
  xmlns: "http://www.w3.org/2000/svg",
3839
- children: /* @__PURE__ */ jsx111(
3887
+ children: /* @__PURE__ */ jsx112(
3840
3888
  "path",
3841
3889
  {
3842
3890
  clipRule: "evenodd",
@@ -3849,14 +3897,14 @@ var PreviewIcon = (props) => /* @__PURE__ */ jsx111(
3849
3897
  );
3850
3898
 
3851
3899
  // src/components/Icon/icons/PrivateUserSessionsIcon.tsx
3852
- import { jsx as jsx112 } from "react/jsx-runtime";
3853
- var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ jsx112(
3900
+ import { jsx as jsx113 } from "react/jsx-runtime";
3901
+ var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ jsx113(
3854
3902
  "svg",
3855
3903
  {
3856
3904
  ...props,
3857
3905
  viewBox: "0 0 24 24",
3858
3906
  xmlns: "http://www.w3.org/2000/svg",
3859
- children: /* @__PURE__ */ jsx112(
3907
+ children: /* @__PURE__ */ jsx113(
3860
3908
  "path",
3861
3909
  {
3862
3910
  clipRule: "evenodd",
@@ -3869,15 +3917,15 @@ var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ jsx112(
3869
3917
  );
3870
3918
 
3871
3919
  // src/components/Icon/icons/ProjectIcon.tsx
3872
- import { jsx as jsx113, jsxs as jsxs2 } from "react/jsx-runtime";
3873
- var ProjectIcon = (props) => /* @__PURE__ */ jsxs2(
3920
+ import { jsx as jsx114, jsxs as jsxs3 } from "react/jsx-runtime";
3921
+ var ProjectIcon = (props) => /* @__PURE__ */ jsxs3(
3874
3922
  "svg",
3875
3923
  {
3876
3924
  ...props,
3877
3925
  viewBox: "0 0 24 24",
3878
3926
  xmlns: "http://www.w3.org/2000/svg",
3879
3927
  children: [
3880
- /* @__PURE__ */ jsx113(
3928
+ /* @__PURE__ */ jsx114(
3881
3929
  "path",
3882
3930
  {
3883
3931
  clipRule: "evenodd",
@@ -3886,7 +3934,7 @@ var ProjectIcon = (props) => /* @__PURE__ */ jsxs2(
3886
3934
  fillRule: "evenodd"
3887
3935
  }
3888
3936
  ),
3889
- /* @__PURE__ */ jsx113(
3937
+ /* @__PURE__ */ jsx114(
3890
3938
  "path",
3891
3939
  {
3892
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",
@@ -3898,14 +3946,14 @@ var ProjectIcon = (props) => /* @__PURE__ */ jsxs2(
3898
3946
  );
3899
3947
 
3900
3948
  // src/components/Icon/icons/PropertiesIcon.tsx
3901
- import { jsx as jsx114 } from "react/jsx-runtime";
3902
- var PropertiesIcon = (props) => /* @__PURE__ */ jsx114(
3949
+ import { jsx as jsx115 } from "react/jsx-runtime";
3950
+ var PropertiesIcon = (props) => /* @__PURE__ */ jsx115(
3903
3951
  "svg",
3904
3952
  {
3905
3953
  ...props,
3906
3954
  viewBox: "0 0 24 24",
3907
3955
  xmlns: "http://www.w3.org/2000/svg",
3908
- children: /* @__PURE__ */ jsx114(
3956
+ children: /* @__PURE__ */ jsx115(
3909
3957
  "path",
3910
3958
  {
3911
3959
  clipRule: "evenodd",
@@ -3918,14 +3966,14 @@ var PropertiesIcon = (props) => /* @__PURE__ */ jsx114(
3918
3966
  );
3919
3967
 
3920
3968
  // src/components/Icon/icons/QuestionMarkIcon.tsx
3921
- import { jsx as jsx115 } from "react/jsx-runtime";
3922
- var QuestionMarkIcon = (props) => /* @__PURE__ */ jsx115(
3969
+ import { jsx as jsx116 } from "react/jsx-runtime";
3970
+ var QuestionMarkIcon = (props) => /* @__PURE__ */ jsx116(
3923
3971
  "svg",
3924
3972
  {
3925
3973
  ...props,
3926
3974
  viewBox: "0 0 24 24",
3927
3975
  xmlns: "http://www.w3.org/2000/svg",
3928
- children: /* @__PURE__ */ jsx115(
3976
+ children: /* @__PURE__ */ jsx116(
3929
3977
  "path",
3930
3978
  {
3931
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",
@@ -3936,14 +3984,14 @@ var QuestionMarkIcon = (props) => /* @__PURE__ */ jsx115(
3936
3984
  );
3937
3985
 
3938
3986
  // src/components/Icon/icons/ReactIcon.tsx
3939
- import { jsx as jsx116 } from "react/jsx-runtime";
3940
- var ReactIcon = (props) => /* @__PURE__ */ jsx116(
3987
+ import { jsx as jsx117 } from "react/jsx-runtime";
3988
+ var ReactIcon = (props) => /* @__PURE__ */ jsx117(
3941
3989
  "svg",
3942
3990
  {
3943
3991
  ...props,
3944
3992
  viewBox: "0 0 24 24",
3945
3993
  xmlns: "http://www.w3.org/2000/svg",
3946
- children: /* @__PURE__ */ jsx116(
3994
+ children: /* @__PURE__ */ jsx117(
3947
3995
  "path",
3948
3996
  {
3949
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",
@@ -3954,14 +4002,14 @@ var ReactIcon = (props) => /* @__PURE__ */ jsx116(
3954
4002
  );
3955
4003
 
3956
4004
  // src/components/Icon/icons/RecordIcon.tsx
3957
- import { jsx as jsx117 } from "react/jsx-runtime";
3958
- var RecordIcon = (props) => /* @__PURE__ */ jsx117(
4005
+ import { jsx as jsx118 } from "react/jsx-runtime";
4006
+ var RecordIcon = (props) => /* @__PURE__ */ jsx118(
3959
4007
  "svg",
3960
4008
  {
3961
4009
  ...props,
3962
4010
  viewBox: "0 0 24 24",
3963
4011
  xmlns: "http://www.w3.org/2000/svg",
3964
- children: /* @__PURE__ */ jsx117(
4012
+ children: /* @__PURE__ */ jsx118(
3965
4013
  "path",
3966
4014
  {
3967
4015
  clipRule: "evenodd",
@@ -3974,14 +4022,14 @@ var RecordIcon = (props) => /* @__PURE__ */ jsx117(
3974
4022
  );
3975
4023
 
3976
4024
  // src/components/Icon/icons/RedoIcon.tsx
3977
- import { jsx as jsx118 } from "react/jsx-runtime";
3978
- var RedoIcon = (props) => /* @__PURE__ */ jsx118(
4025
+ import { jsx as jsx119 } from "react/jsx-runtime";
4026
+ var RedoIcon = (props) => /* @__PURE__ */ jsx119(
3979
4027
  "svg",
3980
4028
  {
3981
4029
  ...props,
3982
4030
  viewBox: "0 0 24 24",
3983
4031
  xmlns: "http://www.w3.org/2000/svg",
3984
- children: /* @__PURE__ */ jsx118(
4032
+ children: /* @__PURE__ */ jsx119(
3985
4033
  "path",
3986
4034
  {
3987
4035
  clipRule: "evenodd",
@@ -3994,14 +4042,14 @@ var RedoIcon = (props) => /* @__PURE__ */ jsx118(
3994
4042
  );
3995
4043
 
3996
4044
  // src/components/Icon/icons/ReplaceIcon.tsx
3997
- import { jsx as jsx119 } from "react/jsx-runtime";
3998
- var ReplaceIcon = (props) => /* @__PURE__ */ jsx119(
4045
+ import { jsx as jsx120 } from "react/jsx-runtime";
4046
+ var ReplaceIcon = (props) => /* @__PURE__ */ jsx120(
3999
4047
  "svg",
4000
4048
  {
4001
4049
  ...props,
4002
4050
  viewBox: "0 0 24 24",
4003
4051
  xmlns: "http://www.w3.org/2000/svg",
4004
- children: /* @__PURE__ */ jsx119(
4052
+ children: /* @__PURE__ */ jsx120(
4005
4053
  "path",
4006
4054
  {
4007
4055
  clipRule: "evenodd",
@@ -4014,14 +4062,14 @@ var ReplaceIcon = (props) => /* @__PURE__ */ jsx119(
4014
4062
  );
4015
4063
 
4016
4064
  // src/components/Icon/icons/ReplyIcon.tsx
4017
- import { jsx as jsx120 } from "react/jsx-runtime";
4018
- var ReplyIcon = (props) => /* @__PURE__ */ jsx120(
4065
+ import { jsx as jsx121 } from "react/jsx-runtime";
4066
+ var ReplyIcon = (props) => /* @__PURE__ */ jsx121(
4019
4067
  "svg",
4020
4068
  {
4021
4069
  ...props,
4022
4070
  viewBox: "0 0 24 24",
4023
4071
  xmlns: "http://www.w3.org/2000/svg",
4024
- children: /* @__PURE__ */ jsx120(
4072
+ children: /* @__PURE__ */ jsx121(
4025
4073
  "path",
4026
4074
  {
4027
4075
  clipRule: "evenodd",
@@ -4034,14 +4082,14 @@ var ReplyIcon = (props) => /* @__PURE__ */ jsx120(
4034
4082
  );
4035
4083
 
4036
4084
  // src/components/Icon/icons/SaveAsCopyIcon.tsx
4037
- import { jsx as jsx121 } from "react/jsx-runtime";
4038
- var SaveAsCopyIcon = (props) => /* @__PURE__ */ jsx121(
4085
+ import { jsx as jsx122 } from "react/jsx-runtime";
4086
+ var SaveAsCopyIcon = (props) => /* @__PURE__ */ jsx122(
4039
4087
  "svg",
4040
4088
  {
4041
4089
  ...props,
4042
4090
  viewBox: "0 0 24 24",
4043
4091
  xmlns: "http://www.w3.org/2000/svg",
4044
- children: /* @__PURE__ */ jsx121(
4092
+ children: /* @__PURE__ */ jsx122(
4045
4093
  "path",
4046
4094
  {
4047
4095
  clipRule: "evenodd",
@@ -4054,14 +4102,14 @@ var SaveAsCopyIcon = (props) => /* @__PURE__ */ jsx121(
4054
4102
  );
4055
4103
 
4056
4104
  // src/components/Icon/icons/SaveIcon.tsx
4057
- import { jsx as jsx122 } from "react/jsx-runtime";
4058
- var SaveIcon = (props) => /* @__PURE__ */ jsx122(
4105
+ import { jsx as jsx123 } from "react/jsx-runtime";
4106
+ var SaveIcon = (props) => /* @__PURE__ */ jsx123(
4059
4107
  "svg",
4060
4108
  {
4061
4109
  ...props,
4062
4110
  viewBox: "0 0 24 24",
4063
4111
  xmlns: "http://www.w3.org/2000/svg",
4064
- children: /* @__PURE__ */ jsx122(
4112
+ children: /* @__PURE__ */ jsx123(
4065
4113
  "path",
4066
4114
  {
4067
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",
@@ -4072,14 +4120,14 @@ var SaveIcon = (props) => /* @__PURE__ */ jsx122(
4072
4120
  );
4073
4121
 
4074
4122
  // src/components/Icon/icons/ScissorsIcon.tsx
4075
- import { jsx as jsx123 } from "react/jsx-runtime";
4076
- var ScissorsIcon = (props) => /* @__PURE__ */ jsx123(
4123
+ import { jsx as jsx124 } from "react/jsx-runtime";
4124
+ var ScissorsIcon = (props) => /* @__PURE__ */ jsx124(
4077
4125
  "svg",
4078
4126
  {
4079
4127
  ...props,
4080
4128
  viewBox: "0 0 24 24",
4081
4129
  xmlns: "http://www.w3.org/2000/svg",
4082
- children: /* @__PURE__ */ jsx123(
4130
+ children: /* @__PURE__ */ jsx124(
4083
4131
  "path",
4084
4132
  {
4085
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",
@@ -4090,14 +4138,14 @@ var ScissorsIcon = (props) => /* @__PURE__ */ jsx123(
4090
4138
  );
4091
4139
 
4092
4140
  // src/components/Icon/icons/ScreenshareOffIcon.tsx
4093
- import { jsx as jsx124 } from "react/jsx-runtime";
4094
- var ScreenshareOffIcon = (props) => /* @__PURE__ */ jsx124(
4141
+ import { jsx as jsx125 } from "react/jsx-runtime";
4142
+ var ScreenshareOffIcon = (props) => /* @__PURE__ */ jsx125(
4095
4143
  "svg",
4096
4144
  {
4097
4145
  ...props,
4098
4146
  viewBox: "0 0 24 24",
4099
4147
  xmlns: "http://www.w3.org/2000/svg",
4100
- children: /* @__PURE__ */ jsx124(
4148
+ children: /* @__PURE__ */ jsx125(
4101
4149
  "path",
4102
4150
  {
4103
4151
  clipRule: "evenodd",
@@ -4110,14 +4158,14 @@ var ScreenshareOffIcon = (props) => /* @__PURE__ */ jsx124(
4110
4158
  );
4111
4159
 
4112
4160
  // src/components/Icon/icons/ScreenshareOnIcon.tsx
4113
- import { jsx as jsx125 } from "react/jsx-runtime";
4114
- var ScreenshareOnIcon = (props) => /* @__PURE__ */ jsx125(
4161
+ import { jsx as jsx126 } from "react/jsx-runtime";
4162
+ var ScreenshareOnIcon = (props) => /* @__PURE__ */ jsx126(
4115
4163
  "svg",
4116
4164
  {
4117
4165
  ...props,
4118
4166
  viewBox: "0 0 24 24",
4119
4167
  xmlns: "http://www.w3.org/2000/svg",
4120
- children: /* @__PURE__ */ jsx125(
4168
+ children: /* @__PURE__ */ jsx126(
4121
4169
  "path",
4122
4170
  {
4123
4171
  clipRule: "evenodd",
@@ -4130,14 +4178,14 @@ var ScreenshareOnIcon = (props) => /* @__PURE__ */ jsx125(
4130
4178
  );
4131
4179
 
4132
4180
  // src/components/Icon/icons/SearchIcon.tsx
4133
- import { jsx as jsx126 } from "react/jsx-runtime";
4134
- var SearchIcon = (props) => /* @__PURE__ */ jsx126(
4181
+ import { jsx as jsx127 } from "react/jsx-runtime";
4182
+ var SearchIcon = (props) => /* @__PURE__ */ jsx127(
4135
4183
  "svg",
4136
4184
  {
4137
4185
  ...props,
4138
4186
  viewBox: "0 0 24 24",
4139
4187
  xmlns: "http://www.w3.org/2000/svg",
4140
- children: /* @__PURE__ */ jsx126(
4188
+ children: /* @__PURE__ */ jsx127(
4141
4189
  "path",
4142
4190
  {
4143
4191
  clipRule: "evenodd",
@@ -4150,14 +4198,14 @@ var SearchIcon = (props) => /* @__PURE__ */ jsx126(
4150
4198
  );
4151
4199
 
4152
4200
  // src/components/Icon/icons/SendIcon.tsx
4153
- import { jsx as jsx127 } from "react/jsx-runtime";
4154
- var SendIcon = (props) => /* @__PURE__ */ jsx127(
4201
+ import { jsx as jsx128 } from "react/jsx-runtime";
4202
+ var SendIcon = (props) => /* @__PURE__ */ jsx128(
4155
4203
  "svg",
4156
4204
  {
4157
4205
  ...props,
4158
4206
  viewBox: "0 0 24 24",
4159
4207
  xmlns: "http://www.w3.org/2000/svg",
4160
- children: /* @__PURE__ */ jsx127(
4208
+ children: /* @__PURE__ */ jsx128(
4161
4209
  "path",
4162
4210
  {
4163
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",
@@ -4168,14 +4216,14 @@ var SendIcon = (props) => /* @__PURE__ */ jsx127(
4168
4216
  );
4169
4217
 
4170
4218
  // src/components/Icon/icons/ShapesIcon.tsx
4171
- import { jsx as jsx128 } from "react/jsx-runtime";
4172
- var ShapesIcon = (props) => /* @__PURE__ */ jsx128(
4219
+ import { jsx as jsx129 } from "react/jsx-runtime";
4220
+ var ShapesIcon = (props) => /* @__PURE__ */ jsx129(
4173
4221
  "svg",
4174
4222
  {
4175
4223
  ...props,
4176
4224
  viewBox: "0 0 24 24",
4177
4225
  xmlns: "http://www.w3.org/2000/svg",
4178
- children: /* @__PURE__ */ jsx128(
4226
+ children: /* @__PURE__ */ jsx129(
4179
4227
  "path",
4180
4228
  {
4181
4229
  clipRule: "evenodd",
@@ -4188,14 +4236,14 @@ var ShapesIcon = (props) => /* @__PURE__ */ jsx128(
4188
4236
  );
4189
4237
 
4190
4238
  // src/components/Icon/icons/ShareIcon.tsx
4191
- import { jsx as jsx129 } from "react/jsx-runtime";
4192
- var ShareIcon = (props) => /* @__PURE__ */ jsx129(
4239
+ import { jsx as jsx130 } from "react/jsx-runtime";
4240
+ var ShareIcon = (props) => /* @__PURE__ */ jsx130(
4193
4241
  "svg",
4194
4242
  {
4195
4243
  ...props,
4196
4244
  viewBox: "0 0 24 24",
4197
4245
  xmlns: "http://www.w3.org/2000/svg",
4198
- children: /* @__PURE__ */ jsx129(
4246
+ children: /* @__PURE__ */ jsx130(
4199
4247
  "path",
4200
4248
  {
4201
4249
  clipRule: "evenodd",
@@ -4208,14 +4256,14 @@ var ShareIcon = (props) => /* @__PURE__ */ jsx129(
4208
4256
  );
4209
4257
 
4210
4258
  // src/components/Icon/icons/SharingPermissionsIcon.tsx
4211
- import { jsx as jsx130 } from "react/jsx-runtime";
4212
- var SharingPermissionsIcon = (props) => /* @__PURE__ */ jsx130(
4259
+ import { jsx as jsx131 } from "react/jsx-runtime";
4260
+ var SharingPermissionsIcon = (props) => /* @__PURE__ */ jsx131(
4213
4261
  "svg",
4214
4262
  {
4215
4263
  ...props,
4216
4264
  viewBox: "0 0 24 24",
4217
4265
  xmlns: "http://www.w3.org/2000/svg",
4218
- children: /* @__PURE__ */ jsx130(
4266
+ children: /* @__PURE__ */ jsx131(
4219
4267
  "path",
4220
4268
  {
4221
4269
  clipRule: "evenodd",
@@ -4228,14 +4276,14 @@ var SharingPermissionsIcon = (props) => /* @__PURE__ */ jsx130(
4228
4276
  );
4229
4277
 
4230
4278
  // src/components/Icon/icons/SimulcastIcon.tsx
4231
- import { jsx as jsx131 } from "react/jsx-runtime";
4232
- var SimulcastIcon = (props) => /* @__PURE__ */ jsx131(
4279
+ import { jsx as jsx132 } from "react/jsx-runtime";
4280
+ var SimulcastIcon = (props) => /* @__PURE__ */ jsx132(
4233
4281
  "svg",
4234
4282
  {
4235
4283
  ...props,
4236
4284
  viewBox: "0 0 24 24",
4237
4285
  xmlns: "http://www.w3.org/2000/svg",
4238
- children: /* @__PURE__ */ jsx131(
4286
+ children: /* @__PURE__ */ jsx132(
4239
4287
  "path",
4240
4288
  {
4241
4289
  clipRule: "evenodd",
@@ -4248,14 +4296,14 @@ var SimulcastIcon = (props) => /* @__PURE__ */ jsx131(
4248
4296
  );
4249
4297
 
4250
4298
  // src/components/Icon/icons/SortIcon.tsx
4251
- import { jsx as jsx132 } from "react/jsx-runtime";
4252
- var SortIcon = (props) => /* @__PURE__ */ jsx132(
4299
+ import { jsx as jsx133 } from "react/jsx-runtime";
4300
+ var SortIcon = (props) => /* @__PURE__ */ jsx133(
4253
4301
  "svg",
4254
4302
  {
4255
4303
  ...props,
4256
4304
  viewBox: "0 0 24 24",
4257
4305
  xmlns: "http://www.w3.org/2000/svg",
4258
- children: /* @__PURE__ */ jsx132(
4306
+ children: /* @__PURE__ */ jsx133(
4259
4307
  "path",
4260
4308
  {
4261
4309
  clipRule: "evenodd",
@@ -4268,14 +4316,14 @@ var SortIcon = (props) => /* @__PURE__ */ jsx132(
4268
4316
  );
4269
4317
 
4270
4318
  // src/components/Icon/icons/SparkleIcon.tsx
4271
- import { jsx as jsx133 } from "react/jsx-runtime";
4272
- var SparkleIcon = (props) => /* @__PURE__ */ jsx133(
4319
+ import { jsx as jsx134 } from "react/jsx-runtime";
4320
+ var SparkleIcon = (props) => /* @__PURE__ */ jsx134(
4273
4321
  "svg",
4274
4322
  {
4275
4323
  ...props,
4276
4324
  viewBox: "0 0 24 24",
4277
4325
  xmlns: "http://www.w3.org/2000/svg",
4278
- children: /* @__PURE__ */ jsx133(
4326
+ children: /* @__PURE__ */ jsx134(
4279
4327
  "path",
4280
4328
  {
4281
4329
  clipRule: "evenodd",
@@ -4288,14 +4336,14 @@ var SparkleIcon = (props) => /* @__PURE__ */ jsx133(
4288
4336
  );
4289
4337
 
4290
4338
  // src/components/Icon/icons/SpinnerIcon.tsx
4291
- import { jsx as jsx134 } from "react/jsx-runtime";
4292
- var SpinnerIcon = (props) => /* @__PURE__ */ jsx134(
4339
+ import { jsx as jsx135 } from "react/jsx-runtime";
4340
+ var SpinnerIcon = (props) => /* @__PURE__ */ jsx135(
4293
4341
  "svg",
4294
4342
  {
4295
4343
  ...props,
4296
4344
  viewBox: "0 0 24 24",
4297
4345
  xmlns: "http://www.w3.org/2000/svg",
4298
- children: /* @__PURE__ */ jsx134(
4346
+ children: /* @__PURE__ */ jsx135(
4299
4347
  "path",
4300
4348
  {
4301
4349
  clipRule: "evenodd",
@@ -4308,14 +4356,14 @@ var SpinnerIcon = (props) => /* @__PURE__ */ jsx134(
4308
4356
  );
4309
4357
 
4310
4358
  // src/components/Icon/icons/StatsIcon.tsx
4311
- import { jsx as jsx135 } from "react/jsx-runtime";
4312
- var StatsIcon = (props) => /* @__PURE__ */ jsx135(
4359
+ import { jsx as jsx136 } from "react/jsx-runtime";
4360
+ var StatsIcon = (props) => /* @__PURE__ */ jsx136(
4313
4361
  "svg",
4314
4362
  {
4315
4363
  ...props,
4316
4364
  viewBox: "0 0 24 24",
4317
4365
  xmlns: "http://www.w3.org/2000/svg",
4318
- children: /* @__PURE__ */ jsx135(
4366
+ children: /* @__PURE__ */ jsx136(
4319
4367
  "path",
4320
4368
  {
4321
4369
  clipRule: "evenodd",
@@ -4328,14 +4376,14 @@ var StatsIcon = (props) => /* @__PURE__ */ jsx135(
4328
4376
  );
4329
4377
 
4330
4378
  // src/components/Icon/icons/SwitchAccountsIcon.tsx
4331
- import { jsx as jsx136 } from "react/jsx-runtime";
4332
- var SwitchAccountsIcon = (props) => /* @__PURE__ */ jsx136(
4379
+ import { jsx as jsx137 } from "react/jsx-runtime";
4380
+ var SwitchAccountsIcon = (props) => /* @__PURE__ */ jsx137(
4333
4381
  "svg",
4334
4382
  {
4335
4383
  ...props,
4336
4384
  viewBox: "0 0 24 24",
4337
4385
  xmlns: "http://www.w3.org/2000/svg",
4338
- children: /* @__PURE__ */ jsx136(
4386
+ children: /* @__PURE__ */ jsx137(
4339
4387
  "path",
4340
4388
  {
4341
4389
  clipRule: "evenodd",
@@ -4348,14 +4396,14 @@ var SwitchAccountsIcon = (props) => /* @__PURE__ */ jsx136(
4348
4396
  );
4349
4397
 
4350
4398
  // src/components/Icon/icons/TagIcon.tsx
4351
- import { jsx as jsx137 } from "react/jsx-runtime";
4352
- var TagIcon = (props) => /* @__PURE__ */ jsx137(
4399
+ import { jsx as jsx138 } from "react/jsx-runtime";
4400
+ var TagIcon = (props) => /* @__PURE__ */ jsx138(
4353
4401
  "svg",
4354
4402
  {
4355
4403
  ...props,
4356
4404
  viewBox: "0 0 24 24",
4357
4405
  xmlns: "http://www.w3.org/2000/svg",
4358
- children: /* @__PURE__ */ jsx137(
4406
+ children: /* @__PURE__ */ jsx138(
4359
4407
  "path",
4360
4408
  {
4361
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",
@@ -4366,14 +4414,14 @@ var TagIcon = (props) => /* @__PURE__ */ jsx137(
4366
4414
  );
4367
4415
 
4368
4416
  // src/components/Icon/icons/ThumbnailIcon.tsx
4369
- import { jsx as jsx138 } from "react/jsx-runtime";
4370
- var ThumbnailIcon = (props) => /* @__PURE__ */ jsx138(
4417
+ import { jsx as jsx139 } from "react/jsx-runtime";
4418
+ var ThumbnailIcon = (props) => /* @__PURE__ */ jsx139(
4371
4419
  "svg",
4372
4420
  {
4373
4421
  ...props,
4374
4422
  viewBox: "0 0 24 24",
4375
4423
  xmlns: "http://www.w3.org/2000/svg",
4376
- children: /* @__PURE__ */ jsx138(
4424
+ children: /* @__PURE__ */ jsx139(
4377
4425
  "path",
4378
4426
  {
4379
4427
  clipRule: "evenodd",
@@ -4386,14 +4434,14 @@ var ThumbnailIcon = (props) => /* @__PURE__ */ jsx138(
4386
4434
  );
4387
4435
 
4388
4436
  // src/components/Icon/icons/ThumbsDownIcon.tsx
4389
- import { jsx as jsx139 } from "react/jsx-runtime";
4390
- var ThumbsDownIcon = (props) => /* @__PURE__ */ jsx139(
4437
+ import { jsx as jsx140 } from "react/jsx-runtime";
4438
+ var ThumbsDownIcon = (props) => /* @__PURE__ */ jsx140(
4391
4439
  "svg",
4392
4440
  {
4393
4441
  ...props,
4394
4442
  viewBox: "0 0 24 24",
4395
4443
  xmlns: "http://www.w3.org/2000/svg",
4396
- children: /* @__PURE__ */ jsx139(
4444
+ children: /* @__PURE__ */ jsx140(
4397
4445
  "path",
4398
4446
  {
4399
4447
  clipRule: "evenodd",
@@ -4406,14 +4454,14 @@ var ThumbsDownIcon = (props) => /* @__PURE__ */ jsx139(
4406
4454
  );
4407
4455
 
4408
4456
  // src/components/Icon/icons/ThumbsUpIcon.tsx
4409
- import { jsx as jsx140 } from "react/jsx-runtime";
4410
- var ThumbsUpIcon = (props) => /* @__PURE__ */ jsx140(
4457
+ import { jsx as jsx141 } from "react/jsx-runtime";
4458
+ var ThumbsUpIcon = (props) => /* @__PURE__ */ jsx141(
4411
4459
  "svg",
4412
4460
  {
4413
4461
  ...props,
4414
4462
  viewBox: "0 0 24 24",
4415
4463
  xmlns: "http://www.w3.org/2000/svg",
4416
- children: /* @__PURE__ */ jsx140(
4464
+ children: /* @__PURE__ */ jsx141(
4417
4465
  "path",
4418
4466
  {
4419
4467
  clipRule: "evenodd",
@@ -4426,14 +4474,14 @@ var ThumbsUpIcon = (props) => /* @__PURE__ */ jsx140(
4426
4474
  );
4427
4475
 
4428
4476
  // src/components/Icon/icons/TransitionsIcon.tsx
4429
- import { jsx as jsx141 } from "react/jsx-runtime";
4430
- var TransitionsIcon = (props) => /* @__PURE__ */ jsx141(
4477
+ import { jsx as jsx142 } from "react/jsx-runtime";
4478
+ var TransitionsIcon = (props) => /* @__PURE__ */ jsx142(
4431
4479
  "svg",
4432
4480
  {
4433
4481
  ...props,
4434
4482
  viewBox: "0 0 24 24",
4435
4483
  xmlns: "http://www.w3.org/2000/svg",
4436
- children: /* @__PURE__ */ jsx141(
4484
+ children: /* @__PURE__ */ jsx142(
4437
4485
  "path",
4438
4486
  {
4439
4487
  clipRule: "evenodd",
@@ -4446,14 +4494,14 @@ var TransitionsIcon = (props) => /* @__PURE__ */ jsx141(
4446
4494
  );
4447
4495
 
4448
4496
  // src/components/Icon/icons/TrimIcon.tsx
4449
- import { jsx as jsx142 } from "react/jsx-runtime";
4450
- var TrimIcon = (props) => /* @__PURE__ */ jsx142(
4497
+ import { jsx as jsx143 } from "react/jsx-runtime";
4498
+ var TrimIcon = (props) => /* @__PURE__ */ jsx143(
4451
4499
  "svg",
4452
4500
  {
4453
4501
  ...props,
4454
4502
  viewBox: "0 0 24 24",
4455
4503
  xmlns: "http://www.w3.org/2000/svg",
4456
- children: /* @__PURE__ */ jsx142(
4504
+ children: /* @__PURE__ */ jsx143(
4457
4505
  "path",
4458
4506
  {
4459
4507
  clipRule: "evenodd",
@@ -4466,14 +4514,14 @@ var TrimIcon = (props) => /* @__PURE__ */ jsx142(
4466
4514
  );
4467
4515
 
4468
4516
  // src/components/Icon/icons/TurnstileIcon.tsx
4469
- import { jsx as jsx143 } from "react/jsx-runtime";
4470
- var TurnstileIcon = (props) => /* @__PURE__ */ jsx143(
4517
+ import { jsx as jsx144 } from "react/jsx-runtime";
4518
+ var TurnstileIcon = (props) => /* @__PURE__ */ jsx144(
4471
4519
  "svg",
4472
4520
  {
4473
4521
  ...props,
4474
4522
  viewBox: "0 0 24 24",
4475
4523
  xmlns: "http://www.w3.org/2000/svg",
4476
- children: /* @__PURE__ */ jsx143(
4524
+ children: /* @__PURE__ */ jsx144(
4477
4525
  "path",
4478
4526
  {
4479
4527
  clipRule: "evenodd",
@@ -4486,14 +4534,14 @@ var TurnstileIcon = (props) => /* @__PURE__ */ jsx143(
4486
4534
  );
4487
4535
 
4488
4536
  // src/components/Icon/icons/UndoIcon.tsx
4489
- import { jsx as jsx144 } from "react/jsx-runtime";
4490
- var UndoIcon = (props) => /* @__PURE__ */ jsx144(
4537
+ import { jsx as jsx145 } from "react/jsx-runtime";
4538
+ var UndoIcon = (props) => /* @__PURE__ */ jsx145(
4491
4539
  "svg",
4492
4540
  {
4493
4541
  ...props,
4494
4542
  viewBox: "0 0 24 24",
4495
4543
  xmlns: "http://www.w3.org/2000/svg",
4496
- children: /* @__PURE__ */ jsx144(
4544
+ children: /* @__PURE__ */ jsx145(
4497
4545
  "path",
4498
4546
  {
4499
4547
  clipRule: "evenodd",
@@ -4506,14 +4554,14 @@ var UndoIcon = (props) => /* @__PURE__ */ jsx144(
4506
4554
  );
4507
4555
 
4508
4556
  // src/components/Icon/icons/UnlockIcon.tsx
4509
- import { jsx as jsx145 } from "react/jsx-runtime";
4510
- var UnlockIcon = (props) => /* @__PURE__ */ jsx145(
4557
+ import { jsx as jsx146 } from "react/jsx-runtime";
4558
+ var UnlockIcon = (props) => /* @__PURE__ */ jsx146(
4511
4559
  "svg",
4512
4560
  {
4513
4561
  ...props,
4514
4562
  viewBox: "0 0 24 24",
4515
4563
  xmlns: "http://www.w3.org/2000/svg",
4516
- children: /* @__PURE__ */ jsx145(
4564
+ children: /* @__PURE__ */ jsx146(
4517
4565
  "path",
4518
4566
  {
4519
4567
  clipRule: "evenodd",
@@ -4526,14 +4574,14 @@ var UnlockIcon = (props) => /* @__PURE__ */ jsx145(
4526
4574
  );
4527
4575
 
4528
4576
  // src/components/Icon/icons/UploadIcon.tsx
4529
- import { jsx as jsx146 } from "react/jsx-runtime";
4530
- var UploadIcon = (props) => /* @__PURE__ */ jsx146(
4577
+ import { jsx as jsx147 } from "react/jsx-runtime";
4578
+ var UploadIcon = (props) => /* @__PURE__ */ jsx147(
4531
4579
  "svg",
4532
4580
  {
4533
4581
  ...props,
4534
4582
  viewBox: "0 0 24 24",
4535
4583
  xmlns: "http://www.w3.org/2000/svg",
4536
- children: /* @__PURE__ */ jsx146(
4584
+ children: /* @__PURE__ */ jsx147(
4537
4585
  "path",
4538
4586
  {
4539
4587
  clipRule: "evenodd",
@@ -4546,14 +4594,14 @@ var UploadIcon = (props) => /* @__PURE__ */ jsx146(
4546
4594
  );
4547
4595
 
4548
4596
  // src/components/Icon/icons/UsersPermissionsIcon.tsx
4549
- import { jsx as jsx147 } from "react/jsx-runtime";
4550
- var UsersPermissionsIcon = (props) => /* @__PURE__ */ jsx147(
4597
+ import { jsx as jsx148 } from "react/jsx-runtime";
4598
+ var UsersPermissionsIcon = (props) => /* @__PURE__ */ jsx148(
4551
4599
  "svg",
4552
4600
  {
4553
4601
  ...props,
4554
4602
  viewBox: "0 0 24 24",
4555
4603
  xmlns: "http://www.w3.org/2000/svg",
4556
- children: /* @__PURE__ */ jsx147(
4604
+ children: /* @__PURE__ */ jsx148(
4557
4605
  "path",
4558
4606
  {
4559
4607
  clipRule: "evenodd",
@@ -4566,14 +4614,14 @@ var UsersPermissionsIcon = (props) => /* @__PURE__ */ jsx147(
4566
4614
  );
4567
4615
 
4568
4616
  // src/components/Icon/icons/ViewStreamIcon.tsx
4569
- import { jsx as jsx148 } from "react/jsx-runtime";
4570
- var ViewStreamIcon = (props) => /* @__PURE__ */ jsx148(
4617
+ import { jsx as jsx149 } from "react/jsx-runtime";
4618
+ var ViewStreamIcon = (props) => /* @__PURE__ */ jsx149(
4571
4619
  "svg",
4572
4620
  {
4573
4621
  ...props,
4574
4622
  viewBox: "0 0 24 24",
4575
4623
  xmlns: "http://www.w3.org/2000/svg",
4576
- children: /* @__PURE__ */ jsx148(
4624
+ children: /* @__PURE__ */ jsx149(
4577
4625
  "path",
4578
4626
  {
4579
4627
  clipRule: "evenodd",
@@ -4586,14 +4634,14 @@ var ViewStreamIcon = (props) => /* @__PURE__ */ jsx148(
4586
4634
  );
4587
4635
 
4588
4636
  // src/components/Icon/icons/VolumeIcon.tsx
4589
- import { jsx as jsx149 } from "react/jsx-runtime";
4590
- var VolumeIcon = (props) => /* @__PURE__ */ jsx149(
4637
+ import { jsx as jsx150 } from "react/jsx-runtime";
4638
+ var VolumeIcon = (props) => /* @__PURE__ */ jsx150(
4591
4639
  "svg",
4592
4640
  {
4593
4641
  ...props,
4594
4642
  viewBox: "0 0 24 24",
4595
4643
  xmlns: "http://www.w3.org/2000/svg",
4596
- children: /* @__PURE__ */ jsx149(
4644
+ children: /* @__PURE__ */ jsx150(
4597
4645
  "path",
4598
4646
  {
4599
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",
@@ -4604,14 +4652,14 @@ var VolumeIcon = (props) => /* @__PURE__ */ jsx149(
4604
4652
  );
4605
4653
 
4606
4654
  // src/components/Icon/icons/VolumeOffIcon.tsx
4607
- import { jsx as jsx150 } from "react/jsx-runtime";
4608
- var VolumeOffIcon = (props) => /* @__PURE__ */ jsx150(
4655
+ import { jsx as jsx151 } from "react/jsx-runtime";
4656
+ var VolumeOffIcon = (props) => /* @__PURE__ */ jsx151(
4609
4657
  "svg",
4610
4658
  {
4611
4659
  ...props,
4612
4660
  viewBox: "0 0 24 24",
4613
4661
  xmlns: "http://www.w3.org/2000/svg",
4614
- children: /* @__PURE__ */ jsx150(
4662
+ children: /* @__PURE__ */ jsx151(
4615
4663
  "path",
4616
4664
  {
4617
4665
  clipRule: "evenodd",
@@ -4624,14 +4672,14 @@ var VolumeOffIcon = (props) => /* @__PURE__ */ jsx150(
4624
4672
  );
4625
4673
 
4626
4674
  // src/components/Icon/icons/VolumeUpIcon.tsx
4627
- import { jsx as jsx151 } from "react/jsx-runtime";
4628
- var VolumeUpIcon = (props) => /* @__PURE__ */ jsx151(
4675
+ import { jsx as jsx152 } from "react/jsx-runtime";
4676
+ var VolumeUpIcon = (props) => /* @__PURE__ */ jsx152(
4629
4677
  "svg",
4630
4678
  {
4631
4679
  ...props,
4632
4680
  viewBox: "0 0 24 24",
4633
4681
  xmlns: "http://www.w3.org/2000/svg",
4634
- children: /* @__PURE__ */ jsx151(
4682
+ children: /* @__PURE__ */ jsx152(
4635
4683
  "path",
4636
4684
  {
4637
4685
  clipRule: "evenodd",
@@ -4644,14 +4692,14 @@ var VolumeUpIcon = (props) => /* @__PURE__ */ jsx151(
4644
4692
  );
4645
4693
 
4646
4694
  // src/components/Icon/icons/VolumeXIcon.tsx
4647
- import { jsx as jsx152 } from "react/jsx-runtime";
4648
- var VolumeXIcon = (props) => /* @__PURE__ */ jsx152(
4695
+ import { jsx as jsx153 } from "react/jsx-runtime";
4696
+ var VolumeXIcon = (props) => /* @__PURE__ */ jsx153(
4649
4697
  "svg",
4650
4698
  {
4651
4699
  ...props,
4652
4700
  viewBox: "0 0 24 24",
4653
4701
  xmlns: "http://www.w3.org/2000/svg",
4654
- children: /* @__PURE__ */ jsx152(
4702
+ children: /* @__PURE__ */ jsx153(
4655
4703
  "path",
4656
4704
  {
4657
4705
  clipRule: "evenodd",
@@ -4664,14 +4712,14 @@ var VolumeXIcon = (props) => /* @__PURE__ */ jsx152(
4664
4712
  );
4665
4713
 
4666
4714
  // src/components/Icon/icons/WandIcon.tsx
4667
- import { jsx as jsx153 } from "react/jsx-runtime";
4668
- var WandIcon = (props) => /* @__PURE__ */ jsx153(
4715
+ import { jsx as jsx154 } from "react/jsx-runtime";
4716
+ var WandIcon = (props) => /* @__PURE__ */ jsx154(
4669
4717
  "svg",
4670
4718
  {
4671
4719
  ...props,
4672
4720
  viewBox: "0 0 24 24",
4673
4721
  xmlns: "http://www.w3.org/2000/svg",
4674
- children: /* @__PURE__ */ jsx153(
4722
+ children: /* @__PURE__ */ jsx154(
4675
4723
  "path",
4676
4724
  {
4677
4725
  clipRule: "evenodd",
@@ -4684,14 +4732,14 @@ var WandIcon = (props) => /* @__PURE__ */ jsx153(
4684
4732
  );
4685
4733
 
4686
4734
  // src/components/Icon/icons/ZoomInIcon.tsx
4687
- import { jsx as jsx154 } from "react/jsx-runtime";
4688
- var ZoomInIcon = (props) => /* @__PURE__ */ jsx154(
4735
+ import { jsx as jsx155 } from "react/jsx-runtime";
4736
+ var ZoomInIcon = (props) => /* @__PURE__ */ jsx155(
4689
4737
  "svg",
4690
4738
  {
4691
4739
  ...props,
4692
4740
  viewBox: "0 0 24 24",
4693
4741
  xmlns: "http://www.w3.org/2000/svg",
4694
- children: /* @__PURE__ */ jsx154(
4742
+ children: /* @__PURE__ */ jsx155(
4695
4743
  "path",
4696
4744
  {
4697
4745
  clipRule: "evenodd",
@@ -4704,14 +4752,14 @@ var ZoomInIcon = (props) => /* @__PURE__ */ jsx154(
4704
4752
  );
4705
4753
 
4706
4754
  // src/components/Icon/icons/ZoomOutIcon.tsx
4707
- import { jsx as jsx155 } from "react/jsx-runtime";
4708
- var ZoomOutIcon = (props) => /* @__PURE__ */ jsx155(
4755
+ import { jsx as jsx156 } from "react/jsx-runtime";
4756
+ var ZoomOutIcon = (props) => /* @__PURE__ */ jsx156(
4709
4757
  "svg",
4710
4758
  {
4711
4759
  ...props,
4712
4760
  viewBox: "0 0 24 24",
4713
4761
  xmlns: "http://www.w3.org/2000/svg",
4714
- children: /* @__PURE__ */ jsx155(
4762
+ children: /* @__PURE__ */ jsx156(
4715
4763
  "path",
4716
4764
  {
4717
4765
  clipRule: "evenodd",
@@ -4897,7 +4945,7 @@ var useResponsiveProp = (values) => {
4897
4945
  };
4898
4946
 
4899
4947
  // src/components/Icon/Icon.tsx
4900
- import { jsx as jsx156 } from "react/jsx-runtime";
4948
+ import { jsx as jsx157 } from "react/jsx-runtime";
4901
4949
  var iconSizeMap = {
4902
4950
  sm: "12",
4903
4951
  md: "16",
@@ -4905,8 +4953,12 @@ var iconSizeMap = {
4905
4953
  xl: "32",
4906
4954
  xxl: "48"
4907
4955
  };
4956
+ var StyledIcon = styled3.svg`
4957
+ ${({ $colorScheme }) => getColorScheme($colorScheme ?? "inherit")}
4958
+ `;
4908
4959
  var Icon = ({
4909
4960
  invertColor,
4961
+ colorScheme = "inherit",
4910
4962
  size = "lg",
4911
4963
  style,
4912
4964
  type,
@@ -4930,32 +4982,31 @@ var Icon = ({
4930
4982
  ...style
4931
4983
  };
4932
4984
  const iconColor = invertColor ? "var(--color-icon-on-fill)" : "var(--color-icon)";
4933
- if (isNotNil2(otherProps.color)) {
4934
- delete otherProps.color;
4935
- }
4936
- return /* @__PURE__ */ jsx156(
4937
- IconElement,
4985
+ return /* @__PURE__ */ jsx157(
4986
+ StyledIcon,
4938
4987
  {
4988
+ $colorScheme: colorScheme,
4939
4989
  "aria-hidden": "true",
4940
- color: iconColor,
4990
+ as: IconElement,
4941
4991
  height: `${iconSizeMap[responsiveSize]}px`,
4942
4992
  role: "presentation",
4943
4993
  style: defaultStyle,
4944
4994
  viewBox: "0 0 24 24",
4945
4995
  width: `${iconSizeMap[responsiveSize]}px`,
4946
4996
  xmlns: "http://www.w3.org/2000/svg",
4947
- ...otherProps
4997
+ ...otherProps,
4998
+ color: iconColor
4948
4999
  }
4949
5000
  );
4950
5001
  };
4951
5002
  Icon.displayName = "Icon";
4952
5003
 
4953
5004
  // src/components/Link/Link.tsx
4954
- import { forwardRef } from "react";
5005
+ import { forwardRef as forwardRef2 } from "react";
4955
5006
  import { isNil as isNil5, isNotNil as isNotNil3, isNotUndefined as isNotUndefined2, isUndefined as isUndefined2 } from "@wistia/type-guards";
4956
- import styled2 from "styled-components";
5007
+ import styled4 from "styled-components";
4957
5008
  import { Link as RouterLink, useInRouterContext } from "react-router-dom";
4958
- import { jsx as jsx157 } from "react/jsx-runtime";
5009
+ import { jsx as jsx158 } from "react/jsx-runtime";
4959
5010
  var generateHref = (href, type, disabled) => {
4960
5011
  if (disabled || isNil5(href)) {
4961
5012
  return void 0;
@@ -4971,7 +5022,7 @@ var generateHref = (href, type, disabled) => {
4971
5022
  };
4972
5023
  var isButton = (props) => isUndefined2(props.href);
4973
5024
  var isLink = (props) => isNotUndefined2(props.href);
4974
- var StyledLink = styled2.a`
5025
+ var StyledLink = styled4.a`
4975
5026
  ${({ href }) => isNil5(href) && buttonResetCss};
4976
5027
  ${({ $colorScheme }) => getColorScheme($colorScheme)}
4977
5028
  cursor: pointer;
@@ -4979,7 +5030,7 @@ var StyledLink = styled2.a`
4979
5030
  color: var(--color-text-link);
4980
5031
  text-decoration: ${({ $underline }) => $underline ? "underline" : "none"};
4981
5032
  `;
4982
- var Link = forwardRef(
5033
+ var Link = forwardRef2(
4983
5034
  ({
4984
5035
  beforeAction,
4985
5036
  children,
@@ -5017,7 +5068,7 @@ var Link = forwardRef(
5017
5068
  onClick: handleClick
5018
5069
  };
5019
5070
  if (isButton(props)) {
5020
- return /* @__PURE__ */ jsx157(
5071
+ return /* @__PURE__ */ jsx158(
5021
5072
  StyledLink,
5022
5073
  {
5023
5074
  ref,
@@ -5037,7 +5088,7 @@ var Link = forwardRef(
5037
5088
  ...commonProps,
5038
5089
  ...externalLinkProps
5039
5090
  };
5040
- return inRouterContext && type !== "external" ? /* @__PURE__ */ jsx157(
5091
+ return inRouterContext && type !== "external" ? /* @__PURE__ */ jsx158(
5041
5092
  StyledLink,
5042
5093
  {
5043
5094
  as: RouterLink,
@@ -5045,7 +5096,7 @@ var Link = forwardRef(
5045
5096
  to: to ?? "",
5046
5097
  children
5047
5098
  }
5048
- ) : /* @__PURE__ */ jsx157(
5099
+ ) : /* @__PURE__ */ jsx158(
5049
5100
  StyledLink,
5050
5101
  {
5051
5102
  as: "a",
@@ -5061,9 +5112,9 @@ var Link = forwardRef(
5061
5112
  Link.displayName = "Link";
5062
5113
 
5063
5114
  // src/components/Button/Button.tsx
5064
- 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";
5065
5116
  var isLink2 = (props) => isNotUndefined3(props.href);
5066
- var StyledButton = styled3.button`
5117
+ var StyledButton = styled5.button`
5067
5118
  ${buttonResetCss}
5068
5119
  ${({ colorScheme }) => getColorScheme(colorScheme)}
5069
5120
  ${({ size }) => buttonSizeStyles[size]}
@@ -5072,20 +5123,23 @@ var StyledButton = styled3.button`
5072
5123
  ${({ fullWidth }) => fullWidth && "width: 100%;"}
5073
5124
  position: relative;
5074
5125
  `;
5075
- var StyledButtonContent = styled3.div`
5126
+ var StyledButtonContent = styled5.div`
5076
5127
  align-items: center;
5077
5128
  display: inline-flex;
5078
5129
  flex-grow: 1;
5079
5130
  justify-content: center;
5080
- opacity: ${({ isLoading }) => isLoading ? 0 : 1};
5131
+ opacity: ${({ $isLoading }) => $isLoading ? 0 : 1};
5081
5132
  padding: 0 var(--button-label-padding-horizontal);
5082
5133
  gap: var(--button-label-gap);
5134
+
5135
+ ${({ $hasLeftIcon }) => $hasLeftIcon && "padding-left: 0;"}
5136
+ ${({ $hasRightIcon }) => $hasRightIcon && "padding-right: 0;"}
5083
5137
  `;
5084
- var StyledButtonContentLabel = styled3.span`
5138
+ var StyledButtonContentLabel = styled5.span`
5085
5139
  flex: 1;
5086
5140
  text-align: center;
5087
5141
  `;
5088
- var StyledButtonLoading = styled3.div`
5142
+ var StyledButtonLoading = styled5.div`
5089
5143
  position: absolute;
5090
5144
  display: flex;
5091
5145
  `;
@@ -5095,16 +5149,24 @@ var ButtonContent = ({
5095
5149
  rightIcon,
5096
5150
  children
5097
5151
  }) => {
5098
- return /* @__PURE__ */ jsxs3(Fragment, { children: [
5099
- isLoading ? /* @__PURE__ */ jsx158(StyledButtonLoading, { children: /* @__PURE__ */ jsx158(Icon, { type: "spinner" }) }) : null,
5100
- /* @__PURE__ */ jsxs3(StyledButtonContent, { isLoading, children: [
5101
- leftIcon ?? null,
5102
- /* @__PURE__ */ jsx158(StyledButtonContentLabel, { children }),
5103
- rightIcon ?? null
5104
- ] })
5152
+ return /* @__PURE__ */ jsxs4(Fragment, { children: [
5153
+ isLoading ? /* @__PURE__ */ jsx159(StyledButtonLoading, { children: /* @__PURE__ */ jsx159(Icon, { type: "spinner" }) }) : null,
5154
+ /* @__PURE__ */ jsxs4(
5155
+ StyledButtonContent,
5156
+ {
5157
+ $hasLeftIcon: isNotNil4(leftIcon),
5158
+ $hasRightIcon: isNotNil4(rightIcon),
5159
+ $isLoading: isLoading,
5160
+ children: [
5161
+ leftIcon ?? null,
5162
+ /* @__PURE__ */ jsx159(StyledButtonContentLabel, { children }),
5163
+ rightIcon ?? null
5164
+ ]
5165
+ }
5166
+ )
5105
5167
  ] });
5106
5168
  };
5107
- var Button = forwardRef2(
5169
+ var Button = forwardRef3(
5108
5170
  ({
5109
5171
  children,
5110
5172
  forceState,
@@ -5139,14 +5201,14 @@ var Button = forwardRef2(
5139
5201
  commonProps.className = `${className ?? ""} force-state-${forceState}`;
5140
5202
  }
5141
5203
  if (isLink2(props)) {
5142
- return /* @__PURE__ */ jsx158(
5204
+ return /* @__PURE__ */ jsx159(
5143
5205
  StyledButton,
5144
5206
  {
5145
5207
  ref,
5146
5208
  as: Link,
5147
5209
  ...props,
5148
5210
  ...commonProps,
5149
- children: /* @__PURE__ */ jsx158(
5211
+ children: /* @__PURE__ */ jsx159(
5150
5212
  ButtonContent,
5151
5213
  {
5152
5214
  isLoading,
@@ -5167,7 +5229,7 @@ var Button = forwardRef2(
5167
5229
  onClick(event);
5168
5230
  }
5169
5231
  };
5170
- return /* @__PURE__ */ jsx158(
5232
+ return /* @__PURE__ */ jsx159(
5171
5233
  StyledButton,
5172
5234
  {
5173
5235
  ref,
@@ -5175,7 +5237,7 @@ var Button = forwardRef2(
5175
5237
  type: "button",
5176
5238
  ...props,
5177
5239
  ...commonProps,
5178
- children: /* @__PURE__ */ jsx158(
5240
+ children: /* @__PURE__ */ jsx159(
5179
5241
  ButtonContent,
5180
5242
  {
5181
5243
  isLoading,
@@ -5191,9 +5253,9 @@ var Button = forwardRef2(
5191
5253
  Button.displayName = "Button";
5192
5254
 
5193
5255
  // src/components/ButtonGroup/ButtonGroup.tsx
5194
- import styled4 from "styled-components";
5256
+ import styled6 from "styled-components";
5195
5257
  import { isNil as isNil6 } from "@wistia/type-guards";
5196
- import { jsx as jsx159 } from "react/jsx-runtime";
5258
+ import { jsx as jsx160 } from "react/jsx-runtime";
5197
5259
  var getAlignment = (align) => {
5198
5260
  if (align === "center") {
5199
5261
  return "center";
@@ -5206,7 +5268,7 @@ var getAlignment = (align) => {
5206
5268
  }
5207
5269
  return void 0;
5208
5270
  };
5209
- var ButtonGroupComponent = styled4.div`
5271
+ var ButtonGroupComponent = styled6.div`
5210
5272
  display: flex;
5211
5273
 
5212
5274
  /* this helps ensure that primary buttons appear at the top of the column */
@@ -5235,7 +5297,7 @@ var ButtonGroup = ({
5235
5297
  if (isNil6(children)) {
5236
5298
  return null;
5237
5299
  }
5238
- return /* @__PURE__ */ jsx159(
5300
+ return /* @__PURE__ */ jsx160(
5239
5301
  ButtonGroupComponent,
5240
5302
  {
5241
5303
  align,
@@ -5248,13 +5310,13 @@ var ButtonGroup = ({
5248
5310
  ButtonGroup.displayName = "ButtonGroup";
5249
5311
 
5250
5312
  // src/components/Divider/Divider.tsx
5251
- import styled5 from "styled-components";
5252
- import { jsx as jsx160 } from "react/jsx-runtime";
5313
+ import styled7 from "styled-components";
5314
+ import { jsx as jsx161 } from "react/jsx-runtime";
5253
5315
  var sizeToPixelMap = {
5254
5316
  lg: 4,
5255
5317
  sm: 1
5256
5318
  };
5257
- var DividerComponent = styled5.hr`
5319
+ var DividerComponent = styled7.hr`
5258
5320
  background: none;
5259
5321
  border-bottom: none;
5260
5322
  border-left: none;
@@ -5269,7 +5331,7 @@ var DividerComponent = styled5.hr`
5269
5331
  `;
5270
5332
  var Divider = ({ size = "sm", ...otherProps }) => {
5271
5333
  const responsiveSize = useResponsiveProp(size);
5272
- return /* @__PURE__ */ jsx160(
5334
+ return /* @__PURE__ */ jsx161(
5273
5335
  DividerComponent,
5274
5336
  {
5275
5337
  borderHeight: sizeToPixelMap[responsiveSize],
@@ -5281,8 +5343,8 @@ Divider.displayName = "Divider";
5281
5343
 
5282
5344
  // src/components/Ellipsis/Ellipsis.tsx
5283
5345
  import { isNotNil as isNotNil5 } from "@wistia/type-guards";
5284
- import styled6, { css as css12 } from "styled-components";
5285
- import { jsx as jsx161 } from "react/jsx-runtime";
5346
+ import styled8, { css as css12 } from "styled-components";
5347
+ import { jsx as jsx162 } from "react/jsx-runtime";
5286
5348
  var ellipsisStyle = css12`
5287
5349
  overflow: hidden;
5288
5350
  text-overflow: ellipsis;
@@ -5309,7 +5371,7 @@ var ellipsisStyle = css12`
5309
5371
  var ellipsisFlexParentStyle = css12`
5310
5372
  min-width: 0;
5311
5373
  `;
5312
- var EllipsisComponent = styled6.div`
5374
+ var EllipsisComponent = styled8.div`
5313
5375
  ${ellipsisStyle};
5314
5376
  ${({ lines }) => {
5315
5377
  if (isNotNil5(lines)) {
@@ -5323,7 +5385,7 @@ var EllipsisComponent = styled6.div`
5323
5385
  return void 0;
5324
5386
  }}
5325
5387
  `;
5326
- var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ jsx161(
5388
+ var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ jsx162(
5327
5389
  EllipsisComponent,
5328
5390
  {
5329
5391
  lines,
@@ -5334,8 +5396,8 @@ var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ jsx161(
5334
5396
  Ellipsis.displayName = "Ellipsis";
5335
5397
 
5336
5398
  // src/components/Heading/Heading.tsx
5337
- import { forwardRef as forwardRef3 } from "react";
5338
- import styled7, { css as css13 } from "styled-components";
5399
+ import { forwardRef as forwardRef4 } from "react";
5400
+ import styled9, { css as css13 } from "styled-components";
5339
5401
 
5340
5402
  // src/private/helpers/makePolymorphic/makePolymorphic.tsx
5341
5403
  var makePolymorphic = (component) => {
@@ -5343,7 +5405,7 @@ var makePolymorphic = (component) => {
5343
5405
  };
5344
5406
 
5345
5407
  // src/components/Heading/Heading.tsx
5346
- import { jsx as jsx162 } from "react/jsx-runtime";
5408
+ import { jsx as jsx163 } from "react/jsx-runtime";
5347
5409
  var heroStyle = css13`
5348
5410
  --font-family: var(--typography-heading-hero-family);
5349
5411
  --font-size: var(--typography-heading-hero-size);
@@ -5396,7 +5458,7 @@ var variantStyleMap = {
5396
5458
  heading6: heading6TextStyle
5397
5459
  };
5398
5460
  var DEFAULT_ELEMENT = "h1";
5399
- var StyledHeading = styled7.div`
5461
+ var StyledHeading = styled9.div`
5400
5462
  ${({ colorScheme }) => getColorScheme(colorScheme)};
5401
5463
  font-family: var(--font-family);
5402
5464
  font-size: var(--font-size);
@@ -5428,7 +5490,7 @@ var variantElementMap = {
5428
5490
  heading5: "h5",
5429
5491
  heading6: "h6"
5430
5492
  };
5431
- var HeadingComponent = forwardRef3(
5493
+ var HeadingComponent = forwardRef4(
5432
5494
  ({
5433
5495
  align = "left",
5434
5496
  colorScheme = "inherit",
@@ -5439,7 +5501,7 @@ var HeadingComponent = forwardRef3(
5439
5501
  variant = "heading1",
5440
5502
  renderAs,
5441
5503
  ...otherProps
5442
- }, ref) => /* @__PURE__ */ jsx162(
5504
+ }, ref) => /* @__PURE__ */ jsx163(
5443
5505
  StyledHeading,
5444
5506
  {
5445
5507
  ref,
@@ -5459,8 +5521,8 @@ HeadingComponent.displayName = "Heading";
5459
5521
  var Heading = makePolymorphic(HeadingComponent);
5460
5522
 
5461
5523
  // src/components/IconButton/IconButton.tsx
5462
- import { Children as Children2, cloneElement as cloneElement2, forwardRef as forwardRef4 } from "react";
5463
- import styled9 from "styled-components";
5524
+ import { Children as Children2, cloneElement as cloneElement2, forwardRef as forwardRef5 } from "react";
5525
+ import styled11 from "styled-components";
5464
5526
 
5465
5527
  // src/components/Tooltip/Tooltip.tsx
5466
5528
  import {
@@ -5470,8 +5532,8 @@ import {
5470
5532
  Portal,
5471
5533
  Arrow
5472
5534
  } from "@radix-ui/react-tooltip";
5473
- import styled8, { css as css14 } from "styled-components";
5474
- 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";
5475
5537
  var CompactTooltipStyles = css14`
5476
5538
  --tooltip-font-size: var(--typography-label-4-size);
5477
5539
  --tooltip-line-height: var(--typography-label-4-line-height);
@@ -5479,7 +5541,7 @@ var CompactTooltipStyles = css14`
5479
5541
  --tooltip-horizontal-padding: var(--space-02);
5480
5542
  --tooltip-vertical-padding: var(--space-03);
5481
5543
  `;
5482
- var StyledContent = styled8(Content)`
5544
+ var StyledContent = styled10(Content)`
5483
5545
  --tooltip-font-family: var(--typography-family-default);
5484
5546
  --tooltip-border-radius: var(--border-radius-05);
5485
5547
  --tooltip-bg: var(--color-bg-tooltip);
@@ -5537,14 +5599,14 @@ var Tooltip = ({
5537
5599
  if (forceOpen === true) {
5538
5600
  rootProps.open = true;
5539
5601
  }
5540
- return /* @__PURE__ */ jsxs4(
5602
+ return /* @__PURE__ */ jsxs5(
5541
5603
  Root,
5542
5604
  {
5543
5605
  delayDuration: delay,
5544
5606
  ...rootProps,
5545
5607
  children: [
5546
- /* @__PURE__ */ jsx163(Trigger, { asChild: true, children }),
5547
- /* @__PURE__ */ jsx163(Portal, { children: /* @__PURE__ */ jsxs4(
5608
+ /* @__PURE__ */ jsx164(Trigger, { asChild: true, children }),
5609
+ /* @__PURE__ */ jsx164(Portal, { children: /* @__PURE__ */ jsxs5(
5548
5610
  StyledContent,
5549
5611
  {
5550
5612
  $compact: compact,
@@ -5552,7 +5614,7 @@ var Tooltip = ({
5552
5614
  sideOffset: hideArrow ? VISUAL_OFFSET : VISUAL_OFFSET - 2,
5553
5615
  children: [
5554
5616
  content,
5555
- !hideArrow ? /* @__PURE__ */ jsx163(Arrow, { asChild: true, children: /* @__PURE__ */ jsx163(
5617
+ !hideArrow ? /* @__PURE__ */ jsx164(Arrow, { asChild: true, children: /* @__PURE__ */ jsx164(
5556
5618
  "svg",
5557
5619
  {
5558
5620
  fill: "var(--tooltip-bg)",
@@ -5561,7 +5623,7 @@ var Tooltip = ({
5561
5623
  viewBox: "0 0 12 8",
5562
5624
  width: "12",
5563
5625
  xmlns: "http://www.w3.org/2000/svg",
5564
- 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" })
5565
5627
  }
5566
5628
  ) }) : null
5567
5629
  ]
@@ -5574,14 +5636,14 @@ var Tooltip = ({
5574
5636
  Tooltip.displayName = "Tooltip";
5575
5637
 
5576
5638
  // src/components/IconButton/IconButton.tsx
5577
- import { jsx as jsx164 } from "react/jsx-runtime";
5639
+ import { jsx as jsx165 } from "react/jsx-runtime";
5578
5640
  var buttonIconSizeMap = {
5579
5641
  small: "sm",
5580
5642
  medium: "md",
5581
5643
  large: "lg",
5582
5644
  hero: "xl"
5583
5645
  };
5584
- var StyledButton2 = styled9(Button)`
5646
+ var StyledButton2 = styled11(Button)`
5585
5647
  --icon-button-size-small: 24px;
5586
5648
  --icon-button-size-medium: 32px;
5587
5649
  --icon-button-size-large: 40px;
@@ -5595,10 +5657,10 @@ var StyledButton2 = styled9(Button)`
5595
5657
  align-items: center;
5596
5658
  line-height: 1;
5597
5659
  `;
5598
- var IconButton = forwardRef4(
5660
+ var IconButton = forwardRef5(
5599
5661
  ({ children, label, disableTooltip = false, size = "medium", ...props }, ref) => {
5600
5662
  const responsiveSize = useResponsiveProp(size);
5601
- const button = /* @__PURE__ */ jsx164(
5663
+ const button = /* @__PURE__ */ jsx165(
5602
5664
  StyledButton2,
5603
5665
  {
5604
5666
  ...props,
@@ -5614,17 +5676,17 @@ var IconButton = forwardRef4(
5614
5676
  if (disableTooltip) {
5615
5677
  return button;
5616
5678
  }
5617
- return /* @__PURE__ */ jsx164(Tooltip, { content: label, children: button });
5679
+ return /* @__PURE__ */ jsx165(Tooltip, { content: label, children: button });
5618
5680
  }
5619
5681
  );
5620
5682
  IconButton.displayName = "IconButton";
5621
5683
 
5622
5684
  // src/components/ScreenReaderOnly/ScreenReaderOnly.tsx
5623
- import styled10 from "styled-components";
5685
+ import styled12 from "styled-components";
5624
5686
  import { isNotNil as isNotNil6 } from "@wistia/type-guards";
5625
- import { jsx as jsx165 } from "react/jsx-runtime";
5626
- var VisuallyHidden = styled10.div({ ...visuallyHiddenStyle });
5627
- var VisuallyHiddenButFocusable = styled10.div({
5687
+ import { jsx as jsx166 } from "react/jsx-runtime";
5688
+ var VisuallyHidden = styled12.div({ ...visuallyHiddenStyle });
5689
+ var VisuallyHiddenButFocusable = styled12.div({
5628
5690
  "&:not(:focus-within)": visuallyHiddenStyle
5629
5691
  });
5630
5692
  var ScreenReaderOnly = ({
@@ -5635,18 +5697,18 @@ var ScreenReaderOnly = ({
5635
5697
  }) => {
5636
5698
  const accessibleText = isNotNil6(text) ? text : children;
5637
5699
  if (focusable) {
5638
- return /* @__PURE__ */ jsx165(VisuallyHiddenButFocusable, { ...otherProps, children: accessibleText });
5700
+ return /* @__PURE__ */ jsx166(VisuallyHiddenButFocusable, { ...otherProps, children: accessibleText });
5639
5701
  }
5640
- return /* @__PURE__ */ jsx165(VisuallyHidden, { ...otherProps, children: accessibleText });
5702
+ return /* @__PURE__ */ jsx166(VisuallyHidden, { ...otherProps, children: accessibleText });
5641
5703
  };
5642
5704
  ScreenReaderOnly.displayName = "ScreenReaderOnly";
5643
5705
 
5644
5706
  // src/components/Stack/Stack.tsx
5645
- import { forwardRef as forwardRef5 } from "react";
5646
- import styled11 from "styled-components";
5647
- 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";
5648
5710
  var DEFAULT_ELEMENT2 = "div";
5649
- var StyledStack = styled11.div`
5711
+ var StyledStack = styled13.div`
5650
5712
  display: flex;
5651
5713
  flex-direction: ${({ $direction }) => $direction === "horizontal" ? "row" : "column"};
5652
5714
  gap: ${({ gap }) => `var(--${gap})`};
@@ -5655,11 +5717,11 @@ var StyledStack = styled11.div`
5655
5717
  flex: 1;
5656
5718
  }
5657
5719
  `;
5658
- var StackComponent = forwardRef5(
5720
+ var StackComponent = forwardRef6(
5659
5721
  ({ renderAs, direction = "vertical", gap = "space-02", ...props }, ref) => {
5660
5722
  const responsiveGap = useResponsiveProp(gap);
5661
5723
  const responsiveDirection = useResponsiveProp(direction);
5662
- return /* @__PURE__ */ jsx166(
5724
+ return /* @__PURE__ */ jsx167(
5663
5725
  StyledStack,
5664
5726
  {
5665
5727
  ref,
@@ -5675,9 +5737,9 @@ StackComponent.displayName = "Stack";
5675
5737
  var Stack = makePolymorphic(StackComponent);
5676
5738
 
5677
5739
  // src/components/Text/Text.tsx
5678
- import { forwardRef as forwardRef6 } from "react";
5679
- import styled12, { css as css15 } from "styled-components";
5680
- 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";
5681
5743
  var bodyBoldStyles = css15`
5682
5744
  > strong,
5683
5745
  b {
@@ -5790,7 +5852,7 @@ var prominenceMap = {
5790
5852
  vibrant: vibrantProminenceStyle,
5791
5853
  secondary: secondaryProminenceStyle
5792
5854
  };
5793
- var StyledText = styled12.div`
5855
+ var StyledText = styled14.div`
5794
5856
  ${({ colorScheme }) => getColorScheme(colorScheme)};
5795
5857
  font-family: var(--font-family);
5796
5858
  font-size: var(--font-size);
@@ -5819,7 +5881,7 @@ var StyledText = styled12.div`
5819
5881
  `}
5820
5882
  `;
5821
5883
  var DEFAULT_ELEMENT3 = "div";
5822
- var TextComponent = forwardRef6(
5884
+ var TextComponent = forwardRef7(
5823
5885
  ({
5824
5886
  align = "left",
5825
5887
  colorScheme = "inherit",
@@ -5832,7 +5894,7 @@ var TextComponent = forwardRef6(
5832
5894
  renderAs,
5833
5895
  ...otherProps
5834
5896
  }, ref) => {
5835
- return /* @__PURE__ */ jsx167(
5897
+ return /* @__PURE__ */ jsx168(
5836
5898
  StyledText,
5837
5899
  {
5838
5900
  ref,
@@ -5854,20 +5916,20 @@ TextComponent.displayName = "Text";
5854
5916
  var Text = makePolymorphic(TextComponent);
5855
5917
 
5856
5918
  // src/components/WistiaLogo/WistiaLogo.tsx
5857
- import styled13 from "styled-components";
5919
+ import styled15 from "styled-components";
5858
5920
  import { isNotNil as isNotNil7 } from "@wistia/type-guards";
5859
- import { jsx as jsx168, jsxs as jsxs5 } from "react/jsx-runtime";
5921
+ import { jsx as jsx169, jsxs as jsxs6 } from "react/jsx-runtime";
5860
5922
  var renderBrandmark = (brandmarkColor, iconOnly) => {
5861
5923
  if (iconOnly) {
5862
- 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" }) });
5863
5925
  }
5864
- 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" }) });
5865
5927
  };
5866
5928
  var renderLogotype = (logotypeColor, iconOnly) => {
5867
5929
  if (iconOnly) {
5868
5930
  return null;
5869
5931
  }
5870
- 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" }) });
5871
5933
  };
5872
5934
  var computedViewBox = (iconOnly) => {
5873
5935
  if (iconOnly) {
@@ -5875,7 +5937,7 @@ var computedViewBox = (iconOnly) => {
5875
5937
  }
5876
5938
  return "0 0 144 31.47";
5877
5939
  };
5878
- var WistiaLogoComponent = styled13.svg`
5940
+ var WistiaLogoComponent = styled15.svg`
5879
5941
  height: ${({ height }) => `${height}px`};
5880
5942
 
5881
5943
  /* ensure it will always fit on mobile */
@@ -5917,7 +5979,7 @@ var WistiaLogo = ({
5917
5979
  };
5918
5980
  const brandmarkColor = VARIANT_COLORS[variant].brandmark;
5919
5981
  const logotypeColor = VARIANT_COLORS[variant].logotype;
5920
- const Logo = /* @__PURE__ */ jsxs5(
5982
+ const Logo = /* @__PURE__ */ jsxs6(
5921
5983
  WistiaLogoComponent,
5922
5984
  {
5923
5985
  height,
@@ -5927,20 +5989,42 @@ var WistiaLogo = ({
5927
5989
  xmlns: "http://www.w3.org/2000/svg",
5928
5990
  ...otherProps,
5929
5991
  children: [
5930
- /* @__PURE__ */ jsx168("title", { children: title }),
5931
- isNotNil7(description) ? /* @__PURE__ */ jsx168("desc", { children: description }) : null,
5992
+ /* @__PURE__ */ jsx169("title", { children: title }),
5993
+ isNotNil7(description) ? /* @__PURE__ */ jsx169("desc", { children: description }) : null,
5932
5994
  renderBrandmark(brandmarkColor, iconOnly),
5933
5995
  renderLogotype(logotypeColor, iconOnly)
5934
5996
  ]
5935
5997
  }
5936
5998
  );
5937
- return href !== void 0 ? /* @__PURE__ */ jsx168("a", { href, children: Logo }) : Logo;
5999
+ return href !== void 0 ? /* @__PURE__ */ jsx169("a", { href, children: Logo }) : Logo;
5938
6000
  };
5939
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";
5940
6022
  export {
6023
+ Badge,
5941
6024
  Box,
5942
6025
  Button,
5943
6026
  ButtonGroup,
6027
+ ColorSchemeWrapper,
5944
6028
  Divider,
5945
6029
  Ellipsis,
5946
6030
  Heading,