@wistia/ui 0.0.8 → 0.0.10

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