@wistia/ui 0.0.7 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +788 -702
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +106 -9
- package/dist/index.d.ts +106 -9
- package/dist/index.mjs +721 -637
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -6
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,73 +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
|
|
1859
|
+
var import_type_guards8 = require("@wistia/type-guards");
|
|
1860
|
+
var import_styled_components15 = __toESM(require("styled-components"));
|
|
1811
1861
|
|
|
1812
1862
|
// src/components/Icon/icons/AbTestIcon.tsx
|
|
1813
|
-
var
|
|
1814
|
-
var AbTestIcon = (props) => /* @__PURE__ */ (0,
|
|
1863
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
1864
|
+
var AbTestIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1815
1865
|
"svg",
|
|
1816
1866
|
{
|
|
1817
1867
|
...props,
|
|
1818
1868
|
viewBox: "0 0 24 24",
|
|
1819
1869
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1820
|
-
children: /* @__PURE__ */ (0,
|
|
1870
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1821
1871
|
"path",
|
|
1822
1872
|
{
|
|
1823
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",
|
|
@@ -1828,14 +1878,14 @@ var AbTestIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
|
1828
1878
|
);
|
|
1829
1879
|
|
|
1830
1880
|
// src/components/Icon/icons/AccessibilityIcon.tsx
|
|
1831
|
-
var
|
|
1832
|
-
var AccessibilityIcon = (props) => /* @__PURE__ */ (0,
|
|
1881
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
1882
|
+
var AccessibilityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1833
1883
|
"svg",
|
|
1834
1884
|
{
|
|
1835
1885
|
...props,
|
|
1836
1886
|
viewBox: "0 0 24 24",
|
|
1837
1887
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1838
|
-
children: /* @__PURE__ */ (0,
|
|
1888
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1839
1889
|
"path",
|
|
1840
1890
|
{
|
|
1841
1891
|
clipRule: "evenodd",
|
|
@@ -1848,14 +1898,14 @@ var AccessibilityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
|
1848
1898
|
);
|
|
1849
1899
|
|
|
1850
1900
|
// src/components/Icon/icons/ActivityIcon.tsx
|
|
1851
|
-
var
|
|
1852
|
-
var ActivityIcon = (props) => /* @__PURE__ */ (0,
|
|
1901
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
1902
|
+
var ActivityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1853
1903
|
"svg",
|
|
1854
1904
|
{
|
|
1855
1905
|
...props,
|
|
1856
1906
|
viewBox: "0 0 24 24",
|
|
1857
1907
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1858
|
-
children: /* @__PURE__ */ (0,
|
|
1908
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1859
1909
|
"path",
|
|
1860
1910
|
{
|
|
1861
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",
|
|
@@ -1866,14 +1916,14 @@ var ActivityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
|
1866
1916
|
);
|
|
1867
1917
|
|
|
1868
1918
|
// src/components/Icon/icons/AddMediaIcon.tsx
|
|
1869
|
-
var
|
|
1870
|
-
var AddMediaIcon = (props) => /* @__PURE__ */ (0,
|
|
1919
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
1920
|
+
var AddMediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1871
1921
|
"svg",
|
|
1872
1922
|
{
|
|
1873
1923
|
...props,
|
|
1874
1924
|
viewBox: "0 0 24 24",
|
|
1875
1925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1876
|
-
children: /* @__PURE__ */ (0,
|
|
1926
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1877
1927
|
"path",
|
|
1878
1928
|
{
|
|
1879
1929
|
clipRule: "evenodd",
|
|
@@ -1886,14 +1936,14 @@ var AddMediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
|
1886
1936
|
);
|
|
1887
1937
|
|
|
1888
1938
|
// src/components/Icon/icons/AnnotationLinkIcon.tsx
|
|
1889
|
-
var
|
|
1890
|
-
var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0,
|
|
1939
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
1940
|
+
var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1891
1941
|
"svg",
|
|
1892
1942
|
{
|
|
1893
1943
|
...props,
|
|
1894
1944
|
viewBox: "0 0 24 24",
|
|
1895
1945
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1896
|
-
children: /* @__PURE__ */ (0,
|
|
1946
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1897
1947
|
"path",
|
|
1898
1948
|
{
|
|
1899
1949
|
clipRule: "evenodd",
|
|
@@ -1906,14 +1956,14 @@ var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)
|
|
|
1906
1956
|
);
|
|
1907
1957
|
|
|
1908
1958
|
// src/components/Icon/icons/AppearanceIcon.tsx
|
|
1909
|
-
var
|
|
1910
|
-
var AppearanceIcon = (props) => /* @__PURE__ */ (0,
|
|
1959
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
1960
|
+
var AppearanceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1911
1961
|
"svg",
|
|
1912
1962
|
{
|
|
1913
1963
|
...props,
|
|
1914
1964
|
viewBox: "0 0 24 24",
|
|
1915
1965
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1916
|
-
children: /* @__PURE__ */ (0,
|
|
1966
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1917
1967
|
"path",
|
|
1918
1968
|
{
|
|
1919
1969
|
clipRule: "evenodd",
|
|
@@ -1926,14 +1976,14 @@ var AppearanceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
|
1926
1976
|
);
|
|
1927
1977
|
|
|
1928
1978
|
// src/components/Icon/icons/ArchiveIcon.tsx
|
|
1929
|
-
var
|
|
1930
|
-
var ArchiveIcon = (props) => /* @__PURE__ */ (0,
|
|
1979
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
1980
|
+
var ArchiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1931
1981
|
"svg",
|
|
1932
1982
|
{
|
|
1933
1983
|
...props,
|
|
1934
1984
|
viewBox: "0 0 24 24",
|
|
1935
1985
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1936
|
-
children: /* @__PURE__ */ (0,
|
|
1986
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1937
1987
|
"path",
|
|
1938
1988
|
{
|
|
1939
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",
|
|
@@ -1944,14 +1994,14 @@ var ArchiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
|
1944
1994
|
);
|
|
1945
1995
|
|
|
1946
1996
|
// src/components/Icon/icons/ArrowDownIcon.tsx
|
|
1947
|
-
var
|
|
1948
|
-
var ArrowDownIcon = (props) => /* @__PURE__ */ (0,
|
|
1997
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
1998
|
+
var ArrowDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1949
1999
|
"svg",
|
|
1950
2000
|
{
|
|
1951
2001
|
...props,
|
|
1952
2002
|
viewBox: "0 0 24 24",
|
|
1953
2003
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1954
|
-
children: /* @__PURE__ */ (0,
|
|
2004
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1955
2005
|
"path",
|
|
1956
2006
|
{
|
|
1957
2007
|
clipRule: "evenodd",
|
|
@@ -1964,14 +2014,14 @@ var ArrowDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
|
1964
2014
|
);
|
|
1965
2015
|
|
|
1966
2016
|
// src/components/Icon/icons/ArrowLeftIcon.tsx
|
|
1967
|
-
var
|
|
1968
|
-
var ArrowLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
2017
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
2018
|
+
var ArrowLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1969
2019
|
"svg",
|
|
1970
2020
|
{
|
|
1971
2021
|
...props,
|
|
1972
2022
|
viewBox: "0 0 24 24",
|
|
1973
2023
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1974
|
-
children: /* @__PURE__ */ (0,
|
|
2024
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1975
2025
|
"path",
|
|
1976
2026
|
{
|
|
1977
2027
|
clipRule: "evenodd",
|
|
@@ -1984,14 +2034,14 @@ var ArrowLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
|
1984
2034
|
);
|
|
1985
2035
|
|
|
1986
2036
|
// src/components/Icon/icons/ArrowRightIcon.tsx
|
|
1987
|
-
var
|
|
1988
|
-
var ArrowRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2037
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
2038
|
+
var ArrowRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1989
2039
|
"svg",
|
|
1990
2040
|
{
|
|
1991
2041
|
...props,
|
|
1992
2042
|
viewBox: "0 0 24 24",
|
|
1993
2043
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1994
|
-
children: /* @__PURE__ */ (0,
|
|
2044
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1995
2045
|
"path",
|
|
1996
2046
|
{
|
|
1997
2047
|
clipRule: "evenodd",
|
|
@@ -2004,14 +2054,14 @@ var ArrowRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
|
2004
2054
|
);
|
|
2005
2055
|
|
|
2006
2056
|
// src/components/Icon/icons/ArrowUpIcon.tsx
|
|
2007
|
-
var
|
|
2008
|
-
var ArrowUpIcon = (props) => /* @__PURE__ */ (0,
|
|
2057
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
2058
|
+
var ArrowUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2009
2059
|
"svg",
|
|
2010
2060
|
{
|
|
2011
2061
|
...props,
|
|
2012
2062
|
viewBox: "0 0 24 24",
|
|
2013
2063
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2014
|
-
children: /* @__PURE__ */ (0,
|
|
2064
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2015
2065
|
"path",
|
|
2016
2066
|
{
|
|
2017
2067
|
clipRule: "evenodd",
|
|
@@ -2024,14 +2074,14 @@ var ArrowUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
|
2024
2074
|
);
|
|
2025
2075
|
|
|
2026
2076
|
// src/components/Icon/icons/ArrowUpRightIcon.tsx
|
|
2027
|
-
var
|
|
2028
|
-
var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2077
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
2078
|
+
var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2029
2079
|
"svg",
|
|
2030
2080
|
{
|
|
2031
2081
|
...props,
|
|
2032
2082
|
viewBox: "0 0 24 24",
|
|
2033
2083
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2034
|
-
children: /* @__PURE__ */ (0,
|
|
2084
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2035
2085
|
"path",
|
|
2036
2086
|
{
|
|
2037
2087
|
clipRule: "evenodd",
|
|
@@ -2044,14 +2094,14 @@ var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
|
2044
2094
|
);
|
|
2045
2095
|
|
|
2046
2096
|
// src/components/Icon/icons/AsteriskIcon.tsx
|
|
2047
|
-
var
|
|
2048
|
-
var AsteriskIcon = (props) => /* @__PURE__ */ (0,
|
|
2097
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
2098
|
+
var AsteriskIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2049
2099
|
"svg",
|
|
2050
2100
|
{
|
|
2051
2101
|
...props,
|
|
2052
2102
|
viewBox: "0 0 24 24",
|
|
2053
2103
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2054
|
-
children: /* @__PURE__ */ (0,
|
|
2104
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2055
2105
|
"path",
|
|
2056
2106
|
{
|
|
2057
2107
|
clipRule: "evenodd",
|
|
@@ -2064,14 +2114,14 @@ var AsteriskIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
|
2064
2114
|
);
|
|
2065
2115
|
|
|
2066
2116
|
// src/components/Icon/icons/AudioDescriptionIcon.tsx
|
|
2067
|
-
var
|
|
2068
|
-
var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0,
|
|
2117
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
2118
|
+
var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2069
2119
|
"svg",
|
|
2070
2120
|
{
|
|
2071
2121
|
...props,
|
|
2072
2122
|
viewBox: "0 0 24 24",
|
|
2073
2123
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2074
|
-
children: /* @__PURE__ */ (0,
|
|
2124
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2075
2125
|
"path",
|
|
2076
2126
|
{
|
|
2077
2127
|
clipRule: "evenodd",
|
|
@@ -2084,14 +2134,14 @@ var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.j
|
|
|
2084
2134
|
);
|
|
2085
2135
|
|
|
2086
2136
|
// src/components/Icon/icons/AutoScrollIcon.tsx
|
|
2087
|
-
var
|
|
2088
|
-
var AutoScrollIcon = (props) => /* @__PURE__ */ (0,
|
|
2137
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
2138
|
+
var AutoScrollIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2089
2139
|
"svg",
|
|
2090
2140
|
{
|
|
2091
2141
|
...props,
|
|
2092
2142
|
viewBox: "0 0 24 24",
|
|
2093
2143
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2094
|
-
children: /* @__PURE__ */ (0,
|
|
2144
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2095
2145
|
"path",
|
|
2096
2146
|
{
|
|
2097
2147
|
clipRule: "evenodd",
|
|
@@ -2104,14 +2154,14 @@ var AutoScrollIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
|
2104
2154
|
);
|
|
2105
2155
|
|
|
2106
2156
|
// src/components/Icon/icons/BackgroundIcon.tsx
|
|
2107
|
-
var
|
|
2108
|
-
var BackgroundIcon = (props) => /* @__PURE__ */ (0,
|
|
2157
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
2158
|
+
var BackgroundIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2109
2159
|
"svg",
|
|
2110
2160
|
{
|
|
2111
2161
|
...props,
|
|
2112
2162
|
viewBox: "0 0 24 24",
|
|
2113
2163
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2114
|
-
children: /* @__PURE__ */ (0,
|
|
2164
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2115
2165
|
"path",
|
|
2116
2166
|
{
|
|
2117
2167
|
clipRule: "evenodd",
|
|
@@ -2124,14 +2174,14 @@ var BackgroundIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
|
2124
2174
|
);
|
|
2125
2175
|
|
|
2126
2176
|
// src/components/Icon/icons/BellIcon.tsx
|
|
2127
|
-
var
|
|
2128
|
-
var BellIcon = (props) => /* @__PURE__ */ (0,
|
|
2177
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
2178
|
+
var BellIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2129
2179
|
"svg",
|
|
2130
2180
|
{
|
|
2131
2181
|
...props,
|
|
2132
2182
|
viewBox: "0 0 24 24",
|
|
2133
2183
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2134
|
-
children: /* @__PURE__ */ (0,
|
|
2184
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2135
2185
|
"path",
|
|
2136
2186
|
{
|
|
2137
2187
|
clipRule: "evenodd",
|
|
@@ -2144,14 +2194,14 @@ var BellIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
|
2144
2194
|
);
|
|
2145
2195
|
|
|
2146
2196
|
// src/components/Icon/icons/BoltIcon.tsx
|
|
2147
|
-
var
|
|
2148
|
-
var BoltIcon = (props) => /* @__PURE__ */ (0,
|
|
2197
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
2198
|
+
var BoltIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2149
2199
|
"svg",
|
|
2150
2200
|
{
|
|
2151
2201
|
...props,
|
|
2152
2202
|
viewBox: "0 0 24 24",
|
|
2153
2203
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2154
|
-
children: /* @__PURE__ */ (0,
|
|
2204
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2155
2205
|
"path",
|
|
2156
2206
|
{
|
|
2157
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",
|
|
@@ -2162,14 +2212,14 @@ var BoltIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
|
2162
2212
|
);
|
|
2163
2213
|
|
|
2164
2214
|
// src/components/Icon/icons/CalendarIcon.tsx
|
|
2165
|
-
var
|
|
2166
|
-
var CalendarIcon = (props) => /* @__PURE__ */ (0,
|
|
2215
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
2216
|
+
var CalendarIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2167
2217
|
"svg",
|
|
2168
2218
|
{
|
|
2169
2219
|
...props,
|
|
2170
2220
|
viewBox: "0 0 24 24",
|
|
2171
2221
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2172
|
-
children: /* @__PURE__ */ (0,
|
|
2222
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2173
2223
|
"path",
|
|
2174
2224
|
{
|
|
2175
2225
|
clipRule: "evenodd",
|
|
@@ -2182,14 +2232,14 @@ var CalendarIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
|
2182
2232
|
);
|
|
2183
2233
|
|
|
2184
2234
|
// src/components/Icon/icons/CallToActionIcon.tsx
|
|
2185
|
-
var
|
|
2186
|
-
var CallToActionIcon = (props) => /* @__PURE__ */ (0,
|
|
2235
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
2236
|
+
var CallToActionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2187
2237
|
"svg",
|
|
2188
2238
|
{
|
|
2189
2239
|
...props,
|
|
2190
2240
|
viewBox: "0 0 24 24",
|
|
2191
2241
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2192
|
-
children: /* @__PURE__ */ (0,
|
|
2242
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2193
2243
|
"path",
|
|
2194
2244
|
{
|
|
2195
2245
|
clipRule: "evenodd",
|
|
@@ -2202,14 +2252,14 @@ var CallToActionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
|
2202
2252
|
);
|
|
2203
2253
|
|
|
2204
2254
|
// src/components/Icon/icons/CameraIcon.tsx
|
|
2205
|
-
var
|
|
2206
|
-
var CameraIcon = (props) => /* @__PURE__ */ (0,
|
|
2255
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
2256
|
+
var CameraIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2207
2257
|
"svg",
|
|
2208
2258
|
{
|
|
2209
2259
|
...props,
|
|
2210
2260
|
viewBox: "0 0 24 24",
|
|
2211
2261
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2212
|
-
children: /* @__PURE__ */ (0,
|
|
2262
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2213
2263
|
"path",
|
|
2214
2264
|
{
|
|
2215
2265
|
clipRule: "evenodd",
|
|
@@ -2222,14 +2272,14 @@ var CameraIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
|
2222
2272
|
);
|
|
2223
2273
|
|
|
2224
2274
|
// src/components/Icon/icons/CameraOffIcon.tsx
|
|
2225
|
-
var
|
|
2226
|
-
var CameraOffIcon = (props) => /* @__PURE__ */ (0,
|
|
2275
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
2276
|
+
var CameraOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2227
2277
|
"svg",
|
|
2228
2278
|
{
|
|
2229
2279
|
...props,
|
|
2230
2280
|
viewBox: "0 0 24 24",
|
|
2231
2281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2232
|
-
children: /* @__PURE__ */ (0,
|
|
2282
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2233
2283
|
"path",
|
|
2234
2284
|
{
|
|
2235
2285
|
clipRule: "evenodd",
|
|
@@ -2242,14 +2292,14 @@ var CameraOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
|
2242
2292
|
);
|
|
2243
2293
|
|
|
2244
2294
|
// src/components/Icon/icons/CaretDownIcon.tsx
|
|
2245
|
-
var
|
|
2246
|
-
var CaretDownIcon = (props) => /* @__PURE__ */ (0,
|
|
2295
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
2296
|
+
var CaretDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2247
2297
|
"svg",
|
|
2248
2298
|
{
|
|
2249
2299
|
...props,
|
|
2250
2300
|
viewBox: "0 0 24 24",
|
|
2251
2301
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2252
|
-
children: /* @__PURE__ */ (0,
|
|
2302
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2253
2303
|
"path",
|
|
2254
2304
|
{
|
|
2255
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",
|
|
@@ -2260,14 +2310,14 @@ var CaretDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
|
2260
2310
|
);
|
|
2261
2311
|
|
|
2262
2312
|
// src/components/Icon/icons/CaretDownStrongIcon.tsx
|
|
2263
|
-
var
|
|
2264
|
-
var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2313
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
2314
|
+
var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2265
2315
|
"svg",
|
|
2266
2316
|
{
|
|
2267
2317
|
...props,
|
|
2268
2318
|
viewBox: "0 0 24 24",
|
|
2269
2319
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2270
|
-
children: /* @__PURE__ */ (0,
|
|
2320
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2271
2321
|
"path",
|
|
2272
2322
|
{
|
|
2273
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",
|
|
@@ -2278,14 +2328,14 @@ var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.js
|
|
|
2278
2328
|
);
|
|
2279
2329
|
|
|
2280
2330
|
// src/components/Icon/icons/CaretLeftIcon.tsx
|
|
2281
|
-
var
|
|
2282
|
-
var CaretLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
2331
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
2332
|
+
var CaretLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2283
2333
|
"svg",
|
|
2284
2334
|
{
|
|
2285
2335
|
...props,
|
|
2286
2336
|
viewBox: "0 0 24 24",
|
|
2287
2337
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2288
|
-
children: /* @__PURE__ */ (0,
|
|
2338
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2289
2339
|
"path",
|
|
2290
2340
|
{
|
|
2291
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",
|
|
@@ -2296,14 +2346,14 @@ var CaretLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
|
2296
2346
|
);
|
|
2297
2347
|
|
|
2298
2348
|
// src/components/Icon/icons/CaretLeftStrongIcon.tsx
|
|
2299
|
-
var
|
|
2300
|
-
var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2349
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
2350
|
+
var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2301
2351
|
"svg",
|
|
2302
2352
|
{
|
|
2303
2353
|
...props,
|
|
2304
2354
|
viewBox: "0 0 24 24",
|
|
2305
2355
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2306
|
-
children: /* @__PURE__ */ (0,
|
|
2356
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2307
2357
|
"path",
|
|
2308
2358
|
{
|
|
2309
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",
|
|
@@ -2314,14 +2364,14 @@ var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.js
|
|
|
2314
2364
|
);
|
|
2315
2365
|
|
|
2316
2366
|
// src/components/Icon/icons/CaretRightIcon.tsx
|
|
2317
|
-
var
|
|
2318
|
-
var CaretRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2367
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
2368
|
+
var CaretRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2319
2369
|
"svg",
|
|
2320
2370
|
{
|
|
2321
2371
|
...props,
|
|
2322
2372
|
viewBox: "0 0 24 24",
|
|
2323
2373
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2324
|
-
children: /* @__PURE__ */ (0,
|
|
2374
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2325
2375
|
"path",
|
|
2326
2376
|
{
|
|
2327
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",
|
|
@@ -2332,14 +2382,14 @@ var CaretRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
|
2332
2382
|
);
|
|
2333
2383
|
|
|
2334
2384
|
// src/components/Icon/icons/CaretRightStrongIcon.tsx
|
|
2335
|
-
var
|
|
2336
|
-
var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2385
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
2386
|
+
var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2337
2387
|
"svg",
|
|
2338
2388
|
{
|
|
2339
2389
|
...props,
|
|
2340
2390
|
viewBox: "0 0 24 24",
|
|
2341
2391
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2342
|
-
children: /* @__PURE__ */ (0,
|
|
2392
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2343
2393
|
"path",
|
|
2344
2394
|
{
|
|
2345
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",
|
|
@@ -2350,14 +2400,14 @@ var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.j
|
|
|
2350
2400
|
);
|
|
2351
2401
|
|
|
2352
2402
|
// src/components/Icon/icons/CaretUpIcon.tsx
|
|
2353
|
-
var
|
|
2354
|
-
var CaretUpIcon = (props) => /* @__PURE__ */ (0,
|
|
2403
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
2404
|
+
var CaretUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2355
2405
|
"svg",
|
|
2356
2406
|
{
|
|
2357
2407
|
...props,
|
|
2358
2408
|
viewBox: "0 0 24 24",
|
|
2359
2409
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2360
|
-
children: /* @__PURE__ */ (0,
|
|
2410
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2361
2411
|
"path",
|
|
2362
2412
|
{
|
|
2363
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",
|
|
@@ -2368,14 +2418,14 @@ var CaretUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
|
2368
2418
|
);
|
|
2369
2419
|
|
|
2370
2420
|
// src/components/Icon/icons/CaretUpStrongIcon.tsx
|
|
2371
|
-
var
|
|
2372
|
-
var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2421
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
2422
|
+
var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2373
2423
|
"svg",
|
|
2374
2424
|
{
|
|
2375
2425
|
...props,
|
|
2376
2426
|
viewBox: "0 0 24 24",
|
|
2377
2427
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2378
|
-
children: /* @__PURE__ */ (0,
|
|
2428
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2379
2429
|
"path",
|
|
2380
2430
|
{
|
|
2381
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",
|
|
@@ -2386,14 +2436,14 @@ var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)
|
|
|
2386
2436
|
);
|
|
2387
2437
|
|
|
2388
2438
|
// src/components/Icon/icons/ChannelIcon.tsx
|
|
2389
|
-
var
|
|
2390
|
-
var ChannelIcon = (props) => /* @__PURE__ */ (0,
|
|
2439
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
2440
|
+
var ChannelIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2391
2441
|
"svg",
|
|
2392
2442
|
{
|
|
2393
2443
|
...props,
|
|
2394
2444
|
viewBox: "0 0 24 24",
|
|
2395
2445
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2396
|
-
children: /* @__PURE__ */ (0,
|
|
2446
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2397
2447
|
"path",
|
|
2398
2448
|
{
|
|
2399
2449
|
clipRule: "evenodd",
|
|
@@ -2406,14 +2456,14 @@ var ChannelIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
|
2406
2456
|
);
|
|
2407
2457
|
|
|
2408
2458
|
// src/components/Icon/icons/ChaptersIcon.tsx
|
|
2409
|
-
var
|
|
2410
|
-
var ChaptersIcon = (props) => /* @__PURE__ */ (0,
|
|
2459
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
2460
|
+
var ChaptersIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2411
2461
|
"svg",
|
|
2412
2462
|
{
|
|
2413
2463
|
...props,
|
|
2414
2464
|
viewBox: "0 0 24 24",
|
|
2415
2465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2416
|
-
children: /* @__PURE__ */ (0,
|
|
2466
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2417
2467
|
"path",
|
|
2418
2468
|
{
|
|
2419
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",
|
|
@@ -2424,14 +2474,14 @@ var ChaptersIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
|
2424
2474
|
);
|
|
2425
2475
|
|
|
2426
2476
|
// src/components/Icon/icons/CheckmarkCircleIcon.tsx
|
|
2427
|
-
var
|
|
2428
|
-
var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
2477
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
2478
|
+
var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2429
2479
|
"svg",
|
|
2430
2480
|
{
|
|
2431
2481
|
...props,
|
|
2432
2482
|
viewBox: "0 0 24 24",
|
|
2433
2483
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2434
|
-
children: /* @__PURE__ */ (0,
|
|
2484
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2435
2485
|
"path",
|
|
2436
2486
|
{
|
|
2437
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",
|
|
@@ -2442,14 +2492,14 @@ var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.js
|
|
|
2442
2492
|
);
|
|
2443
2493
|
|
|
2444
2494
|
// src/components/Icon/icons/CheckmarkCircleOutlineIcon.tsx
|
|
2445
|
-
var
|
|
2446
|
-
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0,
|
|
2495
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
2496
|
+
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2447
2497
|
"svg",
|
|
2448
2498
|
{
|
|
2449
2499
|
...props,
|
|
2450
2500
|
viewBox: "0 0 24 24",
|
|
2451
2501
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2452
|
-
children: /* @__PURE__ */ (0,
|
|
2502
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2453
2503
|
"path",
|
|
2454
2504
|
{
|
|
2455
2505
|
clipRule: "evenodd",
|
|
@@ -2462,14 +2512,14 @@ var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runti
|
|
|
2462
2512
|
);
|
|
2463
2513
|
|
|
2464
2514
|
// src/components/Icon/icons/CheckmarkIcon.tsx
|
|
2465
|
-
var
|
|
2466
|
-
var CheckmarkIcon = (props) => /* @__PURE__ */ (0,
|
|
2515
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
2516
|
+
var CheckmarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2467
2517
|
"svg",
|
|
2468
2518
|
{
|
|
2469
2519
|
...props,
|
|
2470
2520
|
viewBox: "0 0 24 24",
|
|
2471
2521
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2472
|
-
children: /* @__PURE__ */ (0,
|
|
2522
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2473
2523
|
"path",
|
|
2474
2524
|
{
|
|
2475
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",
|
|
@@ -2480,14 +2530,14 @@ var CheckmarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
|
2480
2530
|
);
|
|
2481
2531
|
|
|
2482
2532
|
// src/components/Icon/icons/CheckmarkThreeQuatersCircleIcon.tsx
|
|
2483
|
-
var
|
|
2484
|
-
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
2533
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
2534
|
+
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2485
2535
|
"svg",
|
|
2486
2536
|
{
|
|
2487
2537
|
...props,
|
|
2488
2538
|
viewBox: "0 0 24 24",
|
|
2489
2539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2490
|
-
children: /* @__PURE__ */ (0,
|
|
2540
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2491
2541
|
"path",
|
|
2492
2542
|
{
|
|
2493
2543
|
clipRule: "evenodd",
|
|
@@ -2500,14 +2550,14 @@ var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_
|
|
|
2500
2550
|
);
|
|
2501
2551
|
|
|
2502
2552
|
// src/components/Icon/icons/CircleSlashedIcon.tsx
|
|
2503
|
-
var
|
|
2504
|
-
var CircleSlashedIcon = (props) => /* @__PURE__ */ (0,
|
|
2553
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
2554
|
+
var CircleSlashedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2505
2555
|
"svg",
|
|
2506
2556
|
{
|
|
2507
2557
|
...props,
|
|
2508
2558
|
viewBox: "0 0 24 24",
|
|
2509
2559
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2510
|
-
children: /* @__PURE__ */ (0,
|
|
2560
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2511
2561
|
"path",
|
|
2512
2562
|
{
|
|
2513
2563
|
clipRule: "evenodd",
|
|
@@ -2520,14 +2570,14 @@ var CircleSlashedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)
|
|
|
2520
2570
|
);
|
|
2521
2571
|
|
|
2522
2572
|
// src/components/Icon/icons/CloseIcon.tsx
|
|
2523
|
-
var
|
|
2524
|
-
var CloseIcon = (props) => /* @__PURE__ */ (0,
|
|
2573
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
2574
|
+
var CloseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2525
2575
|
"svg",
|
|
2526
2576
|
{
|
|
2527
2577
|
...props,
|
|
2528
2578
|
viewBox: "0 0 24 24",
|
|
2529
2579
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2530
|
-
children: /* @__PURE__ */ (0,
|
|
2580
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2531
2581
|
"path",
|
|
2532
2582
|
{
|
|
2533
2583
|
clipRule: "evenodd",
|
|
@@ -2540,14 +2590,14 @@ var CloseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
|
2540
2590
|
);
|
|
2541
2591
|
|
|
2542
2592
|
// src/components/Icon/icons/CloseOctagonIcon.tsx
|
|
2543
|
-
var
|
|
2544
|
-
var CloseOctagonIcon = (props) => /* @__PURE__ */ (0,
|
|
2593
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
2594
|
+
var CloseOctagonIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2545
2595
|
"svg",
|
|
2546
2596
|
{
|
|
2547
2597
|
...props,
|
|
2548
2598
|
viewBox: "0 0 24 24",
|
|
2549
2599
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2550
|
-
children: /* @__PURE__ */ (0,
|
|
2600
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2551
2601
|
"path",
|
|
2552
2602
|
{
|
|
2553
2603
|
clipRule: "evenodd",
|
|
@@ -2560,14 +2610,14 @@ var CloseOctagonIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
|
2560
2610
|
);
|
|
2561
2611
|
|
|
2562
2612
|
// src/components/Icon/icons/ClosedCaptionsIcon.tsx
|
|
2563
|
-
var
|
|
2564
|
-
var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0,
|
|
2613
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
2614
|
+
var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2565
2615
|
"svg",
|
|
2566
2616
|
{
|
|
2567
2617
|
...props,
|
|
2568
2618
|
viewBox: "0 0 24 24",
|
|
2569
2619
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2570
|
-
children: /* @__PURE__ */ (0,
|
|
2620
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2571
2621
|
"path",
|
|
2572
2622
|
{
|
|
2573
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",
|
|
@@ -2578,14 +2628,14 @@ var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx
|
|
|
2578
2628
|
);
|
|
2579
2629
|
|
|
2580
2630
|
// src/components/Icon/icons/CollapseDiagonalIcon.tsx
|
|
2581
|
-
var
|
|
2582
|
-
var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0,
|
|
2631
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
2632
|
+
var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2583
2633
|
"svg",
|
|
2584
2634
|
{
|
|
2585
2635
|
...props,
|
|
2586
2636
|
viewBox: "0 0 24 24",
|
|
2587
2637
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2588
|
-
children: /* @__PURE__ */ (0,
|
|
2638
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2589
2639
|
"path",
|
|
2590
2640
|
{
|
|
2591
2641
|
clipRule: "evenodd",
|
|
@@ -2598,14 +2648,14 @@ var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.j
|
|
|
2598
2648
|
);
|
|
2599
2649
|
|
|
2600
2650
|
// src/components/Icon/icons/CommentsIcon.tsx
|
|
2601
|
-
var
|
|
2602
|
-
var CommentsIcon = (props) => /* @__PURE__ */ (0,
|
|
2651
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
2652
|
+
var CommentsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2603
2653
|
"svg",
|
|
2604
2654
|
{
|
|
2605
2655
|
...props,
|
|
2606
2656
|
viewBox: "0 0 24 24",
|
|
2607
2657
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2608
|
-
children: /* @__PURE__ */ (0,
|
|
2658
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2609
2659
|
"path",
|
|
2610
2660
|
{
|
|
2611
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",
|
|
@@ -2616,14 +2666,14 @@ var CommentsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
|
2616
2666
|
);
|
|
2617
2667
|
|
|
2618
2668
|
// src/components/Icon/icons/CompanyIcon.tsx
|
|
2619
|
-
var
|
|
2620
|
-
var CompanyIcon = (props) => /* @__PURE__ */ (0,
|
|
2669
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
2670
|
+
var CompanyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2621
2671
|
"svg",
|
|
2622
2672
|
{
|
|
2623
2673
|
...props,
|
|
2624
2674
|
viewBox: "0 0 24 24",
|
|
2625
2675
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2626
|
-
children: /* @__PURE__ */ (0,
|
|
2676
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2627
2677
|
"path",
|
|
2628
2678
|
{
|
|
2629
2679
|
clipRule: "evenodd",
|
|
@@ -2636,14 +2686,14 @@ var CompanyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
|
2636
2686
|
);
|
|
2637
2687
|
|
|
2638
2688
|
// src/components/Icon/icons/CompareIcon.tsx
|
|
2639
|
-
var
|
|
2640
|
-
var CompareIcon = (props) => /* @__PURE__ */ (0,
|
|
2689
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
2690
|
+
var CompareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2641
2691
|
"svg",
|
|
2642
2692
|
{
|
|
2643
2693
|
...props,
|
|
2644
2694
|
viewBox: "0 0 24 24",
|
|
2645
2695
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2646
|
-
children: /* @__PURE__ */ (0,
|
|
2696
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2647
2697
|
"path",
|
|
2648
2698
|
{
|
|
2649
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",
|
|
@@ -2654,14 +2704,14 @@ var CompareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
|
2654
2704
|
);
|
|
2655
2705
|
|
|
2656
2706
|
// src/components/Icon/icons/ContentLibraryIcon.tsx
|
|
2657
|
-
var
|
|
2658
|
-
var ContentLibraryIcon = (props) => /* @__PURE__ */ (0,
|
|
2707
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
2708
|
+
var ContentLibraryIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2659
2709
|
"svg",
|
|
2660
2710
|
{
|
|
2661
2711
|
...props,
|
|
2662
2712
|
viewBox: "0 0 24 24",
|
|
2663
2713
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2664
|
-
children: /* @__PURE__ */ (0,
|
|
2714
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2665
2715
|
"path",
|
|
2666
2716
|
{
|
|
2667
2717
|
clipRule: "evenodd",
|
|
@@ -2674,14 +2724,14 @@ var ContentLibraryIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx
|
|
|
2674
2724
|
);
|
|
2675
2725
|
|
|
2676
2726
|
// src/components/Icon/icons/ControlsIcon.tsx
|
|
2677
|
-
var
|
|
2678
|
-
var ControlsIcon = (props) => /* @__PURE__ */ (0,
|
|
2727
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
2728
|
+
var ControlsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2679
2729
|
"svg",
|
|
2680
2730
|
{
|
|
2681
2731
|
...props,
|
|
2682
2732
|
viewBox: "0 0 24 24",
|
|
2683
2733
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2684
|
-
children: /* @__PURE__ */ (0,
|
|
2734
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2685
2735
|
"path",
|
|
2686
2736
|
{
|
|
2687
2737
|
clipRule: "evenodd",
|
|
@@ -2694,14 +2744,14 @@ var ControlsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
|
2694
2744
|
);
|
|
2695
2745
|
|
|
2696
2746
|
// src/components/Icon/icons/CursorClickIcon.tsx
|
|
2697
|
-
var
|
|
2698
|
-
var CursorClickIcon = (props) => /* @__PURE__ */ (0,
|
|
2747
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
2748
|
+
var CursorClickIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2699
2749
|
"svg",
|
|
2700
2750
|
{
|
|
2701
2751
|
...props,
|
|
2702
2752
|
viewBox: "0 0 24 24",
|
|
2703
2753
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2704
|
-
children: /* @__PURE__ */ (0,
|
|
2754
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2705
2755
|
"path",
|
|
2706
2756
|
{
|
|
2707
2757
|
clipRule: "evenodd",
|
|
@@ -2714,14 +2764,14 @@ var CursorClickIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
|
2714
2764
|
);
|
|
2715
2765
|
|
|
2716
2766
|
// src/components/Icon/icons/DeleteIcon.tsx
|
|
2717
|
-
var
|
|
2718
|
-
var DeleteIcon = (props) => /* @__PURE__ */ (0,
|
|
2767
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
2768
|
+
var DeleteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2719
2769
|
"svg",
|
|
2720
2770
|
{
|
|
2721
2771
|
...props,
|
|
2722
2772
|
viewBox: "0 0 24 24",
|
|
2723
2773
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2724
|
-
children: /* @__PURE__ */ (0,
|
|
2774
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2725
2775
|
"path",
|
|
2726
2776
|
{
|
|
2727
2777
|
clipRule: "evenodd",
|
|
@@ -2734,14 +2784,14 @@ var DeleteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
|
2734
2784
|
);
|
|
2735
2785
|
|
|
2736
2786
|
// src/components/Icon/icons/DesktopIcon.tsx
|
|
2737
|
-
var
|
|
2738
|
-
var DesktopIcon = (props) => /* @__PURE__ */ (0,
|
|
2787
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
2788
|
+
var DesktopIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2739
2789
|
"svg",
|
|
2740
2790
|
{
|
|
2741
2791
|
...props,
|
|
2742
2792
|
viewBox: "0 0 24 24",
|
|
2743
2793
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2744
|
-
children: /* @__PURE__ */ (0,
|
|
2794
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2745
2795
|
"path",
|
|
2746
2796
|
{
|
|
2747
2797
|
clipRule: "evenodd",
|
|
@@ -2754,14 +2804,14 @@ var DesktopIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
|
2754
2804
|
);
|
|
2755
2805
|
|
|
2756
2806
|
// src/components/Icon/icons/DotsHorizontalIcon.tsx
|
|
2757
|
-
var
|
|
2758
|
-
var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0,
|
|
2807
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
2808
|
+
var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2759
2809
|
"svg",
|
|
2760
2810
|
{
|
|
2761
2811
|
...props,
|
|
2762
2812
|
viewBox: "0 0 24 24",
|
|
2763
2813
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2764
|
-
children: /* @__PURE__ */ (0,
|
|
2814
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2765
2815
|
"path",
|
|
2766
2816
|
{
|
|
2767
2817
|
clipRule: "evenodd",
|
|
@@ -2774,14 +2824,14 @@ var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx
|
|
|
2774
2824
|
);
|
|
2775
2825
|
|
|
2776
2826
|
// src/components/Icon/icons/DownloadIcon.tsx
|
|
2777
|
-
var
|
|
2778
|
-
var DownloadIcon = (props) => /* @__PURE__ */ (0,
|
|
2827
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
2828
|
+
var DownloadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2779
2829
|
"svg",
|
|
2780
2830
|
{
|
|
2781
2831
|
...props,
|
|
2782
2832
|
viewBox: "0 0 24 24",
|
|
2783
2833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2784
|
-
children: /* @__PURE__ */ (0,
|
|
2834
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2785
2835
|
"path",
|
|
2786
2836
|
{
|
|
2787
2837
|
clipRule: "evenodd",
|
|
@@ -2794,14 +2844,14 @@ var DownloadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
|
2794
2844
|
);
|
|
2795
2845
|
|
|
2796
2846
|
// src/components/Icon/icons/EditTranscriptIcon.tsx
|
|
2797
|
-
var
|
|
2798
|
-
var EditTranscriptIcon = (props) => /* @__PURE__ */ (0,
|
|
2847
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
2848
|
+
var EditTranscriptIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2799
2849
|
"svg",
|
|
2800
2850
|
{
|
|
2801
2851
|
...props,
|
|
2802
2852
|
viewBox: "0 0 24 24",
|
|
2803
2853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2804
|
-
children: /* @__PURE__ */ (0,
|
|
2854
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2805
2855
|
"path",
|
|
2806
2856
|
{
|
|
2807
2857
|
clipRule: "evenodd",
|
|
@@ -2814,14 +2864,14 @@ var EditTranscriptIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx
|
|
|
2814
2864
|
);
|
|
2815
2865
|
|
|
2816
2866
|
// src/components/Icon/icons/EllipsesVerticalIcon.tsx
|
|
2817
|
-
var
|
|
2818
|
-
var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0,
|
|
2867
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
2868
|
+
var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2819
2869
|
"svg",
|
|
2820
2870
|
{
|
|
2821
2871
|
...props,
|
|
2822
2872
|
viewBox: "0 0 24 24",
|
|
2823
2873
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2824
|
-
children: /* @__PURE__ */ (0,
|
|
2874
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2825
2875
|
"path",
|
|
2826
2876
|
{
|
|
2827
2877
|
clipRule: "evenodd",
|
|
@@ -2834,14 +2884,14 @@ var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime56.j
|
|
|
2834
2884
|
);
|
|
2835
2885
|
|
|
2836
2886
|
// src/components/Icon/icons/EmbedIcon.tsx
|
|
2837
|
-
var
|
|
2838
|
-
var EmbedIcon = (props) => /* @__PURE__ */ (0,
|
|
2887
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
2888
|
+
var EmbedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2839
2889
|
"svg",
|
|
2840
2890
|
{
|
|
2841
2891
|
...props,
|
|
2842
2892
|
viewBox: "0 0 24 24",
|
|
2843
2893
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2844
|
-
children: /* @__PURE__ */ (0,
|
|
2894
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2845
2895
|
"path",
|
|
2846
2896
|
{
|
|
2847
2897
|
clipRule: "evenodd",
|
|
@@ -2854,14 +2904,14 @@ var EmbedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
|
2854
2904
|
);
|
|
2855
2905
|
|
|
2856
2906
|
// src/components/Icon/icons/EnvelopeIcon.tsx
|
|
2857
|
-
var
|
|
2858
|
-
var EnvelopeIcon = (props) => /* @__PURE__ */ (0,
|
|
2907
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
2908
|
+
var EnvelopeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2859
2909
|
"svg",
|
|
2860
2910
|
{
|
|
2861
2911
|
...props,
|
|
2862
2912
|
viewBox: "0 0 24 24",
|
|
2863
2913
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2864
|
-
children: /* @__PURE__ */ (0,
|
|
2914
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2865
2915
|
"path",
|
|
2866
2916
|
{
|
|
2867
2917
|
clipRule: "evenodd",
|
|
@@ -2874,14 +2924,14 @@ var EnvelopeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
|
2874
2924
|
);
|
|
2875
2925
|
|
|
2876
2926
|
// src/components/Icon/icons/ErrorIcon.tsx
|
|
2877
|
-
var
|
|
2878
|
-
var ErrorIcon = (props) => /* @__PURE__ */ (0,
|
|
2927
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
2928
|
+
var ErrorIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2879
2929
|
"svg",
|
|
2880
2930
|
{
|
|
2881
2931
|
...props,
|
|
2882
2932
|
viewBox: "0 0 24 24",
|
|
2883
2933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2884
|
-
children: /* @__PURE__ */ (0,
|
|
2934
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2885
2935
|
"path",
|
|
2886
2936
|
{
|
|
2887
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",
|
|
@@ -2892,14 +2942,14 @@ var ErrorIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
|
2892
2942
|
);
|
|
2893
2943
|
|
|
2894
2944
|
// src/components/Icon/icons/ExpandDiagonalIcon.tsx
|
|
2895
|
-
var
|
|
2896
|
-
var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0,
|
|
2945
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
2946
|
+
var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2897
2947
|
"svg",
|
|
2898
2948
|
{
|
|
2899
2949
|
...props,
|
|
2900
2950
|
viewBox: "0 0 24 24",
|
|
2901
2951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2902
|
-
children: /* @__PURE__ */ (0,
|
|
2952
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2903
2953
|
"path",
|
|
2904
2954
|
{
|
|
2905
2955
|
clipRule: "evenodd",
|
|
@@ -2912,14 +2962,14 @@ var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx
|
|
|
2912
2962
|
);
|
|
2913
2963
|
|
|
2914
2964
|
// src/components/Icon/icons/ExpandIcon.tsx
|
|
2915
|
-
var
|
|
2916
|
-
var ExpandIcon = (props) => /* @__PURE__ */ (0,
|
|
2965
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
2966
|
+
var ExpandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2917
2967
|
"svg",
|
|
2918
2968
|
{
|
|
2919
2969
|
...props,
|
|
2920
2970
|
viewBox: "0 0 24 24",
|
|
2921
2971
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2922
|
-
children: /* @__PURE__ */ (0,
|
|
2972
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2923
2973
|
"path",
|
|
2924
2974
|
{
|
|
2925
2975
|
clipRule: "evenodd",
|
|
@@ -2932,14 +2982,14 @@ var ExpandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
|
2932
2982
|
);
|
|
2933
2983
|
|
|
2934
2984
|
// src/components/Icon/icons/FavoriteIcon.tsx
|
|
2935
|
-
var
|
|
2936
|
-
var FavoriteIcon = (props) => /* @__PURE__ */ (0,
|
|
2985
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
2986
|
+
var FavoriteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2937
2987
|
"svg",
|
|
2938
2988
|
{
|
|
2939
2989
|
...props,
|
|
2940
2990
|
viewBox: "0 0 24 24",
|
|
2941
2991
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2942
|
-
children: /* @__PURE__ */ (0,
|
|
2992
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2943
2993
|
"path",
|
|
2944
2994
|
{
|
|
2945
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",
|
|
@@ -2950,14 +3000,14 @@ var FavoriteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
|
2950
3000
|
);
|
|
2951
3001
|
|
|
2952
3002
|
// src/components/Icon/icons/FavoriteOutlineIcon.tsx
|
|
2953
|
-
var
|
|
2954
|
-
var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0,
|
|
3003
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
3004
|
+
var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
2955
3005
|
"svg",
|
|
2956
3006
|
{
|
|
2957
3007
|
...props,
|
|
2958
3008
|
viewBox: "0 0 24 24",
|
|
2959
3009
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2960
|
-
children: /* @__PURE__ */ (0,
|
|
3010
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
2961
3011
|
"path",
|
|
2962
3012
|
{
|
|
2963
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",
|
|
@@ -2971,14 +3021,14 @@ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime63.js
|
|
|
2971
3021
|
);
|
|
2972
3022
|
|
|
2973
3023
|
// src/components/Icon/icons/FileTreeIcon.tsx
|
|
2974
|
-
var
|
|
2975
|
-
var FileTreeIcon = (props) => /* @__PURE__ */ (0,
|
|
3024
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
3025
|
+
var FileTreeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
2976
3026
|
"svg",
|
|
2977
3027
|
{
|
|
2978
3028
|
...props,
|
|
2979
3029
|
viewBox: "0 0 24 24",
|
|
2980
3030
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2981
|
-
children: /* @__PURE__ */ (0,
|
|
3031
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
2982
3032
|
"path",
|
|
2983
3033
|
{
|
|
2984
3034
|
clipRule: "evenodd",
|
|
@@ -2991,14 +3041,14 @@ var FileTreeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
|
2991
3041
|
);
|
|
2992
3042
|
|
|
2993
3043
|
// src/components/Icon/icons/FilterIcon.tsx
|
|
2994
|
-
var
|
|
2995
|
-
var FilterIcon = (props) => /* @__PURE__ */ (0,
|
|
3044
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
3045
|
+
var FilterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
2996
3046
|
"svg",
|
|
2997
3047
|
{
|
|
2998
3048
|
...props,
|
|
2999
3049
|
viewBox: "0 0 24 24",
|
|
3000
3050
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3001
|
-
children: /* @__PURE__ */ (0,
|
|
3051
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3002
3052
|
"path",
|
|
3003
3053
|
{
|
|
3004
3054
|
clipRule: "evenodd",
|
|
@@ -3011,14 +3061,14 @@ var FilterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
|
3011
3061
|
);
|
|
3012
3062
|
|
|
3013
3063
|
// src/components/Icon/icons/FontsIcon.tsx
|
|
3014
|
-
var
|
|
3015
|
-
var FontsIcon = (props) => /* @__PURE__ */ (0,
|
|
3064
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
3065
|
+
var FontsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3016
3066
|
"svg",
|
|
3017
3067
|
{
|
|
3018
3068
|
...props,
|
|
3019
3069
|
viewBox: "0 0 24 24",
|
|
3020
3070
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3021
|
-
children: /* @__PURE__ */ (0,
|
|
3071
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3022
3072
|
"path",
|
|
3023
3073
|
{
|
|
3024
3074
|
clipRule: "evenodd",
|
|
@@ -3031,14 +3081,14 @@ var FontsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
|
3031
3081
|
);
|
|
3032
3082
|
|
|
3033
3083
|
// src/components/Icon/icons/FullScreenIcon.tsx
|
|
3034
|
-
var
|
|
3035
|
-
var FullScreenIcon = (props) => /* @__PURE__ */ (0,
|
|
3084
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
3085
|
+
var FullScreenIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3036
3086
|
"svg",
|
|
3037
3087
|
{
|
|
3038
3088
|
...props,
|
|
3039
3089
|
viewBox: "0 0 24 24",
|
|
3040
3090
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3041
|
-
children: /* @__PURE__ */ (0,
|
|
3091
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3042
3092
|
"path",
|
|
3043
3093
|
{
|
|
3044
3094
|
clipRule: "evenodd",
|
|
@@ -3051,14 +3101,14 @@ var FullScreenIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
|
3051
3101
|
);
|
|
3052
3102
|
|
|
3053
3103
|
// src/components/Icon/icons/GearIcon.tsx
|
|
3054
|
-
var
|
|
3055
|
-
var GearIcon = (props) => /* @__PURE__ */ (0,
|
|
3104
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3105
|
+
var GearIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3056
3106
|
"svg",
|
|
3057
3107
|
{
|
|
3058
3108
|
...props,
|
|
3059
3109
|
viewBox: "0 0 24 24",
|
|
3060
3110
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3061
|
-
children: /* @__PURE__ */ (0,
|
|
3111
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3062
3112
|
"path",
|
|
3063
3113
|
{
|
|
3064
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",
|
|
@@ -3069,14 +3119,14 @@ var GearIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
|
3069
3119
|
);
|
|
3070
3120
|
|
|
3071
3121
|
// src/components/Icon/icons/GettingStartedIcon.tsx
|
|
3072
|
-
var
|
|
3073
|
-
var GettingStartedIcon = (props) => /* @__PURE__ */ (0,
|
|
3122
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
3123
|
+
var GettingStartedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3074
3124
|
"svg",
|
|
3075
3125
|
{
|
|
3076
3126
|
...props,
|
|
3077
3127
|
viewBox: "0 0 24 24",
|
|
3078
3128
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3079
|
-
children: /* @__PURE__ */ (0,
|
|
3129
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3080
3130
|
"path",
|
|
3081
3131
|
{
|
|
3082
3132
|
clipRule: "evenodd",
|
|
@@ -3089,14 +3139,14 @@ var GettingStartedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx
|
|
|
3089
3139
|
);
|
|
3090
3140
|
|
|
3091
3141
|
// src/components/Icon/icons/GridIcon.tsx
|
|
3092
|
-
var
|
|
3093
|
-
var GridIcon = (props) => /* @__PURE__ */ (0,
|
|
3142
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
3143
|
+
var GridIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3094
3144
|
"svg",
|
|
3095
3145
|
{
|
|
3096
3146
|
...props,
|
|
3097
3147
|
viewBox: "0 0 24 24",
|
|
3098
3148
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3099
|
-
children: /* @__PURE__ */ (0,
|
|
3149
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3100
3150
|
"path",
|
|
3101
3151
|
{
|
|
3102
3152
|
clipRule: "evenodd",
|
|
@@ -3109,14 +3159,14 @@ var GridIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
|
3109
3159
|
);
|
|
3110
3160
|
|
|
3111
3161
|
// src/components/Icon/icons/GripDotsVerticalIcon.tsx
|
|
3112
|
-
var
|
|
3113
|
-
var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0,
|
|
3162
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
3163
|
+
var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3114
3164
|
"svg",
|
|
3115
3165
|
{
|
|
3116
3166
|
...props,
|
|
3117
3167
|
viewBox: "0 0 24 24",
|
|
3118
3168
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3119
|
-
children: /* @__PURE__ */ (0,
|
|
3169
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3120
3170
|
"path",
|
|
3121
3171
|
{
|
|
3122
3172
|
clipRule: "evenodd",
|
|
@@ -3129,14 +3179,14 @@ var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime71.j
|
|
|
3129
3179
|
);
|
|
3130
3180
|
|
|
3131
3181
|
// src/components/Icon/icons/HelpCenterIcon.tsx
|
|
3132
|
-
var
|
|
3133
|
-
var HelpCenterIcon = (props) => /* @__PURE__ */ (0,
|
|
3182
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
3183
|
+
var HelpCenterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3134
3184
|
"svg",
|
|
3135
3185
|
{
|
|
3136
3186
|
...props,
|
|
3137
3187
|
viewBox: "0 0 24 24",
|
|
3138
3188
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3139
|
-
children: /* @__PURE__ */ (0,
|
|
3189
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3140
3190
|
"path",
|
|
3141
3191
|
{
|
|
3142
3192
|
clipRule: "evenodd",
|
|
@@ -3149,14 +3199,14 @@ var HelpCenterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
|
3149
3199
|
);
|
|
3150
3200
|
|
|
3151
3201
|
// src/components/Icon/icons/HideIcon.tsx
|
|
3152
|
-
var
|
|
3153
|
-
var HideIcon = (props) => /* @__PURE__ */ (0,
|
|
3202
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
3203
|
+
var HideIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
3154
3204
|
"svg",
|
|
3155
3205
|
{
|
|
3156
3206
|
...props,
|
|
3157
3207
|
viewBox: "0 0 24 24",
|
|
3158
3208
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3159
|
-
children: /* @__PURE__ */ (0,
|
|
3209
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
3160
3210
|
"path",
|
|
3161
3211
|
{
|
|
3162
3212
|
clipRule: "evenodd",
|
|
@@ -3169,14 +3219,14 @@ var HideIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
|
3169
3219
|
);
|
|
3170
3220
|
|
|
3171
3221
|
// src/components/Icon/icons/HomeIcon.tsx
|
|
3172
|
-
var
|
|
3173
|
-
var HomeIcon = (props) => /* @__PURE__ */ (0,
|
|
3222
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
3223
|
+
var HomeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3174
3224
|
"svg",
|
|
3175
3225
|
{
|
|
3176
3226
|
...props,
|
|
3177
3227
|
viewBox: "0 0 24 24",
|
|
3178
3228
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3179
|
-
children: /* @__PURE__ */ (0,
|
|
3229
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3180
3230
|
"path",
|
|
3181
3231
|
{
|
|
3182
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",
|
|
@@ -3187,14 +3237,14 @@ var HomeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
|
3187
3237
|
);
|
|
3188
3238
|
|
|
3189
3239
|
// src/components/Icon/icons/HourglassIcon.tsx
|
|
3190
|
-
var
|
|
3191
|
-
var HourglassIcon = (props) => /* @__PURE__ */ (0,
|
|
3240
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
3241
|
+
var HourglassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3192
3242
|
"svg",
|
|
3193
3243
|
{
|
|
3194
3244
|
...props,
|
|
3195
3245
|
viewBox: "0 0 24 24",
|
|
3196
3246
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3197
|
-
children: /* @__PURE__ */ (0,
|
|
3247
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3198
3248
|
"path",
|
|
3199
3249
|
{
|
|
3200
3250
|
clipRule: "evenodd",
|
|
@@ -3207,14 +3257,14 @@ var HourglassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
|
3207
3257
|
);
|
|
3208
3258
|
|
|
3209
3259
|
// src/components/Icon/icons/InfoIcon.tsx
|
|
3210
|
-
var
|
|
3211
|
-
var InfoIcon = (props) => /* @__PURE__ */ (0,
|
|
3260
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
3261
|
+
var InfoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3212
3262
|
"svg",
|
|
3213
3263
|
{
|
|
3214
3264
|
...props,
|
|
3215
3265
|
viewBox: "0 0 24 24",
|
|
3216
3266
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3217
|
-
children: /* @__PURE__ */ (0,
|
|
3267
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3218
3268
|
"path",
|
|
3219
3269
|
{
|
|
3220
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",
|
|
@@ -3225,14 +3275,14 @@ var InfoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
|
3225
3275
|
);
|
|
3226
3276
|
|
|
3227
3277
|
// src/components/Icon/icons/IntegrationsIcon.tsx
|
|
3228
|
-
var
|
|
3229
|
-
var IntegrationsIcon = (props) => /* @__PURE__ */ (0,
|
|
3278
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
3279
|
+
var IntegrationsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
3230
3280
|
"svg",
|
|
3231
3281
|
{
|
|
3232
3282
|
...props,
|
|
3233
3283
|
viewBox: "0 0 24 24",
|
|
3234
3284
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3235
|
-
children: /* @__PURE__ */ (0,
|
|
3285
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
3236
3286
|
"path",
|
|
3237
3287
|
{
|
|
3238
3288
|
clipRule: "evenodd",
|
|
@@ -3245,14 +3295,14 @@ var IntegrationsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
|
3245
3295
|
);
|
|
3246
3296
|
|
|
3247
3297
|
// src/components/Icon/icons/LeaveIcon.tsx
|
|
3248
|
-
var
|
|
3249
|
-
var LeaveIcon = (props) => /* @__PURE__ */ (0,
|
|
3298
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
3299
|
+
var LeaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3250
3300
|
"svg",
|
|
3251
3301
|
{
|
|
3252
3302
|
...props,
|
|
3253
3303
|
viewBox: "0 0 24 24",
|
|
3254
3304
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3255
|
-
children: /* @__PURE__ */ (0,
|
|
3305
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3256
3306
|
"path",
|
|
3257
3307
|
{
|
|
3258
3308
|
clipRule: "evenodd",
|
|
@@ -3265,14 +3315,14 @@ var LeaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
|
3265
3315
|
);
|
|
3266
3316
|
|
|
3267
3317
|
// src/components/Icon/icons/LinkIcon.tsx
|
|
3268
|
-
var
|
|
3269
|
-
var LinkIcon = (props) => /* @__PURE__ */ (0,
|
|
3318
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
3319
|
+
var LinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3270
3320
|
"svg",
|
|
3271
3321
|
{
|
|
3272
3322
|
...props,
|
|
3273
3323
|
viewBox: "0 0 24 24",
|
|
3274
3324
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3275
|
-
children: /* @__PURE__ */ (0,
|
|
3325
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3276
3326
|
"path",
|
|
3277
3327
|
{
|
|
3278
3328
|
clipRule: "evenodd",
|
|
@@ -3285,14 +3335,14 @@ var LinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
|
3285
3335
|
);
|
|
3286
3336
|
|
|
3287
3337
|
// src/components/Icon/icons/ListIcon.tsx
|
|
3288
|
-
var
|
|
3289
|
-
var ListIcon = (props) => /* @__PURE__ */ (0,
|
|
3338
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
3339
|
+
var ListIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3290
3340
|
"svg",
|
|
3291
3341
|
{
|
|
3292
3342
|
...props,
|
|
3293
3343
|
viewBox: "0 0 24 24",
|
|
3294
3344
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3295
|
-
children: /* @__PURE__ */ (0,
|
|
3345
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3296
3346
|
"path",
|
|
3297
3347
|
{
|
|
3298
3348
|
clipRule: "evenodd",
|
|
@@ -3305,14 +3355,14 @@ var ListIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
|
3305
3355
|
);
|
|
3306
3356
|
|
|
3307
3357
|
// src/components/Icon/icons/LiveIcon.tsx
|
|
3308
|
-
var
|
|
3309
|
-
var LiveIcon = (props) => /* @__PURE__ */ (0,
|
|
3358
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
3359
|
+
var LiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3310
3360
|
"svg",
|
|
3311
3361
|
{
|
|
3312
3362
|
...props,
|
|
3313
3363
|
viewBox: "0 0 24 24",
|
|
3314
3364
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3315
|
-
children: /* @__PURE__ */ (0,
|
|
3365
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3316
3366
|
"path",
|
|
3317
3367
|
{
|
|
3318
3368
|
clipRule: "evenodd",
|
|
@@ -3325,14 +3375,14 @@ var LiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
|
3325
3375
|
);
|
|
3326
3376
|
|
|
3327
3377
|
// src/components/Icon/icons/LockIcon.tsx
|
|
3328
|
-
var
|
|
3329
|
-
var LockIcon = (props) => /* @__PURE__ */ (0,
|
|
3378
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
3379
|
+
var LockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
3330
3380
|
"svg",
|
|
3331
3381
|
{
|
|
3332
3382
|
...props,
|
|
3333
3383
|
viewBox: "0 0 24 24",
|
|
3334
3384
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3335
|
-
children: /* @__PURE__ */ (0,
|
|
3385
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
3336
3386
|
"path",
|
|
3337
3387
|
{
|
|
3338
3388
|
clipRule: "evenodd",
|
|
@@ -3345,14 +3395,14 @@ var LockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
|
3345
3395
|
);
|
|
3346
3396
|
|
|
3347
3397
|
// src/components/Icon/icons/LogoutIcon.tsx
|
|
3348
|
-
var
|
|
3349
|
-
var LogoutIcon = (props) => /* @__PURE__ */ (0,
|
|
3398
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
3399
|
+
var LogoutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
3350
3400
|
"svg",
|
|
3351
3401
|
{
|
|
3352
3402
|
...props,
|
|
3353
3403
|
viewBox: "0 0 24 24",
|
|
3354
3404
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3355
|
-
children: /* @__PURE__ */ (0,
|
|
3405
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
3356
3406
|
"path",
|
|
3357
3407
|
{
|
|
3358
3408
|
clipRule: "evenodd",
|
|
@@ -3365,14 +3415,14 @@ var LogoutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
|
3365
3415
|
);
|
|
3366
3416
|
|
|
3367
3417
|
// src/components/Icon/icons/MaximizeIcon.tsx
|
|
3368
|
-
var
|
|
3369
|
-
var MaximizeIcon = (props) => /* @__PURE__ */ (0,
|
|
3418
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
3419
|
+
var MaximizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
3370
3420
|
"svg",
|
|
3371
3421
|
{
|
|
3372
3422
|
...props,
|
|
3373
3423
|
viewBox: "0 0 24 24",
|
|
3374
3424
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3375
|
-
children: /* @__PURE__ */ (0,
|
|
3425
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
3376
3426
|
"path",
|
|
3377
3427
|
{
|
|
3378
3428
|
clipRule: "evenodd",
|
|
@@ -3385,14 +3435,14 @@ var MaximizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
|
3385
3435
|
);
|
|
3386
3436
|
|
|
3387
3437
|
// src/components/Icon/icons/MediaIcon.tsx
|
|
3388
|
-
var
|
|
3389
|
-
var MediaIcon = (props) => /* @__PURE__ */ (0,
|
|
3438
|
+
var import_jsx_runtime86 = require("react/jsx-runtime");
|
|
3439
|
+
var MediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
3390
3440
|
"svg",
|
|
3391
3441
|
{
|
|
3392
3442
|
...props,
|
|
3393
3443
|
viewBox: "0 0 24 24",
|
|
3394
3444
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3395
|
-
children: /* @__PURE__ */ (0,
|
|
3445
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
3396
3446
|
"path",
|
|
3397
3447
|
{
|
|
3398
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",
|
|
@@ -3403,14 +3453,14 @@ var MediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
|
3403
3453
|
);
|
|
3404
3454
|
|
|
3405
3455
|
// src/components/Icon/icons/MenuIcon.tsx
|
|
3406
|
-
var
|
|
3407
|
-
var MenuIcon = (props) => /* @__PURE__ */ (0,
|
|
3456
|
+
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
3457
|
+
var MenuIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
3408
3458
|
"svg",
|
|
3409
3459
|
{
|
|
3410
3460
|
...props,
|
|
3411
3461
|
viewBox: "0 0 24 24",
|
|
3412
3462
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3413
|
-
children: /* @__PURE__ */ (0,
|
|
3463
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
3414
3464
|
"path",
|
|
3415
3465
|
{
|
|
3416
3466
|
clipRule: "evenodd",
|
|
@@ -3423,14 +3473,14 @@ var MenuIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
|
3423
3473
|
);
|
|
3424
3474
|
|
|
3425
3475
|
// src/components/Icon/icons/MicIcon.tsx
|
|
3426
|
-
var
|
|
3427
|
-
var MicIcon = (props) => /* @__PURE__ */ (0,
|
|
3476
|
+
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
3477
|
+
var MicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
3428
3478
|
"svg",
|
|
3429
3479
|
{
|
|
3430
3480
|
...props,
|
|
3431
3481
|
viewBox: "0 0 24 24",
|
|
3432
3482
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3433
|
-
children: /* @__PURE__ */ (0,
|
|
3483
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
3434
3484
|
"path",
|
|
3435
3485
|
{
|
|
3436
3486
|
clipRule: "evenodd",
|
|
@@ -3443,14 +3493,14 @@ var MicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
|
3443
3493
|
);
|
|
3444
3494
|
|
|
3445
3495
|
// src/components/Icon/icons/MicOffIcon.tsx
|
|
3446
|
-
var
|
|
3447
|
-
var MicOffIcon = (props) => /* @__PURE__ */ (0,
|
|
3496
|
+
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
3497
|
+
var MicOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
3448
3498
|
"svg",
|
|
3449
3499
|
{
|
|
3450
3500
|
...props,
|
|
3451
3501
|
viewBox: "0 0 24 24",
|
|
3452
3502
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3453
|
-
children: /* @__PURE__ */ (0,
|
|
3503
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
3454
3504
|
"path",
|
|
3455
3505
|
{
|
|
3456
3506
|
clipRule: "evenodd",
|
|
@@ -3463,14 +3513,14 @@ var MicOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
|
3463
3513
|
);
|
|
3464
3514
|
|
|
3465
3515
|
// src/components/Icon/icons/MinimizeIcon.tsx
|
|
3466
|
-
var
|
|
3467
|
-
var MinimizeIcon = (props) => /* @__PURE__ */ (0,
|
|
3516
|
+
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
3517
|
+
var MinimizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
3468
3518
|
"svg",
|
|
3469
3519
|
{
|
|
3470
3520
|
...props,
|
|
3471
3521
|
viewBox: "0 0 24 24",
|
|
3472
3522
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3473
|
-
children: /* @__PURE__ */ (0,
|
|
3523
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
3474
3524
|
"path",
|
|
3475
3525
|
{
|
|
3476
3526
|
clipRule: "evenodd",
|
|
@@ -3483,14 +3533,14 @@ var MinimizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
|
3483
3533
|
);
|
|
3484
3534
|
|
|
3485
3535
|
// src/components/Icon/icons/MinusCircleIcon.tsx
|
|
3486
|
-
var
|
|
3487
|
-
var MinusCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
3536
|
+
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
3537
|
+
var MinusCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
3488
3538
|
"svg",
|
|
3489
3539
|
{
|
|
3490
3540
|
...props,
|
|
3491
3541
|
viewBox: "0 0 24 24",
|
|
3492
3542
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3493
|
-
children: /* @__PURE__ */ (0,
|
|
3543
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
3494
3544
|
"path",
|
|
3495
3545
|
{
|
|
3496
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",
|
|
@@ -3501,14 +3551,14 @@ var MinusCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
|
3501
3551
|
);
|
|
3502
3552
|
|
|
3503
3553
|
// src/components/Icon/icons/MobileIcon.tsx
|
|
3504
|
-
var
|
|
3505
|
-
var MobileIcon = (props) => /* @__PURE__ */ (0,
|
|
3554
|
+
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
3555
|
+
var MobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
3506
3556
|
"svg",
|
|
3507
3557
|
{
|
|
3508
3558
|
...props,
|
|
3509
3559
|
viewBox: "0 0 24 24",
|
|
3510
3560
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3511
|
-
children: /* @__PURE__ */ (0,
|
|
3561
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
3512
3562
|
"path",
|
|
3513
3563
|
{
|
|
3514
3564
|
clipRule: "evenodd",
|
|
@@ -3521,14 +3571,14 @@ var MobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
|
3521
3571
|
);
|
|
3522
3572
|
|
|
3523
3573
|
// src/components/Icon/icons/MoreOptionsIcon.tsx
|
|
3524
|
-
var
|
|
3525
|
-
var MoreOptionsIcon = (props) => /* @__PURE__ */ (0,
|
|
3574
|
+
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
3575
|
+
var MoreOptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
3526
3576
|
"svg",
|
|
3527
3577
|
{
|
|
3528
3578
|
...props,
|
|
3529
3579
|
viewBox: "0 0 24 24",
|
|
3530
3580
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3531
|
-
children: /* @__PURE__ */ (0,
|
|
3581
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
3532
3582
|
"path",
|
|
3533
3583
|
{
|
|
3534
3584
|
clipRule: "evenodd",
|
|
@@ -3541,14 +3591,14 @@ var MoreOptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
|
3541
3591
|
);
|
|
3542
3592
|
|
|
3543
3593
|
// src/components/Icon/icons/MoveLeftIcon.tsx
|
|
3544
|
-
var
|
|
3545
|
-
var MoveLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
3594
|
+
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
3595
|
+
var MoveLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
3546
3596
|
"svg",
|
|
3547
3597
|
{
|
|
3548
3598
|
...props,
|
|
3549
3599
|
viewBox: "0 0 24 24",
|
|
3550
3600
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3551
|
-
children: /* @__PURE__ */ (0,
|
|
3601
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
3552
3602
|
"path",
|
|
3553
3603
|
{
|
|
3554
3604
|
clipRule: "evenodd",
|
|
@@ -3561,14 +3611,14 @@ var MoveLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
|
3561
3611
|
);
|
|
3562
3612
|
|
|
3563
3613
|
// src/components/Icon/icons/MoveRightIcon.tsx
|
|
3564
|
-
var
|
|
3565
|
-
var MoveRightIcon = (props) => /* @__PURE__ */ (0,
|
|
3614
|
+
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
3615
|
+
var MoveRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
3566
3616
|
"svg",
|
|
3567
3617
|
{
|
|
3568
3618
|
...props,
|
|
3569
3619
|
viewBox: "0 0 24 24",
|
|
3570
3620
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3571
|
-
children: /* @__PURE__ */ (0,
|
|
3621
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
3572
3622
|
"path",
|
|
3573
3623
|
{
|
|
3574
3624
|
clipRule: "evenodd",
|
|
@@ -3581,14 +3631,14 @@ var MoveRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
|
3581
3631
|
);
|
|
3582
3632
|
|
|
3583
3633
|
// src/components/Icon/icons/MusicIcon.tsx
|
|
3584
|
-
var
|
|
3585
|
-
var MusicIcon = (props) => /* @__PURE__ */ (0,
|
|
3634
|
+
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
3635
|
+
var MusicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3586
3636
|
"svg",
|
|
3587
3637
|
{
|
|
3588
3638
|
...props,
|
|
3589
3639
|
viewBox: "0 0 24 24",
|
|
3590
3640
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3591
|
-
children: /* @__PURE__ */ (0,
|
|
3641
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3592
3642
|
"path",
|
|
3593
3643
|
{
|
|
3594
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",
|
|
@@ -3599,14 +3649,14 @@ var MusicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
|
3599
3649
|
);
|
|
3600
3650
|
|
|
3601
3651
|
// src/components/Icon/icons/OpenNewIcon.tsx
|
|
3602
|
-
var
|
|
3603
|
-
var OpenNewIcon = (props) => /* @__PURE__ */ (0,
|
|
3652
|
+
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
3653
|
+
var OpenNewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3604
3654
|
"svg",
|
|
3605
3655
|
{
|
|
3606
3656
|
...props,
|
|
3607
3657
|
viewBox: "0 0 24 24",
|
|
3608
3658
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3609
|
-
children: /* @__PURE__ */ (0,
|
|
3659
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3610
3660
|
"path",
|
|
3611
3661
|
{
|
|
3612
3662
|
clipRule: "evenodd",
|
|
@@ -3619,14 +3669,14 @@ var OpenNewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
|
3619
3669
|
);
|
|
3620
3670
|
|
|
3621
3671
|
// src/components/Icon/icons/OverviewIcon.tsx
|
|
3622
|
-
var
|
|
3623
|
-
var OverviewIcon = (props) => /* @__PURE__ */ (0,
|
|
3672
|
+
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
3673
|
+
var OverviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
3624
3674
|
"svg",
|
|
3625
3675
|
{
|
|
3626
3676
|
...props,
|
|
3627
3677
|
viewBox: "0 0 24 24",
|
|
3628
3678
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3629
|
-
children: /* @__PURE__ */ (0,
|
|
3679
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
3630
3680
|
"path",
|
|
3631
3681
|
{
|
|
3632
3682
|
clipRule: "evenodd",
|
|
@@ -3639,14 +3689,14 @@ var OverviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
|
3639
3689
|
);
|
|
3640
3690
|
|
|
3641
3691
|
// src/components/Icon/icons/PageIcon.tsx
|
|
3642
|
-
var
|
|
3643
|
-
var PageIcon = (props) => /* @__PURE__ */ (0,
|
|
3692
|
+
var import_jsx_runtime99 = require("react/jsx-runtime");
|
|
3693
|
+
var PageIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
3644
3694
|
"svg",
|
|
3645
3695
|
{
|
|
3646
3696
|
...props,
|
|
3647
3697
|
viewBox: "0 0 24 24",
|
|
3648
3698
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3649
|
-
children: /* @__PURE__ */ (0,
|
|
3699
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
3650
3700
|
"path",
|
|
3651
3701
|
{
|
|
3652
3702
|
clipRule: "evenodd",
|
|
@@ -3659,14 +3709,14 @@ var PageIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
|
3659
3709
|
);
|
|
3660
3710
|
|
|
3661
3711
|
// src/components/Icon/icons/PanelLeftIcon.tsx
|
|
3662
|
-
var
|
|
3663
|
-
var PanelLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
3712
|
+
var import_jsx_runtime100 = require("react/jsx-runtime");
|
|
3713
|
+
var PanelLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
3664
3714
|
"svg",
|
|
3665
3715
|
{
|
|
3666
3716
|
...props,
|
|
3667
3717
|
viewBox: "0 0 24 24",
|
|
3668
3718
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3669
|
-
children: /* @__PURE__ */ (0,
|
|
3719
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
3670
3720
|
"path",
|
|
3671
3721
|
{
|
|
3672
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",
|
|
@@ -3677,14 +3727,14 @@ var PanelLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
|
3677
3727
|
);
|
|
3678
3728
|
|
|
3679
3729
|
// src/components/Icon/icons/PanelRightIcon.tsx
|
|
3680
|
-
var
|
|
3681
|
-
var PanelRightIcon = (props) => /* @__PURE__ */ (0,
|
|
3730
|
+
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
3731
|
+
var PanelRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
3682
3732
|
"svg",
|
|
3683
3733
|
{
|
|
3684
3734
|
...props,
|
|
3685
3735
|
viewBox: "0 0 24 24",
|
|
3686
3736
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3687
|
-
children: /* @__PURE__ */ (0,
|
|
3737
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
3688
3738
|
"path",
|
|
3689
3739
|
{
|
|
3690
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",
|
|
@@ -3695,14 +3745,14 @@ var PanelRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
|
3695
3745
|
);
|
|
3696
3746
|
|
|
3697
3747
|
// src/components/Icon/icons/PanelUpIcon.tsx
|
|
3698
|
-
var
|
|
3699
|
-
var PanelUpIcon = (props) => /* @__PURE__ */ (0,
|
|
3748
|
+
var import_jsx_runtime102 = require("react/jsx-runtime");
|
|
3749
|
+
var PanelUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
3700
3750
|
"svg",
|
|
3701
3751
|
{
|
|
3702
3752
|
...props,
|
|
3703
3753
|
viewBox: "0 0 24 24",
|
|
3704
3754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3705
|
-
children: /* @__PURE__ */ (0,
|
|
3755
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
3706
3756
|
"path",
|
|
3707
3757
|
{
|
|
3708
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",
|
|
@@ -3713,14 +3763,14 @@ var PanelUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
|
3713
3763
|
);
|
|
3714
3764
|
|
|
3715
3765
|
// src/components/Icon/icons/PasswordIcon.tsx
|
|
3716
|
-
var
|
|
3717
|
-
var PasswordIcon = (props) => /* @__PURE__ */ (0,
|
|
3766
|
+
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
3767
|
+
var PasswordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
3718
3768
|
"svg",
|
|
3719
3769
|
{
|
|
3720
3770
|
...props,
|
|
3721
3771
|
viewBox: "0 0 24 24",
|
|
3722
3772
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3723
|
-
children: /* @__PURE__ */ (0,
|
|
3773
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
3724
3774
|
"path",
|
|
3725
3775
|
{
|
|
3726
3776
|
clipRule: "evenodd",
|
|
@@ -3733,14 +3783,14 @@ var PasswordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
|
3733
3783
|
);
|
|
3734
3784
|
|
|
3735
3785
|
// src/components/Icon/icons/PencilIcon.tsx
|
|
3736
|
-
var
|
|
3737
|
-
var PencilIcon = (props) => /* @__PURE__ */ (0,
|
|
3786
|
+
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
3787
|
+
var PencilIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
3738
3788
|
"svg",
|
|
3739
3789
|
{
|
|
3740
3790
|
...props,
|
|
3741
3791
|
viewBox: "0 0 24 24",
|
|
3742
3792
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3743
|
-
children: /* @__PURE__ */ (0,
|
|
3793
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
3744
3794
|
"path",
|
|
3745
3795
|
{
|
|
3746
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",
|
|
@@ -3751,14 +3801,14 @@ var PencilIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
|
3751
3801
|
);
|
|
3752
3802
|
|
|
3753
3803
|
// src/components/Icon/icons/PeopleIcon.tsx
|
|
3754
|
-
var
|
|
3755
|
-
var PeopleIcon = (props) => /* @__PURE__ */ (0,
|
|
3804
|
+
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
3805
|
+
var PeopleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
3756
3806
|
"svg",
|
|
3757
3807
|
{
|
|
3758
3808
|
...props,
|
|
3759
3809
|
viewBox: "0 0 24 24",
|
|
3760
3810
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3761
|
-
children: /* @__PURE__ */ (0,
|
|
3811
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
3762
3812
|
"path",
|
|
3763
3813
|
{
|
|
3764
3814
|
clipRule: "evenodd",
|
|
@@ -3771,14 +3821,14 @@ var PeopleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
|
3771
3821
|
);
|
|
3772
3822
|
|
|
3773
3823
|
// src/components/Icon/icons/PinIcon.tsx
|
|
3774
|
-
var
|
|
3775
|
-
var PinIcon = (props) => /* @__PURE__ */ (0,
|
|
3824
|
+
var import_jsx_runtime106 = require("react/jsx-runtime");
|
|
3825
|
+
var PinIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
3776
3826
|
"svg",
|
|
3777
3827
|
{
|
|
3778
3828
|
...props,
|
|
3779
3829
|
viewBox: "0 0 24 24",
|
|
3780
3830
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3781
|
-
children: /* @__PURE__ */ (0,
|
|
3831
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
3782
3832
|
"path",
|
|
3783
3833
|
{
|
|
3784
3834
|
clipRule: "evenodd",
|
|
@@ -3791,14 +3841,14 @@ var PinIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
|
3791
3841
|
);
|
|
3792
3842
|
|
|
3793
3843
|
// src/components/Icon/icons/PinSlashIcon.tsx
|
|
3794
|
-
var
|
|
3795
|
-
var PinSlashIcon = (props) => /* @__PURE__ */ (0,
|
|
3844
|
+
var import_jsx_runtime107 = require("react/jsx-runtime");
|
|
3845
|
+
var PinSlashIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
3796
3846
|
"svg",
|
|
3797
3847
|
{
|
|
3798
3848
|
...props,
|
|
3799
3849
|
viewBox: "0 0 24 24",
|
|
3800
3850
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3801
|
-
children: /* @__PURE__ */ (0,
|
|
3851
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
3802
3852
|
"path",
|
|
3803
3853
|
{
|
|
3804
3854
|
clipRule: "evenodd",
|
|
@@ -3811,14 +3861,14 @@ var PinSlashIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
|
3811
3861
|
);
|
|
3812
3862
|
|
|
3813
3863
|
// src/components/Icon/icons/PlayIcon.tsx
|
|
3814
|
-
var
|
|
3815
|
-
var PlayIcon = (props) => /* @__PURE__ */ (0,
|
|
3864
|
+
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
3865
|
+
var PlayIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
3816
3866
|
"svg",
|
|
3817
3867
|
{
|
|
3818
3868
|
...props,
|
|
3819
3869
|
viewBox: "0 0 24 24",
|
|
3820
3870
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3821
|
-
children: /* @__PURE__ */ (0,
|
|
3871
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
3822
3872
|
"path",
|
|
3823
3873
|
{
|
|
3824
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",
|
|
@@ -3829,14 +3879,14 @@ var PlayIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
|
3829
3879
|
);
|
|
3830
3880
|
|
|
3831
3881
|
// src/components/Icon/icons/PlayerIcon.tsx
|
|
3832
|
-
var
|
|
3833
|
-
var PlayerIcon = (props) => /* @__PURE__ */ (0,
|
|
3882
|
+
var import_jsx_runtime109 = require("react/jsx-runtime");
|
|
3883
|
+
var PlayerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
3834
3884
|
"svg",
|
|
3835
3885
|
{
|
|
3836
3886
|
...props,
|
|
3837
3887
|
viewBox: "0 0 24 24",
|
|
3838
3888
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3839
|
-
children: /* @__PURE__ */ (0,
|
|
3889
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
3840
3890
|
"path",
|
|
3841
3891
|
{
|
|
3842
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",
|
|
@@ -3847,14 +3897,14 @@ var PlayerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
|
3847
3897
|
);
|
|
3848
3898
|
|
|
3849
3899
|
// src/components/Icon/icons/PlusIcon.tsx
|
|
3850
|
-
var
|
|
3851
|
-
var PlusIcon = (props) => /* @__PURE__ */ (0,
|
|
3900
|
+
var import_jsx_runtime110 = require("react/jsx-runtime");
|
|
3901
|
+
var PlusIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
3852
3902
|
"svg",
|
|
3853
3903
|
{
|
|
3854
3904
|
...props,
|
|
3855
3905
|
viewBox: "0 0 24 24",
|
|
3856
3906
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3857
|
-
children: /* @__PURE__ */ (0,
|
|
3907
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
3858
3908
|
"path",
|
|
3859
3909
|
{
|
|
3860
3910
|
clipRule: "evenodd",
|
|
@@ -3867,14 +3917,14 @@ var PlusIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
|
3867
3917
|
);
|
|
3868
3918
|
|
|
3869
3919
|
// src/components/Icon/icons/PodcastIcon.tsx
|
|
3870
|
-
var
|
|
3871
|
-
var PodcastIcon = (props) => /* @__PURE__ */ (0,
|
|
3920
|
+
var import_jsx_runtime111 = require("react/jsx-runtime");
|
|
3921
|
+
var PodcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
3872
3922
|
"svg",
|
|
3873
3923
|
{
|
|
3874
3924
|
...props,
|
|
3875
3925
|
viewBox: "0 0 24 24",
|
|
3876
3926
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3877
|
-
children: /* @__PURE__ */ (0,
|
|
3927
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
3878
3928
|
"path",
|
|
3879
3929
|
{
|
|
3880
3930
|
clipRule: "evenodd",
|
|
@@ -3887,14 +3937,14 @@ var PodcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
|
3887
3937
|
);
|
|
3888
3938
|
|
|
3889
3939
|
// src/components/Icon/icons/PreviewIcon.tsx
|
|
3890
|
-
var
|
|
3891
|
-
var PreviewIcon = (props) => /* @__PURE__ */ (0,
|
|
3940
|
+
var import_jsx_runtime112 = require("react/jsx-runtime");
|
|
3941
|
+
var PreviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
3892
3942
|
"svg",
|
|
3893
3943
|
{
|
|
3894
3944
|
...props,
|
|
3895
3945
|
viewBox: "0 0 24 24",
|
|
3896
3946
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3897
|
-
children: /* @__PURE__ */ (0,
|
|
3947
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
3898
3948
|
"path",
|
|
3899
3949
|
{
|
|
3900
3950
|
clipRule: "evenodd",
|
|
@@ -3907,14 +3957,14 @@ var PreviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
|
3907
3957
|
);
|
|
3908
3958
|
|
|
3909
3959
|
// src/components/Icon/icons/PrivateUserSessionsIcon.tsx
|
|
3910
|
-
var
|
|
3911
|
-
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0,
|
|
3960
|
+
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
3961
|
+
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
3912
3962
|
"svg",
|
|
3913
3963
|
{
|
|
3914
3964
|
...props,
|
|
3915
3965
|
viewBox: "0 0 24 24",
|
|
3916
3966
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3917
|
-
children: /* @__PURE__ */ (0,
|
|
3967
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
3918
3968
|
"path",
|
|
3919
3969
|
{
|
|
3920
3970
|
clipRule: "evenodd",
|
|
@@ -3927,15 +3977,15 @@ var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime1
|
|
|
3927
3977
|
);
|
|
3928
3978
|
|
|
3929
3979
|
// src/components/Icon/icons/ProjectIcon.tsx
|
|
3930
|
-
var
|
|
3931
|
-
var ProjectIcon = (props) => /* @__PURE__ */ (0,
|
|
3980
|
+
var import_jsx_runtime114 = require("react/jsx-runtime");
|
|
3981
|
+
var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
|
|
3932
3982
|
"svg",
|
|
3933
3983
|
{
|
|
3934
3984
|
...props,
|
|
3935
3985
|
viewBox: "0 0 24 24",
|
|
3936
3986
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3937
3987
|
children: [
|
|
3938
|
-
/* @__PURE__ */ (0,
|
|
3988
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
3939
3989
|
"path",
|
|
3940
3990
|
{
|
|
3941
3991
|
clipRule: "evenodd",
|
|
@@ -3944,7 +3994,7 @@ var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
|
|
|
3944
3994
|
fillRule: "evenodd"
|
|
3945
3995
|
}
|
|
3946
3996
|
),
|
|
3947
|
-
/* @__PURE__ */ (0,
|
|
3997
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
3948
3998
|
"path",
|
|
3949
3999
|
{
|
|
3950
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",
|
|
@@ -3956,14 +4006,14 @@ var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
|
|
|
3956
4006
|
);
|
|
3957
4007
|
|
|
3958
4008
|
// src/components/Icon/icons/PropertiesIcon.tsx
|
|
3959
|
-
var
|
|
3960
|
-
var PropertiesIcon = (props) => /* @__PURE__ */ (0,
|
|
4009
|
+
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
4010
|
+
var PropertiesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3961
4011
|
"svg",
|
|
3962
4012
|
{
|
|
3963
4013
|
...props,
|
|
3964
4014
|
viewBox: "0 0 24 24",
|
|
3965
4015
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3966
|
-
children: /* @__PURE__ */ (0,
|
|
4016
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3967
4017
|
"path",
|
|
3968
4018
|
{
|
|
3969
4019
|
clipRule: "evenodd",
|
|
@@ -3976,14 +4026,14 @@ var PropertiesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
|
3976
4026
|
);
|
|
3977
4027
|
|
|
3978
4028
|
// src/components/Icon/icons/QuestionMarkIcon.tsx
|
|
3979
|
-
var
|
|
3980
|
-
var QuestionMarkIcon = (props) => /* @__PURE__ */ (0,
|
|
4029
|
+
var import_jsx_runtime116 = require("react/jsx-runtime");
|
|
4030
|
+
var QuestionMarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
3981
4031
|
"svg",
|
|
3982
4032
|
{
|
|
3983
4033
|
...props,
|
|
3984
4034
|
viewBox: "0 0 24 24",
|
|
3985
4035
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3986
|
-
children: /* @__PURE__ */ (0,
|
|
4036
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
3987
4037
|
"path",
|
|
3988
4038
|
{
|
|
3989
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",
|
|
@@ -3994,14 +4044,14 @@ var QuestionMarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)
|
|
|
3994
4044
|
);
|
|
3995
4045
|
|
|
3996
4046
|
// src/components/Icon/icons/ReactIcon.tsx
|
|
3997
|
-
var
|
|
3998
|
-
var ReactIcon = (props) => /* @__PURE__ */ (0,
|
|
4047
|
+
var import_jsx_runtime117 = require("react/jsx-runtime");
|
|
4048
|
+
var ReactIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
3999
4049
|
"svg",
|
|
4000
4050
|
{
|
|
4001
4051
|
...props,
|
|
4002
4052
|
viewBox: "0 0 24 24",
|
|
4003
4053
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4004
|
-
children: /* @__PURE__ */ (0,
|
|
4054
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
4005
4055
|
"path",
|
|
4006
4056
|
{
|
|
4007
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",
|
|
@@ -4012,14 +4062,14 @@ var ReactIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
|
4012
4062
|
);
|
|
4013
4063
|
|
|
4014
4064
|
// src/components/Icon/icons/RecordIcon.tsx
|
|
4015
|
-
var
|
|
4016
|
-
var RecordIcon = (props) => /* @__PURE__ */ (0,
|
|
4065
|
+
var import_jsx_runtime118 = require("react/jsx-runtime");
|
|
4066
|
+
var RecordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
4017
4067
|
"svg",
|
|
4018
4068
|
{
|
|
4019
4069
|
...props,
|
|
4020
4070
|
viewBox: "0 0 24 24",
|
|
4021
4071
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4022
|
-
children: /* @__PURE__ */ (0,
|
|
4072
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
4023
4073
|
"path",
|
|
4024
4074
|
{
|
|
4025
4075
|
clipRule: "evenodd",
|
|
@@ -4032,14 +4082,14 @@ var RecordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
|
4032
4082
|
);
|
|
4033
4083
|
|
|
4034
4084
|
// src/components/Icon/icons/RedoIcon.tsx
|
|
4035
|
-
var
|
|
4036
|
-
var RedoIcon = (props) => /* @__PURE__ */ (0,
|
|
4085
|
+
var import_jsx_runtime119 = require("react/jsx-runtime");
|
|
4086
|
+
var RedoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
4037
4087
|
"svg",
|
|
4038
4088
|
{
|
|
4039
4089
|
...props,
|
|
4040
4090
|
viewBox: "0 0 24 24",
|
|
4041
4091
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4042
|
-
children: /* @__PURE__ */ (0,
|
|
4092
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
4043
4093
|
"path",
|
|
4044
4094
|
{
|
|
4045
4095
|
clipRule: "evenodd",
|
|
@@ -4052,14 +4102,14 @@ var RedoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
|
4052
4102
|
);
|
|
4053
4103
|
|
|
4054
4104
|
// src/components/Icon/icons/ReplaceIcon.tsx
|
|
4055
|
-
var
|
|
4056
|
-
var ReplaceIcon = (props) => /* @__PURE__ */ (0,
|
|
4105
|
+
var import_jsx_runtime120 = require("react/jsx-runtime");
|
|
4106
|
+
var ReplaceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
4057
4107
|
"svg",
|
|
4058
4108
|
{
|
|
4059
4109
|
...props,
|
|
4060
4110
|
viewBox: "0 0 24 24",
|
|
4061
4111
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4062
|
-
children: /* @__PURE__ */ (0,
|
|
4112
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
4063
4113
|
"path",
|
|
4064
4114
|
{
|
|
4065
4115
|
clipRule: "evenodd",
|
|
@@ -4072,14 +4122,14 @@ var ReplaceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
|
4072
4122
|
);
|
|
4073
4123
|
|
|
4074
4124
|
// src/components/Icon/icons/ReplyIcon.tsx
|
|
4075
|
-
var
|
|
4076
|
-
var ReplyIcon = (props) => /* @__PURE__ */ (0,
|
|
4125
|
+
var import_jsx_runtime121 = require("react/jsx-runtime");
|
|
4126
|
+
var ReplyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
4077
4127
|
"svg",
|
|
4078
4128
|
{
|
|
4079
4129
|
...props,
|
|
4080
4130
|
viewBox: "0 0 24 24",
|
|
4081
4131
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4082
|
-
children: /* @__PURE__ */ (0,
|
|
4132
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
4083
4133
|
"path",
|
|
4084
4134
|
{
|
|
4085
4135
|
clipRule: "evenodd",
|
|
@@ -4092,14 +4142,14 @@ var ReplyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
|
4092
4142
|
);
|
|
4093
4143
|
|
|
4094
4144
|
// src/components/Icon/icons/SaveAsCopyIcon.tsx
|
|
4095
|
-
var
|
|
4096
|
-
var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0,
|
|
4145
|
+
var import_jsx_runtime122 = require("react/jsx-runtime");
|
|
4146
|
+
var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
4097
4147
|
"svg",
|
|
4098
4148
|
{
|
|
4099
4149
|
...props,
|
|
4100
4150
|
viewBox: "0 0 24 24",
|
|
4101
4151
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4102
|
-
children: /* @__PURE__ */ (0,
|
|
4152
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
4103
4153
|
"path",
|
|
4104
4154
|
{
|
|
4105
4155
|
clipRule: "evenodd",
|
|
@@ -4112,14 +4162,14 @@ var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
|
4112
4162
|
);
|
|
4113
4163
|
|
|
4114
4164
|
// src/components/Icon/icons/SaveIcon.tsx
|
|
4115
|
-
var
|
|
4116
|
-
var SaveIcon = (props) => /* @__PURE__ */ (0,
|
|
4165
|
+
var import_jsx_runtime123 = require("react/jsx-runtime");
|
|
4166
|
+
var SaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
4117
4167
|
"svg",
|
|
4118
4168
|
{
|
|
4119
4169
|
...props,
|
|
4120
4170
|
viewBox: "0 0 24 24",
|
|
4121
4171
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4122
|
-
children: /* @__PURE__ */ (0,
|
|
4172
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
4123
4173
|
"path",
|
|
4124
4174
|
{
|
|
4125
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",
|
|
@@ -4130,14 +4180,14 @@ var SaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
|
4130
4180
|
);
|
|
4131
4181
|
|
|
4132
4182
|
// src/components/Icon/icons/ScissorsIcon.tsx
|
|
4133
|
-
var
|
|
4134
|
-
var ScissorsIcon = (props) => /* @__PURE__ */ (0,
|
|
4183
|
+
var import_jsx_runtime124 = require("react/jsx-runtime");
|
|
4184
|
+
var ScissorsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
4135
4185
|
"svg",
|
|
4136
4186
|
{
|
|
4137
4187
|
...props,
|
|
4138
4188
|
viewBox: "0 0 24 24",
|
|
4139
4189
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4140
|
-
children: /* @__PURE__ */ (0,
|
|
4190
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
4141
4191
|
"path",
|
|
4142
4192
|
{
|
|
4143
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",
|
|
@@ -4148,14 +4198,14 @@ var ScissorsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
|
4148
4198
|
);
|
|
4149
4199
|
|
|
4150
4200
|
// src/components/Icon/icons/ScreenshareOffIcon.tsx
|
|
4151
|
-
var
|
|
4152
|
-
var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0,
|
|
4201
|
+
var import_jsx_runtime125 = require("react/jsx-runtime");
|
|
4202
|
+
var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
|
|
4153
4203
|
"svg",
|
|
4154
4204
|
{
|
|
4155
4205
|
...props,
|
|
4156
4206
|
viewBox: "0 0 24 24",
|
|
4157
4207
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4158
|
-
children: /* @__PURE__ */ (0,
|
|
4208
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
|
|
4159
4209
|
"path",
|
|
4160
4210
|
{
|
|
4161
4211
|
clipRule: "evenodd",
|
|
@@ -4168,14 +4218,14 @@ var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime124.js
|
|
|
4168
4218
|
);
|
|
4169
4219
|
|
|
4170
4220
|
// src/components/Icon/icons/ScreenshareOnIcon.tsx
|
|
4171
|
-
var
|
|
4172
|
-
var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0,
|
|
4221
|
+
var import_jsx_runtime126 = require("react/jsx-runtime");
|
|
4222
|
+
var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
4173
4223
|
"svg",
|
|
4174
4224
|
{
|
|
4175
4225
|
...props,
|
|
4176
4226
|
viewBox: "0 0 24 24",
|
|
4177
4227
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4178
|
-
children: /* @__PURE__ */ (0,
|
|
4228
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
4179
4229
|
"path",
|
|
4180
4230
|
{
|
|
4181
4231
|
clipRule: "evenodd",
|
|
@@ -4188,14 +4238,14 @@ var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime125.jsx
|
|
|
4188
4238
|
);
|
|
4189
4239
|
|
|
4190
4240
|
// src/components/Icon/icons/SearchIcon.tsx
|
|
4191
|
-
var
|
|
4192
|
-
var SearchIcon = (props) => /* @__PURE__ */ (0,
|
|
4241
|
+
var import_jsx_runtime127 = require("react/jsx-runtime");
|
|
4242
|
+
var SearchIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
4193
4243
|
"svg",
|
|
4194
4244
|
{
|
|
4195
4245
|
...props,
|
|
4196
4246
|
viewBox: "0 0 24 24",
|
|
4197
4247
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4198
|
-
children: /* @__PURE__ */ (0,
|
|
4248
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
4199
4249
|
"path",
|
|
4200
4250
|
{
|
|
4201
4251
|
clipRule: "evenodd",
|
|
@@ -4208,14 +4258,14 @@ var SearchIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
|
4208
4258
|
);
|
|
4209
4259
|
|
|
4210
4260
|
// src/components/Icon/icons/SendIcon.tsx
|
|
4211
|
-
var
|
|
4212
|
-
var SendIcon = (props) => /* @__PURE__ */ (0,
|
|
4261
|
+
var import_jsx_runtime128 = require("react/jsx-runtime");
|
|
4262
|
+
var SendIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
4213
4263
|
"svg",
|
|
4214
4264
|
{
|
|
4215
4265
|
...props,
|
|
4216
4266
|
viewBox: "0 0 24 24",
|
|
4217
4267
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4218
|
-
children: /* @__PURE__ */ (0,
|
|
4268
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
4219
4269
|
"path",
|
|
4220
4270
|
{
|
|
4221
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",
|
|
@@ -4226,14 +4276,14 @@ var SendIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
|
4226
4276
|
);
|
|
4227
4277
|
|
|
4228
4278
|
// src/components/Icon/icons/ShapesIcon.tsx
|
|
4229
|
-
var
|
|
4230
|
-
var ShapesIcon = (props) => /* @__PURE__ */ (0,
|
|
4279
|
+
var import_jsx_runtime129 = require("react/jsx-runtime");
|
|
4280
|
+
var ShapesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
4231
4281
|
"svg",
|
|
4232
4282
|
{
|
|
4233
4283
|
...props,
|
|
4234
4284
|
viewBox: "0 0 24 24",
|
|
4235
4285
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4236
|
-
children: /* @__PURE__ */ (0,
|
|
4286
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
4237
4287
|
"path",
|
|
4238
4288
|
{
|
|
4239
4289
|
clipRule: "evenodd",
|
|
@@ -4246,14 +4296,14 @@ var ShapesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
|
4246
4296
|
);
|
|
4247
4297
|
|
|
4248
4298
|
// src/components/Icon/icons/ShareIcon.tsx
|
|
4249
|
-
var
|
|
4250
|
-
var ShareIcon = (props) => /* @__PURE__ */ (0,
|
|
4299
|
+
var import_jsx_runtime130 = require("react/jsx-runtime");
|
|
4300
|
+
var ShareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
4251
4301
|
"svg",
|
|
4252
4302
|
{
|
|
4253
4303
|
...props,
|
|
4254
4304
|
viewBox: "0 0 24 24",
|
|
4255
4305
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4256
|
-
children: /* @__PURE__ */ (0,
|
|
4306
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
4257
4307
|
"path",
|
|
4258
4308
|
{
|
|
4259
4309
|
clipRule: "evenodd",
|
|
@@ -4266,14 +4316,14 @@ var ShareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
|
4266
4316
|
);
|
|
4267
4317
|
|
|
4268
4318
|
// src/components/Icon/icons/SharingPermissionsIcon.tsx
|
|
4269
|
-
var
|
|
4270
|
-
var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4319
|
+
var import_jsx_runtime131 = require("react/jsx-runtime");
|
|
4320
|
+
var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
4271
4321
|
"svg",
|
|
4272
4322
|
{
|
|
4273
4323
|
...props,
|
|
4274
4324
|
viewBox: "0 0 24 24",
|
|
4275
4325
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4276
|
-
children: /* @__PURE__ */ (0,
|
|
4326
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
4277
4327
|
"path",
|
|
4278
4328
|
{
|
|
4279
4329
|
clipRule: "evenodd",
|
|
@@ -4286,14 +4336,14 @@ var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13
|
|
|
4286
4336
|
);
|
|
4287
4337
|
|
|
4288
4338
|
// src/components/Icon/icons/SimulcastIcon.tsx
|
|
4289
|
-
var
|
|
4290
|
-
var SimulcastIcon = (props) => /* @__PURE__ */ (0,
|
|
4339
|
+
var import_jsx_runtime132 = require("react/jsx-runtime");
|
|
4340
|
+
var SimulcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
4291
4341
|
"svg",
|
|
4292
4342
|
{
|
|
4293
4343
|
...props,
|
|
4294
4344
|
viewBox: "0 0 24 24",
|
|
4295
4345
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4296
|
-
children: /* @__PURE__ */ (0,
|
|
4346
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
4297
4347
|
"path",
|
|
4298
4348
|
{
|
|
4299
4349
|
clipRule: "evenodd",
|
|
@@ -4306,14 +4356,14 @@ var SimulcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
|
4306
4356
|
);
|
|
4307
4357
|
|
|
4308
4358
|
// src/components/Icon/icons/SortIcon.tsx
|
|
4309
|
-
var
|
|
4310
|
-
var SortIcon = (props) => /* @__PURE__ */ (0,
|
|
4359
|
+
var import_jsx_runtime133 = require("react/jsx-runtime");
|
|
4360
|
+
var SortIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
4311
4361
|
"svg",
|
|
4312
4362
|
{
|
|
4313
4363
|
...props,
|
|
4314
4364
|
viewBox: "0 0 24 24",
|
|
4315
4365
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4316
|
-
children: /* @__PURE__ */ (0,
|
|
4366
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
4317
4367
|
"path",
|
|
4318
4368
|
{
|
|
4319
4369
|
clipRule: "evenodd",
|
|
@@ -4326,14 +4376,14 @@ var SortIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
|
4326
4376
|
);
|
|
4327
4377
|
|
|
4328
4378
|
// src/components/Icon/icons/SparkleIcon.tsx
|
|
4329
|
-
var
|
|
4330
|
-
var SparkleIcon = (props) => /* @__PURE__ */ (0,
|
|
4379
|
+
var import_jsx_runtime134 = require("react/jsx-runtime");
|
|
4380
|
+
var SparkleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
4331
4381
|
"svg",
|
|
4332
4382
|
{
|
|
4333
4383
|
...props,
|
|
4334
4384
|
viewBox: "0 0 24 24",
|
|
4335
4385
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4336
|
-
children: /* @__PURE__ */ (0,
|
|
4386
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
4337
4387
|
"path",
|
|
4338
4388
|
{
|
|
4339
4389
|
clipRule: "evenodd",
|
|
@@ -4346,14 +4396,14 @@ var SparkleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
|
4346
4396
|
);
|
|
4347
4397
|
|
|
4348
4398
|
// src/components/Icon/icons/SpinnerIcon.tsx
|
|
4349
|
-
var
|
|
4350
|
-
var SpinnerIcon = (props) => /* @__PURE__ */ (0,
|
|
4399
|
+
var import_jsx_runtime135 = require("react/jsx-runtime");
|
|
4400
|
+
var SpinnerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
4351
4401
|
"svg",
|
|
4352
4402
|
{
|
|
4353
4403
|
...props,
|
|
4354
4404
|
viewBox: "0 0 24 24",
|
|
4355
4405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4356
|
-
children: /* @__PURE__ */ (0,
|
|
4406
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
4357
4407
|
"path",
|
|
4358
4408
|
{
|
|
4359
4409
|
clipRule: "evenodd",
|
|
@@ -4366,14 +4416,14 @@ var SpinnerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
|
4366
4416
|
);
|
|
4367
4417
|
|
|
4368
4418
|
// src/components/Icon/icons/StatsIcon.tsx
|
|
4369
|
-
var
|
|
4370
|
-
var StatsIcon = (props) => /* @__PURE__ */ (0,
|
|
4419
|
+
var import_jsx_runtime136 = require("react/jsx-runtime");
|
|
4420
|
+
var StatsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
4371
4421
|
"svg",
|
|
4372
4422
|
{
|
|
4373
4423
|
...props,
|
|
4374
4424
|
viewBox: "0 0 24 24",
|
|
4375
4425
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4376
|
-
children: /* @__PURE__ */ (0,
|
|
4426
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
4377
4427
|
"path",
|
|
4378
4428
|
{
|
|
4379
4429
|
clipRule: "evenodd",
|
|
@@ -4386,14 +4436,14 @@ var StatsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
|
4386
4436
|
);
|
|
4387
4437
|
|
|
4388
4438
|
// src/components/Icon/icons/SwitchAccountsIcon.tsx
|
|
4389
|
-
var
|
|
4390
|
-
var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0,
|
|
4439
|
+
var import_jsx_runtime137 = require("react/jsx-runtime");
|
|
4440
|
+
var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
4391
4441
|
"svg",
|
|
4392
4442
|
{
|
|
4393
4443
|
...props,
|
|
4394
4444
|
viewBox: "0 0 24 24",
|
|
4395
4445
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4396
|
-
children: /* @__PURE__ */ (0,
|
|
4446
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
4397
4447
|
"path",
|
|
4398
4448
|
{
|
|
4399
4449
|
clipRule: "evenodd",
|
|
@@ -4406,14 +4456,14 @@ var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime136.js
|
|
|
4406
4456
|
);
|
|
4407
4457
|
|
|
4408
4458
|
// src/components/Icon/icons/TagIcon.tsx
|
|
4409
|
-
var
|
|
4410
|
-
var TagIcon = (props) => /* @__PURE__ */ (0,
|
|
4459
|
+
var import_jsx_runtime138 = require("react/jsx-runtime");
|
|
4460
|
+
var TagIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
4411
4461
|
"svg",
|
|
4412
4462
|
{
|
|
4413
4463
|
...props,
|
|
4414
4464
|
viewBox: "0 0 24 24",
|
|
4415
4465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4416
|
-
children: /* @__PURE__ */ (0,
|
|
4466
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
4417
4467
|
"path",
|
|
4418
4468
|
{
|
|
4419
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",
|
|
@@ -4424,14 +4474,14 @@ var TagIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
|
4424
4474
|
);
|
|
4425
4475
|
|
|
4426
4476
|
// src/components/Icon/icons/ThumbnailIcon.tsx
|
|
4427
|
-
var
|
|
4428
|
-
var ThumbnailIcon = (props) => /* @__PURE__ */ (0,
|
|
4477
|
+
var import_jsx_runtime139 = require("react/jsx-runtime");
|
|
4478
|
+
var ThumbnailIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
4429
4479
|
"svg",
|
|
4430
4480
|
{
|
|
4431
4481
|
...props,
|
|
4432
4482
|
viewBox: "0 0 24 24",
|
|
4433
4483
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4434
|
-
children: /* @__PURE__ */ (0,
|
|
4484
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
4435
4485
|
"path",
|
|
4436
4486
|
{
|
|
4437
4487
|
clipRule: "evenodd",
|
|
@@ -4444,14 +4494,14 @@ var ThumbnailIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
|
4444
4494
|
);
|
|
4445
4495
|
|
|
4446
4496
|
// src/components/Icon/icons/ThumbsDownIcon.tsx
|
|
4447
|
-
var
|
|
4448
|
-
var ThumbsDownIcon = (props) => /* @__PURE__ */ (0,
|
|
4497
|
+
var import_jsx_runtime140 = require("react/jsx-runtime");
|
|
4498
|
+
var ThumbsDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
4449
4499
|
"svg",
|
|
4450
4500
|
{
|
|
4451
4501
|
...props,
|
|
4452
4502
|
viewBox: "0 0 24 24",
|
|
4453
4503
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4454
|
-
children: /* @__PURE__ */ (0,
|
|
4504
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
4455
4505
|
"path",
|
|
4456
4506
|
{
|
|
4457
4507
|
clipRule: "evenodd",
|
|
@@ -4464,14 +4514,14 @@ var ThumbsDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
|
4464
4514
|
);
|
|
4465
4515
|
|
|
4466
4516
|
// src/components/Icon/icons/ThumbsUpIcon.tsx
|
|
4467
|
-
var
|
|
4468
|
-
var ThumbsUpIcon = (props) => /* @__PURE__ */ (0,
|
|
4517
|
+
var import_jsx_runtime141 = require("react/jsx-runtime");
|
|
4518
|
+
var ThumbsUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
4469
4519
|
"svg",
|
|
4470
4520
|
{
|
|
4471
4521
|
...props,
|
|
4472
4522
|
viewBox: "0 0 24 24",
|
|
4473
4523
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4474
|
-
children: /* @__PURE__ */ (0,
|
|
4524
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
4475
4525
|
"path",
|
|
4476
4526
|
{
|
|
4477
4527
|
clipRule: "evenodd",
|
|
@@ -4484,14 +4534,14 @@ var ThumbsUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
|
4484
4534
|
);
|
|
4485
4535
|
|
|
4486
4536
|
// src/components/Icon/icons/TransitionsIcon.tsx
|
|
4487
|
-
var
|
|
4488
|
-
var TransitionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4537
|
+
var import_jsx_runtime142 = require("react/jsx-runtime");
|
|
4538
|
+
var TransitionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
4489
4539
|
"svg",
|
|
4490
4540
|
{
|
|
4491
4541
|
...props,
|
|
4492
4542
|
viewBox: "0 0 24 24",
|
|
4493
4543
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4494
|
-
children: /* @__PURE__ */ (0,
|
|
4544
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
4495
4545
|
"path",
|
|
4496
4546
|
{
|
|
4497
4547
|
clipRule: "evenodd",
|
|
@@ -4504,14 +4554,14 @@ var TransitionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
|
4504
4554
|
);
|
|
4505
4555
|
|
|
4506
4556
|
// src/components/Icon/icons/TrimIcon.tsx
|
|
4507
|
-
var
|
|
4508
|
-
var TrimIcon = (props) => /* @__PURE__ */ (0,
|
|
4557
|
+
var import_jsx_runtime143 = require("react/jsx-runtime");
|
|
4558
|
+
var TrimIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
4509
4559
|
"svg",
|
|
4510
4560
|
{
|
|
4511
4561
|
...props,
|
|
4512
4562
|
viewBox: "0 0 24 24",
|
|
4513
4563
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4514
|
-
children: /* @__PURE__ */ (0,
|
|
4564
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
4515
4565
|
"path",
|
|
4516
4566
|
{
|
|
4517
4567
|
clipRule: "evenodd",
|
|
@@ -4524,14 +4574,14 @@ var TrimIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
|
4524
4574
|
);
|
|
4525
4575
|
|
|
4526
4576
|
// src/components/Icon/icons/TurnstileIcon.tsx
|
|
4527
|
-
var
|
|
4528
|
-
var TurnstileIcon = (props) => /* @__PURE__ */ (0,
|
|
4577
|
+
var import_jsx_runtime144 = require("react/jsx-runtime");
|
|
4578
|
+
var TurnstileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
4529
4579
|
"svg",
|
|
4530
4580
|
{
|
|
4531
4581
|
...props,
|
|
4532
4582
|
viewBox: "0 0 24 24",
|
|
4533
4583
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4534
|
-
children: /* @__PURE__ */ (0,
|
|
4584
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
4535
4585
|
"path",
|
|
4536
4586
|
{
|
|
4537
4587
|
clipRule: "evenodd",
|
|
@@ -4544,14 +4594,14 @@ var TurnstileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
|
4544
4594
|
);
|
|
4545
4595
|
|
|
4546
4596
|
// src/components/Icon/icons/UndoIcon.tsx
|
|
4547
|
-
var
|
|
4548
|
-
var UndoIcon = (props) => /* @__PURE__ */ (0,
|
|
4597
|
+
var import_jsx_runtime145 = require("react/jsx-runtime");
|
|
4598
|
+
var UndoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
4549
4599
|
"svg",
|
|
4550
4600
|
{
|
|
4551
4601
|
...props,
|
|
4552
4602
|
viewBox: "0 0 24 24",
|
|
4553
4603
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4554
|
-
children: /* @__PURE__ */ (0,
|
|
4604
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
4555
4605
|
"path",
|
|
4556
4606
|
{
|
|
4557
4607
|
clipRule: "evenodd",
|
|
@@ -4564,14 +4614,14 @@ var UndoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
|
4564
4614
|
);
|
|
4565
4615
|
|
|
4566
4616
|
// src/components/Icon/icons/UnlockIcon.tsx
|
|
4567
|
-
var
|
|
4568
|
-
var UnlockIcon = (props) => /* @__PURE__ */ (0,
|
|
4617
|
+
var import_jsx_runtime146 = require("react/jsx-runtime");
|
|
4618
|
+
var UnlockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
4569
4619
|
"svg",
|
|
4570
4620
|
{
|
|
4571
4621
|
...props,
|
|
4572
4622
|
viewBox: "0 0 24 24",
|
|
4573
4623
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4574
|
-
children: /* @__PURE__ */ (0,
|
|
4624
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
4575
4625
|
"path",
|
|
4576
4626
|
{
|
|
4577
4627
|
clipRule: "evenodd",
|
|
@@ -4584,14 +4634,14 @@ var UnlockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
|
4584
4634
|
);
|
|
4585
4635
|
|
|
4586
4636
|
// src/components/Icon/icons/UploadIcon.tsx
|
|
4587
|
-
var
|
|
4588
|
-
var UploadIcon = (props) => /* @__PURE__ */ (0,
|
|
4637
|
+
var import_jsx_runtime147 = require("react/jsx-runtime");
|
|
4638
|
+
var UploadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
4589
4639
|
"svg",
|
|
4590
4640
|
{
|
|
4591
4641
|
...props,
|
|
4592
4642
|
viewBox: "0 0 24 24",
|
|
4593
4643
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4594
|
-
children: /* @__PURE__ */ (0,
|
|
4644
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
4595
4645
|
"path",
|
|
4596
4646
|
{
|
|
4597
4647
|
clipRule: "evenodd",
|
|
@@ -4604,14 +4654,14 @@ var UploadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
|
4604
4654
|
);
|
|
4605
4655
|
|
|
4606
4656
|
// src/components/Icon/icons/UsersPermissionsIcon.tsx
|
|
4607
|
-
var
|
|
4608
|
-
var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4657
|
+
var import_jsx_runtime148 = require("react/jsx-runtime");
|
|
4658
|
+
var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
4609
4659
|
"svg",
|
|
4610
4660
|
{
|
|
4611
4661
|
...props,
|
|
4612
4662
|
viewBox: "0 0 24 24",
|
|
4613
4663
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4614
|
-
children: /* @__PURE__ */ (0,
|
|
4664
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
4615
4665
|
"path",
|
|
4616
4666
|
{
|
|
4617
4667
|
clipRule: "evenodd",
|
|
@@ -4624,14 +4674,14 @@ var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime147.
|
|
|
4624
4674
|
);
|
|
4625
4675
|
|
|
4626
4676
|
// src/components/Icon/icons/ViewStreamIcon.tsx
|
|
4627
|
-
var
|
|
4628
|
-
var ViewStreamIcon = (props) => /* @__PURE__ */ (0,
|
|
4677
|
+
var import_jsx_runtime149 = require("react/jsx-runtime");
|
|
4678
|
+
var ViewStreamIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
4629
4679
|
"svg",
|
|
4630
4680
|
{
|
|
4631
4681
|
...props,
|
|
4632
4682
|
viewBox: "0 0 24 24",
|
|
4633
4683
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4634
|
-
children: /* @__PURE__ */ (0,
|
|
4684
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
4635
4685
|
"path",
|
|
4636
4686
|
{
|
|
4637
4687
|
clipRule: "evenodd",
|
|
@@ -4644,14 +4694,14 @@ var ViewStreamIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
|
4644
4694
|
);
|
|
4645
4695
|
|
|
4646
4696
|
// src/components/Icon/icons/VolumeIcon.tsx
|
|
4647
|
-
var
|
|
4648
|
-
var VolumeIcon = (props) => /* @__PURE__ */ (0,
|
|
4697
|
+
var import_jsx_runtime150 = require("react/jsx-runtime");
|
|
4698
|
+
var VolumeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
4649
4699
|
"svg",
|
|
4650
4700
|
{
|
|
4651
4701
|
...props,
|
|
4652
4702
|
viewBox: "0 0 24 24",
|
|
4653
4703
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4654
|
-
children: /* @__PURE__ */ (0,
|
|
4704
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
4655
4705
|
"path",
|
|
4656
4706
|
{
|
|
4657
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",
|
|
@@ -4662,14 +4712,14 @@ var VolumeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
|
4662
4712
|
);
|
|
4663
4713
|
|
|
4664
4714
|
// src/components/Icon/icons/VolumeOffIcon.tsx
|
|
4665
|
-
var
|
|
4666
|
-
var VolumeOffIcon = (props) => /* @__PURE__ */ (0,
|
|
4715
|
+
var import_jsx_runtime151 = require("react/jsx-runtime");
|
|
4716
|
+
var VolumeOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
4667
4717
|
"svg",
|
|
4668
4718
|
{
|
|
4669
4719
|
...props,
|
|
4670
4720
|
viewBox: "0 0 24 24",
|
|
4671
4721
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4672
|
-
children: /* @__PURE__ */ (0,
|
|
4722
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
4673
4723
|
"path",
|
|
4674
4724
|
{
|
|
4675
4725
|
clipRule: "evenodd",
|
|
@@ -4682,14 +4732,14 @@ var VolumeOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
|
4682
4732
|
);
|
|
4683
4733
|
|
|
4684
4734
|
// src/components/Icon/icons/VolumeUpIcon.tsx
|
|
4685
|
-
var
|
|
4686
|
-
var VolumeUpIcon = (props) => /* @__PURE__ */ (0,
|
|
4735
|
+
var import_jsx_runtime152 = require("react/jsx-runtime");
|
|
4736
|
+
var VolumeUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
4687
4737
|
"svg",
|
|
4688
4738
|
{
|
|
4689
4739
|
...props,
|
|
4690
4740
|
viewBox: "0 0 24 24",
|
|
4691
4741
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4692
|
-
children: /* @__PURE__ */ (0,
|
|
4742
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
4693
4743
|
"path",
|
|
4694
4744
|
{
|
|
4695
4745
|
clipRule: "evenodd",
|
|
@@ -4702,14 +4752,14 @@ var VolumeUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
|
4702
4752
|
);
|
|
4703
4753
|
|
|
4704
4754
|
// src/components/Icon/icons/VolumeXIcon.tsx
|
|
4705
|
-
var
|
|
4706
|
-
var VolumeXIcon = (props) => /* @__PURE__ */ (0,
|
|
4755
|
+
var import_jsx_runtime153 = require("react/jsx-runtime");
|
|
4756
|
+
var VolumeXIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
4707
4757
|
"svg",
|
|
4708
4758
|
{
|
|
4709
4759
|
...props,
|
|
4710
4760
|
viewBox: "0 0 24 24",
|
|
4711
4761
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4712
|
-
children: /* @__PURE__ */ (0,
|
|
4762
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
4713
4763
|
"path",
|
|
4714
4764
|
{
|
|
4715
4765
|
clipRule: "evenodd",
|
|
@@ -4722,14 +4772,14 @@ var VolumeXIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
|
4722
4772
|
);
|
|
4723
4773
|
|
|
4724
4774
|
// src/components/Icon/icons/WandIcon.tsx
|
|
4725
|
-
var
|
|
4726
|
-
var WandIcon = (props) => /* @__PURE__ */ (0,
|
|
4775
|
+
var import_jsx_runtime154 = require("react/jsx-runtime");
|
|
4776
|
+
var WandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
4727
4777
|
"svg",
|
|
4728
4778
|
{
|
|
4729
4779
|
...props,
|
|
4730
4780
|
viewBox: "0 0 24 24",
|
|
4731
4781
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4732
|
-
children: /* @__PURE__ */ (0,
|
|
4782
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
4733
4783
|
"path",
|
|
4734
4784
|
{
|
|
4735
4785
|
clipRule: "evenodd",
|
|
@@ -4742,14 +4792,14 @@ var WandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
|
4742
4792
|
);
|
|
4743
4793
|
|
|
4744
4794
|
// src/components/Icon/icons/ZoomInIcon.tsx
|
|
4745
|
-
var
|
|
4746
|
-
var ZoomInIcon = (props) => /* @__PURE__ */ (0,
|
|
4795
|
+
var import_jsx_runtime155 = require("react/jsx-runtime");
|
|
4796
|
+
var ZoomInIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
4747
4797
|
"svg",
|
|
4748
4798
|
{
|
|
4749
4799
|
...props,
|
|
4750
4800
|
viewBox: "0 0 24 24",
|
|
4751
4801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4752
|
-
children: /* @__PURE__ */ (0,
|
|
4802
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
4753
4803
|
"path",
|
|
4754
4804
|
{
|
|
4755
4805
|
clipRule: "evenodd",
|
|
@@ -4762,14 +4812,14 @@ var ZoomInIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
|
4762
4812
|
);
|
|
4763
4813
|
|
|
4764
4814
|
// src/components/Icon/icons/ZoomOutIcon.tsx
|
|
4765
|
-
var
|
|
4766
|
-
var ZoomOutIcon = (props) => /* @__PURE__ */ (0,
|
|
4815
|
+
var import_jsx_runtime156 = require("react/jsx-runtime");
|
|
4816
|
+
var ZoomOutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
4767
4817
|
"svg",
|
|
4768
4818
|
{
|
|
4769
4819
|
...props,
|
|
4770
4820
|
viewBox: "0 0 24 24",
|
|
4771
4821
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4772
|
-
children: /* @__PURE__ */ (0,
|
|
4822
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
4773
4823
|
"path",
|
|
4774
4824
|
{
|
|
4775
4825
|
clipRule: "evenodd",
|
|
@@ -4938,24 +4988,24 @@ var iconMap = {
|
|
|
4938
4988
|
};
|
|
4939
4989
|
|
|
4940
4990
|
// src/private/hooks/useResponsiveProp/useResponsiveProp.ts
|
|
4941
|
-
var
|
|
4942
|
-
var
|
|
4991
|
+
var import_type_guards7 = require("@wistia/type-guards");
|
|
4992
|
+
var import_react7 = require("react");
|
|
4943
4993
|
var isResponsiveObject = (values) => {
|
|
4944
4994
|
return typeof values === "object" && values !== null && !Array.isArray(values) && "base" in values;
|
|
4945
4995
|
};
|
|
4946
4996
|
var useResponsiveProp = (values) => {
|
|
4947
4997
|
const activeMediaQueries = useActiveMq();
|
|
4948
|
-
return (0,
|
|
4949
|
-
if ((0,
|
|
4998
|
+
return (0, import_react7.useMemo)(() => {
|
|
4999
|
+
if ((0, import_type_guards7.isRecord)(values) && isResponsiveObject(values)) {
|
|
4950
5000
|
const mq2 = activeMediaQueries.find((key) => key in values);
|
|
4951
|
-
return (0,
|
|
5001
|
+
return (0, import_type_guards7.isNotUndefined)(mq2) && (0, import_type_guards7.isNotUndefined)(values[mq2]) ? values[mq2] : values.base;
|
|
4952
5002
|
}
|
|
4953
5003
|
return values;
|
|
4954
5004
|
}, [activeMediaQueries, values]);
|
|
4955
5005
|
};
|
|
4956
5006
|
|
|
4957
5007
|
// src/components/Icon/Icon.tsx
|
|
4958
|
-
var
|
|
5008
|
+
var import_jsx_runtime157 = require("react/jsx-runtime");
|
|
4959
5009
|
var iconSizeMap = {
|
|
4960
5010
|
sm: "12",
|
|
4961
5011
|
md: "16",
|
|
@@ -4963,21 +5013,25 @@ var iconSizeMap = {
|
|
|
4963
5013
|
xl: "32",
|
|
4964
5014
|
xxl: "48"
|
|
4965
5015
|
};
|
|
5016
|
+
var StyledIcon = import_styled_components15.default.svg`
|
|
5017
|
+
${({ $colorScheme }) => getColorScheme($colorScheme ?? "inherit")}
|
|
5018
|
+
`;
|
|
4966
5019
|
var Icon = ({
|
|
4967
5020
|
invertColor,
|
|
5021
|
+
colorScheme = "inherit",
|
|
4968
5022
|
size = "lg",
|
|
4969
5023
|
style,
|
|
4970
5024
|
type,
|
|
4971
5025
|
...otherProps
|
|
4972
5026
|
}) => {
|
|
4973
5027
|
const responsiveSize = useResponsiveProp(size);
|
|
4974
|
-
if ((0,
|
|
5028
|
+
if ((0, import_type_guards8.isNil)(type)) {
|
|
4975
5029
|
throw new Error("An Icon component requires a `type` prop to be provided");
|
|
4976
5030
|
}
|
|
4977
|
-
if ((0,
|
|
5031
|
+
if ((0, import_type_guards8.isNil)(iconMap[type])) {
|
|
4978
5032
|
throw new Error(`Type "${type}" does not exist, please update type prop in Icon component.`);
|
|
4979
5033
|
}
|
|
4980
|
-
if ((0,
|
|
5034
|
+
if ((0, import_type_guards8.isNil)(iconSizeMap[responsiveSize])) {
|
|
4981
5035
|
throw new Error(
|
|
4982
5036
|
`Size "${responsiveSize}" does not exist, please update size prop in Icon component.`
|
|
4983
5037
|
);
|
|
@@ -4988,34 +5042,33 @@ var Icon = ({
|
|
|
4988
5042
|
...style
|
|
4989
5043
|
};
|
|
4990
5044
|
const iconColor = invertColor ? "var(--color-icon-on-fill)" : "var(--color-icon)";
|
|
4991
|
-
|
|
4992
|
-
|
|
4993
|
-
}
|
|
4994
|
-
return /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
4995
|
-
IconElement,
|
|
5045
|
+
return /* @__PURE__ */ (0, import_jsx_runtime157.jsx)(
|
|
5046
|
+
StyledIcon,
|
|
4996
5047
|
{
|
|
5048
|
+
$colorScheme: colorScheme,
|
|
4997
5049
|
"aria-hidden": "true",
|
|
4998
|
-
|
|
5050
|
+
as: IconElement,
|
|
4999
5051
|
height: `${iconSizeMap[responsiveSize]}px`,
|
|
5000
5052
|
role: "presentation",
|
|
5001
5053
|
style: defaultStyle,
|
|
5002
5054
|
viewBox: "0 0 24 24",
|
|
5003
5055
|
width: `${iconSizeMap[responsiveSize]}px`,
|
|
5004
5056
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5005
|
-
...otherProps
|
|
5057
|
+
...otherProps,
|
|
5058
|
+
color: iconColor
|
|
5006
5059
|
}
|
|
5007
5060
|
);
|
|
5008
5061
|
};
|
|
5009
5062
|
Icon.displayName = "Icon";
|
|
5010
5063
|
|
|
5011
5064
|
// src/components/Link/Link.tsx
|
|
5012
|
-
var
|
|
5013
|
-
var
|
|
5014
|
-
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"));
|
|
5015
5068
|
var import_react_router_dom = require("react-router-dom");
|
|
5016
|
-
var
|
|
5069
|
+
var import_jsx_runtime158 = require("react/jsx-runtime");
|
|
5017
5070
|
var generateHref = (href, type, disabled) => {
|
|
5018
|
-
if (disabled || (0,
|
|
5071
|
+
if (disabled || (0, import_type_guards9.isNil)(href)) {
|
|
5019
5072
|
return void 0;
|
|
5020
5073
|
}
|
|
5021
5074
|
let to = href;
|
|
@@ -5027,17 +5080,17 @@ var generateHref = (href, type, disabled) => {
|
|
|
5027
5080
|
}
|
|
5028
5081
|
return to;
|
|
5029
5082
|
};
|
|
5030
|
-
var isButton = (props) => (0,
|
|
5031
|
-
var isLink = (props) => (0,
|
|
5032
|
-
var StyledLink =
|
|
5033
|
-
${({ 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};
|
|
5034
5087
|
${({ $colorScheme }) => getColorScheme($colorScheme)}
|
|
5035
5088
|
cursor: pointer;
|
|
5036
5089
|
font-family: var(--typography-family-default);
|
|
5037
5090
|
color: var(--color-text-link);
|
|
5038
5091
|
text-decoration: ${({ $underline }) => $underline ? "underline" : "none"};
|
|
5039
5092
|
`;
|
|
5040
|
-
var Link = (0,
|
|
5093
|
+
var Link = (0, import_react8.forwardRef)(
|
|
5041
5094
|
({
|
|
5042
5095
|
beforeAction,
|
|
5043
5096
|
children,
|
|
@@ -5061,7 +5114,7 @@ var Link = (0, import_react7.forwardRef)(
|
|
|
5061
5114
|
} finally {
|
|
5062
5115
|
if (routingCallback !== null) {
|
|
5063
5116
|
routingCallback();
|
|
5064
|
-
} else if ((0,
|
|
5117
|
+
} else if ((0, import_type_guards9.isNotNil)(to)) {
|
|
5065
5118
|
window.location.assign(to);
|
|
5066
5119
|
} else {
|
|
5067
5120
|
}
|
|
@@ -5075,7 +5128,7 @@ var Link = (0, import_react7.forwardRef)(
|
|
|
5075
5128
|
onClick: handleClick
|
|
5076
5129
|
};
|
|
5077
5130
|
if (isButton(props)) {
|
|
5078
|
-
return /* @__PURE__ */ (0,
|
|
5131
|
+
return /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
5079
5132
|
StyledLink,
|
|
5080
5133
|
{
|
|
5081
5134
|
ref,
|
|
@@ -5095,7 +5148,7 @@ var Link = (0, import_react7.forwardRef)(
|
|
|
5095
5148
|
...commonProps,
|
|
5096
5149
|
...externalLinkProps
|
|
5097
5150
|
};
|
|
5098
|
-
return inRouterContext && type !== "external" ? /* @__PURE__ */ (0,
|
|
5151
|
+
return inRouterContext && type !== "external" ? /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
5099
5152
|
StyledLink,
|
|
5100
5153
|
{
|
|
5101
5154
|
as: import_react_router_dom.Link,
|
|
@@ -5103,7 +5156,7 @@ var Link = (0, import_react7.forwardRef)(
|
|
|
5103
5156
|
to: to ?? "",
|
|
5104
5157
|
children
|
|
5105
5158
|
}
|
|
5106
|
-
) : /* @__PURE__ */ (0,
|
|
5159
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
5107
5160
|
StyledLink,
|
|
5108
5161
|
{
|
|
5109
5162
|
as: "a",
|
|
@@ -5119,9 +5172,9 @@ var Link = (0, import_react7.forwardRef)(
|
|
|
5119
5172
|
Link.displayName = "Link";
|
|
5120
5173
|
|
|
5121
5174
|
// src/components/Button/Button.tsx
|
|
5122
|
-
var
|
|
5123
|
-
var isLink2 = (props) => (0,
|
|
5124
|
-
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`
|
|
5125
5178
|
${buttonResetCss}
|
|
5126
5179
|
${({ colorScheme }) => getColorScheme(colorScheme)}
|
|
5127
5180
|
${({ size }) => buttonSizeStyles[size]}
|
|
@@ -5130,20 +5183,23 @@ var StyledButton = import_styled_components15.default.button`
|
|
|
5130
5183
|
${({ fullWidth }) => fullWidth && "width: 100%;"}
|
|
5131
5184
|
position: relative;
|
|
5132
5185
|
`;
|
|
5133
|
-
var StyledButtonContent =
|
|
5186
|
+
var StyledButtonContent = import_styled_components17.default.div`
|
|
5134
5187
|
align-items: center;
|
|
5135
5188
|
display: inline-flex;
|
|
5136
5189
|
flex-grow: 1;
|
|
5137
5190
|
justify-content: center;
|
|
5138
|
-
opacity: ${({ isLoading }) => isLoading ? 0 : 1};
|
|
5191
|
+
opacity: ${({ $isLoading }) => $isLoading ? 0 : 1};
|
|
5139
5192
|
padding: 0 var(--button-label-padding-horizontal);
|
|
5140
5193
|
gap: var(--button-label-gap);
|
|
5194
|
+
|
|
5195
|
+
${({ $hasLeftIcon }) => $hasLeftIcon && "padding-left: 0;"}
|
|
5196
|
+
${({ $hasRightIcon }) => $hasRightIcon && "padding-right: 0;"}
|
|
5141
5197
|
`;
|
|
5142
|
-
var StyledButtonContentLabel =
|
|
5198
|
+
var StyledButtonContentLabel = import_styled_components17.default.span`
|
|
5143
5199
|
flex: 1;
|
|
5144
5200
|
text-align: center;
|
|
5145
5201
|
`;
|
|
5146
|
-
var StyledButtonLoading =
|
|
5202
|
+
var StyledButtonLoading = import_styled_components17.default.div`
|
|
5147
5203
|
position: absolute;
|
|
5148
5204
|
display: flex;
|
|
5149
5205
|
`;
|
|
@@ -5153,16 +5209,24 @@ var ButtonContent = ({
|
|
|
5153
5209
|
rightIcon,
|
|
5154
5210
|
children
|
|
5155
5211
|
}) => {
|
|
5156
|
-
return /* @__PURE__ */ (0,
|
|
5157
|
-
isLoading ? /* @__PURE__ */ (0,
|
|
5158
|
-
/* @__PURE__ */ (0,
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
|
|
5162
|
-
|
|
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)(
|
|
5215
|
+
StyledButtonContent,
|
|
5216
|
+
{
|
|
5217
|
+
$hasLeftIcon: (0, import_type_guards10.isNotNil)(leftIcon),
|
|
5218
|
+
$hasRightIcon: (0, import_type_guards10.isNotNil)(rightIcon),
|
|
5219
|
+
$isLoading: isLoading,
|
|
5220
|
+
children: [
|
|
5221
|
+
leftIcon ?? null,
|
|
5222
|
+
/* @__PURE__ */ (0, import_jsx_runtime159.jsx)(StyledButtonContentLabel, { children }),
|
|
5223
|
+
rightIcon ?? null
|
|
5224
|
+
]
|
|
5225
|
+
}
|
|
5226
|
+
)
|
|
5163
5227
|
] });
|
|
5164
5228
|
};
|
|
5165
|
-
var Button = (0,
|
|
5229
|
+
var Button = (0, import_react9.forwardRef)(
|
|
5166
5230
|
({
|
|
5167
5231
|
children,
|
|
5168
5232
|
forceState,
|
|
@@ -5197,14 +5261,14 @@ var Button = (0, import_react8.forwardRef)(
|
|
|
5197
5261
|
commonProps.className = `${className ?? ""} force-state-${forceState}`;
|
|
5198
5262
|
}
|
|
5199
5263
|
if (isLink2(props)) {
|
|
5200
|
-
return /* @__PURE__ */ (0,
|
|
5264
|
+
return /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
5201
5265
|
StyledButton,
|
|
5202
5266
|
{
|
|
5203
5267
|
ref,
|
|
5204
5268
|
as: Link,
|
|
5205
5269
|
...props,
|
|
5206
5270
|
...commonProps,
|
|
5207
|
-
children: /* @__PURE__ */ (0,
|
|
5271
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
5208
5272
|
ButtonContent,
|
|
5209
5273
|
{
|
|
5210
5274
|
isLoading,
|
|
@@ -5221,11 +5285,11 @@ var Button = (0, import_react8.forwardRef)(
|
|
|
5221
5285
|
event.preventDefault();
|
|
5222
5286
|
return;
|
|
5223
5287
|
}
|
|
5224
|
-
if ((0,
|
|
5288
|
+
if ((0, import_type_guards10.isNotNil)(onClick)) {
|
|
5225
5289
|
onClick(event);
|
|
5226
5290
|
}
|
|
5227
5291
|
};
|
|
5228
|
-
return /* @__PURE__ */ (0,
|
|
5292
|
+
return /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
5229
5293
|
StyledButton,
|
|
5230
5294
|
{
|
|
5231
5295
|
ref,
|
|
@@ -5233,7 +5297,7 @@ var Button = (0, import_react8.forwardRef)(
|
|
|
5233
5297
|
type: "button",
|
|
5234
5298
|
...props,
|
|
5235
5299
|
...commonProps,
|
|
5236
|
-
children: /* @__PURE__ */ (0,
|
|
5300
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
5237
5301
|
ButtonContent,
|
|
5238
5302
|
{
|
|
5239
5303
|
isLoading,
|
|
@@ -5249,9 +5313,9 @@ var Button = (0, import_react8.forwardRef)(
|
|
|
5249
5313
|
Button.displayName = "Button";
|
|
5250
5314
|
|
|
5251
5315
|
// src/components/ButtonGroup/ButtonGroup.tsx
|
|
5252
|
-
var
|
|
5253
|
-
var
|
|
5254
|
-
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");
|
|
5255
5319
|
var getAlignment = (align) => {
|
|
5256
5320
|
if (align === "center") {
|
|
5257
5321
|
return "center";
|
|
@@ -5264,7 +5328,7 @@ var getAlignment = (align) => {
|
|
|
5264
5328
|
}
|
|
5265
5329
|
return void 0;
|
|
5266
5330
|
};
|
|
5267
|
-
var ButtonGroupComponent =
|
|
5331
|
+
var ButtonGroupComponent = import_styled_components18.default.div`
|
|
5268
5332
|
display: flex;
|
|
5269
5333
|
|
|
5270
5334
|
/* this helps ensure that primary buttons appear at the top of the column */
|
|
@@ -5290,10 +5354,10 @@ var ButtonGroup = ({
|
|
|
5290
5354
|
fullWidth = false,
|
|
5291
5355
|
...otherProps
|
|
5292
5356
|
}) => {
|
|
5293
|
-
if ((0,
|
|
5357
|
+
if ((0, import_type_guards11.isNil)(children)) {
|
|
5294
5358
|
return null;
|
|
5295
5359
|
}
|
|
5296
|
-
return /* @__PURE__ */ (0,
|
|
5360
|
+
return /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
|
|
5297
5361
|
ButtonGroupComponent,
|
|
5298
5362
|
{
|
|
5299
5363
|
align,
|
|
@@ -5306,13 +5370,13 @@ var ButtonGroup = ({
|
|
|
5306
5370
|
ButtonGroup.displayName = "ButtonGroup";
|
|
5307
5371
|
|
|
5308
5372
|
// src/components/Divider/Divider.tsx
|
|
5309
|
-
var
|
|
5310
|
-
var
|
|
5373
|
+
var import_styled_components19 = __toESM(require("styled-components"));
|
|
5374
|
+
var import_jsx_runtime161 = require("react/jsx-runtime");
|
|
5311
5375
|
var sizeToPixelMap = {
|
|
5312
5376
|
lg: 4,
|
|
5313
5377
|
sm: 1
|
|
5314
5378
|
};
|
|
5315
|
-
var DividerComponent =
|
|
5379
|
+
var DividerComponent = import_styled_components19.default.hr`
|
|
5316
5380
|
background: none;
|
|
5317
5381
|
border-bottom: none;
|
|
5318
5382
|
border-left: none;
|
|
@@ -5327,7 +5391,7 @@ var DividerComponent = import_styled_components17.default.hr`
|
|
|
5327
5391
|
`;
|
|
5328
5392
|
var Divider = ({ size = "sm", ...otherProps }) => {
|
|
5329
5393
|
const responsiveSize = useResponsiveProp(size);
|
|
5330
|
-
return /* @__PURE__ */ (0,
|
|
5394
|
+
return /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
5331
5395
|
DividerComponent,
|
|
5332
5396
|
{
|
|
5333
5397
|
borderHeight: sizeToPixelMap[responsiveSize],
|
|
@@ -5338,10 +5402,10 @@ var Divider = ({ size = "sm", ...otherProps }) => {
|
|
|
5338
5402
|
Divider.displayName = "Divider";
|
|
5339
5403
|
|
|
5340
5404
|
// src/components/Ellipsis/Ellipsis.tsx
|
|
5341
|
-
var
|
|
5342
|
-
var
|
|
5343
|
-
var
|
|
5344
|
-
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`
|
|
5345
5409
|
overflow: hidden;
|
|
5346
5410
|
text-overflow: ellipsis;
|
|
5347
5411
|
white-space: nowrap;
|
|
@@ -5364,14 +5428,14 @@ var ellipsisStyle = import_styled_components18.css`
|
|
|
5364
5428
|
}
|
|
5365
5429
|
}
|
|
5366
5430
|
`;
|
|
5367
|
-
var ellipsisFlexParentStyle =
|
|
5431
|
+
var ellipsisFlexParentStyle = import_styled_components20.css`
|
|
5368
5432
|
min-width: 0;
|
|
5369
5433
|
`;
|
|
5370
|
-
var EllipsisComponent =
|
|
5434
|
+
var EllipsisComponent = import_styled_components20.default.div`
|
|
5371
5435
|
${ellipsisStyle};
|
|
5372
5436
|
${({ lines }) => {
|
|
5373
|
-
if ((0,
|
|
5374
|
-
return
|
|
5437
|
+
if ((0, import_type_guards12.isNotNil)(lines)) {
|
|
5438
|
+
return import_styled_components20.css`
|
|
5375
5439
|
-webkit-box-orient: vertical;
|
|
5376
5440
|
-webkit-line-clamp: ${lines};
|
|
5377
5441
|
display: -webkit-box;
|
|
@@ -5381,7 +5445,7 @@ var EllipsisComponent = import_styled_components18.default.div`
|
|
|
5381
5445
|
return void 0;
|
|
5382
5446
|
}}
|
|
5383
5447
|
`;
|
|
5384
|
-
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0,
|
|
5448
|
+
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0, import_jsx_runtime162.jsx)(
|
|
5385
5449
|
EllipsisComponent,
|
|
5386
5450
|
{
|
|
5387
5451
|
lines,
|
|
@@ -5392,8 +5456,8 @@ var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0, impor
|
|
|
5392
5456
|
Ellipsis.displayName = "Ellipsis";
|
|
5393
5457
|
|
|
5394
5458
|
// src/components/Heading/Heading.tsx
|
|
5395
|
-
var
|
|
5396
|
-
var
|
|
5459
|
+
var import_react10 = require("react");
|
|
5460
|
+
var import_styled_components21 = __toESM(require("styled-components"));
|
|
5397
5461
|
|
|
5398
5462
|
// src/private/helpers/makePolymorphic/makePolymorphic.tsx
|
|
5399
5463
|
var makePolymorphic = (component) => {
|
|
@@ -5401,44 +5465,44 @@ var makePolymorphic = (component) => {
|
|
|
5401
5465
|
};
|
|
5402
5466
|
|
|
5403
5467
|
// src/components/Heading/Heading.tsx
|
|
5404
|
-
var
|
|
5405
|
-
var heroStyle =
|
|
5468
|
+
var import_jsx_runtime163 = require("react/jsx-runtime");
|
|
5469
|
+
var heroStyle = import_styled_components21.css`
|
|
5406
5470
|
--font-family: var(--typography-heading-hero-family);
|
|
5407
5471
|
--font-size: var(--typography-heading-hero-size);
|
|
5408
5472
|
--font-weight: var(--typography-heading-hero-weight);
|
|
5409
5473
|
--line-height: var(--typography-heading-hero-line-height);
|
|
5410
5474
|
`;
|
|
5411
|
-
var heading1TextStyle =
|
|
5475
|
+
var heading1TextStyle = import_styled_components21.css`
|
|
5412
5476
|
--font-family: var(--typography-heading-1-family);
|
|
5413
5477
|
--font-size: var(--typography-heading-1-size);
|
|
5414
5478
|
--font-weight: var(--typography-heading-1-weight);
|
|
5415
5479
|
--line-height: var(--typography-heading-1-line-height);
|
|
5416
5480
|
`;
|
|
5417
|
-
var heading2TextStyle =
|
|
5481
|
+
var heading2TextStyle = import_styled_components21.css`
|
|
5418
5482
|
--font-family: var(--typography-heading-2-family);
|
|
5419
5483
|
--font-size: var(--typography-heading-2-size);
|
|
5420
5484
|
--font-weight: var(--typography-heading-2-weight);
|
|
5421
5485
|
--line-height: var(--typography-heading-2-line-height);
|
|
5422
5486
|
`;
|
|
5423
|
-
var heading3TextStyle =
|
|
5487
|
+
var heading3TextStyle = import_styled_components21.css`
|
|
5424
5488
|
--font-family: var(--typography-heading-3-family);
|
|
5425
5489
|
--font-size: var(--typography-heading-3-size);
|
|
5426
5490
|
--font-weight: var(--typography-heading-3-weight);
|
|
5427
5491
|
--line-height: var(--typography-heading-3-line-height);
|
|
5428
5492
|
`;
|
|
5429
|
-
var heading4TextStyle =
|
|
5493
|
+
var heading4TextStyle = import_styled_components21.css`
|
|
5430
5494
|
--font-family: var(--typography-heading-4-family);
|
|
5431
5495
|
--font-size: var(--typography-heading-4-size);
|
|
5432
5496
|
--font-weight: var(--typography-heading-4-weight);
|
|
5433
5497
|
--line-height: var(--typography-heading-4-line-height);
|
|
5434
5498
|
`;
|
|
5435
|
-
var heading5TextStyle =
|
|
5499
|
+
var heading5TextStyle = import_styled_components21.css`
|
|
5436
5500
|
--font-family: var(--typography-heading-5-family);
|
|
5437
5501
|
--font-size: var(--typography-heading-5-size);
|
|
5438
5502
|
--font-weight: var(--typography-heading-5-weight);
|
|
5439
5503
|
--line-height: var(--typography-heading-5-line-height);
|
|
5440
5504
|
`;
|
|
5441
|
-
var heading6TextStyle =
|
|
5505
|
+
var heading6TextStyle = import_styled_components21.css`
|
|
5442
5506
|
--font-family: var(--typography-heading-6-family);
|
|
5443
5507
|
--font-size: var(--typography-heading-6-size);
|
|
5444
5508
|
--font-weight: var(--typography-heading-6-weight);
|
|
@@ -5454,7 +5518,7 @@ var variantStyleMap = {
|
|
|
5454
5518
|
heading6: heading6TextStyle
|
|
5455
5519
|
};
|
|
5456
5520
|
var DEFAULT_ELEMENT = "h1";
|
|
5457
|
-
var StyledHeading =
|
|
5521
|
+
var StyledHeading = import_styled_components21.default.div`
|
|
5458
5522
|
${({ colorScheme }) => getColorScheme(colorScheme)};
|
|
5459
5523
|
font-family: var(--font-family);
|
|
5460
5524
|
font-size: var(--font-size);
|
|
@@ -5463,16 +5527,16 @@ var StyledHeading = import_styled_components19.default.div`
|
|
|
5463
5527
|
color: var(--color-text);
|
|
5464
5528
|
${({ variant }) => variantStyleMap[variant]}
|
|
5465
5529
|
${({ ellipsis }) => ellipsis && ellipsisStyle};
|
|
5466
|
-
${({ inline }) => inline &&
|
|
5530
|
+
${({ inline }) => inline && import_styled_components21.css`
|
|
5467
5531
|
display: inline-block;
|
|
5468
5532
|
`}
|
|
5469
|
-
${({ disabled }) => disabled &&
|
|
5533
|
+
${({ disabled }) => disabled && import_styled_components21.css`
|
|
5470
5534
|
color: var(--color-text-disabled);
|
|
5471
5535
|
`}
|
|
5472
|
-
${({ preventUserSelect }) => preventUserSelect &&
|
|
5536
|
+
${({ preventUserSelect }) => preventUserSelect && import_styled_components21.css`
|
|
5473
5537
|
user-select: none;
|
|
5474
5538
|
`}
|
|
5475
|
-
${({ align }) =>
|
|
5539
|
+
${({ align }) => import_styled_components21.css`
|
|
5476
5540
|
text-align: ${align};
|
|
5477
5541
|
`}
|
|
5478
5542
|
margin: 0;
|
|
@@ -5486,7 +5550,7 @@ var variantElementMap = {
|
|
|
5486
5550
|
heading5: "h5",
|
|
5487
5551
|
heading6: "h6"
|
|
5488
5552
|
};
|
|
5489
|
-
var HeadingComponent = (0,
|
|
5553
|
+
var HeadingComponent = (0, import_react10.forwardRef)(
|
|
5490
5554
|
({
|
|
5491
5555
|
align = "left",
|
|
5492
5556
|
colorScheme = "inherit",
|
|
@@ -5497,7 +5561,7 @@ var HeadingComponent = (0, import_react9.forwardRef)(
|
|
|
5497
5561
|
variant = "heading1",
|
|
5498
5562
|
renderAs,
|
|
5499
5563
|
...otherProps
|
|
5500
|
-
}, ref) => /* @__PURE__ */ (0,
|
|
5564
|
+
}, ref) => /* @__PURE__ */ (0, import_jsx_runtime163.jsx)(
|
|
5501
5565
|
StyledHeading,
|
|
5502
5566
|
{
|
|
5503
5567
|
ref,
|
|
@@ -5517,21 +5581,21 @@ HeadingComponent.displayName = "Heading";
|
|
|
5517
5581
|
var Heading = makePolymorphic(HeadingComponent);
|
|
5518
5582
|
|
|
5519
5583
|
// src/components/IconButton/IconButton.tsx
|
|
5520
|
-
var
|
|
5521
|
-
var
|
|
5584
|
+
var import_react11 = require("react");
|
|
5585
|
+
var import_styled_components23 = __toESM(require("styled-components"));
|
|
5522
5586
|
|
|
5523
5587
|
// src/components/Tooltip/Tooltip.tsx
|
|
5524
5588
|
var import_react_tooltip2 = require("@radix-ui/react-tooltip");
|
|
5525
|
-
var
|
|
5526
|
-
var
|
|
5527
|
-
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`
|
|
5528
5592
|
--tooltip-font-size: var(--typography-label-4-size);
|
|
5529
5593
|
--tooltip-line-height: var(--typography-label-4-line-height);
|
|
5530
5594
|
--tooltip-font-weight: var(--typography-label-4-weight);
|
|
5531
5595
|
--tooltip-horizontal-padding: var(--space-02);
|
|
5532
5596
|
--tooltip-vertical-padding: var(--space-03);
|
|
5533
5597
|
`;
|
|
5534
|
-
var StyledContent = (0,
|
|
5598
|
+
var StyledContent = (0, import_styled_components22.default)(import_react_tooltip2.Content)`
|
|
5535
5599
|
--tooltip-font-family: var(--typography-family-default);
|
|
5536
5600
|
--tooltip-border-radius: var(--border-radius-05);
|
|
5537
5601
|
--tooltip-bg: var(--color-bg-tooltip);
|
|
@@ -5589,14 +5653,14 @@ var Tooltip = ({
|
|
|
5589
5653
|
if (forceOpen === true) {
|
|
5590
5654
|
rootProps.open = true;
|
|
5591
5655
|
}
|
|
5592
|
-
return /* @__PURE__ */ (0,
|
|
5656
|
+
return /* @__PURE__ */ (0, import_jsx_runtime164.jsxs)(
|
|
5593
5657
|
import_react_tooltip2.Root,
|
|
5594
5658
|
{
|
|
5595
5659
|
delayDuration: delay,
|
|
5596
5660
|
...rootProps,
|
|
5597
5661
|
children: [
|
|
5598
|
-
/* @__PURE__ */ (0,
|
|
5599
|
-
/* @__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)(
|
|
5600
5664
|
StyledContent,
|
|
5601
5665
|
{
|
|
5602
5666
|
$compact: compact,
|
|
@@ -5604,7 +5668,7 @@ var Tooltip = ({
|
|
|
5604
5668
|
sideOffset: hideArrow ? VISUAL_OFFSET : VISUAL_OFFSET - 2,
|
|
5605
5669
|
children: [
|
|
5606
5670
|
content,
|
|
5607
|
-
!hideArrow ? /* @__PURE__ */ (0,
|
|
5671
|
+
!hideArrow ? /* @__PURE__ */ (0, import_jsx_runtime164.jsx)(import_react_tooltip2.Arrow, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime164.jsx)(
|
|
5608
5672
|
"svg",
|
|
5609
5673
|
{
|
|
5610
5674
|
fill: "var(--tooltip-bg)",
|
|
@@ -5613,7 +5677,7 @@ var Tooltip = ({
|
|
|
5613
5677
|
viewBox: "0 0 12 8",
|
|
5614
5678
|
width: "12",
|
|
5615
5679
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5616
|
-
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" })
|
|
5617
5681
|
}
|
|
5618
5682
|
) }) : null
|
|
5619
5683
|
]
|
|
@@ -5626,14 +5690,14 @@ var Tooltip = ({
|
|
|
5626
5690
|
Tooltip.displayName = "Tooltip";
|
|
5627
5691
|
|
|
5628
5692
|
// src/components/IconButton/IconButton.tsx
|
|
5629
|
-
var
|
|
5693
|
+
var import_jsx_runtime165 = require("react/jsx-runtime");
|
|
5630
5694
|
var buttonIconSizeMap = {
|
|
5631
5695
|
small: "sm",
|
|
5632
5696
|
medium: "md",
|
|
5633
5697
|
large: "lg",
|
|
5634
5698
|
hero: "xl"
|
|
5635
5699
|
};
|
|
5636
|
-
var StyledButton2 = (0,
|
|
5700
|
+
var StyledButton2 = (0, import_styled_components23.default)(Button)`
|
|
5637
5701
|
--icon-button-size-small: 24px;
|
|
5638
5702
|
--icon-button-size-medium: 32px;
|
|
5639
5703
|
--icon-button-size-large: 40px;
|
|
@@ -5647,10 +5711,10 @@ var StyledButton2 = (0, import_styled_components21.default)(Button)`
|
|
|
5647
5711
|
align-items: center;
|
|
5648
5712
|
line-height: 1;
|
|
5649
5713
|
`;
|
|
5650
|
-
var IconButton = (0,
|
|
5714
|
+
var IconButton = (0, import_react11.forwardRef)(
|
|
5651
5715
|
({ children, label, disableTooltip = false, size = "medium", ...props }, ref) => {
|
|
5652
5716
|
const responsiveSize = useResponsiveProp(size);
|
|
5653
|
-
const button = /* @__PURE__ */ (0,
|
|
5717
|
+
const button = /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(
|
|
5654
5718
|
StyledButton2,
|
|
5655
5719
|
{
|
|
5656
5720
|
...props,
|
|
@@ -5658,7 +5722,7 @@ var IconButton = (0, import_react10.forwardRef)(
|
|
|
5658
5722
|
"aria-label": label,
|
|
5659
5723
|
"data-wistia-ui-icon-button": true,
|
|
5660
5724
|
size: responsiveSize,
|
|
5661
|
-
children: (0,
|
|
5725
|
+
children: (0, import_react11.cloneElement)(import_react11.Children.only(children), {
|
|
5662
5726
|
size: buttonIconSizeMap[responsiveSize]
|
|
5663
5727
|
})
|
|
5664
5728
|
}
|
|
@@ -5666,17 +5730,17 @@ var IconButton = (0, import_react10.forwardRef)(
|
|
|
5666
5730
|
if (disableTooltip) {
|
|
5667
5731
|
return button;
|
|
5668
5732
|
}
|
|
5669
|
-
return /* @__PURE__ */ (0,
|
|
5733
|
+
return /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(Tooltip, { content: label, children: button });
|
|
5670
5734
|
}
|
|
5671
5735
|
);
|
|
5672
5736
|
IconButton.displayName = "IconButton";
|
|
5673
5737
|
|
|
5674
5738
|
// src/components/ScreenReaderOnly/ScreenReaderOnly.tsx
|
|
5675
|
-
var
|
|
5676
|
-
var
|
|
5677
|
-
var
|
|
5678
|
-
var VisuallyHidden =
|
|
5679
|
-
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({
|
|
5680
5744
|
"&:not(:focus-within)": visuallyHiddenStyle
|
|
5681
5745
|
});
|
|
5682
5746
|
var ScreenReaderOnly = ({
|
|
@@ -5685,20 +5749,20 @@ var ScreenReaderOnly = ({
|
|
|
5685
5749
|
focusable = false,
|
|
5686
5750
|
...otherProps
|
|
5687
5751
|
}) => {
|
|
5688
|
-
const accessibleText = (0,
|
|
5752
|
+
const accessibleText = (0, import_type_guards13.isNotNil)(text) ? text : children;
|
|
5689
5753
|
if (focusable) {
|
|
5690
|
-
return /* @__PURE__ */ (0,
|
|
5754
|
+
return /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(VisuallyHiddenButFocusable, { ...otherProps, children: accessibleText });
|
|
5691
5755
|
}
|
|
5692
|
-
return /* @__PURE__ */ (0,
|
|
5756
|
+
return /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(VisuallyHidden, { ...otherProps, children: accessibleText });
|
|
5693
5757
|
};
|
|
5694
5758
|
ScreenReaderOnly.displayName = "ScreenReaderOnly";
|
|
5695
5759
|
|
|
5696
5760
|
// src/components/Stack/Stack.tsx
|
|
5697
|
-
var
|
|
5698
|
-
var
|
|
5699
|
-
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");
|
|
5700
5764
|
var DEFAULT_ELEMENT2 = "div";
|
|
5701
|
-
var StyledStack =
|
|
5765
|
+
var StyledStack = import_styled_components25.default.div`
|
|
5702
5766
|
display: flex;
|
|
5703
5767
|
flex-direction: ${({ $direction }) => $direction === "horizontal" ? "row" : "column"};
|
|
5704
5768
|
gap: ${({ gap }) => `var(--${gap})`};
|
|
@@ -5707,11 +5771,11 @@ var StyledStack = import_styled_components23.default.div`
|
|
|
5707
5771
|
flex: 1;
|
|
5708
5772
|
}
|
|
5709
5773
|
`;
|
|
5710
|
-
var StackComponent = (0,
|
|
5774
|
+
var StackComponent = (0, import_react12.forwardRef)(
|
|
5711
5775
|
({ renderAs, direction = "vertical", gap = "space-02", ...props }, ref) => {
|
|
5712
5776
|
const responsiveGap = useResponsiveProp(gap);
|
|
5713
5777
|
const responsiveDirection = useResponsiveProp(direction);
|
|
5714
|
-
return /* @__PURE__ */ (0,
|
|
5778
|
+
return /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
|
|
5715
5779
|
StyledStack,
|
|
5716
5780
|
{
|
|
5717
5781
|
ref,
|
|
@@ -5727,90 +5791,90 @@ StackComponent.displayName = "Stack";
|
|
|
5727
5791
|
var Stack = makePolymorphic(StackComponent);
|
|
5728
5792
|
|
|
5729
5793
|
// src/components/Text/Text.tsx
|
|
5730
|
-
var
|
|
5731
|
-
var
|
|
5732
|
-
var
|
|
5733
|
-
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`
|
|
5734
5798
|
> strong,
|
|
5735
5799
|
b {
|
|
5736
5800
|
font-weight: var(--typography-weight-body-bold);
|
|
5737
5801
|
}
|
|
5738
5802
|
`;
|
|
5739
|
-
var labelBoldStyles =
|
|
5803
|
+
var labelBoldStyles = import_styled_components26.css`
|
|
5740
5804
|
> strong,
|
|
5741
5805
|
b {
|
|
5742
5806
|
font-weight: var(--typography-weight-label-bold);
|
|
5743
5807
|
}
|
|
5744
5808
|
`;
|
|
5745
|
-
var body1TextStyle =
|
|
5809
|
+
var body1TextStyle = import_styled_components26.css`
|
|
5746
5810
|
--font-family: var(--typography-body-1-family);
|
|
5747
5811
|
--font-size: var(--typography-body-1-size);
|
|
5748
5812
|
--font-weight: var(--typography-body-1-weight);
|
|
5749
5813
|
--line-height: var(--typography-body-1-line-height);
|
|
5750
5814
|
${bodyBoldStyles}
|
|
5751
5815
|
`;
|
|
5752
|
-
var body2TextStyle =
|
|
5816
|
+
var body2TextStyle = import_styled_components26.css`
|
|
5753
5817
|
--font-family: var(--typography-body-2-family);
|
|
5754
5818
|
--font-size: var(--typography-body-2-size);
|
|
5755
5819
|
--font-weight: var(--typography-body-2-weight);
|
|
5756
5820
|
--line-height: var(--typography-body-2-line-height);
|
|
5757
5821
|
${bodyBoldStyles}
|
|
5758
5822
|
`;
|
|
5759
|
-
var body3TextStyle =
|
|
5823
|
+
var body3TextStyle = import_styled_components26.css`
|
|
5760
5824
|
--font-family: var(--typography-body-3-family);
|
|
5761
5825
|
--font-size: var(--typography-body-3-size);
|
|
5762
5826
|
--font-weight: var(--typography-body-3-weight);
|
|
5763
5827
|
--line-height: var(--typography-body-3-line-height);
|
|
5764
5828
|
${bodyBoldStyles}
|
|
5765
5829
|
`;
|
|
5766
|
-
var body4TextStyle =
|
|
5830
|
+
var body4TextStyle = import_styled_components26.css`
|
|
5767
5831
|
--font-family: var(--typography-body-4-family);
|
|
5768
5832
|
--font-size: var(--typography-body-4-size);
|
|
5769
5833
|
--font-weight: var(--typography-body-4-weight);
|
|
5770
5834
|
--line-height: var(--typography-body-4-line-height);
|
|
5771
5835
|
${bodyBoldStyles}
|
|
5772
5836
|
`;
|
|
5773
|
-
var label1TextStyle =
|
|
5837
|
+
var label1TextStyle = import_styled_components26.css`
|
|
5774
5838
|
--font-family: var(--typography-label-1-family);
|
|
5775
5839
|
--font-size: var(--typography-label-1-size);
|
|
5776
5840
|
--font-weight: var(--typography-label-1-weight);
|
|
5777
5841
|
--line-height: var(--typography-label-1-line-height);
|
|
5778
5842
|
${labelBoldStyles}
|
|
5779
5843
|
`;
|
|
5780
|
-
var label2TextStyle =
|
|
5844
|
+
var label2TextStyle = import_styled_components26.css`
|
|
5781
5845
|
--font-family: var(--typography-label-2-family);
|
|
5782
5846
|
--font-size: var(--typography-label-2-size);
|
|
5783
5847
|
--font-weight: var(--typography-label-2-weight);
|
|
5784
5848
|
--line-height: var(--typography-label-2-line-height);
|
|
5785
5849
|
${labelBoldStyles}
|
|
5786
5850
|
`;
|
|
5787
|
-
var label3TextStyle =
|
|
5851
|
+
var label3TextStyle = import_styled_components26.css`
|
|
5788
5852
|
--font-family: var(--typography-label-3-family);
|
|
5789
5853
|
--font-size: var(--typography-label-3-size);
|
|
5790
5854
|
--font-weight: var(--typography-label-3-weight);
|
|
5791
5855
|
--line-height: var(--typography-label-3-line-height);
|
|
5792
5856
|
${labelBoldStyles}
|
|
5793
5857
|
`;
|
|
5794
|
-
var label4TextStyle =
|
|
5858
|
+
var label4TextStyle = import_styled_components26.css`
|
|
5795
5859
|
--font-family: var(--typography-label-4-family);
|
|
5796
5860
|
--font-size: var(--typography-label-4-size);
|
|
5797
5861
|
--font-weight: var(--typography-label-4-weight);
|
|
5798
5862
|
--line-height: var(--typography-label-4-line-height);
|
|
5799
5863
|
${labelBoldStyles}
|
|
5800
5864
|
`;
|
|
5801
|
-
var body1MonoTextStyle =
|
|
5865
|
+
var body1MonoTextStyle = import_styled_components26.css`
|
|
5802
5866
|
${body1TextStyle};
|
|
5803
5867
|
--font-family: var(--typography-family-mono);
|
|
5804
5868
|
`;
|
|
5805
|
-
var body2MonoTextStyle =
|
|
5869
|
+
var body2MonoTextStyle = import_styled_components26.css`
|
|
5806
5870
|
${body2TextStyle};
|
|
5807
5871
|
--font-family: var(--typography-family-mono);
|
|
5808
5872
|
`;
|
|
5809
|
-
var body3MonoTextStyle =
|
|
5873
|
+
var body3MonoTextStyle = import_styled_components26.css`
|
|
5810
5874
|
${body3TextStyle};
|
|
5811
5875
|
--font-family: var(--typography-family-mono);
|
|
5812
5876
|
`;
|
|
5813
|
-
var body4MonoTextStyle =
|
|
5877
|
+
var body4MonoTextStyle = import_styled_components26.css`
|
|
5814
5878
|
${body4TextStyle};
|
|
5815
5879
|
--font-family: var(--typography-family-mono);
|
|
5816
5880
|
`;
|
|
@@ -5828,13 +5892,13 @@ var variantStyleMap2 = {
|
|
|
5828
5892
|
label3: label3TextStyle,
|
|
5829
5893
|
label4: label4TextStyle
|
|
5830
5894
|
};
|
|
5831
|
-
var highContrastProminenceStyle =
|
|
5895
|
+
var highContrastProminenceStyle = import_styled_components26.css`
|
|
5832
5896
|
--text-color: var(--color-text-high-contrast);
|
|
5833
5897
|
`;
|
|
5834
|
-
var vibrantProminenceStyle =
|
|
5898
|
+
var vibrantProminenceStyle = import_styled_components26.css`
|
|
5835
5899
|
--text-color: var(--color-text);
|
|
5836
5900
|
`;
|
|
5837
|
-
var secondaryProminenceStyle =
|
|
5901
|
+
var secondaryProminenceStyle = import_styled_components26.css`
|
|
5838
5902
|
--text-color: var(--color-text-secondary);
|
|
5839
5903
|
`;
|
|
5840
5904
|
var prominenceMap = {
|
|
@@ -5842,7 +5906,7 @@ var prominenceMap = {
|
|
|
5842
5906
|
vibrant: vibrantProminenceStyle,
|
|
5843
5907
|
secondary: secondaryProminenceStyle
|
|
5844
5908
|
};
|
|
5845
|
-
var StyledText =
|
|
5909
|
+
var StyledText = import_styled_components26.default.div`
|
|
5846
5910
|
${({ colorScheme }) => getColorScheme(colorScheme)};
|
|
5847
5911
|
font-family: var(--font-family);
|
|
5848
5912
|
font-size: var(--font-size);
|
|
@@ -5854,24 +5918,24 @@ var StyledText = import_styled_components24.default.div`
|
|
|
5854
5918
|
${({ variant }) => variantStyleMap2[variant]}
|
|
5855
5919
|
${({ prominence }) => prominenceMap[prominence]}
|
|
5856
5920
|
${({ ellipsis }) => ellipsis && ellipsisStyle};
|
|
5857
|
-
${({ inline }) => inline &&
|
|
5921
|
+
${({ inline }) => inline && import_styled_components26.css`
|
|
5858
5922
|
display: inline-block;
|
|
5859
5923
|
`}
|
|
5860
|
-
${({ disabled }) => disabled &&
|
|
5924
|
+
${({ disabled }) => disabled && import_styled_components26.css`
|
|
5861
5925
|
--text-color: var(--color-text-disabled);
|
|
5862
5926
|
`}
|
|
5863
|
-
${({ preventUserSelect }) => preventUserSelect &&
|
|
5927
|
+
${({ preventUserSelect }) => preventUserSelect && import_styled_components26.css`
|
|
5864
5928
|
user-select: none;
|
|
5865
5929
|
`}
|
|
5866
|
-
${({ align }) =>
|
|
5930
|
+
${({ align }) => import_styled_components26.css`
|
|
5867
5931
|
text-align: ${align};
|
|
5868
5932
|
`}
|
|
5869
|
-
${({ as }) => as === "p" &&
|
|
5933
|
+
${({ as }) => as === "p" && import_styled_components26.css`
|
|
5870
5934
|
display: block;
|
|
5871
5935
|
`}
|
|
5872
5936
|
`;
|
|
5873
5937
|
var DEFAULT_ELEMENT3 = "div";
|
|
5874
|
-
var TextComponent = (0,
|
|
5938
|
+
var TextComponent = (0, import_react13.forwardRef)(
|
|
5875
5939
|
({
|
|
5876
5940
|
align = "left",
|
|
5877
5941
|
colorScheme = "inherit",
|
|
@@ -5884,7 +5948,7 @@ var TextComponent = (0, import_react12.forwardRef)(
|
|
|
5884
5948
|
renderAs,
|
|
5885
5949
|
...otherProps
|
|
5886
5950
|
}, ref) => {
|
|
5887
|
-
return /* @__PURE__ */ (0,
|
|
5951
|
+
return /* @__PURE__ */ (0, import_jsx_runtime168.jsx)(
|
|
5888
5952
|
StyledText,
|
|
5889
5953
|
{
|
|
5890
5954
|
ref,
|
|
@@ -5906,20 +5970,20 @@ TextComponent.displayName = "Text";
|
|
|
5906
5970
|
var Text = makePolymorphic(TextComponent);
|
|
5907
5971
|
|
|
5908
5972
|
// src/components/WistiaLogo/WistiaLogo.tsx
|
|
5909
|
-
var
|
|
5910
|
-
var
|
|
5911
|
-
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");
|
|
5912
5976
|
var renderBrandmark = (brandmarkColor, iconOnly) => {
|
|
5913
5977
|
if (iconOnly) {
|
|
5914
|
-
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" }) });
|
|
5915
5979
|
}
|
|
5916
|
-
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" }) });
|
|
5917
5981
|
};
|
|
5918
5982
|
var renderLogotype = (logotypeColor, iconOnly) => {
|
|
5919
5983
|
if (iconOnly) {
|
|
5920
5984
|
return null;
|
|
5921
5985
|
}
|
|
5922
|
-
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" }) });
|
|
5923
5987
|
};
|
|
5924
5988
|
var computedViewBox = (iconOnly) => {
|
|
5925
5989
|
if (iconOnly) {
|
|
@@ -5927,7 +5991,7 @@ var computedViewBox = (iconOnly) => {
|
|
|
5927
5991
|
}
|
|
5928
5992
|
return "0 0 144 31.47";
|
|
5929
5993
|
};
|
|
5930
|
-
var WistiaLogoComponent =
|
|
5994
|
+
var WistiaLogoComponent = import_styled_components27.default.svg`
|
|
5931
5995
|
height: ${({ height }) => `${height}px`};
|
|
5932
5996
|
|
|
5933
5997
|
/* ensure it will always fit on mobile */
|
|
@@ -5969,7 +6033,7 @@ var WistiaLogo = ({
|
|
|
5969
6033
|
};
|
|
5970
6034
|
const brandmarkColor = VARIANT_COLORS[variant].brandmark;
|
|
5971
6035
|
const logotypeColor = VARIANT_COLORS[variant].logotype;
|
|
5972
|
-
const Logo = /* @__PURE__ */ (0,
|
|
6036
|
+
const Logo = /* @__PURE__ */ (0, import_jsx_runtime169.jsxs)(
|
|
5973
6037
|
WistiaLogoComponent,
|
|
5974
6038
|
{
|
|
5975
6039
|
height,
|
|
@@ -5979,21 +6043,43 @@ var WistiaLogo = ({
|
|
|
5979
6043
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5980
6044
|
...otherProps,
|
|
5981
6045
|
children: [
|
|
5982
|
-
/* @__PURE__ */ (0,
|
|
5983
|
-
(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,
|
|
5984
6048
|
renderBrandmark(brandmarkColor, iconOnly),
|
|
5985
6049
|
renderLogotype(logotypeColor, iconOnly)
|
|
5986
6050
|
]
|
|
5987
6051
|
}
|
|
5988
6052
|
);
|
|
5989
|
-
return href !== void 0 ? /* @__PURE__ */ (0,
|
|
6053
|
+
return href !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime169.jsx)("a", { href, children: Logo }) : Logo;
|
|
5990
6054
|
};
|
|
5991
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";
|
|
5992
6076
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5993
6077
|
0 && (module.exports = {
|
|
6078
|
+
Badge,
|
|
5994
6079
|
Box,
|
|
5995
6080
|
Button,
|
|
5996
6081
|
ButtonGroup,
|
|
6082
|
+
ColorSchemeWrapper,
|
|
5997
6083
|
Divider,
|
|
5998
6084
|
Ellipsis,
|
|
5999
6085
|
Heading,
|