@wistia/ui 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +767 -696
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +66 -7
- package/dist/index.d.ts +66 -7
- package/dist/index.mjs +708 -639
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.0.
|
|
3
|
+
* @license @wistia/ui v0.0.9
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2024, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -39,9 +39,11 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
39
39
|
// src/index.ts
|
|
40
40
|
var src_exports = {};
|
|
41
41
|
__export(src_exports, {
|
|
42
|
+
Badge: () => Badge,
|
|
42
43
|
Box: () => Box,
|
|
43
44
|
Button: () => Button,
|
|
44
45
|
ButtonGroup: () => ButtonGroup,
|
|
46
|
+
ColorSchemeWrapper: () => ColorSchemeWrapper,
|
|
45
47
|
Divider: () => Divider,
|
|
46
48
|
Ellipsis: () => Ellipsis,
|
|
47
49
|
Heading: () => Heading,
|
|
@@ -1425,16 +1427,118 @@ var useAriaLive = () => {
|
|
|
1425
1427
|
return context;
|
|
1426
1428
|
};
|
|
1427
1429
|
|
|
1428
|
-
// src/components/
|
|
1430
|
+
// src/components/Badge/Badge.tsx
|
|
1429
1431
|
var import_react5 = require("react");
|
|
1430
|
-
var
|
|
1432
|
+
var import_styled_components11 = __toESM(require("styled-components"));
|
|
1431
1433
|
var import_type_guards5 = require("@wistia/type-guards");
|
|
1434
|
+
|
|
1435
|
+
// src/private/helpers/getColorScheme/getColorScheme.ts
|
|
1436
|
+
var import_styled_components10 = require("styled-components");
|
|
1437
|
+
var colorSchemeSchema = [
|
|
1438
|
+
{ token: "bg-surface", step: "surface" },
|
|
1439
|
+
{ token: "bg-surface-hover", step: "3" },
|
|
1440
|
+
{ token: "bg-surface-active", step: "4" },
|
|
1441
|
+
{ token: "bg-surface-secondary", step: "3" },
|
|
1442
|
+
{ token: "bg-surface-secondary-hover", step: "4" },
|
|
1443
|
+
{ token: "bg-surface-secondary-active", step: "5" },
|
|
1444
|
+
{ token: "bg-surface-tertiary", step: "5" },
|
|
1445
|
+
{ token: "bg-fill", step: "9" },
|
|
1446
|
+
{ token: "bg-fill-hover", step: "10" },
|
|
1447
|
+
{ token: "bg-fill-active", step: "11" },
|
|
1448
|
+
{ token: "text", step: "11" },
|
|
1449
|
+
{ token: "text-high-contrast", step: "12" },
|
|
1450
|
+
{ token: "text-link", step: "9" },
|
|
1451
|
+
{ token: "text-secondary", step: "11" },
|
|
1452
|
+
{ token: "text-on-fill", step: "contrast" },
|
|
1453
|
+
{ token: "border", step: "6" },
|
|
1454
|
+
{ token: "icon", step: "11" },
|
|
1455
|
+
{ token: "icon-on-fill", step: "contrast" }
|
|
1456
|
+
];
|
|
1457
|
+
var defaultScheme = import_styled_components10.css`
|
|
1458
|
+
--color-bg-surface: var(--gray-surface);
|
|
1459
|
+
--color-bg-surface-hover: var(--gray-3);
|
|
1460
|
+
--color-bg-surface-active: var(--gray-4);
|
|
1461
|
+
--color-bg-surface-secondary: var(--gray-3);
|
|
1462
|
+
--color-bg-surface-secondary-hover: var(--gray-4);
|
|
1463
|
+
--color-bg-surface-secondary-active: var(--gray-5);
|
|
1464
|
+
--color-bg-surface-tertiary: var(--gray-5);
|
|
1465
|
+
--color-bg-fill: var(--blue-9);
|
|
1466
|
+
--color-bg-fill-hover: var(--blue-10);
|
|
1467
|
+
--color-bg-fill-active: var(--blue-12);
|
|
1468
|
+
--color-text: var(--gray-12);
|
|
1469
|
+
--color-text-link: var(--blue-9);
|
|
1470
|
+
--color-text-secondary: var(--gray-11);
|
|
1471
|
+
--color-text-on-fill: var(--gray-contrast);
|
|
1472
|
+
--color-border: var(--gray-6);
|
|
1473
|
+
--color-icon: var(--gray-11);
|
|
1474
|
+
--color-icon-on-fill: var(--gray-contrast);
|
|
1475
|
+
`;
|
|
1476
|
+
var getColorScheme = (colorScheme) => {
|
|
1477
|
+
if (colorScheme === "inherit") {
|
|
1478
|
+
return null;
|
|
1479
|
+
}
|
|
1480
|
+
if (colorScheme === "default") {
|
|
1481
|
+
return defaultScheme;
|
|
1482
|
+
}
|
|
1483
|
+
return import_styled_components10.css`
|
|
1484
|
+
${colorSchemeSchema.map(({ token, step }) => {
|
|
1485
|
+
return `--color-${token}: var(--${colorScheme === "info" ? "blue" : colorScheme}-${step});`;
|
|
1486
|
+
})}
|
|
1487
|
+
`;
|
|
1488
|
+
};
|
|
1489
|
+
|
|
1490
|
+
// src/components/Badge/Badge.tsx
|
|
1432
1491
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
1492
|
+
var StyledBadge = import_styled_components11.default.div`
|
|
1493
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1494
|
+
align-items: center;
|
|
1495
|
+
background-color: var(--color-bg-surface-secondary);
|
|
1496
|
+
border-radius: var(--border-radius-rounded);
|
|
1497
|
+
color: var(--color-text);
|
|
1498
|
+
display: inline-flex;
|
|
1499
|
+
font-size: var(--typography-label-4-size);
|
|
1500
|
+
font-weight: var(--typography-label-4-weight);
|
|
1501
|
+
gap: var(--space-01);
|
|
1502
|
+
justify-content: center;
|
|
1503
|
+
padding: var(--space-01) var(--space-02);
|
|
1504
|
+
width: fit-content;
|
|
1505
|
+
|
|
1506
|
+
/* TODO should these be a token? */
|
|
1507
|
+
svg {
|
|
1508
|
+
height: 12px;
|
|
1509
|
+
width: 12px;
|
|
1510
|
+
}
|
|
1511
|
+
`;
|
|
1512
|
+
var Badge = (0, import_react5.forwardRef)(
|
|
1513
|
+
({ colorScheme = "inherit", label, icon, ...otherProps }, ref) => {
|
|
1514
|
+
const hasIcon = (0, import_type_guards5.isNotNil)(icon);
|
|
1515
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
1516
|
+
StyledBadge,
|
|
1517
|
+
{
|
|
1518
|
+
ref,
|
|
1519
|
+
...otherProps,
|
|
1520
|
+
$colorScheme: colorScheme,
|
|
1521
|
+
$hasIcon: hasIcon,
|
|
1522
|
+
children: [
|
|
1523
|
+
hasIcon ? icon : null,
|
|
1524
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { children: label })
|
|
1525
|
+
]
|
|
1526
|
+
}
|
|
1527
|
+
);
|
|
1528
|
+
}
|
|
1529
|
+
);
|
|
1530
|
+
Badge.displayName = "Badge";
|
|
1531
|
+
|
|
1532
|
+
// src/components/Box/Box.tsx
|
|
1533
|
+
var import_react6 = require("react");
|
|
1534
|
+
var import_styled_components12 = __toESM(require("styled-components"));
|
|
1535
|
+
var import_type_guards6 = require("@wistia/type-guards");
|
|
1536
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
1433
1537
|
var isDev = process.env["NODE_ENV"] === "development";
|
|
1434
1538
|
var PROPS_FOR_FLEX_CHILDREN = /* @__PURE__ */ new Set(["alignSelf", "basis", "grow", "order", "shrink"]);
|
|
1435
1539
|
var getGapStyle = (gap) => {
|
|
1436
|
-
if ((0,
|
|
1437
|
-
if ((0,
|
|
1540
|
+
if ((0, import_type_guards6.isNotNil)(gap)) {
|
|
1541
|
+
if ((0, import_type_guards6.isRecord)(gap)) {
|
|
1438
1542
|
return Object.entries(gap).map(([key, value]) => `${key}-gap: ${value};`).join("");
|
|
1439
1543
|
}
|
|
1440
1544
|
return `gap: ${gap.toString()};`;
|
|
@@ -1471,34 +1575,34 @@ var getFillViewportStyle = (fillViewport) => {
|
|
|
1471
1575
|
}
|
|
1472
1576
|
return void 0;
|
|
1473
1577
|
};
|
|
1474
|
-
var BoxComponent =
|
|
1578
|
+
var BoxComponent = import_styled_components12.default.div`
|
|
1475
1579
|
align-content: ${({ alignContent }) => alignContent};
|
|
1476
1580
|
align-items: ${({ alignItems }) => alignItems};
|
|
1477
1581
|
align-self: ${({ alignSelf }) => alignSelf ?? null};
|
|
1478
|
-
display: ${({ inline }) => (0,
|
|
1479
|
-
flex-basis: ${({ basis }) => (0,
|
|
1582
|
+
display: ${({ inline }) => (0, import_type_guards6.isNotNil)(inline) && inline ? "inline-flex" : "flex"};
|
|
1583
|
+
flex-basis: ${({ basis }) => (0, import_type_guards6.isNotNil)(basis) ? basis : null};
|
|
1480
1584
|
flex-direction: ${({ flexDirection }) => flexDirection};
|
|
1481
1585
|
${({ fillBox: fill }) => getFillStyle(fill)};
|
|
1482
1586
|
${({ fillViewport }) => getFillViewportStyle(fillViewport)};
|
|
1483
1587
|
|
|
1484
1588
|
/* Box children styles */
|
|
1485
|
-
flex-grow: ${({ grow }) => (0,
|
|
1486
|
-
flex-shrink: ${({ shrink }) => (0,
|
|
1589
|
+
flex-grow: ${({ grow }) => (0, import_type_guards6.isNotNil)(grow) ? grow : null};
|
|
1590
|
+
flex-shrink: ${({ shrink }) => (0, import_type_guards6.isNotNil)(shrink) ? shrink : null};
|
|
1487
1591
|
flex-wrap: ${({ wrapItems }) => wrapItems ? "wrap" : "nowrap"};
|
|
1488
1592
|
${({ gap }) => getGapStyle(gap)};
|
|
1489
1593
|
justify-content: ${({ justifyContent }) => justifyContent};
|
|
1490
|
-
order: ${({ order }) => (0,
|
|
1594
|
+
order: ${({ order }) => (0, import_type_guards6.isNotNil)(order) ? order : null};
|
|
1491
1595
|
`;
|
|
1492
1596
|
var wrapChildren = (children) => {
|
|
1493
|
-
if ((0,
|
|
1597
|
+
if ((0, import_type_guards6.isNotNil)(children)) {
|
|
1494
1598
|
if (typeof children === "object" && isDev) {
|
|
1495
|
-
return
|
|
1496
|
-
if ((0,
|
|
1599
|
+
return import_react6.Children.map(children, (child) => {
|
|
1600
|
+
if ((0, import_type_guards6.isNil)(child)) return null;
|
|
1497
1601
|
const elementParams = {};
|
|
1498
1602
|
if (child.type?.displayName === "Box" || child.type?.displayName === "Box_UI") {
|
|
1499
1603
|
elementParams.hasBoxParent = true;
|
|
1500
1604
|
}
|
|
1501
|
-
return (0,
|
|
1605
|
+
return (0, import_react6.cloneElement)(child, elementParams);
|
|
1502
1606
|
});
|
|
1503
1607
|
}
|
|
1504
1608
|
return children;
|
|
@@ -1525,7 +1629,7 @@ var Box = ({
|
|
|
1525
1629
|
}
|
|
1526
1630
|
});
|
|
1527
1631
|
}
|
|
1528
|
-
return /* @__PURE__ */ (0,
|
|
1632
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1529
1633
|
BoxComponent,
|
|
1530
1634
|
{
|
|
1531
1635
|
alignContent,
|
|
@@ -1545,13 +1649,13 @@ var Box = ({
|
|
|
1545
1649
|
Box.displayName = "Box";
|
|
1546
1650
|
|
|
1547
1651
|
// src/components/Button/Button.tsx
|
|
1548
|
-
var
|
|
1549
|
-
var
|
|
1550
|
-
var
|
|
1652
|
+
var import_react9 = require("react");
|
|
1653
|
+
var import_type_guards10 = require("@wistia/type-guards");
|
|
1654
|
+
var import_styled_components17 = __toESM(require("styled-components"));
|
|
1551
1655
|
|
|
1552
1656
|
// src/css/buttonResetCss.tsx
|
|
1553
|
-
var
|
|
1554
|
-
var buttonResetCss =
|
|
1657
|
+
var import_styled_components13 = require("styled-components");
|
|
1658
|
+
var buttonResetCss = import_styled_components13.css`
|
|
1555
1659
|
align-items: center;
|
|
1556
1660
|
background-color: transparent;
|
|
1557
1661
|
background-image: none;
|
|
@@ -1596,8 +1700,8 @@ var buttonResetCss = import_styled_components11.css`
|
|
|
1596
1700
|
`;
|
|
1597
1701
|
|
|
1598
1702
|
// src/components/Button/buttonStyles.tsx
|
|
1599
|
-
var
|
|
1600
|
-
var buttonSmallStyles =
|
|
1703
|
+
var import_styled_components14 = require("styled-components");
|
|
1704
|
+
var buttonSmallStyles = import_styled_components14.css`
|
|
1601
1705
|
--button-padding-vertical: var(--space-01);
|
|
1602
1706
|
--button-padding-horizontal: var(--space-02);
|
|
1603
1707
|
--button-label-padding-horizontal: var(--space-01);
|
|
@@ -1608,7 +1712,7 @@ var buttonSmallStyles = import_styled_components12.css`
|
|
|
1608
1712
|
--button-icon-size: 12px;
|
|
1609
1713
|
--button-label-gap: 4px;
|
|
1610
1714
|
`;
|
|
1611
|
-
var buttonMediumStyles =
|
|
1715
|
+
var buttonMediumStyles = import_styled_components14.css`
|
|
1612
1716
|
--button-padding-vertical: var(--space-02);
|
|
1613
1717
|
--button-padding-horizontal: var(--space-02);
|
|
1614
1718
|
--button-label-padding-horizontal: 6px;
|
|
@@ -1619,7 +1723,7 @@ var buttonMediumStyles = import_styled_components12.css`
|
|
|
1619
1723
|
--button-icon-size: 16px;
|
|
1620
1724
|
--button-label-gap: 6px;
|
|
1621
1725
|
`;
|
|
1622
|
-
var buttonLargeStyles =
|
|
1726
|
+
var buttonLargeStyles = import_styled_components14.css`
|
|
1623
1727
|
--button-padding-vertical: var(--space-02);
|
|
1624
1728
|
--button-padding-horizontal: var(--space-02);
|
|
1625
1729
|
--button-label-padding-horizontal: var(--space-02);
|
|
@@ -1630,7 +1734,7 @@ var buttonLargeStyles = import_styled_components12.css`
|
|
|
1630
1734
|
--button-icon-size: 24px;
|
|
1631
1735
|
--button-label-gap: 8px;
|
|
1632
1736
|
`;
|
|
1633
|
-
var buttonHeroStyles =
|
|
1737
|
+
var buttonHeroStyles = import_styled_components14.css`
|
|
1634
1738
|
--button-padding-vertical: var(--space-03);
|
|
1635
1739
|
--button-padding-horizontal: var(--space-03);
|
|
1636
1740
|
--button-label-padding-horizontal: var(--space-02);
|
|
@@ -1641,35 +1745,35 @@ var buttonHeroStyles = import_styled_components12.css`
|
|
|
1641
1745
|
--button-icon-size: 24px;
|
|
1642
1746
|
--button-label-gap: 8px;
|
|
1643
1747
|
`;
|
|
1644
|
-
var ghostButtonVariant =
|
|
1748
|
+
var ghostButtonVariant = import_styled_components14.css`
|
|
1645
1749
|
--button-color-bg: transparent;
|
|
1646
1750
|
--button-color-bg-hover: var(--color-bg-surface-hover);
|
|
1647
1751
|
--button-color-bg-active: var(--color-bg-surface-active);
|
|
1648
1752
|
--button-color-text: var(--color-text);
|
|
1649
1753
|
--button-color-icon: var(--color-icon);
|
|
1650
1754
|
`;
|
|
1651
|
-
var outlineButtonVariant =
|
|
1755
|
+
var outlineButtonVariant = import_styled_components14.css`
|
|
1652
1756
|
${ghostButtonVariant};
|
|
1653
1757
|
--button-color-border: var(--color-border);
|
|
1654
1758
|
|
|
1655
1759
|
border: 1px solid var(--button-color-border);
|
|
1656
1760
|
box-shadow: 0 0 0 2px var(--button-color-border) inset;
|
|
1657
1761
|
`;
|
|
1658
|
-
var softButtonVariant =
|
|
1762
|
+
var softButtonVariant = import_styled_components14.css`
|
|
1659
1763
|
--button-color-bg: var(--color-bg-surface-secondary);
|
|
1660
1764
|
--button-color-bg-hover: var(--color-bg-surface-secondary-hover);
|
|
1661
1765
|
--button-color-bg-active: var(--color-bg-surface-secondary-active);
|
|
1662
1766
|
--button-color-text: var(--color-text);
|
|
1663
1767
|
--button-color-icon: var(--color-icon);
|
|
1664
1768
|
`;
|
|
1665
|
-
var solidButtonVariant =
|
|
1769
|
+
var solidButtonVariant = import_styled_components14.css`
|
|
1666
1770
|
--button-color-bg: var(--color-bg-fill);
|
|
1667
1771
|
--button-color-bg-hover: var(--color-bg-fill-hover);
|
|
1668
1772
|
--button-color-bg-active: var(--color-bg-fill-active);
|
|
1669
1773
|
--button-color-text: var(--color-text-on-fill);
|
|
1670
1774
|
--button-color-icon: var(--color-icon-on-fill);
|
|
1671
1775
|
`;
|
|
1672
|
-
var disabledButtonVariant =
|
|
1776
|
+
var disabledButtonVariant = import_styled_components14.css`
|
|
1673
1777
|
--button-color-bg: var(--color-bg-surface-disabled);
|
|
1674
1778
|
--button-color-bg-hover: var(--color-bg-surface-disabled);
|
|
1675
1779
|
--button-color-bg-active: var(--color-bg-surface-disabled);
|
|
@@ -1677,7 +1781,7 @@ var disabledButtonVariant = import_styled_components12.css`
|
|
|
1677
1781
|
--button-color-icon: var(--color-icon-disabled);
|
|
1678
1782
|
--button-color-border: var(--color-border-disabled);
|
|
1679
1783
|
`;
|
|
1680
|
-
var pressedButtonVariant =
|
|
1784
|
+
var pressedButtonVariant = import_styled_components14.css`
|
|
1681
1785
|
--button-color-bg: var(--color-bg-surface-selected);
|
|
1682
1786
|
--button-color-bg-hover: var(--color-bg-surface-selected-hover);
|
|
1683
1787
|
--button-color-bg-active: var(--color-bg-surface-selected-active);
|
|
@@ -1685,7 +1789,7 @@ var pressedButtonVariant = import_styled_components12.css`
|
|
|
1685
1789
|
--button-color-icon: var(--color-icon-selected);
|
|
1686
1790
|
--button-color-border: var(--color-border-selected);
|
|
1687
1791
|
`;
|
|
1688
|
-
var buttonBaseStyles =
|
|
1792
|
+
var buttonBaseStyles = import_styled_components14.css`
|
|
1689
1793
|
border-radius: var(--border-radius-rounded);
|
|
1690
1794
|
font-family: var(--button-typography-family);
|
|
1691
1795
|
font-size: var(--button-typography-size);
|
|
@@ -1751,74 +1855,19 @@ var buttonSizeStyles = {
|
|
|
1751
1855
|
hero: buttonHeroStyles
|
|
1752
1856
|
};
|
|
1753
1857
|
|
|
1754
|
-
// src/private/helpers/getColorScheme/getColorScheme.ts
|
|
1755
|
-
var import_styled_components13 = require("styled-components");
|
|
1756
|
-
var colorSchemeSchema = [
|
|
1757
|
-
{ token: "bg-surface", step: "surface" },
|
|
1758
|
-
{ token: "bg-surface-hover", step: "3" },
|
|
1759
|
-
{ token: "bg-surface-active", step: "4" },
|
|
1760
|
-
{ token: "bg-surface-secondary", step: "3" },
|
|
1761
|
-
{ token: "bg-surface-secondary-hover", step: "4" },
|
|
1762
|
-
{ token: "bg-surface-secondary-active", step: "5" },
|
|
1763
|
-
{ token: "bg-surface-tertiary", step: "5" },
|
|
1764
|
-
{ token: "bg-fill", step: "9" },
|
|
1765
|
-
{ token: "bg-fill-hover", step: "10" },
|
|
1766
|
-
{ token: "bg-fill-active", step: "11" },
|
|
1767
|
-
{ token: "text", step: "11" },
|
|
1768
|
-
{ token: "text-high-contrast", step: "12" },
|
|
1769
|
-
{ token: "text-link", step: "9" },
|
|
1770
|
-
{ token: "text-secondary", step: "11" },
|
|
1771
|
-
{ token: "text-on-fill", step: "contrast" },
|
|
1772
|
-
{ token: "border", step: "6" },
|
|
1773
|
-
{ token: "icon", step: "11" },
|
|
1774
|
-
{ token: "icon-on-fill", step: "contrast" }
|
|
1775
|
-
];
|
|
1776
|
-
var defaultScheme = import_styled_components13.css`
|
|
1777
|
-
--color-bg-surface: var(--gray-surface);
|
|
1778
|
-
--color-bg-surface-hover: var(--gray-3);
|
|
1779
|
-
--color-bg-surface-active: var(--gray-4);
|
|
1780
|
-
--color-bg-surface-secondary: var(--gray-3);
|
|
1781
|
-
--color-bg-surface-secondary-hover: var(--gray-4);
|
|
1782
|
-
--color-bg-surface-secondary-active: var(--gray-5);
|
|
1783
|
-
--color-bg-surface-tertiary: var(--gray-5);
|
|
1784
|
-
--color-bg-fill: var(--blue-9);
|
|
1785
|
-
--color-bg-fill-hover: var(--blue-10);
|
|
1786
|
-
--color-bg-fill-active: var(--blue-12);
|
|
1787
|
-
--color-text: var(--gray-12);
|
|
1788
|
-
--color-text-link: var(--blue-9);
|
|
1789
|
-
--color-text-secondary: var(--gray-11);
|
|
1790
|
-
--color-text-on-fill: var(--gray-contrast);
|
|
1791
|
-
--color-border: var(--gray-6);
|
|
1792
|
-
--color-icon: var(--gray-11);
|
|
1793
|
-
--color-icon-on-fill: var(--gray-contrast);
|
|
1794
|
-
`;
|
|
1795
|
-
var getColorScheme = (colorScheme) => {
|
|
1796
|
-
if (colorScheme === "inherit") {
|
|
1797
|
-
return null;
|
|
1798
|
-
}
|
|
1799
|
-
if (colorScheme === "default") {
|
|
1800
|
-
return defaultScheme;
|
|
1801
|
-
}
|
|
1802
|
-
return import_styled_components13.css`
|
|
1803
|
-
${colorSchemeSchema.map(({ token, step }) => {
|
|
1804
|
-
return `--color-${token}: var(--${colorScheme === "info" ? "blue" : colorScheme}-${step});`;
|
|
1805
|
-
})}
|
|
1806
|
-
`;
|
|
1807
|
-
};
|
|
1808
|
-
|
|
1809
1858
|
// src/components/Icon/Icon.tsx
|
|
1810
|
-
var
|
|
1811
|
-
var
|
|
1859
|
+
var import_type_guards8 = require("@wistia/type-guards");
|
|
1860
|
+
var import_styled_components15 = __toESM(require("styled-components"));
|
|
1812
1861
|
|
|
1813
1862
|
// src/components/Icon/icons/AbTestIcon.tsx
|
|
1814
|
-
var
|
|
1815
|
-
var AbTestIcon = (props) => /* @__PURE__ */ (0,
|
|
1863
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
1864
|
+
var AbTestIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1816
1865
|
"svg",
|
|
1817
1866
|
{
|
|
1818
1867
|
...props,
|
|
1819
1868
|
viewBox: "0 0 24 24",
|
|
1820
1869
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1821
|
-
children: /* @__PURE__ */ (0,
|
|
1870
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1822
1871
|
"path",
|
|
1823
1872
|
{
|
|
1824
1873
|
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",
|
|
@@ -1829,14 +1878,14 @@ var AbTestIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
|
1829
1878
|
);
|
|
1830
1879
|
|
|
1831
1880
|
// src/components/Icon/icons/AccessibilityIcon.tsx
|
|
1832
|
-
var
|
|
1833
|
-
var AccessibilityIcon = (props) => /* @__PURE__ */ (0,
|
|
1881
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
1882
|
+
var AccessibilityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
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__ */ (0,
|
|
1888
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1840
1889
|
"path",
|
|
1841
1890
|
{
|
|
1842
1891
|
clipRule: "evenodd",
|
|
@@ -1849,14 +1898,14 @@ var AccessibilityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
|
1849
1898
|
);
|
|
1850
1899
|
|
|
1851
1900
|
// src/components/Icon/icons/ActivityIcon.tsx
|
|
1852
|
-
var
|
|
1853
|
-
var ActivityIcon = (props) => /* @__PURE__ */ (0,
|
|
1901
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
1902
|
+
var ActivityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
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__ */ (0,
|
|
1908
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1860
1909
|
"path",
|
|
1861
1910
|
{
|
|
1862
1911
|
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",
|
|
@@ -1867,14 +1916,14 @@ var ActivityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
|
1867
1916
|
);
|
|
1868
1917
|
|
|
1869
1918
|
// src/components/Icon/icons/AddMediaIcon.tsx
|
|
1870
|
-
var
|
|
1871
|
-
var AddMediaIcon = (props) => /* @__PURE__ */ (0,
|
|
1919
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
1920
|
+
var AddMediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1872
1921
|
"svg",
|
|
1873
1922
|
{
|
|
1874
1923
|
...props,
|
|
1875
1924
|
viewBox: "0 0 24 24",
|
|
1876
1925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1877
|
-
children: /* @__PURE__ */ (0,
|
|
1926
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1878
1927
|
"path",
|
|
1879
1928
|
{
|
|
1880
1929
|
clipRule: "evenodd",
|
|
@@ -1887,14 +1936,14 @@ var AddMediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
|
1887
1936
|
);
|
|
1888
1937
|
|
|
1889
1938
|
// src/components/Icon/icons/AnnotationLinkIcon.tsx
|
|
1890
|
-
var
|
|
1891
|
-
var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0,
|
|
1939
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
1940
|
+
var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
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__ */ (0,
|
|
1946
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1898
1947
|
"path",
|
|
1899
1948
|
{
|
|
1900
1949
|
clipRule: "evenodd",
|
|
@@ -1907,14 +1956,14 @@ var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)
|
|
|
1907
1956
|
);
|
|
1908
1957
|
|
|
1909
1958
|
// src/components/Icon/icons/AppearanceIcon.tsx
|
|
1910
|
-
var
|
|
1911
|
-
var AppearanceIcon = (props) => /* @__PURE__ */ (0,
|
|
1959
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
1960
|
+
var AppearanceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
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__ */ (0,
|
|
1966
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1918
1967
|
"path",
|
|
1919
1968
|
{
|
|
1920
1969
|
clipRule: "evenodd",
|
|
@@ -1927,14 +1976,14 @@ var AppearanceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
|
1927
1976
|
);
|
|
1928
1977
|
|
|
1929
1978
|
// src/components/Icon/icons/ArchiveIcon.tsx
|
|
1930
|
-
var
|
|
1931
|
-
var ArchiveIcon = (props) => /* @__PURE__ */ (0,
|
|
1979
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
1980
|
+
var ArchiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
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__ */ (0,
|
|
1986
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1938
1987
|
"path",
|
|
1939
1988
|
{
|
|
1940
1989
|
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",
|
|
@@ -1945,14 +1994,14 @@ var ArchiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
|
1945
1994
|
);
|
|
1946
1995
|
|
|
1947
1996
|
// src/components/Icon/icons/ArrowDownIcon.tsx
|
|
1948
|
-
var
|
|
1949
|
-
var ArrowDownIcon = (props) => /* @__PURE__ */ (0,
|
|
1997
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
1998
|
+
var ArrowDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1950
1999
|
"svg",
|
|
1951
2000
|
{
|
|
1952
2001
|
...props,
|
|
1953
2002
|
viewBox: "0 0 24 24",
|
|
1954
2003
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1955
|
-
children: /* @__PURE__ */ (0,
|
|
2004
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1956
2005
|
"path",
|
|
1957
2006
|
{
|
|
1958
2007
|
clipRule: "evenodd",
|
|
@@ -1965,14 +2014,14 @@ var ArrowDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
|
1965
2014
|
);
|
|
1966
2015
|
|
|
1967
2016
|
// src/components/Icon/icons/ArrowLeftIcon.tsx
|
|
1968
|
-
var
|
|
1969
|
-
var ArrowLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
2017
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
2018
|
+
var ArrowLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1970
2019
|
"svg",
|
|
1971
2020
|
{
|
|
1972
2021
|
...props,
|
|
1973
2022
|
viewBox: "0 0 24 24",
|
|
1974
2023
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1975
|
-
children: /* @__PURE__ */ (0,
|
|
2024
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1976
2025
|
"path",
|
|
1977
2026
|
{
|
|
1978
2027
|
clipRule: "evenodd",
|
|
@@ -1985,14 +2034,14 @@ var ArrowLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
|
1985
2034
|
);
|
|
1986
2035
|
|
|
1987
2036
|
// src/components/Icon/icons/ArrowRightIcon.tsx
|
|
1988
|
-
var
|
|
1989
|
-
var ArrowRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2037
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
2038
|
+
var ArrowRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1990
2039
|
"svg",
|
|
1991
2040
|
{
|
|
1992
2041
|
...props,
|
|
1993
2042
|
viewBox: "0 0 24 24",
|
|
1994
2043
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1995
|
-
children: /* @__PURE__ */ (0,
|
|
2044
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1996
2045
|
"path",
|
|
1997
2046
|
{
|
|
1998
2047
|
clipRule: "evenodd",
|
|
@@ -2005,14 +2054,14 @@ var ArrowRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
|
2005
2054
|
);
|
|
2006
2055
|
|
|
2007
2056
|
// src/components/Icon/icons/ArrowUpIcon.tsx
|
|
2008
|
-
var
|
|
2009
|
-
var ArrowUpIcon = (props) => /* @__PURE__ */ (0,
|
|
2057
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
2058
|
+
var ArrowUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2010
2059
|
"svg",
|
|
2011
2060
|
{
|
|
2012
2061
|
...props,
|
|
2013
2062
|
viewBox: "0 0 24 24",
|
|
2014
2063
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2015
|
-
children: /* @__PURE__ */ (0,
|
|
2064
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2016
2065
|
"path",
|
|
2017
2066
|
{
|
|
2018
2067
|
clipRule: "evenodd",
|
|
@@ -2025,14 +2074,14 @@ var ArrowUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
|
2025
2074
|
);
|
|
2026
2075
|
|
|
2027
2076
|
// src/components/Icon/icons/ArrowUpRightIcon.tsx
|
|
2028
|
-
var
|
|
2029
|
-
var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2077
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
2078
|
+
var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2030
2079
|
"svg",
|
|
2031
2080
|
{
|
|
2032
2081
|
...props,
|
|
2033
2082
|
viewBox: "0 0 24 24",
|
|
2034
2083
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2035
|
-
children: /* @__PURE__ */ (0,
|
|
2084
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2036
2085
|
"path",
|
|
2037
2086
|
{
|
|
2038
2087
|
clipRule: "evenodd",
|
|
@@ -2045,14 +2094,14 @@ var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
|
2045
2094
|
);
|
|
2046
2095
|
|
|
2047
2096
|
// src/components/Icon/icons/AsteriskIcon.tsx
|
|
2048
|
-
var
|
|
2049
|
-
var AsteriskIcon = (props) => /* @__PURE__ */ (0,
|
|
2097
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
2098
|
+
var AsteriskIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2050
2099
|
"svg",
|
|
2051
2100
|
{
|
|
2052
2101
|
...props,
|
|
2053
2102
|
viewBox: "0 0 24 24",
|
|
2054
2103
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2055
|
-
children: /* @__PURE__ */ (0,
|
|
2104
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2056
2105
|
"path",
|
|
2057
2106
|
{
|
|
2058
2107
|
clipRule: "evenodd",
|
|
@@ -2065,14 +2114,14 @@ var AsteriskIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
|
2065
2114
|
);
|
|
2066
2115
|
|
|
2067
2116
|
// src/components/Icon/icons/AudioDescriptionIcon.tsx
|
|
2068
|
-
var
|
|
2069
|
-
var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0,
|
|
2117
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
2118
|
+
var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2070
2119
|
"svg",
|
|
2071
2120
|
{
|
|
2072
2121
|
...props,
|
|
2073
2122
|
viewBox: "0 0 24 24",
|
|
2074
2123
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2075
|
-
children: /* @__PURE__ */ (0,
|
|
2124
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2076
2125
|
"path",
|
|
2077
2126
|
{
|
|
2078
2127
|
clipRule: "evenodd",
|
|
@@ -2085,14 +2134,14 @@ var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.j
|
|
|
2085
2134
|
);
|
|
2086
2135
|
|
|
2087
2136
|
// src/components/Icon/icons/AutoScrollIcon.tsx
|
|
2088
|
-
var
|
|
2089
|
-
var AutoScrollIcon = (props) => /* @__PURE__ */ (0,
|
|
2137
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
2138
|
+
var AutoScrollIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2090
2139
|
"svg",
|
|
2091
2140
|
{
|
|
2092
2141
|
...props,
|
|
2093
2142
|
viewBox: "0 0 24 24",
|
|
2094
2143
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2095
|
-
children: /* @__PURE__ */ (0,
|
|
2144
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2096
2145
|
"path",
|
|
2097
2146
|
{
|
|
2098
2147
|
clipRule: "evenodd",
|
|
@@ -2105,14 +2154,14 @@ var AutoScrollIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
|
2105
2154
|
);
|
|
2106
2155
|
|
|
2107
2156
|
// src/components/Icon/icons/BackgroundIcon.tsx
|
|
2108
|
-
var
|
|
2109
|
-
var BackgroundIcon = (props) => /* @__PURE__ */ (0,
|
|
2157
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
2158
|
+
var BackgroundIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
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__ */ (0,
|
|
2164
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2116
2165
|
"path",
|
|
2117
2166
|
{
|
|
2118
2167
|
clipRule: "evenodd",
|
|
@@ -2125,14 +2174,14 @@ var BackgroundIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
|
2125
2174
|
);
|
|
2126
2175
|
|
|
2127
2176
|
// src/components/Icon/icons/BellIcon.tsx
|
|
2128
|
-
var
|
|
2129
|
-
var BellIcon = (props) => /* @__PURE__ */ (0,
|
|
2177
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
2178
|
+
var BellIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
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__ */ (0,
|
|
2184
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2136
2185
|
"path",
|
|
2137
2186
|
{
|
|
2138
2187
|
clipRule: "evenodd",
|
|
@@ -2145,14 +2194,14 @@ var BellIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
|
2145
2194
|
);
|
|
2146
2195
|
|
|
2147
2196
|
// src/components/Icon/icons/BoltIcon.tsx
|
|
2148
|
-
var
|
|
2149
|
-
var BoltIcon = (props) => /* @__PURE__ */ (0,
|
|
2197
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
2198
|
+
var BoltIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
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__ */ (0,
|
|
2204
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2156
2205
|
"path",
|
|
2157
2206
|
{
|
|
2158
2207
|
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",
|
|
@@ -2163,14 +2212,14 @@ var BoltIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
|
2163
2212
|
);
|
|
2164
2213
|
|
|
2165
2214
|
// src/components/Icon/icons/CalendarIcon.tsx
|
|
2166
|
-
var
|
|
2167
|
-
var CalendarIcon = (props) => /* @__PURE__ */ (0,
|
|
2215
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
2216
|
+
var CalendarIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2168
2217
|
"svg",
|
|
2169
2218
|
{
|
|
2170
2219
|
...props,
|
|
2171
2220
|
viewBox: "0 0 24 24",
|
|
2172
2221
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2173
|
-
children: /* @__PURE__ */ (0,
|
|
2222
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2174
2223
|
"path",
|
|
2175
2224
|
{
|
|
2176
2225
|
clipRule: "evenodd",
|
|
@@ -2183,14 +2232,14 @@ var CalendarIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
|
2183
2232
|
);
|
|
2184
2233
|
|
|
2185
2234
|
// src/components/Icon/icons/CallToActionIcon.tsx
|
|
2186
|
-
var
|
|
2187
|
-
var CallToActionIcon = (props) => /* @__PURE__ */ (0,
|
|
2235
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
2236
|
+
var CallToActionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2188
2237
|
"svg",
|
|
2189
2238
|
{
|
|
2190
2239
|
...props,
|
|
2191
2240
|
viewBox: "0 0 24 24",
|
|
2192
2241
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2193
|
-
children: /* @__PURE__ */ (0,
|
|
2242
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2194
2243
|
"path",
|
|
2195
2244
|
{
|
|
2196
2245
|
clipRule: "evenodd",
|
|
@@ -2203,14 +2252,14 @@ var CallToActionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
|
2203
2252
|
);
|
|
2204
2253
|
|
|
2205
2254
|
// src/components/Icon/icons/CameraIcon.tsx
|
|
2206
|
-
var
|
|
2207
|
-
var CameraIcon = (props) => /* @__PURE__ */ (0,
|
|
2255
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
2256
|
+
var CameraIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
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__ */ (0,
|
|
2262
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2214
2263
|
"path",
|
|
2215
2264
|
{
|
|
2216
2265
|
clipRule: "evenodd",
|
|
@@ -2223,14 +2272,14 @@ var CameraIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
|
2223
2272
|
);
|
|
2224
2273
|
|
|
2225
2274
|
// src/components/Icon/icons/CameraOffIcon.tsx
|
|
2226
|
-
var
|
|
2227
|
-
var CameraOffIcon = (props) => /* @__PURE__ */ (0,
|
|
2275
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
2276
|
+
var CameraOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2228
2277
|
"svg",
|
|
2229
2278
|
{
|
|
2230
2279
|
...props,
|
|
2231
2280
|
viewBox: "0 0 24 24",
|
|
2232
2281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2233
|
-
children: /* @__PURE__ */ (0,
|
|
2282
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2234
2283
|
"path",
|
|
2235
2284
|
{
|
|
2236
2285
|
clipRule: "evenodd",
|
|
@@ -2243,14 +2292,14 @@ var CameraOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
|
2243
2292
|
);
|
|
2244
2293
|
|
|
2245
2294
|
// src/components/Icon/icons/CaretDownIcon.tsx
|
|
2246
|
-
var
|
|
2247
|
-
var CaretDownIcon = (props) => /* @__PURE__ */ (0,
|
|
2295
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
2296
|
+
var CaretDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2248
2297
|
"svg",
|
|
2249
2298
|
{
|
|
2250
2299
|
...props,
|
|
2251
2300
|
viewBox: "0 0 24 24",
|
|
2252
2301
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2253
|
-
children: /* @__PURE__ */ (0,
|
|
2302
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2254
2303
|
"path",
|
|
2255
2304
|
{
|
|
2256
2305
|
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",
|
|
@@ -2261,14 +2310,14 @@ var CaretDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
|
2261
2310
|
);
|
|
2262
2311
|
|
|
2263
2312
|
// src/components/Icon/icons/CaretDownStrongIcon.tsx
|
|
2264
|
-
var
|
|
2265
|
-
var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2313
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
2314
|
+
var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2266
2315
|
"svg",
|
|
2267
2316
|
{
|
|
2268
2317
|
...props,
|
|
2269
2318
|
viewBox: "0 0 24 24",
|
|
2270
2319
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2271
|
-
children: /* @__PURE__ */ (0,
|
|
2320
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2272
2321
|
"path",
|
|
2273
2322
|
{
|
|
2274
2323
|
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",
|
|
@@ -2279,14 +2328,14 @@ var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.js
|
|
|
2279
2328
|
);
|
|
2280
2329
|
|
|
2281
2330
|
// src/components/Icon/icons/CaretLeftIcon.tsx
|
|
2282
|
-
var
|
|
2283
|
-
var CaretLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
2331
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
2332
|
+
var CaretLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2284
2333
|
"svg",
|
|
2285
2334
|
{
|
|
2286
2335
|
...props,
|
|
2287
2336
|
viewBox: "0 0 24 24",
|
|
2288
2337
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2289
|
-
children: /* @__PURE__ */ (0,
|
|
2338
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2290
2339
|
"path",
|
|
2291
2340
|
{
|
|
2292
2341
|
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",
|
|
@@ -2297,14 +2346,14 @@ var CaretLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
|
2297
2346
|
);
|
|
2298
2347
|
|
|
2299
2348
|
// src/components/Icon/icons/CaretLeftStrongIcon.tsx
|
|
2300
|
-
var
|
|
2301
|
-
var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2349
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
2350
|
+
var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2302
2351
|
"svg",
|
|
2303
2352
|
{
|
|
2304
2353
|
...props,
|
|
2305
2354
|
viewBox: "0 0 24 24",
|
|
2306
2355
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2307
|
-
children: /* @__PURE__ */ (0,
|
|
2356
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2308
2357
|
"path",
|
|
2309
2358
|
{
|
|
2310
2359
|
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",
|
|
@@ -2315,14 +2364,14 @@ var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.js
|
|
|
2315
2364
|
);
|
|
2316
2365
|
|
|
2317
2366
|
// src/components/Icon/icons/CaretRightIcon.tsx
|
|
2318
|
-
var
|
|
2319
|
-
var CaretRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2367
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
2368
|
+
var CaretRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2320
2369
|
"svg",
|
|
2321
2370
|
{
|
|
2322
2371
|
...props,
|
|
2323
2372
|
viewBox: "0 0 24 24",
|
|
2324
2373
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2325
|
-
children: /* @__PURE__ */ (0,
|
|
2374
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2326
2375
|
"path",
|
|
2327
2376
|
{
|
|
2328
2377
|
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",
|
|
@@ -2333,14 +2382,14 @@ var CaretRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
|
2333
2382
|
);
|
|
2334
2383
|
|
|
2335
2384
|
// src/components/Icon/icons/CaretRightStrongIcon.tsx
|
|
2336
|
-
var
|
|
2337
|
-
var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2385
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
2386
|
+
var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2338
2387
|
"svg",
|
|
2339
2388
|
{
|
|
2340
2389
|
...props,
|
|
2341
2390
|
viewBox: "0 0 24 24",
|
|
2342
2391
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2343
|
-
children: /* @__PURE__ */ (0,
|
|
2392
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2344
2393
|
"path",
|
|
2345
2394
|
{
|
|
2346
2395
|
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",
|
|
@@ -2351,14 +2400,14 @@ var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.j
|
|
|
2351
2400
|
);
|
|
2352
2401
|
|
|
2353
2402
|
// src/components/Icon/icons/CaretUpIcon.tsx
|
|
2354
|
-
var
|
|
2355
|
-
var CaretUpIcon = (props) => /* @__PURE__ */ (0,
|
|
2403
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
2404
|
+
var CaretUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2356
2405
|
"svg",
|
|
2357
2406
|
{
|
|
2358
2407
|
...props,
|
|
2359
2408
|
viewBox: "0 0 24 24",
|
|
2360
2409
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2361
|
-
children: /* @__PURE__ */ (0,
|
|
2410
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2362
2411
|
"path",
|
|
2363
2412
|
{
|
|
2364
2413
|
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",
|
|
@@ -2369,14 +2418,14 @@ var CaretUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
|
2369
2418
|
);
|
|
2370
2419
|
|
|
2371
2420
|
// src/components/Icon/icons/CaretUpStrongIcon.tsx
|
|
2372
|
-
var
|
|
2373
|
-
var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2421
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
2422
|
+
var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2374
2423
|
"svg",
|
|
2375
2424
|
{
|
|
2376
2425
|
...props,
|
|
2377
2426
|
viewBox: "0 0 24 24",
|
|
2378
2427
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2379
|
-
children: /* @__PURE__ */ (0,
|
|
2428
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2380
2429
|
"path",
|
|
2381
2430
|
{
|
|
2382
2431
|
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",
|
|
@@ -2387,14 +2436,14 @@ var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)
|
|
|
2387
2436
|
);
|
|
2388
2437
|
|
|
2389
2438
|
// src/components/Icon/icons/ChannelIcon.tsx
|
|
2390
|
-
var
|
|
2391
|
-
var ChannelIcon = (props) => /* @__PURE__ */ (0,
|
|
2439
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
2440
|
+
var ChannelIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2392
2441
|
"svg",
|
|
2393
2442
|
{
|
|
2394
2443
|
...props,
|
|
2395
2444
|
viewBox: "0 0 24 24",
|
|
2396
2445
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2397
|
-
children: /* @__PURE__ */ (0,
|
|
2446
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2398
2447
|
"path",
|
|
2399
2448
|
{
|
|
2400
2449
|
clipRule: "evenodd",
|
|
@@ -2407,14 +2456,14 @@ var ChannelIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
|
2407
2456
|
);
|
|
2408
2457
|
|
|
2409
2458
|
// src/components/Icon/icons/ChaptersIcon.tsx
|
|
2410
|
-
var
|
|
2411
|
-
var ChaptersIcon = (props) => /* @__PURE__ */ (0,
|
|
2459
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
2460
|
+
var ChaptersIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2412
2461
|
"svg",
|
|
2413
2462
|
{
|
|
2414
2463
|
...props,
|
|
2415
2464
|
viewBox: "0 0 24 24",
|
|
2416
2465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2417
|
-
children: /* @__PURE__ */ (0,
|
|
2466
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2418
2467
|
"path",
|
|
2419
2468
|
{
|
|
2420
2469
|
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",
|
|
@@ -2425,14 +2474,14 @@ var ChaptersIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
|
2425
2474
|
);
|
|
2426
2475
|
|
|
2427
2476
|
// src/components/Icon/icons/CheckmarkCircleIcon.tsx
|
|
2428
|
-
var
|
|
2429
|
-
var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
2477
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
2478
|
+
var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2430
2479
|
"svg",
|
|
2431
2480
|
{
|
|
2432
2481
|
...props,
|
|
2433
2482
|
viewBox: "0 0 24 24",
|
|
2434
2483
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2435
|
-
children: /* @__PURE__ */ (0,
|
|
2484
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2436
2485
|
"path",
|
|
2437
2486
|
{
|
|
2438
2487
|
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",
|
|
@@ -2443,14 +2492,14 @@ var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.js
|
|
|
2443
2492
|
);
|
|
2444
2493
|
|
|
2445
2494
|
// src/components/Icon/icons/CheckmarkCircleOutlineIcon.tsx
|
|
2446
|
-
var
|
|
2447
|
-
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0,
|
|
2495
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
2496
|
+
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
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__ */ (0,
|
|
2502
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2454
2503
|
"path",
|
|
2455
2504
|
{
|
|
2456
2505
|
clipRule: "evenodd",
|
|
@@ -2463,14 +2512,14 @@ var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runti
|
|
|
2463
2512
|
);
|
|
2464
2513
|
|
|
2465
2514
|
// src/components/Icon/icons/CheckmarkIcon.tsx
|
|
2466
|
-
var
|
|
2467
|
-
var CheckmarkIcon = (props) => /* @__PURE__ */ (0,
|
|
2515
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
2516
|
+
var CheckmarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
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__ */ (0,
|
|
2522
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2474
2523
|
"path",
|
|
2475
2524
|
{
|
|
2476
2525
|
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",
|
|
@@ -2481,14 +2530,14 @@ var CheckmarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
|
2481
2530
|
);
|
|
2482
2531
|
|
|
2483
2532
|
// src/components/Icon/icons/CheckmarkThreeQuatersCircleIcon.tsx
|
|
2484
|
-
var
|
|
2485
|
-
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
2533
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
2534
|
+
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2486
2535
|
"svg",
|
|
2487
2536
|
{
|
|
2488
2537
|
...props,
|
|
2489
2538
|
viewBox: "0 0 24 24",
|
|
2490
2539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2491
|
-
children: /* @__PURE__ */ (0,
|
|
2540
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2492
2541
|
"path",
|
|
2493
2542
|
{
|
|
2494
2543
|
clipRule: "evenodd",
|
|
@@ -2501,14 +2550,14 @@ var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_
|
|
|
2501
2550
|
);
|
|
2502
2551
|
|
|
2503
2552
|
// src/components/Icon/icons/CircleSlashedIcon.tsx
|
|
2504
|
-
var
|
|
2505
|
-
var CircleSlashedIcon = (props) => /* @__PURE__ */ (0,
|
|
2553
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
2554
|
+
var CircleSlashedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2506
2555
|
"svg",
|
|
2507
2556
|
{
|
|
2508
2557
|
...props,
|
|
2509
2558
|
viewBox: "0 0 24 24",
|
|
2510
2559
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2511
|
-
children: /* @__PURE__ */ (0,
|
|
2560
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2512
2561
|
"path",
|
|
2513
2562
|
{
|
|
2514
2563
|
clipRule: "evenodd",
|
|
@@ -2521,14 +2570,14 @@ var CircleSlashedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)
|
|
|
2521
2570
|
);
|
|
2522
2571
|
|
|
2523
2572
|
// src/components/Icon/icons/CloseIcon.tsx
|
|
2524
|
-
var
|
|
2525
|
-
var CloseIcon = (props) => /* @__PURE__ */ (0,
|
|
2573
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
2574
|
+
var CloseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
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__ */ (0,
|
|
2580
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2532
2581
|
"path",
|
|
2533
2582
|
{
|
|
2534
2583
|
clipRule: "evenodd",
|
|
@@ -2541,14 +2590,14 @@ var CloseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
|
2541
2590
|
);
|
|
2542
2591
|
|
|
2543
2592
|
// src/components/Icon/icons/CloseOctagonIcon.tsx
|
|
2544
|
-
var
|
|
2545
|
-
var CloseOctagonIcon = (props) => /* @__PURE__ */ (0,
|
|
2593
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
2594
|
+
var CloseOctagonIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
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__ */ (0,
|
|
2600
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2552
2601
|
"path",
|
|
2553
2602
|
{
|
|
2554
2603
|
clipRule: "evenodd",
|
|
@@ -2561,14 +2610,14 @@ var CloseOctagonIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
|
2561
2610
|
);
|
|
2562
2611
|
|
|
2563
2612
|
// src/components/Icon/icons/ClosedCaptionsIcon.tsx
|
|
2564
|
-
var
|
|
2565
|
-
var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0,
|
|
2613
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
2614
|
+
var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2566
2615
|
"svg",
|
|
2567
2616
|
{
|
|
2568
2617
|
...props,
|
|
2569
2618
|
viewBox: "0 0 24 24",
|
|
2570
2619
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2571
|
-
children: /* @__PURE__ */ (0,
|
|
2620
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2572
2621
|
"path",
|
|
2573
2622
|
{
|
|
2574
2623
|
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",
|
|
@@ -2579,14 +2628,14 @@ var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx
|
|
|
2579
2628
|
);
|
|
2580
2629
|
|
|
2581
2630
|
// src/components/Icon/icons/CollapseDiagonalIcon.tsx
|
|
2582
|
-
var
|
|
2583
|
-
var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0,
|
|
2631
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
2632
|
+
var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
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__ */ (0,
|
|
2638
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2590
2639
|
"path",
|
|
2591
2640
|
{
|
|
2592
2641
|
clipRule: "evenodd",
|
|
@@ -2599,14 +2648,14 @@ var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.j
|
|
|
2599
2648
|
);
|
|
2600
2649
|
|
|
2601
2650
|
// src/components/Icon/icons/CommentsIcon.tsx
|
|
2602
|
-
var
|
|
2603
|
-
var CommentsIcon = (props) => /* @__PURE__ */ (0,
|
|
2651
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
2652
|
+
var CommentsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2604
2653
|
"svg",
|
|
2605
2654
|
{
|
|
2606
2655
|
...props,
|
|
2607
2656
|
viewBox: "0 0 24 24",
|
|
2608
2657
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2609
|
-
children: /* @__PURE__ */ (0,
|
|
2658
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2610
2659
|
"path",
|
|
2611
2660
|
{
|
|
2612
2661
|
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",
|
|
@@ -2617,14 +2666,14 @@ var CommentsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
|
2617
2666
|
);
|
|
2618
2667
|
|
|
2619
2668
|
// src/components/Icon/icons/CompanyIcon.tsx
|
|
2620
|
-
var
|
|
2621
|
-
var CompanyIcon = (props) => /* @__PURE__ */ (0,
|
|
2669
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
2670
|
+
var CompanyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
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__ */ (0,
|
|
2676
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2628
2677
|
"path",
|
|
2629
2678
|
{
|
|
2630
2679
|
clipRule: "evenodd",
|
|
@@ -2637,14 +2686,14 @@ var CompanyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
|
2637
2686
|
);
|
|
2638
2687
|
|
|
2639
2688
|
// src/components/Icon/icons/CompareIcon.tsx
|
|
2640
|
-
var
|
|
2641
|
-
var CompareIcon = (props) => /* @__PURE__ */ (0,
|
|
2689
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
2690
|
+
var CompareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
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__ */ (0,
|
|
2696
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2648
2697
|
"path",
|
|
2649
2698
|
{
|
|
2650
2699
|
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",
|
|
@@ -2655,14 +2704,14 @@ var CompareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
|
2655
2704
|
);
|
|
2656
2705
|
|
|
2657
2706
|
// src/components/Icon/icons/ContentLibraryIcon.tsx
|
|
2658
|
-
var
|
|
2659
|
-
var ContentLibraryIcon = (props) => /* @__PURE__ */ (0,
|
|
2707
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
2708
|
+
var ContentLibraryIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2660
2709
|
"svg",
|
|
2661
2710
|
{
|
|
2662
2711
|
...props,
|
|
2663
2712
|
viewBox: "0 0 24 24",
|
|
2664
2713
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2665
|
-
children: /* @__PURE__ */ (0,
|
|
2714
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2666
2715
|
"path",
|
|
2667
2716
|
{
|
|
2668
2717
|
clipRule: "evenodd",
|
|
@@ -2675,14 +2724,14 @@ var ContentLibraryIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx
|
|
|
2675
2724
|
);
|
|
2676
2725
|
|
|
2677
2726
|
// src/components/Icon/icons/ControlsIcon.tsx
|
|
2678
|
-
var
|
|
2679
|
-
var ControlsIcon = (props) => /* @__PURE__ */ (0,
|
|
2727
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
2728
|
+
var ControlsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2680
2729
|
"svg",
|
|
2681
2730
|
{
|
|
2682
2731
|
...props,
|
|
2683
2732
|
viewBox: "0 0 24 24",
|
|
2684
2733
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2685
|
-
children: /* @__PURE__ */ (0,
|
|
2734
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2686
2735
|
"path",
|
|
2687
2736
|
{
|
|
2688
2737
|
clipRule: "evenodd",
|
|
@@ -2695,14 +2744,14 @@ var ControlsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
|
2695
2744
|
);
|
|
2696
2745
|
|
|
2697
2746
|
// src/components/Icon/icons/CursorClickIcon.tsx
|
|
2698
|
-
var
|
|
2699
|
-
var CursorClickIcon = (props) => /* @__PURE__ */ (0,
|
|
2747
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
2748
|
+
var CursorClickIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2700
2749
|
"svg",
|
|
2701
2750
|
{
|
|
2702
2751
|
...props,
|
|
2703
2752
|
viewBox: "0 0 24 24",
|
|
2704
2753
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2705
|
-
children: /* @__PURE__ */ (0,
|
|
2754
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2706
2755
|
"path",
|
|
2707
2756
|
{
|
|
2708
2757
|
clipRule: "evenodd",
|
|
@@ -2715,14 +2764,14 @@ var CursorClickIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
|
2715
2764
|
);
|
|
2716
2765
|
|
|
2717
2766
|
// src/components/Icon/icons/DeleteIcon.tsx
|
|
2718
|
-
var
|
|
2719
|
-
var DeleteIcon = (props) => /* @__PURE__ */ (0,
|
|
2767
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
2768
|
+
var DeleteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2720
2769
|
"svg",
|
|
2721
2770
|
{
|
|
2722
2771
|
...props,
|
|
2723
2772
|
viewBox: "0 0 24 24",
|
|
2724
2773
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2725
|
-
children: /* @__PURE__ */ (0,
|
|
2774
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2726
2775
|
"path",
|
|
2727
2776
|
{
|
|
2728
2777
|
clipRule: "evenodd",
|
|
@@ -2735,14 +2784,14 @@ var DeleteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
|
2735
2784
|
);
|
|
2736
2785
|
|
|
2737
2786
|
// src/components/Icon/icons/DesktopIcon.tsx
|
|
2738
|
-
var
|
|
2739
|
-
var DesktopIcon = (props) => /* @__PURE__ */ (0,
|
|
2787
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
2788
|
+
var DesktopIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2740
2789
|
"svg",
|
|
2741
2790
|
{
|
|
2742
2791
|
...props,
|
|
2743
2792
|
viewBox: "0 0 24 24",
|
|
2744
2793
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2745
|
-
children: /* @__PURE__ */ (0,
|
|
2794
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2746
2795
|
"path",
|
|
2747
2796
|
{
|
|
2748
2797
|
clipRule: "evenodd",
|
|
@@ -2755,14 +2804,14 @@ var DesktopIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
|
2755
2804
|
);
|
|
2756
2805
|
|
|
2757
2806
|
// src/components/Icon/icons/DotsHorizontalIcon.tsx
|
|
2758
|
-
var
|
|
2759
|
-
var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0,
|
|
2807
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
2808
|
+
var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2760
2809
|
"svg",
|
|
2761
2810
|
{
|
|
2762
2811
|
...props,
|
|
2763
2812
|
viewBox: "0 0 24 24",
|
|
2764
2813
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2765
|
-
children: /* @__PURE__ */ (0,
|
|
2814
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2766
2815
|
"path",
|
|
2767
2816
|
{
|
|
2768
2817
|
clipRule: "evenodd",
|
|
@@ -2775,14 +2824,14 @@ var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx
|
|
|
2775
2824
|
);
|
|
2776
2825
|
|
|
2777
2826
|
// src/components/Icon/icons/DownloadIcon.tsx
|
|
2778
|
-
var
|
|
2779
|
-
var DownloadIcon = (props) => /* @__PURE__ */ (0,
|
|
2827
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
2828
|
+
var DownloadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2780
2829
|
"svg",
|
|
2781
2830
|
{
|
|
2782
2831
|
...props,
|
|
2783
2832
|
viewBox: "0 0 24 24",
|
|
2784
2833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2785
|
-
children: /* @__PURE__ */ (0,
|
|
2834
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2786
2835
|
"path",
|
|
2787
2836
|
{
|
|
2788
2837
|
clipRule: "evenodd",
|
|
@@ -2795,14 +2844,14 @@ var DownloadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
|
2795
2844
|
);
|
|
2796
2845
|
|
|
2797
2846
|
// src/components/Icon/icons/EditTranscriptIcon.tsx
|
|
2798
|
-
var
|
|
2799
|
-
var EditTranscriptIcon = (props) => /* @__PURE__ */ (0,
|
|
2847
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
2848
|
+
var EditTranscriptIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2800
2849
|
"svg",
|
|
2801
2850
|
{
|
|
2802
2851
|
...props,
|
|
2803
2852
|
viewBox: "0 0 24 24",
|
|
2804
2853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2805
|
-
children: /* @__PURE__ */ (0,
|
|
2854
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2806
2855
|
"path",
|
|
2807
2856
|
{
|
|
2808
2857
|
clipRule: "evenodd",
|
|
@@ -2815,14 +2864,14 @@ var EditTranscriptIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx
|
|
|
2815
2864
|
);
|
|
2816
2865
|
|
|
2817
2866
|
// src/components/Icon/icons/EllipsesVerticalIcon.tsx
|
|
2818
|
-
var
|
|
2819
|
-
var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0,
|
|
2867
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
2868
|
+
var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2820
2869
|
"svg",
|
|
2821
2870
|
{
|
|
2822
2871
|
...props,
|
|
2823
2872
|
viewBox: "0 0 24 24",
|
|
2824
2873
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2825
|
-
children: /* @__PURE__ */ (0,
|
|
2874
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2826
2875
|
"path",
|
|
2827
2876
|
{
|
|
2828
2877
|
clipRule: "evenodd",
|
|
@@ -2835,14 +2884,14 @@ var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime56.j
|
|
|
2835
2884
|
);
|
|
2836
2885
|
|
|
2837
2886
|
// src/components/Icon/icons/EmbedIcon.tsx
|
|
2838
|
-
var
|
|
2839
|
-
var EmbedIcon = (props) => /* @__PURE__ */ (0,
|
|
2887
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
2888
|
+
var EmbedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
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__ */ (0,
|
|
2894
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2846
2895
|
"path",
|
|
2847
2896
|
{
|
|
2848
2897
|
clipRule: "evenodd",
|
|
@@ -2855,14 +2904,14 @@ var EmbedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
|
2855
2904
|
);
|
|
2856
2905
|
|
|
2857
2906
|
// src/components/Icon/icons/EnvelopeIcon.tsx
|
|
2858
|
-
var
|
|
2859
|
-
var EnvelopeIcon = (props) => /* @__PURE__ */ (0,
|
|
2907
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
2908
|
+
var EnvelopeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
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__ */ (0,
|
|
2914
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2866
2915
|
"path",
|
|
2867
2916
|
{
|
|
2868
2917
|
clipRule: "evenodd",
|
|
@@ -2875,14 +2924,14 @@ var EnvelopeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
|
2875
2924
|
);
|
|
2876
2925
|
|
|
2877
2926
|
// src/components/Icon/icons/ErrorIcon.tsx
|
|
2878
|
-
var
|
|
2879
|
-
var ErrorIcon = (props) => /* @__PURE__ */ (0,
|
|
2927
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
2928
|
+
var ErrorIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
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__ */ (0,
|
|
2934
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2886
2935
|
"path",
|
|
2887
2936
|
{
|
|
2888
2937
|
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",
|
|
@@ -2893,14 +2942,14 @@ var ErrorIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
|
2893
2942
|
);
|
|
2894
2943
|
|
|
2895
2944
|
// src/components/Icon/icons/ExpandDiagonalIcon.tsx
|
|
2896
|
-
var
|
|
2897
|
-
var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0,
|
|
2945
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
2946
|
+
var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
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__ */ (0,
|
|
2952
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2904
2953
|
"path",
|
|
2905
2954
|
{
|
|
2906
2955
|
clipRule: "evenodd",
|
|
@@ -2913,14 +2962,14 @@ var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx
|
|
|
2913
2962
|
);
|
|
2914
2963
|
|
|
2915
2964
|
// src/components/Icon/icons/ExpandIcon.tsx
|
|
2916
|
-
var
|
|
2917
|
-
var ExpandIcon = (props) => /* @__PURE__ */ (0,
|
|
2965
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
2966
|
+
var ExpandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2918
2967
|
"svg",
|
|
2919
2968
|
{
|
|
2920
2969
|
...props,
|
|
2921
2970
|
viewBox: "0 0 24 24",
|
|
2922
2971
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2923
|
-
children: /* @__PURE__ */ (0,
|
|
2972
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2924
2973
|
"path",
|
|
2925
2974
|
{
|
|
2926
2975
|
clipRule: "evenodd",
|
|
@@ -2933,14 +2982,14 @@ var ExpandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
|
2933
2982
|
);
|
|
2934
2983
|
|
|
2935
2984
|
// src/components/Icon/icons/FavoriteIcon.tsx
|
|
2936
|
-
var
|
|
2937
|
-
var FavoriteIcon = (props) => /* @__PURE__ */ (0,
|
|
2985
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
2986
|
+
var FavoriteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2938
2987
|
"svg",
|
|
2939
2988
|
{
|
|
2940
2989
|
...props,
|
|
2941
2990
|
viewBox: "0 0 24 24",
|
|
2942
2991
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2943
|
-
children: /* @__PURE__ */ (0,
|
|
2992
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2944
2993
|
"path",
|
|
2945
2994
|
{
|
|
2946
2995
|
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",
|
|
@@ -2951,14 +3000,14 @@ var FavoriteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
|
2951
3000
|
);
|
|
2952
3001
|
|
|
2953
3002
|
// src/components/Icon/icons/FavoriteOutlineIcon.tsx
|
|
2954
|
-
var
|
|
2955
|
-
var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0,
|
|
3003
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
3004
|
+
var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
2956
3005
|
"svg",
|
|
2957
3006
|
{
|
|
2958
3007
|
...props,
|
|
2959
3008
|
viewBox: "0 0 24 24",
|
|
2960
3009
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2961
|
-
children: /* @__PURE__ */ (0,
|
|
3010
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
2962
3011
|
"path",
|
|
2963
3012
|
{
|
|
2964
3013
|
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",
|
|
@@ -2972,14 +3021,14 @@ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime63.js
|
|
|
2972
3021
|
);
|
|
2973
3022
|
|
|
2974
3023
|
// src/components/Icon/icons/FileTreeIcon.tsx
|
|
2975
|
-
var
|
|
2976
|
-
var FileTreeIcon = (props) => /* @__PURE__ */ (0,
|
|
3024
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
3025
|
+
var FileTreeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
2977
3026
|
"svg",
|
|
2978
3027
|
{
|
|
2979
3028
|
...props,
|
|
2980
3029
|
viewBox: "0 0 24 24",
|
|
2981
3030
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2982
|
-
children: /* @__PURE__ */ (0,
|
|
3031
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
2983
3032
|
"path",
|
|
2984
3033
|
{
|
|
2985
3034
|
clipRule: "evenodd",
|
|
@@ -2992,14 +3041,14 @@ var FileTreeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
|
2992
3041
|
);
|
|
2993
3042
|
|
|
2994
3043
|
// src/components/Icon/icons/FilterIcon.tsx
|
|
2995
|
-
var
|
|
2996
|
-
var FilterIcon = (props) => /* @__PURE__ */ (0,
|
|
3044
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
3045
|
+
var FilterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
2997
3046
|
"svg",
|
|
2998
3047
|
{
|
|
2999
3048
|
...props,
|
|
3000
3049
|
viewBox: "0 0 24 24",
|
|
3001
3050
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3002
|
-
children: /* @__PURE__ */ (0,
|
|
3051
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3003
3052
|
"path",
|
|
3004
3053
|
{
|
|
3005
3054
|
clipRule: "evenodd",
|
|
@@ -3012,14 +3061,14 @@ var FilterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
|
3012
3061
|
);
|
|
3013
3062
|
|
|
3014
3063
|
// src/components/Icon/icons/FontsIcon.tsx
|
|
3015
|
-
var
|
|
3016
|
-
var FontsIcon = (props) => /* @__PURE__ */ (0,
|
|
3064
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
3065
|
+
var FontsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
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__ */ (0,
|
|
3071
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3023
3072
|
"path",
|
|
3024
3073
|
{
|
|
3025
3074
|
clipRule: "evenodd",
|
|
@@ -3032,14 +3081,14 @@ var FontsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
|
3032
3081
|
);
|
|
3033
3082
|
|
|
3034
3083
|
// src/components/Icon/icons/FullScreenIcon.tsx
|
|
3035
|
-
var
|
|
3036
|
-
var FullScreenIcon = (props) => /* @__PURE__ */ (0,
|
|
3084
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
3085
|
+
var FullScreenIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
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__ */ (0,
|
|
3091
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3043
3092
|
"path",
|
|
3044
3093
|
{
|
|
3045
3094
|
clipRule: "evenodd",
|
|
@@ -3052,14 +3101,14 @@ var FullScreenIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
|
3052
3101
|
);
|
|
3053
3102
|
|
|
3054
3103
|
// src/components/Icon/icons/GearIcon.tsx
|
|
3055
|
-
var
|
|
3056
|
-
var GearIcon = (props) => /* @__PURE__ */ (0,
|
|
3104
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3105
|
+
var GearIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
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__ */ (0,
|
|
3111
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3063
3112
|
"path",
|
|
3064
3113
|
{
|
|
3065
3114
|
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",
|
|
@@ -3070,14 +3119,14 @@ var GearIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
|
3070
3119
|
);
|
|
3071
3120
|
|
|
3072
3121
|
// src/components/Icon/icons/GettingStartedIcon.tsx
|
|
3073
|
-
var
|
|
3074
|
-
var GettingStartedIcon = (props) => /* @__PURE__ */ (0,
|
|
3122
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
3123
|
+
var GettingStartedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3075
3124
|
"svg",
|
|
3076
3125
|
{
|
|
3077
3126
|
...props,
|
|
3078
3127
|
viewBox: "0 0 24 24",
|
|
3079
3128
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3080
|
-
children: /* @__PURE__ */ (0,
|
|
3129
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3081
3130
|
"path",
|
|
3082
3131
|
{
|
|
3083
3132
|
clipRule: "evenodd",
|
|
@@ -3090,14 +3139,14 @@ var GettingStartedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx
|
|
|
3090
3139
|
);
|
|
3091
3140
|
|
|
3092
3141
|
// src/components/Icon/icons/GridIcon.tsx
|
|
3093
|
-
var
|
|
3094
|
-
var GridIcon = (props) => /* @__PURE__ */ (0,
|
|
3142
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
3143
|
+
var GridIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3095
3144
|
"svg",
|
|
3096
3145
|
{
|
|
3097
3146
|
...props,
|
|
3098
3147
|
viewBox: "0 0 24 24",
|
|
3099
3148
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3100
|
-
children: /* @__PURE__ */ (0,
|
|
3149
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3101
3150
|
"path",
|
|
3102
3151
|
{
|
|
3103
3152
|
clipRule: "evenodd",
|
|
@@ -3110,14 +3159,14 @@ var GridIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
|
3110
3159
|
);
|
|
3111
3160
|
|
|
3112
3161
|
// src/components/Icon/icons/GripDotsVerticalIcon.tsx
|
|
3113
|
-
var
|
|
3114
|
-
var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0,
|
|
3162
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
3163
|
+
var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3115
3164
|
"svg",
|
|
3116
3165
|
{
|
|
3117
3166
|
...props,
|
|
3118
3167
|
viewBox: "0 0 24 24",
|
|
3119
3168
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3120
|
-
children: /* @__PURE__ */ (0,
|
|
3169
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3121
3170
|
"path",
|
|
3122
3171
|
{
|
|
3123
3172
|
clipRule: "evenodd",
|
|
@@ -3130,14 +3179,14 @@ var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime71.j
|
|
|
3130
3179
|
);
|
|
3131
3180
|
|
|
3132
3181
|
// src/components/Icon/icons/HelpCenterIcon.tsx
|
|
3133
|
-
var
|
|
3134
|
-
var HelpCenterIcon = (props) => /* @__PURE__ */ (0,
|
|
3182
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
3183
|
+
var HelpCenterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
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__ */ (0,
|
|
3189
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3141
3190
|
"path",
|
|
3142
3191
|
{
|
|
3143
3192
|
clipRule: "evenodd",
|
|
@@ -3150,14 +3199,14 @@ var HelpCenterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
|
3150
3199
|
);
|
|
3151
3200
|
|
|
3152
3201
|
// src/components/Icon/icons/HideIcon.tsx
|
|
3153
|
-
var
|
|
3154
|
-
var HideIcon = (props) => /* @__PURE__ */ (0,
|
|
3202
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
3203
|
+
var HideIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
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__ */ (0,
|
|
3209
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
3161
3210
|
"path",
|
|
3162
3211
|
{
|
|
3163
3212
|
clipRule: "evenodd",
|
|
@@ -3170,14 +3219,14 @@ var HideIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
|
3170
3219
|
);
|
|
3171
3220
|
|
|
3172
3221
|
// src/components/Icon/icons/HomeIcon.tsx
|
|
3173
|
-
var
|
|
3174
|
-
var HomeIcon = (props) => /* @__PURE__ */ (0,
|
|
3222
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
3223
|
+
var HomeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3175
3224
|
"svg",
|
|
3176
3225
|
{
|
|
3177
3226
|
...props,
|
|
3178
3227
|
viewBox: "0 0 24 24",
|
|
3179
3228
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3180
|
-
children: /* @__PURE__ */ (0,
|
|
3229
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3181
3230
|
"path",
|
|
3182
3231
|
{
|
|
3183
3232
|
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",
|
|
@@ -3188,14 +3237,14 @@ var HomeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
|
3188
3237
|
);
|
|
3189
3238
|
|
|
3190
3239
|
// src/components/Icon/icons/HourglassIcon.tsx
|
|
3191
|
-
var
|
|
3192
|
-
var HourglassIcon = (props) => /* @__PURE__ */ (0,
|
|
3240
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
3241
|
+
var HourglassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
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__ */ (0,
|
|
3247
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3199
3248
|
"path",
|
|
3200
3249
|
{
|
|
3201
3250
|
clipRule: "evenodd",
|
|
@@ -3208,14 +3257,14 @@ var HourglassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
|
3208
3257
|
);
|
|
3209
3258
|
|
|
3210
3259
|
// src/components/Icon/icons/InfoIcon.tsx
|
|
3211
|
-
var
|
|
3212
|
-
var InfoIcon = (props) => /* @__PURE__ */ (0,
|
|
3260
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
3261
|
+
var InfoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
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__ */ (0,
|
|
3267
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3219
3268
|
"path",
|
|
3220
3269
|
{
|
|
3221
3270
|
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",
|
|
@@ -3226,14 +3275,14 @@ var InfoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
|
3226
3275
|
);
|
|
3227
3276
|
|
|
3228
3277
|
// src/components/Icon/icons/IntegrationsIcon.tsx
|
|
3229
|
-
var
|
|
3230
|
-
var IntegrationsIcon = (props) => /* @__PURE__ */ (0,
|
|
3278
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
3279
|
+
var IntegrationsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
3231
3280
|
"svg",
|
|
3232
3281
|
{
|
|
3233
3282
|
...props,
|
|
3234
3283
|
viewBox: "0 0 24 24",
|
|
3235
3284
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3236
|
-
children: /* @__PURE__ */ (0,
|
|
3285
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
3237
3286
|
"path",
|
|
3238
3287
|
{
|
|
3239
3288
|
clipRule: "evenodd",
|
|
@@ -3246,14 +3295,14 @@ var IntegrationsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
|
3246
3295
|
);
|
|
3247
3296
|
|
|
3248
3297
|
// src/components/Icon/icons/LeaveIcon.tsx
|
|
3249
|
-
var
|
|
3250
|
-
var LeaveIcon = (props) => /* @__PURE__ */ (0,
|
|
3298
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
3299
|
+
var LeaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3251
3300
|
"svg",
|
|
3252
3301
|
{
|
|
3253
3302
|
...props,
|
|
3254
3303
|
viewBox: "0 0 24 24",
|
|
3255
3304
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3256
|
-
children: /* @__PURE__ */ (0,
|
|
3305
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3257
3306
|
"path",
|
|
3258
3307
|
{
|
|
3259
3308
|
clipRule: "evenodd",
|
|
@@ -3266,14 +3315,14 @@ var LeaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
|
3266
3315
|
);
|
|
3267
3316
|
|
|
3268
3317
|
// src/components/Icon/icons/LinkIcon.tsx
|
|
3269
|
-
var
|
|
3270
|
-
var LinkIcon = (props) => /* @__PURE__ */ (0,
|
|
3318
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
3319
|
+
var LinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3271
3320
|
"svg",
|
|
3272
3321
|
{
|
|
3273
3322
|
...props,
|
|
3274
3323
|
viewBox: "0 0 24 24",
|
|
3275
3324
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3276
|
-
children: /* @__PURE__ */ (0,
|
|
3325
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3277
3326
|
"path",
|
|
3278
3327
|
{
|
|
3279
3328
|
clipRule: "evenodd",
|
|
@@ -3286,14 +3335,14 @@ var LinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
|
3286
3335
|
);
|
|
3287
3336
|
|
|
3288
3337
|
// src/components/Icon/icons/ListIcon.tsx
|
|
3289
|
-
var
|
|
3290
|
-
var ListIcon = (props) => /* @__PURE__ */ (0,
|
|
3338
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
3339
|
+
var ListIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3291
3340
|
"svg",
|
|
3292
3341
|
{
|
|
3293
3342
|
...props,
|
|
3294
3343
|
viewBox: "0 0 24 24",
|
|
3295
3344
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3296
|
-
children: /* @__PURE__ */ (0,
|
|
3345
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3297
3346
|
"path",
|
|
3298
3347
|
{
|
|
3299
3348
|
clipRule: "evenodd",
|
|
@@ -3306,14 +3355,14 @@ var ListIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
|
3306
3355
|
);
|
|
3307
3356
|
|
|
3308
3357
|
// src/components/Icon/icons/LiveIcon.tsx
|
|
3309
|
-
var
|
|
3310
|
-
var LiveIcon = (props) => /* @__PURE__ */ (0,
|
|
3358
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
3359
|
+
var LiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3311
3360
|
"svg",
|
|
3312
3361
|
{
|
|
3313
3362
|
...props,
|
|
3314
3363
|
viewBox: "0 0 24 24",
|
|
3315
3364
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3316
|
-
children: /* @__PURE__ */ (0,
|
|
3365
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3317
3366
|
"path",
|
|
3318
3367
|
{
|
|
3319
3368
|
clipRule: "evenodd",
|
|
@@ -3326,14 +3375,14 @@ var LiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
|
3326
3375
|
);
|
|
3327
3376
|
|
|
3328
3377
|
// src/components/Icon/icons/LockIcon.tsx
|
|
3329
|
-
var
|
|
3330
|
-
var LockIcon = (props) => /* @__PURE__ */ (0,
|
|
3378
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
3379
|
+
var LockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
3331
3380
|
"svg",
|
|
3332
3381
|
{
|
|
3333
3382
|
...props,
|
|
3334
3383
|
viewBox: "0 0 24 24",
|
|
3335
3384
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3336
|
-
children: /* @__PURE__ */ (0,
|
|
3385
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
3337
3386
|
"path",
|
|
3338
3387
|
{
|
|
3339
3388
|
clipRule: "evenodd",
|
|
@@ -3346,14 +3395,14 @@ var LockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
|
3346
3395
|
);
|
|
3347
3396
|
|
|
3348
3397
|
// src/components/Icon/icons/LogoutIcon.tsx
|
|
3349
|
-
var
|
|
3350
|
-
var LogoutIcon = (props) => /* @__PURE__ */ (0,
|
|
3398
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
3399
|
+
var LogoutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
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__ */ (0,
|
|
3405
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
3357
3406
|
"path",
|
|
3358
3407
|
{
|
|
3359
3408
|
clipRule: "evenodd",
|
|
@@ -3366,14 +3415,14 @@ var LogoutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
|
3366
3415
|
);
|
|
3367
3416
|
|
|
3368
3417
|
// src/components/Icon/icons/MaximizeIcon.tsx
|
|
3369
|
-
var
|
|
3370
|
-
var MaximizeIcon = (props) => /* @__PURE__ */ (0,
|
|
3418
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
3419
|
+
var MaximizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
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__ */ (0,
|
|
3425
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
3377
3426
|
"path",
|
|
3378
3427
|
{
|
|
3379
3428
|
clipRule: "evenodd",
|
|
@@ -3386,14 +3435,14 @@ var MaximizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
|
3386
3435
|
);
|
|
3387
3436
|
|
|
3388
3437
|
// src/components/Icon/icons/MediaIcon.tsx
|
|
3389
|
-
var
|
|
3390
|
-
var MediaIcon = (props) => /* @__PURE__ */ (0,
|
|
3438
|
+
var import_jsx_runtime86 = require("react/jsx-runtime");
|
|
3439
|
+
var MediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
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__ */ (0,
|
|
3445
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
3397
3446
|
"path",
|
|
3398
3447
|
{
|
|
3399
3448
|
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",
|
|
@@ -3404,14 +3453,14 @@ var MediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
|
3404
3453
|
);
|
|
3405
3454
|
|
|
3406
3455
|
// src/components/Icon/icons/MenuIcon.tsx
|
|
3407
|
-
var
|
|
3408
|
-
var MenuIcon = (props) => /* @__PURE__ */ (0,
|
|
3456
|
+
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
3457
|
+
var MenuIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
3409
3458
|
"svg",
|
|
3410
3459
|
{
|
|
3411
3460
|
...props,
|
|
3412
3461
|
viewBox: "0 0 24 24",
|
|
3413
3462
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3414
|
-
children: /* @__PURE__ */ (0,
|
|
3463
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
3415
3464
|
"path",
|
|
3416
3465
|
{
|
|
3417
3466
|
clipRule: "evenodd",
|
|
@@ -3424,14 +3473,14 @@ var MenuIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
|
3424
3473
|
);
|
|
3425
3474
|
|
|
3426
3475
|
// src/components/Icon/icons/MicIcon.tsx
|
|
3427
|
-
var
|
|
3428
|
-
var MicIcon = (props) => /* @__PURE__ */ (0,
|
|
3476
|
+
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
3477
|
+
var MicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
3429
3478
|
"svg",
|
|
3430
3479
|
{
|
|
3431
3480
|
...props,
|
|
3432
3481
|
viewBox: "0 0 24 24",
|
|
3433
3482
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3434
|
-
children: /* @__PURE__ */ (0,
|
|
3483
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
3435
3484
|
"path",
|
|
3436
3485
|
{
|
|
3437
3486
|
clipRule: "evenodd",
|
|
@@ -3444,14 +3493,14 @@ var MicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
|
3444
3493
|
);
|
|
3445
3494
|
|
|
3446
3495
|
// src/components/Icon/icons/MicOffIcon.tsx
|
|
3447
|
-
var
|
|
3448
|
-
var MicOffIcon = (props) => /* @__PURE__ */ (0,
|
|
3496
|
+
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
3497
|
+
var MicOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
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__ */ (0,
|
|
3503
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
3455
3504
|
"path",
|
|
3456
3505
|
{
|
|
3457
3506
|
clipRule: "evenodd",
|
|
@@ -3464,14 +3513,14 @@ var MicOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
|
3464
3513
|
);
|
|
3465
3514
|
|
|
3466
3515
|
// src/components/Icon/icons/MinimizeIcon.tsx
|
|
3467
|
-
var
|
|
3468
|
-
var MinimizeIcon = (props) => /* @__PURE__ */ (0,
|
|
3516
|
+
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
3517
|
+
var MinimizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
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__ */ (0,
|
|
3523
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
3475
3524
|
"path",
|
|
3476
3525
|
{
|
|
3477
3526
|
clipRule: "evenodd",
|
|
@@ -3484,14 +3533,14 @@ var MinimizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
|
3484
3533
|
);
|
|
3485
3534
|
|
|
3486
3535
|
// src/components/Icon/icons/MinusCircleIcon.tsx
|
|
3487
|
-
var
|
|
3488
|
-
var MinusCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
3536
|
+
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
3537
|
+
var MinusCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
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__ */ (0,
|
|
3543
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
3495
3544
|
"path",
|
|
3496
3545
|
{
|
|
3497
3546
|
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",
|
|
@@ -3502,14 +3551,14 @@ var MinusCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
|
3502
3551
|
);
|
|
3503
3552
|
|
|
3504
3553
|
// src/components/Icon/icons/MobileIcon.tsx
|
|
3505
|
-
var
|
|
3506
|
-
var MobileIcon = (props) => /* @__PURE__ */ (0,
|
|
3554
|
+
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
3555
|
+
var MobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
3507
3556
|
"svg",
|
|
3508
3557
|
{
|
|
3509
3558
|
...props,
|
|
3510
3559
|
viewBox: "0 0 24 24",
|
|
3511
3560
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3512
|
-
children: /* @__PURE__ */ (0,
|
|
3561
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
3513
3562
|
"path",
|
|
3514
3563
|
{
|
|
3515
3564
|
clipRule: "evenodd",
|
|
@@ -3522,14 +3571,14 @@ var MobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
|
3522
3571
|
);
|
|
3523
3572
|
|
|
3524
3573
|
// src/components/Icon/icons/MoreOptionsIcon.tsx
|
|
3525
|
-
var
|
|
3526
|
-
var MoreOptionsIcon = (props) => /* @__PURE__ */ (0,
|
|
3574
|
+
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
3575
|
+
var MoreOptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
3527
3576
|
"svg",
|
|
3528
3577
|
{
|
|
3529
3578
|
...props,
|
|
3530
3579
|
viewBox: "0 0 24 24",
|
|
3531
3580
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3532
|
-
children: /* @__PURE__ */ (0,
|
|
3581
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
3533
3582
|
"path",
|
|
3534
3583
|
{
|
|
3535
3584
|
clipRule: "evenodd",
|
|
@@ -3542,14 +3591,14 @@ var MoreOptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
|
3542
3591
|
);
|
|
3543
3592
|
|
|
3544
3593
|
// src/components/Icon/icons/MoveLeftIcon.tsx
|
|
3545
|
-
var
|
|
3546
|
-
var MoveLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
3594
|
+
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
3595
|
+
var MoveLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
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__ */ (0,
|
|
3601
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
3553
3602
|
"path",
|
|
3554
3603
|
{
|
|
3555
3604
|
clipRule: "evenodd",
|
|
@@ -3562,14 +3611,14 @@ var MoveLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
|
3562
3611
|
);
|
|
3563
3612
|
|
|
3564
3613
|
// src/components/Icon/icons/MoveRightIcon.tsx
|
|
3565
|
-
var
|
|
3566
|
-
var MoveRightIcon = (props) => /* @__PURE__ */ (0,
|
|
3614
|
+
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
3615
|
+
var MoveRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
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__ */ (0,
|
|
3621
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
3573
3622
|
"path",
|
|
3574
3623
|
{
|
|
3575
3624
|
clipRule: "evenodd",
|
|
@@ -3582,14 +3631,14 @@ var MoveRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
|
3582
3631
|
);
|
|
3583
3632
|
|
|
3584
3633
|
// src/components/Icon/icons/MusicIcon.tsx
|
|
3585
|
-
var
|
|
3586
|
-
var MusicIcon = (props) => /* @__PURE__ */ (0,
|
|
3634
|
+
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
3635
|
+
var MusicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
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__ */ (0,
|
|
3641
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3593
3642
|
"path",
|
|
3594
3643
|
{
|
|
3595
3644
|
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",
|
|
@@ -3600,14 +3649,14 @@ var MusicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
|
3600
3649
|
);
|
|
3601
3650
|
|
|
3602
3651
|
// src/components/Icon/icons/OpenNewIcon.tsx
|
|
3603
|
-
var
|
|
3604
|
-
var OpenNewIcon = (props) => /* @__PURE__ */ (0,
|
|
3652
|
+
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
3653
|
+
var OpenNewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3605
3654
|
"svg",
|
|
3606
3655
|
{
|
|
3607
3656
|
...props,
|
|
3608
3657
|
viewBox: "0 0 24 24",
|
|
3609
3658
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3610
|
-
children: /* @__PURE__ */ (0,
|
|
3659
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3611
3660
|
"path",
|
|
3612
3661
|
{
|
|
3613
3662
|
clipRule: "evenodd",
|
|
@@ -3620,14 +3669,14 @@ var OpenNewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
|
3620
3669
|
);
|
|
3621
3670
|
|
|
3622
3671
|
// src/components/Icon/icons/OverviewIcon.tsx
|
|
3623
|
-
var
|
|
3624
|
-
var OverviewIcon = (props) => /* @__PURE__ */ (0,
|
|
3672
|
+
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
3673
|
+
var OverviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
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__ */ (0,
|
|
3679
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
3631
3680
|
"path",
|
|
3632
3681
|
{
|
|
3633
3682
|
clipRule: "evenodd",
|
|
@@ -3640,14 +3689,14 @@ var OverviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
|
3640
3689
|
);
|
|
3641
3690
|
|
|
3642
3691
|
// src/components/Icon/icons/PageIcon.tsx
|
|
3643
|
-
var
|
|
3644
|
-
var PageIcon = (props) => /* @__PURE__ */ (0,
|
|
3692
|
+
var import_jsx_runtime99 = require("react/jsx-runtime");
|
|
3693
|
+
var PageIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
3645
3694
|
"svg",
|
|
3646
3695
|
{
|
|
3647
3696
|
...props,
|
|
3648
3697
|
viewBox: "0 0 24 24",
|
|
3649
3698
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3650
|
-
children: /* @__PURE__ */ (0,
|
|
3699
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
3651
3700
|
"path",
|
|
3652
3701
|
{
|
|
3653
3702
|
clipRule: "evenodd",
|
|
@@ -3660,14 +3709,14 @@ var PageIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
|
3660
3709
|
);
|
|
3661
3710
|
|
|
3662
3711
|
// src/components/Icon/icons/PanelLeftIcon.tsx
|
|
3663
|
-
var
|
|
3664
|
-
var PanelLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
3712
|
+
var import_jsx_runtime100 = require("react/jsx-runtime");
|
|
3713
|
+
var PanelLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
3665
3714
|
"svg",
|
|
3666
3715
|
{
|
|
3667
3716
|
...props,
|
|
3668
3717
|
viewBox: "0 0 24 24",
|
|
3669
3718
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3670
|
-
children: /* @__PURE__ */ (0,
|
|
3719
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
3671
3720
|
"path",
|
|
3672
3721
|
{
|
|
3673
3722
|
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",
|
|
@@ -3678,14 +3727,14 @@ var PanelLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
|
3678
3727
|
);
|
|
3679
3728
|
|
|
3680
3729
|
// src/components/Icon/icons/PanelRightIcon.tsx
|
|
3681
|
-
var
|
|
3682
|
-
var PanelRightIcon = (props) => /* @__PURE__ */ (0,
|
|
3730
|
+
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
3731
|
+
var PanelRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
3683
3732
|
"svg",
|
|
3684
3733
|
{
|
|
3685
3734
|
...props,
|
|
3686
3735
|
viewBox: "0 0 24 24",
|
|
3687
3736
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3688
|
-
children: /* @__PURE__ */ (0,
|
|
3737
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
3689
3738
|
"path",
|
|
3690
3739
|
{
|
|
3691
3740
|
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",
|
|
@@ -3696,14 +3745,14 @@ var PanelRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
|
3696
3745
|
);
|
|
3697
3746
|
|
|
3698
3747
|
// src/components/Icon/icons/PanelUpIcon.tsx
|
|
3699
|
-
var
|
|
3700
|
-
var PanelUpIcon = (props) => /* @__PURE__ */ (0,
|
|
3748
|
+
var import_jsx_runtime102 = require("react/jsx-runtime");
|
|
3749
|
+
var PanelUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
3701
3750
|
"svg",
|
|
3702
3751
|
{
|
|
3703
3752
|
...props,
|
|
3704
3753
|
viewBox: "0 0 24 24",
|
|
3705
3754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3706
|
-
children: /* @__PURE__ */ (0,
|
|
3755
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
3707
3756
|
"path",
|
|
3708
3757
|
{
|
|
3709
3758
|
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",
|
|
@@ -3714,14 +3763,14 @@ var PanelUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
|
3714
3763
|
);
|
|
3715
3764
|
|
|
3716
3765
|
// src/components/Icon/icons/PasswordIcon.tsx
|
|
3717
|
-
var
|
|
3718
|
-
var PasswordIcon = (props) => /* @__PURE__ */ (0,
|
|
3766
|
+
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
3767
|
+
var PasswordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
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__ */ (0,
|
|
3773
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
3725
3774
|
"path",
|
|
3726
3775
|
{
|
|
3727
3776
|
clipRule: "evenodd",
|
|
@@ -3734,14 +3783,14 @@ var PasswordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
|
3734
3783
|
);
|
|
3735
3784
|
|
|
3736
3785
|
// src/components/Icon/icons/PencilIcon.tsx
|
|
3737
|
-
var
|
|
3738
|
-
var PencilIcon = (props) => /* @__PURE__ */ (0,
|
|
3786
|
+
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
3787
|
+
var PencilIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
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__ */ (0,
|
|
3793
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
3745
3794
|
"path",
|
|
3746
3795
|
{
|
|
3747
3796
|
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",
|
|
@@ -3752,14 +3801,14 @@ var PencilIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
|
3752
3801
|
);
|
|
3753
3802
|
|
|
3754
3803
|
// src/components/Icon/icons/PeopleIcon.tsx
|
|
3755
|
-
var
|
|
3756
|
-
var PeopleIcon = (props) => /* @__PURE__ */ (0,
|
|
3804
|
+
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
3805
|
+
var PeopleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
3757
3806
|
"svg",
|
|
3758
3807
|
{
|
|
3759
3808
|
...props,
|
|
3760
3809
|
viewBox: "0 0 24 24",
|
|
3761
3810
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3762
|
-
children: /* @__PURE__ */ (0,
|
|
3811
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
3763
3812
|
"path",
|
|
3764
3813
|
{
|
|
3765
3814
|
clipRule: "evenodd",
|
|
@@ -3772,14 +3821,14 @@ var PeopleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
|
3772
3821
|
);
|
|
3773
3822
|
|
|
3774
3823
|
// src/components/Icon/icons/PinIcon.tsx
|
|
3775
|
-
var
|
|
3776
|
-
var PinIcon = (props) => /* @__PURE__ */ (0,
|
|
3824
|
+
var import_jsx_runtime106 = require("react/jsx-runtime");
|
|
3825
|
+
var PinIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
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__ */ (0,
|
|
3831
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
3783
3832
|
"path",
|
|
3784
3833
|
{
|
|
3785
3834
|
clipRule: "evenodd",
|
|
@@ -3792,14 +3841,14 @@ var PinIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
|
3792
3841
|
);
|
|
3793
3842
|
|
|
3794
3843
|
// src/components/Icon/icons/PinSlashIcon.tsx
|
|
3795
|
-
var
|
|
3796
|
-
var PinSlashIcon = (props) => /* @__PURE__ */ (0,
|
|
3844
|
+
var import_jsx_runtime107 = require("react/jsx-runtime");
|
|
3845
|
+
var PinSlashIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
3797
3846
|
"svg",
|
|
3798
3847
|
{
|
|
3799
3848
|
...props,
|
|
3800
3849
|
viewBox: "0 0 24 24",
|
|
3801
3850
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3802
|
-
children: /* @__PURE__ */ (0,
|
|
3851
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
3803
3852
|
"path",
|
|
3804
3853
|
{
|
|
3805
3854
|
clipRule: "evenodd",
|
|
@@ -3812,14 +3861,14 @@ var PinSlashIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
|
3812
3861
|
);
|
|
3813
3862
|
|
|
3814
3863
|
// src/components/Icon/icons/PlayIcon.tsx
|
|
3815
|
-
var
|
|
3816
|
-
var PlayIcon = (props) => /* @__PURE__ */ (0,
|
|
3864
|
+
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
3865
|
+
var PlayIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
3817
3866
|
"svg",
|
|
3818
3867
|
{
|
|
3819
3868
|
...props,
|
|
3820
3869
|
viewBox: "0 0 24 24",
|
|
3821
3870
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3822
|
-
children: /* @__PURE__ */ (0,
|
|
3871
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
3823
3872
|
"path",
|
|
3824
3873
|
{
|
|
3825
3874
|
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",
|
|
@@ -3830,14 +3879,14 @@ var PlayIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
|
3830
3879
|
);
|
|
3831
3880
|
|
|
3832
3881
|
// src/components/Icon/icons/PlayerIcon.tsx
|
|
3833
|
-
var
|
|
3834
|
-
var PlayerIcon = (props) => /* @__PURE__ */ (0,
|
|
3882
|
+
var import_jsx_runtime109 = require("react/jsx-runtime");
|
|
3883
|
+
var PlayerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
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__ */ (0,
|
|
3889
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
3841
3890
|
"path",
|
|
3842
3891
|
{
|
|
3843
3892
|
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",
|
|
@@ -3848,14 +3897,14 @@ var PlayerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
|
3848
3897
|
);
|
|
3849
3898
|
|
|
3850
3899
|
// src/components/Icon/icons/PlusIcon.tsx
|
|
3851
|
-
var
|
|
3852
|
-
var PlusIcon = (props) => /* @__PURE__ */ (0,
|
|
3900
|
+
var import_jsx_runtime110 = require("react/jsx-runtime");
|
|
3901
|
+
var PlusIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
3853
3902
|
"svg",
|
|
3854
3903
|
{
|
|
3855
3904
|
...props,
|
|
3856
3905
|
viewBox: "0 0 24 24",
|
|
3857
3906
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3858
|
-
children: /* @__PURE__ */ (0,
|
|
3907
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
3859
3908
|
"path",
|
|
3860
3909
|
{
|
|
3861
3910
|
clipRule: "evenodd",
|
|
@@ -3868,14 +3917,14 @@ var PlusIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
|
3868
3917
|
);
|
|
3869
3918
|
|
|
3870
3919
|
// src/components/Icon/icons/PodcastIcon.tsx
|
|
3871
|
-
var
|
|
3872
|
-
var PodcastIcon = (props) => /* @__PURE__ */ (0,
|
|
3920
|
+
var import_jsx_runtime111 = require("react/jsx-runtime");
|
|
3921
|
+
var PodcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
3873
3922
|
"svg",
|
|
3874
3923
|
{
|
|
3875
3924
|
...props,
|
|
3876
3925
|
viewBox: "0 0 24 24",
|
|
3877
3926
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3878
|
-
children: /* @__PURE__ */ (0,
|
|
3927
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
3879
3928
|
"path",
|
|
3880
3929
|
{
|
|
3881
3930
|
clipRule: "evenodd",
|
|
@@ -3888,14 +3937,14 @@ var PodcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
|
3888
3937
|
);
|
|
3889
3938
|
|
|
3890
3939
|
// src/components/Icon/icons/PreviewIcon.tsx
|
|
3891
|
-
var
|
|
3892
|
-
var PreviewIcon = (props) => /* @__PURE__ */ (0,
|
|
3940
|
+
var import_jsx_runtime112 = require("react/jsx-runtime");
|
|
3941
|
+
var PreviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
3893
3942
|
"svg",
|
|
3894
3943
|
{
|
|
3895
3944
|
...props,
|
|
3896
3945
|
viewBox: "0 0 24 24",
|
|
3897
3946
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3898
|
-
children: /* @__PURE__ */ (0,
|
|
3947
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
3899
3948
|
"path",
|
|
3900
3949
|
{
|
|
3901
3950
|
clipRule: "evenodd",
|
|
@@ -3908,14 +3957,14 @@ var PreviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
|
3908
3957
|
);
|
|
3909
3958
|
|
|
3910
3959
|
// src/components/Icon/icons/PrivateUserSessionsIcon.tsx
|
|
3911
|
-
var
|
|
3912
|
-
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0,
|
|
3960
|
+
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
3961
|
+
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
3913
3962
|
"svg",
|
|
3914
3963
|
{
|
|
3915
3964
|
...props,
|
|
3916
3965
|
viewBox: "0 0 24 24",
|
|
3917
3966
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3918
|
-
children: /* @__PURE__ */ (0,
|
|
3967
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
3919
3968
|
"path",
|
|
3920
3969
|
{
|
|
3921
3970
|
clipRule: "evenodd",
|
|
@@ -3928,15 +3977,15 @@ var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime1
|
|
|
3928
3977
|
);
|
|
3929
3978
|
|
|
3930
3979
|
// src/components/Icon/icons/ProjectIcon.tsx
|
|
3931
|
-
var
|
|
3932
|
-
var ProjectIcon = (props) => /* @__PURE__ */ (0,
|
|
3980
|
+
var import_jsx_runtime114 = require("react/jsx-runtime");
|
|
3981
|
+
var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
|
|
3933
3982
|
"svg",
|
|
3934
3983
|
{
|
|
3935
3984
|
...props,
|
|
3936
3985
|
viewBox: "0 0 24 24",
|
|
3937
3986
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3938
3987
|
children: [
|
|
3939
|
-
/* @__PURE__ */ (0,
|
|
3988
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
3940
3989
|
"path",
|
|
3941
3990
|
{
|
|
3942
3991
|
clipRule: "evenodd",
|
|
@@ -3945,7 +3994,7 @@ var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
|
|
|
3945
3994
|
fillRule: "evenodd"
|
|
3946
3995
|
}
|
|
3947
3996
|
),
|
|
3948
|
-
/* @__PURE__ */ (0,
|
|
3997
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
3949
3998
|
"path",
|
|
3950
3999
|
{
|
|
3951
4000
|
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",
|
|
@@ -3957,14 +4006,14 @@ var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
|
|
|
3957
4006
|
);
|
|
3958
4007
|
|
|
3959
4008
|
// src/components/Icon/icons/PropertiesIcon.tsx
|
|
3960
|
-
var
|
|
3961
|
-
var PropertiesIcon = (props) => /* @__PURE__ */ (0,
|
|
4009
|
+
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
4010
|
+
var PropertiesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3962
4011
|
"svg",
|
|
3963
4012
|
{
|
|
3964
4013
|
...props,
|
|
3965
4014
|
viewBox: "0 0 24 24",
|
|
3966
4015
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3967
|
-
children: /* @__PURE__ */ (0,
|
|
4016
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3968
4017
|
"path",
|
|
3969
4018
|
{
|
|
3970
4019
|
clipRule: "evenodd",
|
|
@@ -3977,14 +4026,14 @@ var PropertiesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
|
3977
4026
|
);
|
|
3978
4027
|
|
|
3979
4028
|
// src/components/Icon/icons/QuestionMarkIcon.tsx
|
|
3980
|
-
var
|
|
3981
|
-
var QuestionMarkIcon = (props) => /* @__PURE__ */ (0,
|
|
4029
|
+
var import_jsx_runtime116 = require("react/jsx-runtime");
|
|
4030
|
+
var QuestionMarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
3982
4031
|
"svg",
|
|
3983
4032
|
{
|
|
3984
4033
|
...props,
|
|
3985
4034
|
viewBox: "0 0 24 24",
|
|
3986
4035
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3987
|
-
children: /* @__PURE__ */ (0,
|
|
4036
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
3988
4037
|
"path",
|
|
3989
4038
|
{
|
|
3990
4039
|
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",
|
|
@@ -3995,14 +4044,14 @@ var QuestionMarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)
|
|
|
3995
4044
|
);
|
|
3996
4045
|
|
|
3997
4046
|
// src/components/Icon/icons/ReactIcon.tsx
|
|
3998
|
-
var
|
|
3999
|
-
var ReactIcon = (props) => /* @__PURE__ */ (0,
|
|
4047
|
+
var import_jsx_runtime117 = require("react/jsx-runtime");
|
|
4048
|
+
var ReactIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
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__ */ (0,
|
|
4054
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
4006
4055
|
"path",
|
|
4007
4056
|
{
|
|
4008
4057
|
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",
|
|
@@ -4013,14 +4062,14 @@ var ReactIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
|
4013
4062
|
);
|
|
4014
4063
|
|
|
4015
4064
|
// src/components/Icon/icons/RecordIcon.tsx
|
|
4016
|
-
var
|
|
4017
|
-
var RecordIcon = (props) => /* @__PURE__ */ (0,
|
|
4065
|
+
var import_jsx_runtime118 = require("react/jsx-runtime");
|
|
4066
|
+
var RecordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
4018
4067
|
"svg",
|
|
4019
4068
|
{
|
|
4020
4069
|
...props,
|
|
4021
4070
|
viewBox: "0 0 24 24",
|
|
4022
4071
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4023
|
-
children: /* @__PURE__ */ (0,
|
|
4072
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
4024
4073
|
"path",
|
|
4025
4074
|
{
|
|
4026
4075
|
clipRule: "evenodd",
|
|
@@ -4033,14 +4082,14 @@ var RecordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
|
4033
4082
|
);
|
|
4034
4083
|
|
|
4035
4084
|
// src/components/Icon/icons/RedoIcon.tsx
|
|
4036
|
-
var
|
|
4037
|
-
var RedoIcon = (props) => /* @__PURE__ */ (0,
|
|
4085
|
+
var import_jsx_runtime119 = require("react/jsx-runtime");
|
|
4086
|
+
var RedoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
4038
4087
|
"svg",
|
|
4039
4088
|
{
|
|
4040
4089
|
...props,
|
|
4041
4090
|
viewBox: "0 0 24 24",
|
|
4042
4091
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4043
|
-
children: /* @__PURE__ */ (0,
|
|
4092
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
4044
4093
|
"path",
|
|
4045
4094
|
{
|
|
4046
4095
|
clipRule: "evenodd",
|
|
@@ -4053,14 +4102,14 @@ var RedoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
|
4053
4102
|
);
|
|
4054
4103
|
|
|
4055
4104
|
// src/components/Icon/icons/ReplaceIcon.tsx
|
|
4056
|
-
var
|
|
4057
|
-
var ReplaceIcon = (props) => /* @__PURE__ */ (0,
|
|
4105
|
+
var import_jsx_runtime120 = require("react/jsx-runtime");
|
|
4106
|
+
var ReplaceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
4058
4107
|
"svg",
|
|
4059
4108
|
{
|
|
4060
4109
|
...props,
|
|
4061
4110
|
viewBox: "0 0 24 24",
|
|
4062
4111
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4063
|
-
children: /* @__PURE__ */ (0,
|
|
4112
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
4064
4113
|
"path",
|
|
4065
4114
|
{
|
|
4066
4115
|
clipRule: "evenodd",
|
|
@@ -4073,14 +4122,14 @@ var ReplaceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
|
4073
4122
|
);
|
|
4074
4123
|
|
|
4075
4124
|
// src/components/Icon/icons/ReplyIcon.tsx
|
|
4076
|
-
var
|
|
4077
|
-
var ReplyIcon = (props) => /* @__PURE__ */ (0,
|
|
4125
|
+
var import_jsx_runtime121 = require("react/jsx-runtime");
|
|
4126
|
+
var ReplyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
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__ */ (0,
|
|
4132
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
4084
4133
|
"path",
|
|
4085
4134
|
{
|
|
4086
4135
|
clipRule: "evenodd",
|
|
@@ -4093,14 +4142,14 @@ var ReplyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
|
4093
4142
|
);
|
|
4094
4143
|
|
|
4095
4144
|
// src/components/Icon/icons/SaveAsCopyIcon.tsx
|
|
4096
|
-
var
|
|
4097
|
-
var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0,
|
|
4145
|
+
var import_jsx_runtime122 = require("react/jsx-runtime");
|
|
4146
|
+
var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
4098
4147
|
"svg",
|
|
4099
4148
|
{
|
|
4100
4149
|
...props,
|
|
4101
4150
|
viewBox: "0 0 24 24",
|
|
4102
4151
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4103
|
-
children: /* @__PURE__ */ (0,
|
|
4152
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
4104
4153
|
"path",
|
|
4105
4154
|
{
|
|
4106
4155
|
clipRule: "evenodd",
|
|
@@ -4113,14 +4162,14 @@ var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
|
4113
4162
|
);
|
|
4114
4163
|
|
|
4115
4164
|
// src/components/Icon/icons/SaveIcon.tsx
|
|
4116
|
-
var
|
|
4117
|
-
var SaveIcon = (props) => /* @__PURE__ */ (0,
|
|
4165
|
+
var import_jsx_runtime123 = require("react/jsx-runtime");
|
|
4166
|
+
var SaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
4118
4167
|
"svg",
|
|
4119
4168
|
{
|
|
4120
4169
|
...props,
|
|
4121
4170
|
viewBox: "0 0 24 24",
|
|
4122
4171
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4123
|
-
children: /* @__PURE__ */ (0,
|
|
4172
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
4124
4173
|
"path",
|
|
4125
4174
|
{
|
|
4126
4175
|
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",
|
|
@@ -4131,14 +4180,14 @@ var SaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
|
4131
4180
|
);
|
|
4132
4181
|
|
|
4133
4182
|
// src/components/Icon/icons/ScissorsIcon.tsx
|
|
4134
|
-
var
|
|
4135
|
-
var ScissorsIcon = (props) => /* @__PURE__ */ (0,
|
|
4183
|
+
var import_jsx_runtime124 = require("react/jsx-runtime");
|
|
4184
|
+
var ScissorsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
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__ */ (0,
|
|
4190
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
4142
4191
|
"path",
|
|
4143
4192
|
{
|
|
4144
4193
|
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",
|
|
@@ -4149,14 +4198,14 @@ var ScissorsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
|
4149
4198
|
);
|
|
4150
4199
|
|
|
4151
4200
|
// src/components/Icon/icons/ScreenshareOffIcon.tsx
|
|
4152
|
-
var
|
|
4153
|
-
var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0,
|
|
4201
|
+
var import_jsx_runtime125 = require("react/jsx-runtime");
|
|
4202
|
+
var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
|
|
4154
4203
|
"svg",
|
|
4155
4204
|
{
|
|
4156
4205
|
...props,
|
|
4157
4206
|
viewBox: "0 0 24 24",
|
|
4158
4207
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4159
|
-
children: /* @__PURE__ */ (0,
|
|
4208
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
|
|
4160
4209
|
"path",
|
|
4161
4210
|
{
|
|
4162
4211
|
clipRule: "evenodd",
|
|
@@ -4169,14 +4218,14 @@ var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime124.js
|
|
|
4169
4218
|
);
|
|
4170
4219
|
|
|
4171
4220
|
// src/components/Icon/icons/ScreenshareOnIcon.tsx
|
|
4172
|
-
var
|
|
4173
|
-
var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0,
|
|
4221
|
+
var import_jsx_runtime126 = require("react/jsx-runtime");
|
|
4222
|
+
var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
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__ */ (0,
|
|
4228
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
4180
4229
|
"path",
|
|
4181
4230
|
{
|
|
4182
4231
|
clipRule: "evenodd",
|
|
@@ -4189,14 +4238,14 @@ var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime125.jsx
|
|
|
4189
4238
|
);
|
|
4190
4239
|
|
|
4191
4240
|
// src/components/Icon/icons/SearchIcon.tsx
|
|
4192
|
-
var
|
|
4193
|
-
var SearchIcon = (props) => /* @__PURE__ */ (0,
|
|
4241
|
+
var import_jsx_runtime127 = require("react/jsx-runtime");
|
|
4242
|
+
var SearchIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
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__ */ (0,
|
|
4248
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
4200
4249
|
"path",
|
|
4201
4250
|
{
|
|
4202
4251
|
clipRule: "evenodd",
|
|
@@ -4209,14 +4258,14 @@ var SearchIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
|
4209
4258
|
);
|
|
4210
4259
|
|
|
4211
4260
|
// src/components/Icon/icons/SendIcon.tsx
|
|
4212
|
-
var
|
|
4213
|
-
var SendIcon = (props) => /* @__PURE__ */ (0,
|
|
4261
|
+
var import_jsx_runtime128 = require("react/jsx-runtime");
|
|
4262
|
+
var SendIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
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__ */ (0,
|
|
4268
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
4220
4269
|
"path",
|
|
4221
4270
|
{
|
|
4222
4271
|
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",
|
|
@@ -4227,14 +4276,14 @@ var SendIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
|
4227
4276
|
);
|
|
4228
4277
|
|
|
4229
4278
|
// src/components/Icon/icons/ShapesIcon.tsx
|
|
4230
|
-
var
|
|
4231
|
-
var ShapesIcon = (props) => /* @__PURE__ */ (0,
|
|
4279
|
+
var import_jsx_runtime129 = require("react/jsx-runtime");
|
|
4280
|
+
var ShapesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
4232
4281
|
"svg",
|
|
4233
4282
|
{
|
|
4234
4283
|
...props,
|
|
4235
4284
|
viewBox: "0 0 24 24",
|
|
4236
4285
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4237
|
-
children: /* @__PURE__ */ (0,
|
|
4286
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
4238
4287
|
"path",
|
|
4239
4288
|
{
|
|
4240
4289
|
clipRule: "evenodd",
|
|
@@ -4247,14 +4296,14 @@ var ShapesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
|
4247
4296
|
);
|
|
4248
4297
|
|
|
4249
4298
|
// src/components/Icon/icons/ShareIcon.tsx
|
|
4250
|
-
var
|
|
4251
|
-
var ShareIcon = (props) => /* @__PURE__ */ (0,
|
|
4299
|
+
var import_jsx_runtime130 = require("react/jsx-runtime");
|
|
4300
|
+
var ShareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
4252
4301
|
"svg",
|
|
4253
4302
|
{
|
|
4254
4303
|
...props,
|
|
4255
4304
|
viewBox: "0 0 24 24",
|
|
4256
4305
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4257
|
-
children: /* @__PURE__ */ (0,
|
|
4306
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
4258
4307
|
"path",
|
|
4259
4308
|
{
|
|
4260
4309
|
clipRule: "evenodd",
|
|
@@ -4267,14 +4316,14 @@ var ShareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
|
4267
4316
|
);
|
|
4268
4317
|
|
|
4269
4318
|
// src/components/Icon/icons/SharingPermissionsIcon.tsx
|
|
4270
|
-
var
|
|
4271
|
-
var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4319
|
+
var import_jsx_runtime131 = require("react/jsx-runtime");
|
|
4320
|
+
var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
4272
4321
|
"svg",
|
|
4273
4322
|
{
|
|
4274
4323
|
...props,
|
|
4275
4324
|
viewBox: "0 0 24 24",
|
|
4276
4325
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4277
|
-
children: /* @__PURE__ */ (0,
|
|
4326
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
4278
4327
|
"path",
|
|
4279
4328
|
{
|
|
4280
4329
|
clipRule: "evenodd",
|
|
@@ -4287,14 +4336,14 @@ var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13
|
|
|
4287
4336
|
);
|
|
4288
4337
|
|
|
4289
4338
|
// src/components/Icon/icons/SimulcastIcon.tsx
|
|
4290
|
-
var
|
|
4291
|
-
var SimulcastIcon = (props) => /* @__PURE__ */ (0,
|
|
4339
|
+
var import_jsx_runtime132 = require("react/jsx-runtime");
|
|
4340
|
+
var SimulcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
4292
4341
|
"svg",
|
|
4293
4342
|
{
|
|
4294
4343
|
...props,
|
|
4295
4344
|
viewBox: "0 0 24 24",
|
|
4296
4345
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4297
|
-
children: /* @__PURE__ */ (0,
|
|
4346
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
4298
4347
|
"path",
|
|
4299
4348
|
{
|
|
4300
4349
|
clipRule: "evenodd",
|
|
@@ -4307,14 +4356,14 @@ var SimulcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
|
4307
4356
|
);
|
|
4308
4357
|
|
|
4309
4358
|
// src/components/Icon/icons/SortIcon.tsx
|
|
4310
|
-
var
|
|
4311
|
-
var SortIcon = (props) => /* @__PURE__ */ (0,
|
|
4359
|
+
var import_jsx_runtime133 = require("react/jsx-runtime");
|
|
4360
|
+
var SortIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
4312
4361
|
"svg",
|
|
4313
4362
|
{
|
|
4314
4363
|
...props,
|
|
4315
4364
|
viewBox: "0 0 24 24",
|
|
4316
4365
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4317
|
-
children: /* @__PURE__ */ (0,
|
|
4366
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
4318
4367
|
"path",
|
|
4319
4368
|
{
|
|
4320
4369
|
clipRule: "evenodd",
|
|
@@ -4327,14 +4376,14 @@ var SortIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
|
4327
4376
|
);
|
|
4328
4377
|
|
|
4329
4378
|
// src/components/Icon/icons/SparkleIcon.tsx
|
|
4330
|
-
var
|
|
4331
|
-
var SparkleIcon = (props) => /* @__PURE__ */ (0,
|
|
4379
|
+
var import_jsx_runtime134 = require("react/jsx-runtime");
|
|
4380
|
+
var SparkleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
4332
4381
|
"svg",
|
|
4333
4382
|
{
|
|
4334
4383
|
...props,
|
|
4335
4384
|
viewBox: "0 0 24 24",
|
|
4336
4385
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4337
|
-
children: /* @__PURE__ */ (0,
|
|
4386
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
4338
4387
|
"path",
|
|
4339
4388
|
{
|
|
4340
4389
|
clipRule: "evenodd",
|
|
@@ -4347,14 +4396,14 @@ var SparkleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
|
4347
4396
|
);
|
|
4348
4397
|
|
|
4349
4398
|
// src/components/Icon/icons/SpinnerIcon.tsx
|
|
4350
|
-
var
|
|
4351
|
-
var SpinnerIcon = (props) => /* @__PURE__ */ (0,
|
|
4399
|
+
var import_jsx_runtime135 = require("react/jsx-runtime");
|
|
4400
|
+
var SpinnerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
4352
4401
|
"svg",
|
|
4353
4402
|
{
|
|
4354
4403
|
...props,
|
|
4355
4404
|
viewBox: "0 0 24 24",
|
|
4356
4405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4357
|
-
children: /* @__PURE__ */ (0,
|
|
4406
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
4358
4407
|
"path",
|
|
4359
4408
|
{
|
|
4360
4409
|
clipRule: "evenodd",
|
|
@@ -4367,14 +4416,14 @@ var SpinnerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
|
4367
4416
|
);
|
|
4368
4417
|
|
|
4369
4418
|
// src/components/Icon/icons/StatsIcon.tsx
|
|
4370
|
-
var
|
|
4371
|
-
var StatsIcon = (props) => /* @__PURE__ */ (0,
|
|
4419
|
+
var import_jsx_runtime136 = require("react/jsx-runtime");
|
|
4420
|
+
var StatsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
4372
4421
|
"svg",
|
|
4373
4422
|
{
|
|
4374
4423
|
...props,
|
|
4375
4424
|
viewBox: "0 0 24 24",
|
|
4376
4425
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4377
|
-
children: /* @__PURE__ */ (0,
|
|
4426
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
4378
4427
|
"path",
|
|
4379
4428
|
{
|
|
4380
4429
|
clipRule: "evenodd",
|
|
@@ -4387,14 +4436,14 @@ var StatsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
|
4387
4436
|
);
|
|
4388
4437
|
|
|
4389
4438
|
// src/components/Icon/icons/SwitchAccountsIcon.tsx
|
|
4390
|
-
var
|
|
4391
|
-
var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0,
|
|
4439
|
+
var import_jsx_runtime137 = require("react/jsx-runtime");
|
|
4440
|
+
var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
4392
4441
|
"svg",
|
|
4393
4442
|
{
|
|
4394
4443
|
...props,
|
|
4395
4444
|
viewBox: "0 0 24 24",
|
|
4396
4445
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4397
|
-
children: /* @__PURE__ */ (0,
|
|
4446
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
4398
4447
|
"path",
|
|
4399
4448
|
{
|
|
4400
4449
|
clipRule: "evenodd",
|
|
@@ -4407,14 +4456,14 @@ var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime136.js
|
|
|
4407
4456
|
);
|
|
4408
4457
|
|
|
4409
4458
|
// src/components/Icon/icons/TagIcon.tsx
|
|
4410
|
-
var
|
|
4411
|
-
var TagIcon = (props) => /* @__PURE__ */ (0,
|
|
4459
|
+
var import_jsx_runtime138 = require("react/jsx-runtime");
|
|
4460
|
+
var TagIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
4412
4461
|
"svg",
|
|
4413
4462
|
{
|
|
4414
4463
|
...props,
|
|
4415
4464
|
viewBox: "0 0 24 24",
|
|
4416
4465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4417
|
-
children: /* @__PURE__ */ (0,
|
|
4466
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
4418
4467
|
"path",
|
|
4419
4468
|
{
|
|
4420
4469
|
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",
|
|
@@ -4425,14 +4474,14 @@ var TagIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
|
4425
4474
|
);
|
|
4426
4475
|
|
|
4427
4476
|
// src/components/Icon/icons/ThumbnailIcon.tsx
|
|
4428
|
-
var
|
|
4429
|
-
var ThumbnailIcon = (props) => /* @__PURE__ */ (0,
|
|
4477
|
+
var import_jsx_runtime139 = require("react/jsx-runtime");
|
|
4478
|
+
var ThumbnailIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
4430
4479
|
"svg",
|
|
4431
4480
|
{
|
|
4432
4481
|
...props,
|
|
4433
4482
|
viewBox: "0 0 24 24",
|
|
4434
4483
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4435
|
-
children: /* @__PURE__ */ (0,
|
|
4484
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
4436
4485
|
"path",
|
|
4437
4486
|
{
|
|
4438
4487
|
clipRule: "evenodd",
|
|
@@ -4445,14 +4494,14 @@ var ThumbnailIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
|
4445
4494
|
);
|
|
4446
4495
|
|
|
4447
4496
|
// src/components/Icon/icons/ThumbsDownIcon.tsx
|
|
4448
|
-
var
|
|
4449
|
-
var ThumbsDownIcon = (props) => /* @__PURE__ */ (0,
|
|
4497
|
+
var import_jsx_runtime140 = require("react/jsx-runtime");
|
|
4498
|
+
var ThumbsDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
4450
4499
|
"svg",
|
|
4451
4500
|
{
|
|
4452
4501
|
...props,
|
|
4453
4502
|
viewBox: "0 0 24 24",
|
|
4454
4503
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4455
|
-
children: /* @__PURE__ */ (0,
|
|
4504
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
4456
4505
|
"path",
|
|
4457
4506
|
{
|
|
4458
4507
|
clipRule: "evenodd",
|
|
@@ -4465,14 +4514,14 @@ var ThumbsDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
|
4465
4514
|
);
|
|
4466
4515
|
|
|
4467
4516
|
// src/components/Icon/icons/ThumbsUpIcon.tsx
|
|
4468
|
-
var
|
|
4469
|
-
var ThumbsUpIcon = (props) => /* @__PURE__ */ (0,
|
|
4517
|
+
var import_jsx_runtime141 = require("react/jsx-runtime");
|
|
4518
|
+
var ThumbsUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
4470
4519
|
"svg",
|
|
4471
4520
|
{
|
|
4472
4521
|
...props,
|
|
4473
4522
|
viewBox: "0 0 24 24",
|
|
4474
4523
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4475
|
-
children: /* @__PURE__ */ (0,
|
|
4524
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
4476
4525
|
"path",
|
|
4477
4526
|
{
|
|
4478
4527
|
clipRule: "evenodd",
|
|
@@ -4485,14 +4534,14 @@ var ThumbsUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
|
4485
4534
|
);
|
|
4486
4535
|
|
|
4487
4536
|
// src/components/Icon/icons/TransitionsIcon.tsx
|
|
4488
|
-
var
|
|
4489
|
-
var TransitionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4537
|
+
var import_jsx_runtime142 = require("react/jsx-runtime");
|
|
4538
|
+
var TransitionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
4490
4539
|
"svg",
|
|
4491
4540
|
{
|
|
4492
4541
|
...props,
|
|
4493
4542
|
viewBox: "0 0 24 24",
|
|
4494
4543
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4495
|
-
children: /* @__PURE__ */ (0,
|
|
4544
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
4496
4545
|
"path",
|
|
4497
4546
|
{
|
|
4498
4547
|
clipRule: "evenodd",
|
|
@@ -4505,14 +4554,14 @@ var TransitionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
|
4505
4554
|
);
|
|
4506
4555
|
|
|
4507
4556
|
// src/components/Icon/icons/TrimIcon.tsx
|
|
4508
|
-
var
|
|
4509
|
-
var TrimIcon = (props) => /* @__PURE__ */ (0,
|
|
4557
|
+
var import_jsx_runtime143 = require("react/jsx-runtime");
|
|
4558
|
+
var TrimIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
4510
4559
|
"svg",
|
|
4511
4560
|
{
|
|
4512
4561
|
...props,
|
|
4513
4562
|
viewBox: "0 0 24 24",
|
|
4514
4563
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4515
|
-
children: /* @__PURE__ */ (0,
|
|
4564
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
4516
4565
|
"path",
|
|
4517
4566
|
{
|
|
4518
4567
|
clipRule: "evenodd",
|
|
@@ -4525,14 +4574,14 @@ var TrimIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
|
4525
4574
|
);
|
|
4526
4575
|
|
|
4527
4576
|
// src/components/Icon/icons/TurnstileIcon.tsx
|
|
4528
|
-
var
|
|
4529
|
-
var TurnstileIcon = (props) => /* @__PURE__ */ (0,
|
|
4577
|
+
var import_jsx_runtime144 = require("react/jsx-runtime");
|
|
4578
|
+
var TurnstileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
4530
4579
|
"svg",
|
|
4531
4580
|
{
|
|
4532
4581
|
...props,
|
|
4533
4582
|
viewBox: "0 0 24 24",
|
|
4534
4583
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4535
|
-
children: /* @__PURE__ */ (0,
|
|
4584
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
4536
4585
|
"path",
|
|
4537
4586
|
{
|
|
4538
4587
|
clipRule: "evenodd",
|
|
@@ -4545,14 +4594,14 @@ var TurnstileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
|
4545
4594
|
);
|
|
4546
4595
|
|
|
4547
4596
|
// src/components/Icon/icons/UndoIcon.tsx
|
|
4548
|
-
var
|
|
4549
|
-
var UndoIcon = (props) => /* @__PURE__ */ (0,
|
|
4597
|
+
var import_jsx_runtime145 = require("react/jsx-runtime");
|
|
4598
|
+
var UndoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
4550
4599
|
"svg",
|
|
4551
4600
|
{
|
|
4552
4601
|
...props,
|
|
4553
4602
|
viewBox: "0 0 24 24",
|
|
4554
4603
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4555
|
-
children: /* @__PURE__ */ (0,
|
|
4604
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
4556
4605
|
"path",
|
|
4557
4606
|
{
|
|
4558
4607
|
clipRule: "evenodd",
|
|
@@ -4565,14 +4614,14 @@ var UndoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
|
4565
4614
|
);
|
|
4566
4615
|
|
|
4567
4616
|
// src/components/Icon/icons/UnlockIcon.tsx
|
|
4568
|
-
var
|
|
4569
|
-
var UnlockIcon = (props) => /* @__PURE__ */ (0,
|
|
4617
|
+
var import_jsx_runtime146 = require("react/jsx-runtime");
|
|
4618
|
+
var UnlockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
4570
4619
|
"svg",
|
|
4571
4620
|
{
|
|
4572
4621
|
...props,
|
|
4573
4622
|
viewBox: "0 0 24 24",
|
|
4574
4623
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4575
|
-
children: /* @__PURE__ */ (0,
|
|
4624
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
4576
4625
|
"path",
|
|
4577
4626
|
{
|
|
4578
4627
|
clipRule: "evenodd",
|
|
@@ -4585,14 +4634,14 @@ var UnlockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
|
4585
4634
|
);
|
|
4586
4635
|
|
|
4587
4636
|
// src/components/Icon/icons/UploadIcon.tsx
|
|
4588
|
-
var
|
|
4589
|
-
var UploadIcon = (props) => /* @__PURE__ */ (0,
|
|
4637
|
+
var import_jsx_runtime147 = require("react/jsx-runtime");
|
|
4638
|
+
var UploadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
4590
4639
|
"svg",
|
|
4591
4640
|
{
|
|
4592
4641
|
...props,
|
|
4593
4642
|
viewBox: "0 0 24 24",
|
|
4594
4643
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4595
|
-
children: /* @__PURE__ */ (0,
|
|
4644
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
4596
4645
|
"path",
|
|
4597
4646
|
{
|
|
4598
4647
|
clipRule: "evenodd",
|
|
@@ -4605,14 +4654,14 @@ var UploadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
|
4605
4654
|
);
|
|
4606
4655
|
|
|
4607
4656
|
// src/components/Icon/icons/UsersPermissionsIcon.tsx
|
|
4608
|
-
var
|
|
4609
|
-
var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4657
|
+
var import_jsx_runtime148 = require("react/jsx-runtime");
|
|
4658
|
+
var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
4610
4659
|
"svg",
|
|
4611
4660
|
{
|
|
4612
4661
|
...props,
|
|
4613
4662
|
viewBox: "0 0 24 24",
|
|
4614
4663
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4615
|
-
children: /* @__PURE__ */ (0,
|
|
4664
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
4616
4665
|
"path",
|
|
4617
4666
|
{
|
|
4618
4667
|
clipRule: "evenodd",
|
|
@@ -4625,14 +4674,14 @@ var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime147.
|
|
|
4625
4674
|
);
|
|
4626
4675
|
|
|
4627
4676
|
// src/components/Icon/icons/ViewStreamIcon.tsx
|
|
4628
|
-
var
|
|
4629
|
-
var ViewStreamIcon = (props) => /* @__PURE__ */ (0,
|
|
4677
|
+
var import_jsx_runtime149 = require("react/jsx-runtime");
|
|
4678
|
+
var ViewStreamIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
4630
4679
|
"svg",
|
|
4631
4680
|
{
|
|
4632
4681
|
...props,
|
|
4633
4682
|
viewBox: "0 0 24 24",
|
|
4634
4683
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4635
|
-
children: /* @__PURE__ */ (0,
|
|
4684
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
4636
4685
|
"path",
|
|
4637
4686
|
{
|
|
4638
4687
|
clipRule: "evenodd",
|
|
@@ -4645,14 +4694,14 @@ var ViewStreamIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
|
4645
4694
|
);
|
|
4646
4695
|
|
|
4647
4696
|
// src/components/Icon/icons/VolumeIcon.tsx
|
|
4648
|
-
var
|
|
4649
|
-
var VolumeIcon = (props) => /* @__PURE__ */ (0,
|
|
4697
|
+
var import_jsx_runtime150 = require("react/jsx-runtime");
|
|
4698
|
+
var VolumeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
4650
4699
|
"svg",
|
|
4651
4700
|
{
|
|
4652
4701
|
...props,
|
|
4653
4702
|
viewBox: "0 0 24 24",
|
|
4654
4703
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4655
|
-
children: /* @__PURE__ */ (0,
|
|
4704
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
4656
4705
|
"path",
|
|
4657
4706
|
{
|
|
4658
4707
|
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",
|
|
@@ -4663,14 +4712,14 @@ var VolumeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
|
4663
4712
|
);
|
|
4664
4713
|
|
|
4665
4714
|
// src/components/Icon/icons/VolumeOffIcon.tsx
|
|
4666
|
-
var
|
|
4667
|
-
var VolumeOffIcon = (props) => /* @__PURE__ */ (0,
|
|
4715
|
+
var import_jsx_runtime151 = require("react/jsx-runtime");
|
|
4716
|
+
var VolumeOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
4668
4717
|
"svg",
|
|
4669
4718
|
{
|
|
4670
4719
|
...props,
|
|
4671
4720
|
viewBox: "0 0 24 24",
|
|
4672
4721
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4673
|
-
children: /* @__PURE__ */ (0,
|
|
4722
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
4674
4723
|
"path",
|
|
4675
4724
|
{
|
|
4676
4725
|
clipRule: "evenodd",
|
|
@@ -4683,14 +4732,14 @@ var VolumeOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
|
4683
4732
|
);
|
|
4684
4733
|
|
|
4685
4734
|
// src/components/Icon/icons/VolumeUpIcon.tsx
|
|
4686
|
-
var
|
|
4687
|
-
var VolumeUpIcon = (props) => /* @__PURE__ */ (0,
|
|
4735
|
+
var import_jsx_runtime152 = require("react/jsx-runtime");
|
|
4736
|
+
var VolumeUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
4688
4737
|
"svg",
|
|
4689
4738
|
{
|
|
4690
4739
|
...props,
|
|
4691
4740
|
viewBox: "0 0 24 24",
|
|
4692
4741
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4693
|
-
children: /* @__PURE__ */ (0,
|
|
4742
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
4694
4743
|
"path",
|
|
4695
4744
|
{
|
|
4696
4745
|
clipRule: "evenodd",
|
|
@@ -4703,14 +4752,14 @@ var VolumeUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
|
4703
4752
|
);
|
|
4704
4753
|
|
|
4705
4754
|
// src/components/Icon/icons/VolumeXIcon.tsx
|
|
4706
|
-
var
|
|
4707
|
-
var VolumeXIcon = (props) => /* @__PURE__ */ (0,
|
|
4755
|
+
var import_jsx_runtime153 = require("react/jsx-runtime");
|
|
4756
|
+
var VolumeXIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
4708
4757
|
"svg",
|
|
4709
4758
|
{
|
|
4710
4759
|
...props,
|
|
4711
4760
|
viewBox: "0 0 24 24",
|
|
4712
4761
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4713
|
-
children: /* @__PURE__ */ (0,
|
|
4762
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
4714
4763
|
"path",
|
|
4715
4764
|
{
|
|
4716
4765
|
clipRule: "evenodd",
|
|
@@ -4723,14 +4772,14 @@ var VolumeXIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
|
4723
4772
|
);
|
|
4724
4773
|
|
|
4725
4774
|
// src/components/Icon/icons/WandIcon.tsx
|
|
4726
|
-
var
|
|
4727
|
-
var WandIcon = (props) => /* @__PURE__ */ (0,
|
|
4775
|
+
var import_jsx_runtime154 = require("react/jsx-runtime");
|
|
4776
|
+
var WandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
4728
4777
|
"svg",
|
|
4729
4778
|
{
|
|
4730
4779
|
...props,
|
|
4731
4780
|
viewBox: "0 0 24 24",
|
|
4732
4781
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4733
|
-
children: /* @__PURE__ */ (0,
|
|
4782
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
4734
4783
|
"path",
|
|
4735
4784
|
{
|
|
4736
4785
|
clipRule: "evenodd",
|
|
@@ -4743,14 +4792,14 @@ var WandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
|
4743
4792
|
);
|
|
4744
4793
|
|
|
4745
4794
|
// src/components/Icon/icons/ZoomInIcon.tsx
|
|
4746
|
-
var
|
|
4747
|
-
var ZoomInIcon = (props) => /* @__PURE__ */ (0,
|
|
4795
|
+
var import_jsx_runtime155 = require("react/jsx-runtime");
|
|
4796
|
+
var ZoomInIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
4748
4797
|
"svg",
|
|
4749
4798
|
{
|
|
4750
4799
|
...props,
|
|
4751
4800
|
viewBox: "0 0 24 24",
|
|
4752
4801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4753
|
-
children: /* @__PURE__ */ (0,
|
|
4802
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
4754
4803
|
"path",
|
|
4755
4804
|
{
|
|
4756
4805
|
clipRule: "evenodd",
|
|
@@ -4763,14 +4812,14 @@ var ZoomInIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
|
4763
4812
|
);
|
|
4764
4813
|
|
|
4765
4814
|
// src/components/Icon/icons/ZoomOutIcon.tsx
|
|
4766
|
-
var
|
|
4767
|
-
var ZoomOutIcon = (props) => /* @__PURE__ */ (0,
|
|
4815
|
+
var import_jsx_runtime156 = require("react/jsx-runtime");
|
|
4816
|
+
var ZoomOutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
4768
4817
|
"svg",
|
|
4769
4818
|
{
|
|
4770
4819
|
...props,
|
|
4771
4820
|
viewBox: "0 0 24 24",
|
|
4772
4821
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4773
|
-
children: /* @__PURE__ */ (0,
|
|
4822
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
4774
4823
|
"path",
|
|
4775
4824
|
{
|
|
4776
4825
|
clipRule: "evenodd",
|
|
@@ -4939,24 +4988,24 @@ var iconMap = {
|
|
|
4939
4988
|
};
|
|
4940
4989
|
|
|
4941
4990
|
// src/private/hooks/useResponsiveProp/useResponsiveProp.ts
|
|
4942
|
-
var
|
|
4943
|
-
var
|
|
4991
|
+
var import_type_guards7 = require("@wistia/type-guards");
|
|
4992
|
+
var import_react7 = require("react");
|
|
4944
4993
|
var isResponsiveObject = (values) => {
|
|
4945
4994
|
return typeof values === "object" && values !== null && !Array.isArray(values) && "base" in values;
|
|
4946
4995
|
};
|
|
4947
4996
|
var useResponsiveProp = (values) => {
|
|
4948
4997
|
const activeMediaQueries = useActiveMq();
|
|
4949
|
-
return (0,
|
|
4950
|
-
if ((0,
|
|
4998
|
+
return (0, import_react7.useMemo)(() => {
|
|
4999
|
+
if ((0, import_type_guards7.isRecord)(values) && isResponsiveObject(values)) {
|
|
4951
5000
|
const mq2 = activeMediaQueries.find((key) => key in values);
|
|
4952
|
-
return (0,
|
|
5001
|
+
return (0, import_type_guards7.isNotUndefined)(mq2) && (0, import_type_guards7.isNotUndefined)(values[mq2]) ? values[mq2] : values.base;
|
|
4953
5002
|
}
|
|
4954
5003
|
return values;
|
|
4955
5004
|
}, [activeMediaQueries, values]);
|
|
4956
5005
|
};
|
|
4957
5006
|
|
|
4958
5007
|
// src/components/Icon/Icon.tsx
|
|
4959
|
-
var
|
|
5008
|
+
var import_jsx_runtime157 = require("react/jsx-runtime");
|
|
4960
5009
|
var iconSizeMap = {
|
|
4961
5010
|
sm: "12",
|
|
4962
5011
|
md: "16",
|
|
@@ -4964,7 +5013,7 @@ var iconSizeMap = {
|
|
|
4964
5013
|
xl: "32",
|
|
4965
5014
|
xxl: "48"
|
|
4966
5015
|
};
|
|
4967
|
-
var StyledIcon =
|
|
5016
|
+
var StyledIcon = import_styled_components15.default.svg`
|
|
4968
5017
|
${({ $colorScheme }) => getColorScheme($colorScheme ?? "inherit")}
|
|
4969
5018
|
`;
|
|
4970
5019
|
var Icon = ({
|
|
@@ -4976,13 +5025,13 @@ var Icon = ({
|
|
|
4976
5025
|
...otherProps
|
|
4977
5026
|
}) => {
|
|
4978
5027
|
const responsiveSize = useResponsiveProp(size);
|
|
4979
|
-
if ((0,
|
|
5028
|
+
if ((0, import_type_guards8.isNil)(type)) {
|
|
4980
5029
|
throw new Error("An Icon component requires a `type` prop to be provided");
|
|
4981
5030
|
}
|
|
4982
|
-
if ((0,
|
|
5031
|
+
if ((0, import_type_guards8.isNil)(iconMap[type])) {
|
|
4983
5032
|
throw new Error(`Type "${type}" does not exist, please update type prop in Icon component.`);
|
|
4984
5033
|
}
|
|
4985
|
-
if ((0,
|
|
5034
|
+
if ((0, import_type_guards8.isNil)(iconSizeMap[responsiveSize])) {
|
|
4986
5035
|
throw new Error(
|
|
4987
5036
|
`Size "${responsiveSize}" does not exist, please update size prop in Icon component.`
|
|
4988
5037
|
);
|
|
@@ -4993,7 +5042,7 @@ var Icon = ({
|
|
|
4993
5042
|
...style
|
|
4994
5043
|
};
|
|
4995
5044
|
const iconColor = invertColor ? "var(--color-icon-on-fill)" : "var(--color-icon)";
|
|
4996
|
-
return /* @__PURE__ */ (0,
|
|
5045
|
+
return /* @__PURE__ */ (0, import_jsx_runtime157.jsx)(
|
|
4997
5046
|
StyledIcon,
|
|
4998
5047
|
{
|
|
4999
5048
|
$colorScheme: colorScheme,
|
|
@@ -5013,13 +5062,13 @@ var Icon = ({
|
|
|
5013
5062
|
Icon.displayName = "Icon";
|
|
5014
5063
|
|
|
5015
5064
|
// src/components/Link/Link.tsx
|
|
5016
|
-
var
|
|
5017
|
-
var
|
|
5018
|
-
var
|
|
5065
|
+
var import_react8 = require("react");
|
|
5066
|
+
var import_type_guards9 = require("@wistia/type-guards");
|
|
5067
|
+
var import_styled_components16 = __toESM(require("styled-components"));
|
|
5019
5068
|
var import_react_router_dom = require("react-router-dom");
|
|
5020
|
-
var
|
|
5069
|
+
var import_jsx_runtime158 = require("react/jsx-runtime");
|
|
5021
5070
|
var generateHref = (href, type, disabled) => {
|
|
5022
|
-
if (disabled || (0,
|
|
5071
|
+
if (disabled || (0, import_type_guards9.isNil)(href)) {
|
|
5023
5072
|
return void 0;
|
|
5024
5073
|
}
|
|
5025
5074
|
let to = href;
|
|
@@ -5031,17 +5080,17 @@ var generateHref = (href, type, disabled) => {
|
|
|
5031
5080
|
}
|
|
5032
5081
|
return to;
|
|
5033
5082
|
};
|
|
5034
|
-
var isButton = (props) => (0,
|
|
5035
|
-
var isLink = (props) => (0,
|
|
5036
|
-
var StyledLink =
|
|
5037
|
-
${({ href }) => (0,
|
|
5083
|
+
var isButton = (props) => (0, import_type_guards9.isUndefined)(props.href);
|
|
5084
|
+
var isLink = (props) => (0, import_type_guards9.isNotUndefined)(props.href);
|
|
5085
|
+
var StyledLink = import_styled_components16.default.a`
|
|
5086
|
+
${({ href }) => (0, import_type_guards9.isNil)(href) && buttonResetCss};
|
|
5038
5087
|
${({ $colorScheme }) => getColorScheme($colorScheme)}
|
|
5039
5088
|
cursor: pointer;
|
|
5040
5089
|
font-family: var(--typography-family-default);
|
|
5041
5090
|
color: var(--color-text-link);
|
|
5042
5091
|
text-decoration: ${({ $underline }) => $underline ? "underline" : "none"};
|
|
5043
5092
|
`;
|
|
5044
|
-
var Link = (0,
|
|
5093
|
+
var Link = (0, import_react8.forwardRef)(
|
|
5045
5094
|
({
|
|
5046
5095
|
beforeAction,
|
|
5047
5096
|
children,
|
|
@@ -5065,7 +5114,7 @@ var Link = (0, import_react7.forwardRef)(
|
|
|
5065
5114
|
} finally {
|
|
5066
5115
|
if (routingCallback !== null) {
|
|
5067
5116
|
routingCallback();
|
|
5068
|
-
} else if ((0,
|
|
5117
|
+
} else if ((0, import_type_guards9.isNotNil)(to)) {
|
|
5069
5118
|
window.location.assign(to);
|
|
5070
5119
|
} else {
|
|
5071
5120
|
}
|
|
@@ -5079,7 +5128,7 @@ var Link = (0, import_react7.forwardRef)(
|
|
|
5079
5128
|
onClick: handleClick
|
|
5080
5129
|
};
|
|
5081
5130
|
if (isButton(props)) {
|
|
5082
|
-
return /* @__PURE__ */ (0,
|
|
5131
|
+
return /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
5083
5132
|
StyledLink,
|
|
5084
5133
|
{
|
|
5085
5134
|
ref,
|
|
@@ -5099,7 +5148,7 @@ var Link = (0, import_react7.forwardRef)(
|
|
|
5099
5148
|
...commonProps,
|
|
5100
5149
|
...externalLinkProps
|
|
5101
5150
|
};
|
|
5102
|
-
return inRouterContext && type !== "external" ? /* @__PURE__ */ (0,
|
|
5151
|
+
return inRouterContext && type !== "external" ? /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
5103
5152
|
StyledLink,
|
|
5104
5153
|
{
|
|
5105
5154
|
as: import_react_router_dom.Link,
|
|
@@ -5107,7 +5156,7 @@ var Link = (0, import_react7.forwardRef)(
|
|
|
5107
5156
|
to: to ?? "",
|
|
5108
5157
|
children
|
|
5109
5158
|
}
|
|
5110
|
-
) : /* @__PURE__ */ (0,
|
|
5159
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
5111
5160
|
StyledLink,
|
|
5112
5161
|
{
|
|
5113
5162
|
as: "a",
|
|
@@ -5123,9 +5172,9 @@ var Link = (0, import_react7.forwardRef)(
|
|
|
5123
5172
|
Link.displayName = "Link";
|
|
5124
5173
|
|
|
5125
5174
|
// src/components/Button/Button.tsx
|
|
5126
|
-
var
|
|
5127
|
-
var isLink2 = (props) => (0,
|
|
5128
|
-
var StyledButton =
|
|
5175
|
+
var import_jsx_runtime159 = require("react/jsx-runtime");
|
|
5176
|
+
var isLink2 = (props) => (0, import_type_guards10.isNotUndefined)(props.href);
|
|
5177
|
+
var StyledButton = import_styled_components17.default.button`
|
|
5129
5178
|
${buttonResetCss}
|
|
5130
5179
|
${({ colorScheme }) => getColorScheme(colorScheme)}
|
|
5131
5180
|
${({ size }) => buttonSizeStyles[size]}
|
|
@@ -5134,7 +5183,7 @@ var StyledButton = import_styled_components16.default.button`
|
|
|
5134
5183
|
${({ fullWidth }) => fullWidth && "width: 100%;"}
|
|
5135
5184
|
position: relative;
|
|
5136
5185
|
`;
|
|
5137
|
-
var StyledButtonContent =
|
|
5186
|
+
var StyledButtonContent = import_styled_components17.default.div`
|
|
5138
5187
|
align-items: center;
|
|
5139
5188
|
display: inline-flex;
|
|
5140
5189
|
flex-grow: 1;
|
|
@@ -5146,11 +5195,11 @@ var StyledButtonContent = import_styled_components16.default.div`
|
|
|
5146
5195
|
${({ $hasLeftIcon }) => $hasLeftIcon && "padding-left: 0;"}
|
|
5147
5196
|
${({ $hasRightIcon }) => $hasRightIcon && "padding-right: 0;"}
|
|
5148
5197
|
`;
|
|
5149
|
-
var StyledButtonContentLabel =
|
|
5198
|
+
var StyledButtonContentLabel = import_styled_components17.default.span`
|
|
5150
5199
|
flex: 1;
|
|
5151
5200
|
text-align: center;
|
|
5152
5201
|
`;
|
|
5153
|
-
var StyledButtonLoading =
|
|
5202
|
+
var StyledButtonLoading = import_styled_components17.default.div`
|
|
5154
5203
|
position: absolute;
|
|
5155
5204
|
display: flex;
|
|
5156
5205
|
`;
|
|
@@ -5160,24 +5209,24 @@ var ButtonContent = ({
|
|
|
5160
5209
|
rightIcon,
|
|
5161
5210
|
children
|
|
5162
5211
|
}) => {
|
|
5163
|
-
return /* @__PURE__ */ (0,
|
|
5164
|
-
isLoading ? /* @__PURE__ */ (0,
|
|
5165
|
-
/* @__PURE__ */ (0,
|
|
5212
|
+
return /* @__PURE__ */ (0, import_jsx_runtime159.jsxs)(import_jsx_runtime159.Fragment, { children: [
|
|
5213
|
+
isLoading ? /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(StyledButtonLoading, { children: /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(Icon, { type: "spinner" }) }) : null,
|
|
5214
|
+
/* @__PURE__ */ (0, import_jsx_runtime159.jsxs)(
|
|
5166
5215
|
StyledButtonContent,
|
|
5167
5216
|
{
|
|
5168
|
-
$hasLeftIcon: (0,
|
|
5169
|
-
$hasRightIcon: (0,
|
|
5217
|
+
$hasLeftIcon: (0, import_type_guards10.isNotNil)(leftIcon),
|
|
5218
|
+
$hasRightIcon: (0, import_type_guards10.isNotNil)(rightIcon),
|
|
5170
5219
|
$isLoading: isLoading,
|
|
5171
5220
|
children: [
|
|
5172
5221
|
leftIcon ?? null,
|
|
5173
|
-
/* @__PURE__ */ (0,
|
|
5222
|
+
/* @__PURE__ */ (0, import_jsx_runtime159.jsx)(StyledButtonContentLabel, { children }),
|
|
5174
5223
|
rightIcon ?? null
|
|
5175
5224
|
]
|
|
5176
5225
|
}
|
|
5177
5226
|
)
|
|
5178
5227
|
] });
|
|
5179
5228
|
};
|
|
5180
|
-
var Button = (0,
|
|
5229
|
+
var Button = (0, import_react9.forwardRef)(
|
|
5181
5230
|
({
|
|
5182
5231
|
children,
|
|
5183
5232
|
forceState,
|
|
@@ -5212,14 +5261,14 @@ var Button = (0, import_react8.forwardRef)(
|
|
|
5212
5261
|
commonProps.className = `${className ?? ""} force-state-${forceState}`;
|
|
5213
5262
|
}
|
|
5214
5263
|
if (isLink2(props)) {
|
|
5215
|
-
return /* @__PURE__ */ (0,
|
|
5264
|
+
return /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
5216
5265
|
StyledButton,
|
|
5217
5266
|
{
|
|
5218
5267
|
ref,
|
|
5219
5268
|
as: Link,
|
|
5220
5269
|
...props,
|
|
5221
5270
|
...commonProps,
|
|
5222
|
-
children: /* @__PURE__ */ (0,
|
|
5271
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
5223
5272
|
ButtonContent,
|
|
5224
5273
|
{
|
|
5225
5274
|
isLoading,
|
|
@@ -5236,11 +5285,11 @@ var Button = (0, import_react8.forwardRef)(
|
|
|
5236
5285
|
event.preventDefault();
|
|
5237
5286
|
return;
|
|
5238
5287
|
}
|
|
5239
|
-
if ((0,
|
|
5288
|
+
if ((0, import_type_guards10.isNotNil)(onClick)) {
|
|
5240
5289
|
onClick(event);
|
|
5241
5290
|
}
|
|
5242
5291
|
};
|
|
5243
|
-
return /* @__PURE__ */ (0,
|
|
5292
|
+
return /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
5244
5293
|
StyledButton,
|
|
5245
5294
|
{
|
|
5246
5295
|
ref,
|
|
@@ -5248,7 +5297,7 @@ var Button = (0, import_react8.forwardRef)(
|
|
|
5248
5297
|
type: "button",
|
|
5249
5298
|
...props,
|
|
5250
5299
|
...commonProps,
|
|
5251
|
-
children: /* @__PURE__ */ (0,
|
|
5300
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
5252
5301
|
ButtonContent,
|
|
5253
5302
|
{
|
|
5254
5303
|
isLoading,
|
|
@@ -5264,9 +5313,9 @@ var Button = (0, import_react8.forwardRef)(
|
|
|
5264
5313
|
Button.displayName = "Button";
|
|
5265
5314
|
|
|
5266
5315
|
// src/components/ButtonGroup/ButtonGroup.tsx
|
|
5267
|
-
var
|
|
5268
|
-
var
|
|
5269
|
-
var
|
|
5316
|
+
var import_styled_components18 = __toESM(require("styled-components"));
|
|
5317
|
+
var import_type_guards11 = require("@wistia/type-guards");
|
|
5318
|
+
var import_jsx_runtime160 = require("react/jsx-runtime");
|
|
5270
5319
|
var getAlignment = (align) => {
|
|
5271
5320
|
if (align === "center") {
|
|
5272
5321
|
return "center";
|
|
@@ -5279,7 +5328,7 @@ var getAlignment = (align) => {
|
|
|
5279
5328
|
}
|
|
5280
5329
|
return void 0;
|
|
5281
5330
|
};
|
|
5282
|
-
var ButtonGroupComponent =
|
|
5331
|
+
var ButtonGroupComponent = import_styled_components18.default.div`
|
|
5283
5332
|
display: flex;
|
|
5284
5333
|
|
|
5285
5334
|
/* this helps ensure that primary buttons appear at the top of the column */
|
|
@@ -5305,10 +5354,10 @@ var ButtonGroup = ({
|
|
|
5305
5354
|
fullWidth = false,
|
|
5306
5355
|
...otherProps
|
|
5307
5356
|
}) => {
|
|
5308
|
-
if ((0,
|
|
5357
|
+
if ((0, import_type_guards11.isNil)(children)) {
|
|
5309
5358
|
return null;
|
|
5310
5359
|
}
|
|
5311
|
-
return /* @__PURE__ */ (0,
|
|
5360
|
+
return /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
|
|
5312
5361
|
ButtonGroupComponent,
|
|
5313
5362
|
{
|
|
5314
5363
|
align,
|
|
@@ -5321,13 +5370,13 @@ var ButtonGroup = ({
|
|
|
5321
5370
|
ButtonGroup.displayName = "ButtonGroup";
|
|
5322
5371
|
|
|
5323
5372
|
// src/components/Divider/Divider.tsx
|
|
5324
|
-
var
|
|
5325
|
-
var
|
|
5373
|
+
var import_styled_components19 = __toESM(require("styled-components"));
|
|
5374
|
+
var import_jsx_runtime161 = require("react/jsx-runtime");
|
|
5326
5375
|
var sizeToPixelMap = {
|
|
5327
5376
|
lg: 4,
|
|
5328
5377
|
sm: 1
|
|
5329
5378
|
};
|
|
5330
|
-
var DividerComponent =
|
|
5379
|
+
var DividerComponent = import_styled_components19.default.hr`
|
|
5331
5380
|
background: none;
|
|
5332
5381
|
border-bottom: none;
|
|
5333
5382
|
border-left: none;
|
|
@@ -5342,7 +5391,7 @@ var DividerComponent = import_styled_components18.default.hr`
|
|
|
5342
5391
|
`;
|
|
5343
5392
|
var Divider = ({ size = "sm", ...otherProps }) => {
|
|
5344
5393
|
const responsiveSize = useResponsiveProp(size);
|
|
5345
|
-
return /* @__PURE__ */ (0,
|
|
5394
|
+
return /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
5346
5395
|
DividerComponent,
|
|
5347
5396
|
{
|
|
5348
5397
|
borderHeight: sizeToPixelMap[responsiveSize],
|
|
@@ -5353,10 +5402,10 @@ var Divider = ({ size = "sm", ...otherProps }) => {
|
|
|
5353
5402
|
Divider.displayName = "Divider";
|
|
5354
5403
|
|
|
5355
5404
|
// src/components/Ellipsis/Ellipsis.tsx
|
|
5356
|
-
var
|
|
5357
|
-
var
|
|
5358
|
-
var
|
|
5359
|
-
var ellipsisStyle =
|
|
5405
|
+
var import_type_guards12 = require("@wistia/type-guards");
|
|
5406
|
+
var import_styled_components20 = __toESM(require("styled-components"));
|
|
5407
|
+
var import_jsx_runtime162 = require("react/jsx-runtime");
|
|
5408
|
+
var ellipsisStyle = import_styled_components20.css`
|
|
5360
5409
|
overflow: hidden;
|
|
5361
5410
|
text-overflow: ellipsis;
|
|
5362
5411
|
white-space: nowrap;
|
|
@@ -5379,14 +5428,14 @@ var ellipsisStyle = import_styled_components19.css`
|
|
|
5379
5428
|
}
|
|
5380
5429
|
}
|
|
5381
5430
|
`;
|
|
5382
|
-
var ellipsisFlexParentStyle =
|
|
5431
|
+
var ellipsisFlexParentStyle = import_styled_components20.css`
|
|
5383
5432
|
min-width: 0;
|
|
5384
5433
|
`;
|
|
5385
|
-
var EllipsisComponent =
|
|
5434
|
+
var EllipsisComponent = import_styled_components20.default.div`
|
|
5386
5435
|
${ellipsisStyle};
|
|
5387
5436
|
${({ lines }) => {
|
|
5388
|
-
if ((0,
|
|
5389
|
-
return
|
|
5437
|
+
if ((0, import_type_guards12.isNotNil)(lines)) {
|
|
5438
|
+
return import_styled_components20.css`
|
|
5390
5439
|
-webkit-box-orient: vertical;
|
|
5391
5440
|
-webkit-line-clamp: ${lines};
|
|
5392
5441
|
display: -webkit-box;
|
|
@@ -5396,7 +5445,7 @@ var EllipsisComponent = import_styled_components19.default.div`
|
|
|
5396
5445
|
return void 0;
|
|
5397
5446
|
}}
|
|
5398
5447
|
`;
|
|
5399
|
-
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0,
|
|
5448
|
+
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0, import_jsx_runtime162.jsx)(
|
|
5400
5449
|
EllipsisComponent,
|
|
5401
5450
|
{
|
|
5402
5451
|
lines,
|
|
@@ -5407,8 +5456,8 @@ var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0, impor
|
|
|
5407
5456
|
Ellipsis.displayName = "Ellipsis";
|
|
5408
5457
|
|
|
5409
5458
|
// src/components/Heading/Heading.tsx
|
|
5410
|
-
var
|
|
5411
|
-
var
|
|
5459
|
+
var import_react10 = require("react");
|
|
5460
|
+
var import_styled_components21 = __toESM(require("styled-components"));
|
|
5412
5461
|
|
|
5413
5462
|
// src/private/helpers/makePolymorphic/makePolymorphic.tsx
|
|
5414
5463
|
var makePolymorphic = (component) => {
|
|
@@ -5416,44 +5465,44 @@ var makePolymorphic = (component) => {
|
|
|
5416
5465
|
};
|
|
5417
5466
|
|
|
5418
5467
|
// src/components/Heading/Heading.tsx
|
|
5419
|
-
var
|
|
5420
|
-
var heroStyle =
|
|
5468
|
+
var import_jsx_runtime163 = require("react/jsx-runtime");
|
|
5469
|
+
var heroStyle = import_styled_components21.css`
|
|
5421
5470
|
--font-family: var(--typography-heading-hero-family);
|
|
5422
5471
|
--font-size: var(--typography-heading-hero-size);
|
|
5423
5472
|
--font-weight: var(--typography-heading-hero-weight);
|
|
5424
5473
|
--line-height: var(--typography-heading-hero-line-height);
|
|
5425
5474
|
`;
|
|
5426
|
-
var heading1TextStyle =
|
|
5475
|
+
var heading1TextStyle = import_styled_components21.css`
|
|
5427
5476
|
--font-family: var(--typography-heading-1-family);
|
|
5428
5477
|
--font-size: var(--typography-heading-1-size);
|
|
5429
5478
|
--font-weight: var(--typography-heading-1-weight);
|
|
5430
5479
|
--line-height: var(--typography-heading-1-line-height);
|
|
5431
5480
|
`;
|
|
5432
|
-
var heading2TextStyle =
|
|
5481
|
+
var heading2TextStyle = import_styled_components21.css`
|
|
5433
5482
|
--font-family: var(--typography-heading-2-family);
|
|
5434
5483
|
--font-size: var(--typography-heading-2-size);
|
|
5435
5484
|
--font-weight: var(--typography-heading-2-weight);
|
|
5436
5485
|
--line-height: var(--typography-heading-2-line-height);
|
|
5437
5486
|
`;
|
|
5438
|
-
var heading3TextStyle =
|
|
5487
|
+
var heading3TextStyle = import_styled_components21.css`
|
|
5439
5488
|
--font-family: var(--typography-heading-3-family);
|
|
5440
5489
|
--font-size: var(--typography-heading-3-size);
|
|
5441
5490
|
--font-weight: var(--typography-heading-3-weight);
|
|
5442
5491
|
--line-height: var(--typography-heading-3-line-height);
|
|
5443
5492
|
`;
|
|
5444
|
-
var heading4TextStyle =
|
|
5493
|
+
var heading4TextStyle = import_styled_components21.css`
|
|
5445
5494
|
--font-family: var(--typography-heading-4-family);
|
|
5446
5495
|
--font-size: var(--typography-heading-4-size);
|
|
5447
5496
|
--font-weight: var(--typography-heading-4-weight);
|
|
5448
5497
|
--line-height: var(--typography-heading-4-line-height);
|
|
5449
5498
|
`;
|
|
5450
|
-
var heading5TextStyle =
|
|
5499
|
+
var heading5TextStyle = import_styled_components21.css`
|
|
5451
5500
|
--font-family: var(--typography-heading-5-family);
|
|
5452
5501
|
--font-size: var(--typography-heading-5-size);
|
|
5453
5502
|
--font-weight: var(--typography-heading-5-weight);
|
|
5454
5503
|
--line-height: var(--typography-heading-5-line-height);
|
|
5455
5504
|
`;
|
|
5456
|
-
var heading6TextStyle =
|
|
5505
|
+
var heading6TextStyle = import_styled_components21.css`
|
|
5457
5506
|
--font-family: var(--typography-heading-6-family);
|
|
5458
5507
|
--font-size: var(--typography-heading-6-size);
|
|
5459
5508
|
--font-weight: var(--typography-heading-6-weight);
|
|
@@ -5469,7 +5518,7 @@ var variantStyleMap = {
|
|
|
5469
5518
|
heading6: heading6TextStyle
|
|
5470
5519
|
};
|
|
5471
5520
|
var DEFAULT_ELEMENT = "h1";
|
|
5472
|
-
var StyledHeading =
|
|
5521
|
+
var StyledHeading = import_styled_components21.default.div`
|
|
5473
5522
|
${({ colorScheme }) => getColorScheme(colorScheme)};
|
|
5474
5523
|
font-family: var(--font-family);
|
|
5475
5524
|
font-size: var(--font-size);
|
|
@@ -5478,16 +5527,16 @@ var StyledHeading = import_styled_components20.default.div`
|
|
|
5478
5527
|
color: var(--color-text);
|
|
5479
5528
|
${({ variant }) => variantStyleMap[variant]}
|
|
5480
5529
|
${({ ellipsis }) => ellipsis && ellipsisStyle};
|
|
5481
|
-
${({ inline }) => inline &&
|
|
5530
|
+
${({ inline }) => inline && import_styled_components21.css`
|
|
5482
5531
|
display: inline-block;
|
|
5483
5532
|
`}
|
|
5484
|
-
${({ disabled }) => disabled &&
|
|
5533
|
+
${({ disabled }) => disabled && import_styled_components21.css`
|
|
5485
5534
|
color: var(--color-text-disabled);
|
|
5486
5535
|
`}
|
|
5487
|
-
${({ preventUserSelect }) => preventUserSelect &&
|
|
5536
|
+
${({ preventUserSelect }) => preventUserSelect && import_styled_components21.css`
|
|
5488
5537
|
user-select: none;
|
|
5489
5538
|
`}
|
|
5490
|
-
${({ align }) =>
|
|
5539
|
+
${({ align }) => import_styled_components21.css`
|
|
5491
5540
|
text-align: ${align};
|
|
5492
5541
|
`}
|
|
5493
5542
|
margin: 0;
|
|
@@ -5501,7 +5550,7 @@ var variantElementMap = {
|
|
|
5501
5550
|
heading5: "h5",
|
|
5502
5551
|
heading6: "h6"
|
|
5503
5552
|
};
|
|
5504
|
-
var HeadingComponent = (0,
|
|
5553
|
+
var HeadingComponent = (0, import_react10.forwardRef)(
|
|
5505
5554
|
({
|
|
5506
5555
|
align = "left",
|
|
5507
5556
|
colorScheme = "inherit",
|
|
@@ -5512,7 +5561,7 @@ var HeadingComponent = (0, import_react9.forwardRef)(
|
|
|
5512
5561
|
variant = "heading1",
|
|
5513
5562
|
renderAs,
|
|
5514
5563
|
...otherProps
|
|
5515
|
-
}, ref) => /* @__PURE__ */ (0,
|
|
5564
|
+
}, ref) => /* @__PURE__ */ (0, import_jsx_runtime163.jsx)(
|
|
5516
5565
|
StyledHeading,
|
|
5517
5566
|
{
|
|
5518
5567
|
ref,
|
|
@@ -5532,21 +5581,21 @@ HeadingComponent.displayName = "Heading";
|
|
|
5532
5581
|
var Heading = makePolymorphic(HeadingComponent);
|
|
5533
5582
|
|
|
5534
5583
|
// src/components/IconButton/IconButton.tsx
|
|
5535
|
-
var
|
|
5536
|
-
var
|
|
5584
|
+
var import_react11 = require("react");
|
|
5585
|
+
var import_styled_components23 = __toESM(require("styled-components"));
|
|
5537
5586
|
|
|
5538
5587
|
// src/components/Tooltip/Tooltip.tsx
|
|
5539
5588
|
var import_react_tooltip2 = require("@radix-ui/react-tooltip");
|
|
5540
|
-
var
|
|
5541
|
-
var
|
|
5542
|
-
var CompactTooltipStyles =
|
|
5589
|
+
var import_styled_components22 = __toESM(require("styled-components"));
|
|
5590
|
+
var import_jsx_runtime164 = require("react/jsx-runtime");
|
|
5591
|
+
var CompactTooltipStyles = import_styled_components22.css`
|
|
5543
5592
|
--tooltip-font-size: var(--typography-label-4-size);
|
|
5544
5593
|
--tooltip-line-height: var(--typography-label-4-line-height);
|
|
5545
5594
|
--tooltip-font-weight: var(--typography-label-4-weight);
|
|
5546
5595
|
--tooltip-horizontal-padding: var(--space-02);
|
|
5547
5596
|
--tooltip-vertical-padding: var(--space-03);
|
|
5548
5597
|
`;
|
|
5549
|
-
var StyledContent = (0,
|
|
5598
|
+
var StyledContent = (0, import_styled_components22.default)(import_react_tooltip2.Content)`
|
|
5550
5599
|
--tooltip-font-family: var(--typography-family-default);
|
|
5551
5600
|
--tooltip-border-radius: var(--border-radius-05);
|
|
5552
5601
|
--tooltip-bg: var(--color-bg-tooltip);
|
|
@@ -5604,14 +5653,14 @@ var Tooltip = ({
|
|
|
5604
5653
|
if (forceOpen === true) {
|
|
5605
5654
|
rootProps.open = true;
|
|
5606
5655
|
}
|
|
5607
|
-
return /* @__PURE__ */ (0,
|
|
5656
|
+
return /* @__PURE__ */ (0, import_jsx_runtime164.jsxs)(
|
|
5608
5657
|
import_react_tooltip2.Root,
|
|
5609
5658
|
{
|
|
5610
5659
|
delayDuration: delay,
|
|
5611
5660
|
...rootProps,
|
|
5612
5661
|
children: [
|
|
5613
|
-
/* @__PURE__ */ (0,
|
|
5614
|
-
/* @__PURE__ */ (0,
|
|
5662
|
+
/* @__PURE__ */ (0, import_jsx_runtime164.jsx)(import_react_tooltip2.Trigger, { asChild: true, children }),
|
|
5663
|
+
/* @__PURE__ */ (0, import_jsx_runtime164.jsx)(import_react_tooltip2.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime164.jsxs)(
|
|
5615
5664
|
StyledContent,
|
|
5616
5665
|
{
|
|
5617
5666
|
$compact: compact,
|
|
@@ -5619,7 +5668,7 @@ var Tooltip = ({
|
|
|
5619
5668
|
sideOffset: hideArrow ? VISUAL_OFFSET : VISUAL_OFFSET - 2,
|
|
5620
5669
|
children: [
|
|
5621
5670
|
content,
|
|
5622
|
-
!hideArrow ? /* @__PURE__ */ (0,
|
|
5671
|
+
!hideArrow ? /* @__PURE__ */ (0, import_jsx_runtime164.jsx)(import_react_tooltip2.Arrow, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime164.jsx)(
|
|
5623
5672
|
"svg",
|
|
5624
5673
|
{
|
|
5625
5674
|
fill: "var(--tooltip-bg)",
|
|
@@ -5628,7 +5677,7 @@ var Tooltip = ({
|
|
|
5628
5677
|
viewBox: "0 0 12 8",
|
|
5629
5678
|
width: "12",
|
|
5630
5679
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5631
|
-
children: /* @__PURE__ */ (0,
|
|
5680
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime164.jsx)("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" })
|
|
5632
5681
|
}
|
|
5633
5682
|
) }) : null
|
|
5634
5683
|
]
|
|
@@ -5641,14 +5690,14 @@ var Tooltip = ({
|
|
|
5641
5690
|
Tooltip.displayName = "Tooltip";
|
|
5642
5691
|
|
|
5643
5692
|
// src/components/IconButton/IconButton.tsx
|
|
5644
|
-
var
|
|
5693
|
+
var import_jsx_runtime165 = require("react/jsx-runtime");
|
|
5645
5694
|
var buttonIconSizeMap = {
|
|
5646
5695
|
small: "sm",
|
|
5647
5696
|
medium: "md",
|
|
5648
5697
|
large: "lg",
|
|
5649
5698
|
hero: "xl"
|
|
5650
5699
|
};
|
|
5651
|
-
var StyledButton2 = (0,
|
|
5700
|
+
var StyledButton2 = (0, import_styled_components23.default)(Button)`
|
|
5652
5701
|
--icon-button-size-small: 24px;
|
|
5653
5702
|
--icon-button-size-medium: 32px;
|
|
5654
5703
|
--icon-button-size-large: 40px;
|
|
@@ -5662,10 +5711,10 @@ var StyledButton2 = (0, import_styled_components22.default)(Button)`
|
|
|
5662
5711
|
align-items: center;
|
|
5663
5712
|
line-height: 1;
|
|
5664
5713
|
`;
|
|
5665
|
-
var IconButton = (0,
|
|
5714
|
+
var IconButton = (0, import_react11.forwardRef)(
|
|
5666
5715
|
({ children, label, disableTooltip = false, size = "medium", ...props }, ref) => {
|
|
5667
5716
|
const responsiveSize = useResponsiveProp(size);
|
|
5668
|
-
const button = /* @__PURE__ */ (0,
|
|
5717
|
+
const button = /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(
|
|
5669
5718
|
StyledButton2,
|
|
5670
5719
|
{
|
|
5671
5720
|
...props,
|
|
@@ -5673,7 +5722,7 @@ var IconButton = (0, import_react10.forwardRef)(
|
|
|
5673
5722
|
"aria-label": label,
|
|
5674
5723
|
"data-wistia-ui-icon-button": true,
|
|
5675
5724
|
size: responsiveSize,
|
|
5676
|
-
children: (0,
|
|
5725
|
+
children: (0, import_react11.cloneElement)(import_react11.Children.only(children), {
|
|
5677
5726
|
size: buttonIconSizeMap[responsiveSize]
|
|
5678
5727
|
})
|
|
5679
5728
|
}
|
|
@@ -5681,17 +5730,17 @@ var IconButton = (0, import_react10.forwardRef)(
|
|
|
5681
5730
|
if (disableTooltip) {
|
|
5682
5731
|
return button;
|
|
5683
5732
|
}
|
|
5684
|
-
return /* @__PURE__ */ (0,
|
|
5733
|
+
return /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(Tooltip, { content: label, children: button });
|
|
5685
5734
|
}
|
|
5686
5735
|
);
|
|
5687
5736
|
IconButton.displayName = "IconButton";
|
|
5688
5737
|
|
|
5689
5738
|
// src/components/ScreenReaderOnly/ScreenReaderOnly.tsx
|
|
5690
|
-
var
|
|
5691
|
-
var
|
|
5692
|
-
var
|
|
5693
|
-
var VisuallyHidden =
|
|
5694
|
-
var VisuallyHiddenButFocusable =
|
|
5739
|
+
var import_styled_components24 = __toESM(require("styled-components"));
|
|
5740
|
+
var import_type_guards13 = require("@wistia/type-guards");
|
|
5741
|
+
var import_jsx_runtime166 = require("react/jsx-runtime");
|
|
5742
|
+
var VisuallyHidden = import_styled_components24.default.div({ ...visuallyHiddenStyle });
|
|
5743
|
+
var VisuallyHiddenButFocusable = import_styled_components24.default.div({
|
|
5695
5744
|
"&:not(:focus-within)": visuallyHiddenStyle
|
|
5696
5745
|
});
|
|
5697
5746
|
var ScreenReaderOnly = ({
|
|
@@ -5700,20 +5749,20 @@ var ScreenReaderOnly = ({
|
|
|
5700
5749
|
focusable = false,
|
|
5701
5750
|
...otherProps
|
|
5702
5751
|
}) => {
|
|
5703
|
-
const accessibleText = (0,
|
|
5752
|
+
const accessibleText = (0, import_type_guards13.isNotNil)(text) ? text : children;
|
|
5704
5753
|
if (focusable) {
|
|
5705
|
-
return /* @__PURE__ */ (0,
|
|
5754
|
+
return /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(VisuallyHiddenButFocusable, { ...otherProps, children: accessibleText });
|
|
5706
5755
|
}
|
|
5707
|
-
return /* @__PURE__ */ (0,
|
|
5756
|
+
return /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(VisuallyHidden, { ...otherProps, children: accessibleText });
|
|
5708
5757
|
};
|
|
5709
5758
|
ScreenReaderOnly.displayName = "ScreenReaderOnly";
|
|
5710
5759
|
|
|
5711
5760
|
// src/components/Stack/Stack.tsx
|
|
5712
|
-
var
|
|
5713
|
-
var
|
|
5714
|
-
var
|
|
5761
|
+
var import_react12 = require("react");
|
|
5762
|
+
var import_styled_components25 = __toESM(require("styled-components"));
|
|
5763
|
+
var import_jsx_runtime167 = require("react/jsx-runtime");
|
|
5715
5764
|
var DEFAULT_ELEMENT2 = "div";
|
|
5716
|
-
var StyledStack =
|
|
5765
|
+
var StyledStack = import_styled_components25.default.div`
|
|
5717
5766
|
display: flex;
|
|
5718
5767
|
flex-direction: ${({ $direction }) => $direction === "horizontal" ? "row" : "column"};
|
|
5719
5768
|
gap: ${({ gap }) => `var(--${gap})`};
|
|
@@ -5722,11 +5771,11 @@ var StyledStack = import_styled_components24.default.div`
|
|
|
5722
5771
|
flex: 1;
|
|
5723
5772
|
}
|
|
5724
5773
|
`;
|
|
5725
|
-
var StackComponent = (0,
|
|
5774
|
+
var StackComponent = (0, import_react12.forwardRef)(
|
|
5726
5775
|
({ renderAs, direction = "vertical", gap = "space-02", ...props }, ref) => {
|
|
5727
5776
|
const responsiveGap = useResponsiveProp(gap);
|
|
5728
5777
|
const responsiveDirection = useResponsiveProp(direction);
|
|
5729
|
-
return /* @__PURE__ */ (0,
|
|
5778
|
+
return /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
|
|
5730
5779
|
StyledStack,
|
|
5731
5780
|
{
|
|
5732
5781
|
ref,
|
|
@@ -5742,90 +5791,90 @@ StackComponent.displayName = "Stack";
|
|
|
5742
5791
|
var Stack = makePolymorphic(StackComponent);
|
|
5743
5792
|
|
|
5744
5793
|
// src/components/Text/Text.tsx
|
|
5745
|
-
var
|
|
5746
|
-
var
|
|
5747
|
-
var
|
|
5748
|
-
var bodyBoldStyles =
|
|
5794
|
+
var import_react13 = require("react");
|
|
5795
|
+
var import_styled_components26 = __toESM(require("styled-components"));
|
|
5796
|
+
var import_jsx_runtime168 = require("react/jsx-runtime");
|
|
5797
|
+
var bodyBoldStyles = import_styled_components26.css`
|
|
5749
5798
|
> strong,
|
|
5750
5799
|
b {
|
|
5751
5800
|
font-weight: var(--typography-weight-body-bold);
|
|
5752
5801
|
}
|
|
5753
5802
|
`;
|
|
5754
|
-
var labelBoldStyles =
|
|
5803
|
+
var labelBoldStyles = import_styled_components26.css`
|
|
5755
5804
|
> strong,
|
|
5756
5805
|
b {
|
|
5757
5806
|
font-weight: var(--typography-weight-label-bold);
|
|
5758
5807
|
}
|
|
5759
5808
|
`;
|
|
5760
|
-
var body1TextStyle =
|
|
5809
|
+
var body1TextStyle = import_styled_components26.css`
|
|
5761
5810
|
--font-family: var(--typography-body-1-family);
|
|
5762
5811
|
--font-size: var(--typography-body-1-size);
|
|
5763
5812
|
--font-weight: var(--typography-body-1-weight);
|
|
5764
5813
|
--line-height: var(--typography-body-1-line-height);
|
|
5765
5814
|
${bodyBoldStyles}
|
|
5766
5815
|
`;
|
|
5767
|
-
var body2TextStyle =
|
|
5816
|
+
var body2TextStyle = import_styled_components26.css`
|
|
5768
5817
|
--font-family: var(--typography-body-2-family);
|
|
5769
5818
|
--font-size: var(--typography-body-2-size);
|
|
5770
5819
|
--font-weight: var(--typography-body-2-weight);
|
|
5771
5820
|
--line-height: var(--typography-body-2-line-height);
|
|
5772
5821
|
${bodyBoldStyles}
|
|
5773
5822
|
`;
|
|
5774
|
-
var body3TextStyle =
|
|
5823
|
+
var body3TextStyle = import_styled_components26.css`
|
|
5775
5824
|
--font-family: var(--typography-body-3-family);
|
|
5776
5825
|
--font-size: var(--typography-body-3-size);
|
|
5777
5826
|
--font-weight: var(--typography-body-3-weight);
|
|
5778
5827
|
--line-height: var(--typography-body-3-line-height);
|
|
5779
5828
|
${bodyBoldStyles}
|
|
5780
5829
|
`;
|
|
5781
|
-
var body4TextStyle =
|
|
5830
|
+
var body4TextStyle = import_styled_components26.css`
|
|
5782
5831
|
--font-family: var(--typography-body-4-family);
|
|
5783
5832
|
--font-size: var(--typography-body-4-size);
|
|
5784
5833
|
--font-weight: var(--typography-body-4-weight);
|
|
5785
5834
|
--line-height: var(--typography-body-4-line-height);
|
|
5786
5835
|
${bodyBoldStyles}
|
|
5787
5836
|
`;
|
|
5788
|
-
var label1TextStyle =
|
|
5837
|
+
var label1TextStyle = import_styled_components26.css`
|
|
5789
5838
|
--font-family: var(--typography-label-1-family);
|
|
5790
5839
|
--font-size: var(--typography-label-1-size);
|
|
5791
5840
|
--font-weight: var(--typography-label-1-weight);
|
|
5792
5841
|
--line-height: var(--typography-label-1-line-height);
|
|
5793
5842
|
${labelBoldStyles}
|
|
5794
5843
|
`;
|
|
5795
|
-
var label2TextStyle =
|
|
5844
|
+
var label2TextStyle = import_styled_components26.css`
|
|
5796
5845
|
--font-family: var(--typography-label-2-family);
|
|
5797
5846
|
--font-size: var(--typography-label-2-size);
|
|
5798
5847
|
--font-weight: var(--typography-label-2-weight);
|
|
5799
5848
|
--line-height: var(--typography-label-2-line-height);
|
|
5800
5849
|
${labelBoldStyles}
|
|
5801
5850
|
`;
|
|
5802
|
-
var label3TextStyle =
|
|
5851
|
+
var label3TextStyle = import_styled_components26.css`
|
|
5803
5852
|
--font-family: var(--typography-label-3-family);
|
|
5804
5853
|
--font-size: var(--typography-label-3-size);
|
|
5805
5854
|
--font-weight: var(--typography-label-3-weight);
|
|
5806
5855
|
--line-height: var(--typography-label-3-line-height);
|
|
5807
5856
|
${labelBoldStyles}
|
|
5808
5857
|
`;
|
|
5809
|
-
var label4TextStyle =
|
|
5858
|
+
var label4TextStyle = import_styled_components26.css`
|
|
5810
5859
|
--font-family: var(--typography-label-4-family);
|
|
5811
5860
|
--font-size: var(--typography-label-4-size);
|
|
5812
5861
|
--font-weight: var(--typography-label-4-weight);
|
|
5813
5862
|
--line-height: var(--typography-label-4-line-height);
|
|
5814
5863
|
${labelBoldStyles}
|
|
5815
5864
|
`;
|
|
5816
|
-
var body1MonoTextStyle =
|
|
5865
|
+
var body1MonoTextStyle = import_styled_components26.css`
|
|
5817
5866
|
${body1TextStyle};
|
|
5818
5867
|
--font-family: var(--typography-family-mono);
|
|
5819
5868
|
`;
|
|
5820
|
-
var body2MonoTextStyle =
|
|
5869
|
+
var body2MonoTextStyle = import_styled_components26.css`
|
|
5821
5870
|
${body2TextStyle};
|
|
5822
5871
|
--font-family: var(--typography-family-mono);
|
|
5823
5872
|
`;
|
|
5824
|
-
var body3MonoTextStyle =
|
|
5873
|
+
var body3MonoTextStyle = import_styled_components26.css`
|
|
5825
5874
|
${body3TextStyle};
|
|
5826
5875
|
--font-family: var(--typography-family-mono);
|
|
5827
5876
|
`;
|
|
5828
|
-
var body4MonoTextStyle =
|
|
5877
|
+
var body4MonoTextStyle = import_styled_components26.css`
|
|
5829
5878
|
${body4TextStyle};
|
|
5830
5879
|
--font-family: var(--typography-family-mono);
|
|
5831
5880
|
`;
|
|
@@ -5843,13 +5892,13 @@ var variantStyleMap2 = {
|
|
|
5843
5892
|
label3: label3TextStyle,
|
|
5844
5893
|
label4: label4TextStyle
|
|
5845
5894
|
};
|
|
5846
|
-
var highContrastProminenceStyle =
|
|
5895
|
+
var highContrastProminenceStyle = import_styled_components26.css`
|
|
5847
5896
|
--text-color: var(--color-text-high-contrast);
|
|
5848
5897
|
`;
|
|
5849
|
-
var vibrantProminenceStyle =
|
|
5898
|
+
var vibrantProminenceStyle = import_styled_components26.css`
|
|
5850
5899
|
--text-color: var(--color-text);
|
|
5851
5900
|
`;
|
|
5852
|
-
var secondaryProminenceStyle =
|
|
5901
|
+
var secondaryProminenceStyle = import_styled_components26.css`
|
|
5853
5902
|
--text-color: var(--color-text-secondary);
|
|
5854
5903
|
`;
|
|
5855
5904
|
var prominenceMap = {
|
|
@@ -5857,7 +5906,7 @@ var prominenceMap = {
|
|
|
5857
5906
|
vibrant: vibrantProminenceStyle,
|
|
5858
5907
|
secondary: secondaryProminenceStyle
|
|
5859
5908
|
};
|
|
5860
|
-
var StyledText =
|
|
5909
|
+
var StyledText = import_styled_components26.default.div`
|
|
5861
5910
|
${({ colorScheme }) => getColorScheme(colorScheme)};
|
|
5862
5911
|
font-family: var(--font-family);
|
|
5863
5912
|
font-size: var(--font-size);
|
|
@@ -5869,24 +5918,24 @@ var StyledText = import_styled_components25.default.div`
|
|
|
5869
5918
|
${({ variant }) => variantStyleMap2[variant]}
|
|
5870
5919
|
${({ prominence }) => prominenceMap[prominence]}
|
|
5871
5920
|
${({ ellipsis }) => ellipsis && ellipsisStyle};
|
|
5872
|
-
${({ inline }) => inline &&
|
|
5921
|
+
${({ inline }) => inline && import_styled_components26.css`
|
|
5873
5922
|
display: inline-block;
|
|
5874
5923
|
`}
|
|
5875
|
-
${({ disabled }) => disabled &&
|
|
5924
|
+
${({ disabled }) => disabled && import_styled_components26.css`
|
|
5876
5925
|
--text-color: var(--color-text-disabled);
|
|
5877
5926
|
`}
|
|
5878
|
-
${({ preventUserSelect }) => preventUserSelect &&
|
|
5927
|
+
${({ preventUserSelect }) => preventUserSelect && import_styled_components26.css`
|
|
5879
5928
|
user-select: none;
|
|
5880
5929
|
`}
|
|
5881
|
-
${({ align }) =>
|
|
5930
|
+
${({ align }) => import_styled_components26.css`
|
|
5882
5931
|
text-align: ${align};
|
|
5883
5932
|
`}
|
|
5884
|
-
${({ as }) => as === "p" &&
|
|
5933
|
+
${({ as }) => as === "p" && import_styled_components26.css`
|
|
5885
5934
|
display: block;
|
|
5886
5935
|
`}
|
|
5887
5936
|
`;
|
|
5888
5937
|
var DEFAULT_ELEMENT3 = "div";
|
|
5889
|
-
var TextComponent = (0,
|
|
5938
|
+
var TextComponent = (0, import_react13.forwardRef)(
|
|
5890
5939
|
({
|
|
5891
5940
|
align = "left",
|
|
5892
5941
|
colorScheme = "inherit",
|
|
@@ -5899,7 +5948,7 @@ var TextComponent = (0, import_react12.forwardRef)(
|
|
|
5899
5948
|
renderAs,
|
|
5900
5949
|
...otherProps
|
|
5901
5950
|
}, ref) => {
|
|
5902
|
-
return /* @__PURE__ */ (0,
|
|
5951
|
+
return /* @__PURE__ */ (0, import_jsx_runtime168.jsx)(
|
|
5903
5952
|
StyledText,
|
|
5904
5953
|
{
|
|
5905
5954
|
ref,
|
|
@@ -5921,20 +5970,20 @@ TextComponent.displayName = "Text";
|
|
|
5921
5970
|
var Text = makePolymorphic(TextComponent);
|
|
5922
5971
|
|
|
5923
5972
|
// src/components/WistiaLogo/WistiaLogo.tsx
|
|
5924
|
-
var
|
|
5925
|
-
var
|
|
5926
|
-
var
|
|
5973
|
+
var import_styled_components27 = __toESM(require("styled-components"));
|
|
5974
|
+
var import_type_guards14 = require("@wistia/type-guards");
|
|
5975
|
+
var import_jsx_runtime169 = require("react/jsx-runtime");
|
|
5927
5976
|
var renderBrandmark = (brandmarkColor, iconOnly) => {
|
|
5928
5977
|
if (iconOnly) {
|
|
5929
|
-
return /* @__PURE__ */ (0,
|
|
5978
|
+
return /* @__PURE__ */ (0, import_jsx_runtime169.jsx)("g", { fill: brandmarkColor, children: /* @__PURE__ */ (0, import_jsx_runtime169.jsx)("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" }) });
|
|
5930
5979
|
}
|
|
5931
|
-
return /* @__PURE__ */ (0,
|
|
5980
|
+
return /* @__PURE__ */ (0, import_jsx_runtime169.jsx)("g", { fill: brandmarkColor, children: /* @__PURE__ */ (0, import_jsx_runtime169.jsx)("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" }) });
|
|
5932
5981
|
};
|
|
5933
5982
|
var renderLogotype = (logotypeColor, iconOnly) => {
|
|
5934
5983
|
if (iconOnly) {
|
|
5935
5984
|
return null;
|
|
5936
5985
|
}
|
|
5937
|
-
return /* @__PURE__ */ (0,
|
|
5986
|
+
return /* @__PURE__ */ (0, import_jsx_runtime169.jsx)("g", { fill: logotypeColor, children: /* @__PURE__ */ (0, import_jsx_runtime169.jsx)("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" }) });
|
|
5938
5987
|
};
|
|
5939
5988
|
var computedViewBox = (iconOnly) => {
|
|
5940
5989
|
if (iconOnly) {
|
|
@@ -5942,7 +5991,7 @@ var computedViewBox = (iconOnly) => {
|
|
|
5942
5991
|
}
|
|
5943
5992
|
return "0 0 144 31.47";
|
|
5944
5993
|
};
|
|
5945
|
-
var WistiaLogoComponent =
|
|
5994
|
+
var WistiaLogoComponent = import_styled_components27.default.svg`
|
|
5946
5995
|
height: ${({ height }) => `${height}px`};
|
|
5947
5996
|
|
|
5948
5997
|
/* ensure it will always fit on mobile */
|
|
@@ -5984,7 +6033,7 @@ var WistiaLogo = ({
|
|
|
5984
6033
|
};
|
|
5985
6034
|
const brandmarkColor = VARIANT_COLORS[variant].brandmark;
|
|
5986
6035
|
const logotypeColor = VARIANT_COLORS[variant].logotype;
|
|
5987
|
-
const Logo = /* @__PURE__ */ (0,
|
|
6036
|
+
const Logo = /* @__PURE__ */ (0, import_jsx_runtime169.jsxs)(
|
|
5988
6037
|
WistiaLogoComponent,
|
|
5989
6038
|
{
|
|
5990
6039
|
height,
|
|
@@ -5994,21 +6043,43 @@ var WistiaLogo = ({
|
|
|
5994
6043
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5995
6044
|
...otherProps,
|
|
5996
6045
|
children: [
|
|
5997
|
-
/* @__PURE__ */ (0,
|
|
5998
|
-
(0,
|
|
6046
|
+
/* @__PURE__ */ (0, import_jsx_runtime169.jsx)("title", { children: title }),
|
|
6047
|
+
(0, import_type_guards14.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime169.jsx)("desc", { children: description }) : null,
|
|
5999
6048
|
renderBrandmark(brandmarkColor, iconOnly),
|
|
6000
6049
|
renderLogotype(logotypeColor, iconOnly)
|
|
6001
6050
|
]
|
|
6002
6051
|
}
|
|
6003
6052
|
);
|
|
6004
|
-
return href !== void 0 ? /* @__PURE__ */ (0,
|
|
6053
|
+
return href !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime169.jsx)("a", { href, children: Logo }) : Logo;
|
|
6005
6054
|
};
|
|
6006
6055
|
WistiaLogo.displayName = "WistiaLogo";
|
|
6056
|
+
|
|
6057
|
+
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
6058
|
+
var import_styled_components28 = __toESM(require("styled-components"));
|
|
6059
|
+
var import_jsx_runtime170 = require("react/jsx-runtime");
|
|
6060
|
+
var StyledColorSchemeWrapper = import_styled_components28.default.div`
|
|
6061
|
+
${({ colorScheme }) => getColorScheme(colorScheme)};
|
|
6062
|
+
`;
|
|
6063
|
+
var ColorSchemeWrapper = ({
|
|
6064
|
+
colorScheme,
|
|
6065
|
+
children,
|
|
6066
|
+
...otherProps
|
|
6067
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime170.jsx)(
|
|
6068
|
+
StyledColorSchemeWrapper,
|
|
6069
|
+
{
|
|
6070
|
+
colorScheme,
|
|
6071
|
+
...otherProps,
|
|
6072
|
+
children
|
|
6073
|
+
}
|
|
6074
|
+
);
|
|
6075
|
+
ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
|
|
6007
6076
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6008
6077
|
0 && (module.exports = {
|
|
6078
|
+
Badge,
|
|
6009
6079
|
Box,
|
|
6010
6080
|
Button,
|
|
6011
6081
|
ButtonGroup,
|
|
6082
|
+
ColorSchemeWrapper,
|
|
6012
6083
|
Divider,
|
|
6013
6084
|
Ellipsis,
|
|
6014
6085
|
Heading,
|