@wistia/ui 0.0.10 → 0.0.12
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 +896 -695
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +43 -1
- package/dist/index.d.ts +43 -1
- package/dist/index.mjs +795 -595
- package/dist/index.mjs.map +1 -1
- package/package.json +16 -16
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.12
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2024, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -39,6 +39,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
39
39
|
// src/index.ts
|
|
40
40
|
var src_exports = {};
|
|
41
41
|
__export(src_exports, {
|
|
42
|
+
Avatar: () => Avatar,
|
|
42
43
|
Badge: () => Badge,
|
|
43
44
|
Box: () => Box,
|
|
44
45
|
Button: () => Button,
|
|
@@ -810,7 +811,11 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
810
811
|
--color-bg-surface-secondary-hover: var(--gray-4);
|
|
811
812
|
--color-bg-surface-tertiary: var(--gray-5);
|
|
812
813
|
--color-border: var(--gray-6);
|
|
813
|
-
--color-border-
|
|
814
|
+
--color-border-hover: var(--gray-8);
|
|
815
|
+
--color-border-active: var(--gray-9);
|
|
816
|
+
--color-border-secondary: var(--gray-8);
|
|
817
|
+
--color-border-secondary-hover: var(--gray-10);
|
|
818
|
+
--color-border-secondary-active: var(--gray-11);
|
|
814
819
|
--color-icon: var(--gray-11);
|
|
815
820
|
--color-icon-on-fill: var(--gray-contrast);
|
|
816
821
|
--color-text: var(--gray-12);
|
|
@@ -833,6 +838,11 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
833
838
|
--color-bg-surface-secondary-hover-error: var(--error-4);
|
|
834
839
|
--color-bg-surface-tertiary-error: var(--error-5);
|
|
835
840
|
--color-border-error: var(--error-6);
|
|
841
|
+
--color-border-hover-errror: var(--error-8);
|
|
842
|
+
--color-border-active-error: var(--error-9);
|
|
843
|
+
--color-border-secondary-error: var(--error-8);
|
|
844
|
+
--color-border-secondary-hover-error: var(--error-10);
|
|
845
|
+
--color-border-secondary-active-error: var(--error-11);
|
|
836
846
|
--color-icon-error: var(--error-11);
|
|
837
847
|
--color-icon-on-fill-error: var(--error-contrast);
|
|
838
848
|
--color-text-error: var(--error-11);
|
|
@@ -853,6 +863,11 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
853
863
|
--color-bg-surface-secondary-info: var(--blue-3);
|
|
854
864
|
--color-bg-surface-tertiary-info: var(--blue-6);
|
|
855
865
|
--color-border-info: var(--blue-6);
|
|
866
|
+
--color-border-hover-info: var(--blue-8);
|
|
867
|
+
--color-border-active-info: var(--blue-9);
|
|
868
|
+
--color-border-secondary-info: var(--blue-8);
|
|
869
|
+
--color-border-secondary-hover-info: var(--blue-10);
|
|
870
|
+
--color-border-secondary-active-info: var(--blue-11);
|
|
856
871
|
--color-icon-info: var(--blue-11);
|
|
857
872
|
--color-icon-on-fill-info: var(--blue-contrast);
|
|
858
873
|
--color-text-high-contrast-info: var(--blue-12);
|
|
@@ -873,6 +888,11 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
873
888
|
--color-bg-surface-success: var(--success-surface);
|
|
874
889
|
--color-bg-surface-tertiary-success: var(--success-5);
|
|
875
890
|
--color-border-success: var(--success-6);
|
|
891
|
+
--color-border-hover-success: var(--success-8);
|
|
892
|
+
--color-border-active-success: var(--success-9);
|
|
893
|
+
--color-border-secondary-success: var(--success-8);
|
|
894
|
+
--color-border-secondary-hover-success: var(--success-10);
|
|
895
|
+
--color-border-secondary-active-success: var(--success-11);
|
|
876
896
|
--color-icon-on-fill-success: var(--success-contrast);
|
|
877
897
|
--color-icon-success: var(--success-11);
|
|
878
898
|
--color-text-high-contrast-success: var(--success-12);
|
|
@@ -893,6 +913,11 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
893
913
|
--color-bg-surface-tertiary-warning: var(--warning-5);
|
|
894
914
|
--color-bg-surface-warning: var(--warning-surface);
|
|
895
915
|
--color-border-warning: var(--warning-6);
|
|
916
|
+
--color-border-hover-warning: var(--warning-8);
|
|
917
|
+
--color-border-active-warning: var(--warning-9);
|
|
918
|
+
--color-border-secondary-warning: var(--warning-8);
|
|
919
|
+
--color-border-secondary-hover-warning: var(--warning-10);
|
|
920
|
+
--color-border-secondary-active-warning: var(--warning-11);
|
|
896
921
|
--color-icon-on-fill-warning: var(--warning-contrast);
|
|
897
922
|
--color-icon-warning: var(--warning-11);
|
|
898
923
|
--color-text-high-contrast-warning: var(--warning-12);
|
|
@@ -915,6 +940,11 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
915
940
|
--color-bg-surface-secondary-hover-blue: var(--blue-4);
|
|
916
941
|
--color-bg-surface-tertiary-blue: var(--blue-5);
|
|
917
942
|
--color-border-blue: var(--blue-6);
|
|
943
|
+
--color-border-hover-blue: var(--blue-8);
|
|
944
|
+
--color-border-active-blue: var(--blue-9);
|
|
945
|
+
--color-border-secondary-blue: var(--blue-8);
|
|
946
|
+
--color-border-secondary-hover-blue: var(--blue-10);
|
|
947
|
+
--color-border-secondary-active-blue: var(--blue-11);
|
|
918
948
|
--color-icon-blue: var(--blue-11);
|
|
919
949
|
--color-icon-on-fill-blue: var(--blue-contrast);
|
|
920
950
|
--color-text-blue: var(--blue-11);
|
|
@@ -935,6 +965,11 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
935
965
|
--color-bg-surface-secondary-hover-green: var(--green-4);
|
|
936
966
|
--color-bg-surface-tertiary-green: var(--green-5);
|
|
937
967
|
--color-border-green: var(--green-6);
|
|
968
|
+
--color-border-hover-green: var(--green-8);
|
|
969
|
+
--color-border-active-green: var(--green-9);
|
|
970
|
+
--color-border-secondary-green: var(--green-8);
|
|
971
|
+
--color-border-secondary-hover-green: var(--green-10);
|
|
972
|
+
--color-border-secondary-active-green: var(--green-11);
|
|
938
973
|
--color-icon-green: var(--green-11);
|
|
939
974
|
--color-icon-on-fill-green: var(--green-contrast);
|
|
940
975
|
--color-text-green: var(--green-11);
|
|
@@ -955,6 +990,11 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
955
990
|
--color-bg-surface-secondary-orange: var(--orange-3);
|
|
956
991
|
--color-bg-surface-tertiary-orange: var(--orange-5);
|
|
957
992
|
--color-border-orange: var(--orange-6);
|
|
993
|
+
--color-border-hover-orange: var(--orange-8);
|
|
994
|
+
--color-border-active-orange: var(--orange-9);
|
|
995
|
+
--color-border-secondary-orange: var(--orange-8);
|
|
996
|
+
--color-border-secondary-hover-orange: var(--orange-10);
|
|
997
|
+
--color-border-secondary-active-orange: var(--orange-11);
|
|
958
998
|
--color-icon-on-fill-orange: var(--orange-contrast);
|
|
959
999
|
--color-icon-orange: var(--orange-11);
|
|
960
1000
|
--color-text-high-contrast-orange: var(--orange-12);
|
|
@@ -975,6 +1015,11 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
975
1015
|
--color-bg-surface-secondary-pink: var(--pink-3);
|
|
976
1016
|
--color-bg-surface-tertiary-pink: var(--pink-5);
|
|
977
1017
|
--color-border-pink: var(--pink-6);
|
|
1018
|
+
--color-border-hover-pink: var(--pink-8);
|
|
1019
|
+
--color-border-active-pink: var(--pink-9);
|
|
1020
|
+
--color-border-secondary-pink: var(--pink-8);
|
|
1021
|
+
--color-border-secondary-hover-pink: var(--pink-10);
|
|
1022
|
+
--color-border-secondary-active-pink: var(--pink-11);
|
|
978
1023
|
--color-icon-on-fill-pink: var(--pink-contrast);
|
|
979
1024
|
--color-icon-pink: var(--pink-11);
|
|
980
1025
|
--color-text-high-contrast-pink: var(--pink-12);
|
|
@@ -995,6 +1040,11 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
995
1040
|
--color-bg-surface-secondary-purple: var(--purple-3);
|
|
996
1041
|
--color-bg-surface-tertiary-purple: var(--purple-5);
|
|
997
1042
|
--color-border-purple: var(--purple-6);
|
|
1043
|
+
--color-border-hover-purple: var(--purple-8);
|
|
1044
|
+
--color-border-active-purple: var(--purple-9);
|
|
1045
|
+
--color-border-secondary-purple: var(--purple-8);
|
|
1046
|
+
--color-border-secondary-hover-purple: var(--purple-10);
|
|
1047
|
+
--color-border-secondary-active-purple: var(--purple-11);
|
|
998
1048
|
--color-icon-on-fill-purple: var(--purple-contrast);
|
|
999
1049
|
--color-icon-purple: var(--purple-11);
|
|
1000
1050
|
--color-text-high-contrast-purple: var(--purple-12);
|
|
@@ -1015,6 +1065,11 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
1015
1065
|
--color-bg-surface-tertiary-yellow: var(--yellow-5);
|
|
1016
1066
|
--color-bg-surface-yellow: var(--yellow-surface);
|
|
1017
1067
|
--color-border-yellow: var(--yellow-6);
|
|
1068
|
+
--color-border-hover-yellow: var(--yellow-8);
|
|
1069
|
+
--color-border-active-yellow: var(--yellow-9);
|
|
1070
|
+
--color-border-secondary-yellow: var(--yellow-8);
|
|
1071
|
+
--color-border-secondary-hover-yellow: var(--yellow-10);
|
|
1072
|
+
--color-border-secondary-active-yellow: var(--yellow-11);
|
|
1018
1073
|
--color-icon-on-fill-yellow: var(--yellow-contrast);
|
|
1019
1074
|
--color-icon-yellow: var(--yellow-11);
|
|
1020
1075
|
--color-text-high-contrast-yellow: var(--yellow-12);
|
|
@@ -1046,6 +1101,9 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
1046
1101
|
--color-bg-surface-selected-hover: var(--blue-4);
|
|
1047
1102
|
--color-icon-selected: var(--blue-9);
|
|
1048
1103
|
--color-text-selected: var(--blue-9);
|
|
1104
|
+
--color-border-selected: var(--blue-6);
|
|
1105
|
+
--color-border-hover-selected: var(--blue-8);
|
|
1106
|
+
--color-border-active-selected: var(--blue-9);
|
|
1049
1107
|
`;
|
|
1050
1108
|
|
|
1051
1109
|
// src/css/designTokens/borderRadius.tsx
|
|
@@ -1429,10 +1487,13 @@ var useAriaLive = () => {
|
|
|
1429
1487
|
return context;
|
|
1430
1488
|
};
|
|
1431
1489
|
|
|
1432
|
-
// src/components/
|
|
1490
|
+
// src/components/Avatar/Avatar.tsx
|
|
1433
1491
|
var import_react5 = require("react");
|
|
1492
|
+
var import_type_guards6 = require("@wistia/type-guards");
|
|
1493
|
+
var import_styled_components12 = __toESM(require("styled-components"));
|
|
1494
|
+
|
|
1495
|
+
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
1434
1496
|
var import_styled_components11 = __toESM(require("styled-components"));
|
|
1435
|
-
var import_type_guards5 = require("@wistia/type-guards");
|
|
1436
1497
|
|
|
1437
1498
|
// src/private/helpers/getColorScheme/getColorScheme.ts
|
|
1438
1499
|
var import_styled_components10 = require("styled-components");
|
|
@@ -1453,6 +1514,11 @@ var colorSchemeSchema = [
|
|
|
1453
1514
|
{ token: "text-secondary", step: "11" },
|
|
1454
1515
|
{ token: "text-on-fill", step: "contrast" },
|
|
1455
1516
|
{ token: "border", step: "6" },
|
|
1517
|
+
{ token: "border-hover", step: "8" },
|
|
1518
|
+
{ token: "border-active", step: "9" },
|
|
1519
|
+
{ token: "border-secondary", step: "8" },
|
|
1520
|
+
{ token: "border-secondary-hover", step: "10" },
|
|
1521
|
+
{ token: "border-secondary-active", step: "11" },
|
|
1456
1522
|
{ token: "icon", step: "11" },
|
|
1457
1523
|
{ token: "icon-on-fill", step: "contrast" }
|
|
1458
1524
|
];
|
|
@@ -1472,6 +1538,11 @@ var defaultScheme = import_styled_components10.css`
|
|
|
1472
1538
|
--color-text-secondary: var(--gray-11);
|
|
1473
1539
|
--color-text-on-fill: var(--gray-contrast);
|
|
1474
1540
|
--color-border: var(--gray-6);
|
|
1541
|
+
--color-border-hover: var(--gray-8);
|
|
1542
|
+
--color-border-active: var(--gray-9);
|
|
1543
|
+
--color-border-secondary: var(--gray-8);
|
|
1544
|
+
--color-border-secondary-hover: var(--gray-10);
|
|
1545
|
+
--color-border-secondary-active: var(--gray-11);
|
|
1475
1546
|
--color-icon: var(--gray-11);
|
|
1476
1547
|
--color-icon-on-fill: var(--gray-contrast);
|
|
1477
1548
|
`;
|
|
@@ -1489,9 +1560,172 @@ var getColorScheme = (colorScheme) => {
|
|
|
1489
1560
|
`;
|
|
1490
1561
|
};
|
|
1491
1562
|
|
|
1492
|
-
// src/components/
|
|
1563
|
+
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
1493
1564
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
1494
|
-
var
|
|
1565
|
+
var colorSchemeOptions = [
|
|
1566
|
+
"inherit",
|
|
1567
|
+
"default",
|
|
1568
|
+
"info",
|
|
1569
|
+
"success",
|
|
1570
|
+
"warning",
|
|
1571
|
+
"error",
|
|
1572
|
+
"blue",
|
|
1573
|
+
"green",
|
|
1574
|
+
"orange",
|
|
1575
|
+
"pink",
|
|
1576
|
+
"purple",
|
|
1577
|
+
"yellow"
|
|
1578
|
+
];
|
|
1579
|
+
var StyledColorSchemeWrapper = import_styled_components11.default.div`
|
|
1580
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1581
|
+
`;
|
|
1582
|
+
var ColorSchemeWrapper = ({
|
|
1583
|
+
colorScheme,
|
|
1584
|
+
children,
|
|
1585
|
+
...otherProps
|
|
1586
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
1587
|
+
StyledColorSchemeWrapper,
|
|
1588
|
+
{
|
|
1589
|
+
$colorScheme: colorScheme,
|
|
1590
|
+
...otherProps,
|
|
1591
|
+
children
|
|
1592
|
+
}
|
|
1593
|
+
);
|
|
1594
|
+
ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
|
|
1595
|
+
|
|
1596
|
+
// src/components/Avatar/formatNameForDisplay.tsx
|
|
1597
|
+
var import_type_guards5 = require("@wistia/type-guards");
|
|
1598
|
+
var containsEmojiCharacter = (char) => {
|
|
1599
|
+
const emojiRegex = /<a?:.+?:\d{18}>|\p{Extended_Pictographic}/gu;
|
|
1600
|
+
return emojiRegex.test(char);
|
|
1601
|
+
};
|
|
1602
|
+
var formatNameForDisplay = (name) => {
|
|
1603
|
+
if ((0, import_type_guards5.isNil)(name) || !(0, import_type_guards5.isString)(name) || (0, import_type_guards5.isEmptyString)(name) || containsEmojiCharacter(name)) {
|
|
1604
|
+
return "U";
|
|
1605
|
+
}
|
|
1606
|
+
const firstChar = name.trim().substring(0, 1);
|
|
1607
|
+
return firstChar.toUpperCase();
|
|
1608
|
+
};
|
|
1609
|
+
|
|
1610
|
+
// src/components/Avatar/Avatar.tsx
|
|
1611
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
1612
|
+
var AvatarImage = import_styled_components12.default.img`
|
|
1613
|
+
align-items: center;
|
|
1614
|
+
background-color: white;
|
|
1615
|
+
border-radius: 50%;
|
|
1616
|
+
display: flex;
|
|
1617
|
+
height: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1618
|
+
justify-content: center;
|
|
1619
|
+
object-fit: cover;
|
|
1620
|
+
overflow: hidden;
|
|
1621
|
+
pointer-events: none;
|
|
1622
|
+
user-select: none;
|
|
1623
|
+
width: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1624
|
+
|
|
1625
|
+
a:hover & {
|
|
1626
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 25%);
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
a:active & {
|
|
1630
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 50%);
|
|
1631
|
+
}
|
|
1632
|
+
`;
|
|
1633
|
+
var avatarSizeMap = {
|
|
1634
|
+
sm: 16,
|
|
1635
|
+
md: 24,
|
|
1636
|
+
lg: 32
|
|
1637
|
+
};
|
|
1638
|
+
var fontSizeScaleMultiplier = 0.55;
|
|
1639
|
+
var InitialsContainer = import_styled_components12.default.div`
|
|
1640
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1641
|
+
align-items: center;
|
|
1642
|
+
background-color: var(--color-bg-fill);
|
|
1643
|
+
border: 1px solid var(--color-border);
|
|
1644
|
+
border-radius: 50%;
|
|
1645
|
+
color: var(--color-text-on-fill);
|
|
1646
|
+
display: flex;
|
|
1647
|
+
font-size: ${({ $heightAndWidth }) => $heightAndWidth * fontSizeScaleMultiplier}px;
|
|
1648
|
+
height: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1649
|
+
justify-content: center;
|
|
1650
|
+
overflow: hidden;
|
|
1651
|
+
width: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1652
|
+
|
|
1653
|
+
a:hover & {
|
|
1654
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 25%);
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
a:active & {
|
|
1658
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 50%);
|
|
1659
|
+
}
|
|
1660
|
+
`;
|
|
1661
|
+
var AvatarWrapper = import_styled_components12.default.div`
|
|
1662
|
+
max-height: ${({ $maxHeight }) => $maxHeight}px;
|
|
1663
|
+
`;
|
|
1664
|
+
var chooseColorScheme = (name) => {
|
|
1665
|
+
if ((0, import_type_guards6.isNil)(name) || name === "Anonymous") {
|
|
1666
|
+
return "default";
|
|
1667
|
+
}
|
|
1668
|
+
const filteredColors = colorSchemeOptions.filter(
|
|
1669
|
+
(color) => color !== "inherit" && color !== "default"
|
|
1670
|
+
);
|
|
1671
|
+
const multiplier = 31;
|
|
1672
|
+
const hashCode = (str) => Array.from(str).reduce((sum, char) => Math.imul(multiplier, sum) + char.charCodeAt(0) | 0, 0);
|
|
1673
|
+
const index = Math.abs(hashCode(name)) % filteredColors.length;
|
|
1674
|
+
return filteredColors[index] ?? "default";
|
|
1675
|
+
};
|
|
1676
|
+
var Avatar = ({
|
|
1677
|
+
imageUrl,
|
|
1678
|
+
heightAndWidth,
|
|
1679
|
+
name,
|
|
1680
|
+
size = "md",
|
|
1681
|
+
onImageLoad,
|
|
1682
|
+
...otherProps
|
|
1683
|
+
}) => {
|
|
1684
|
+
const [imageLoadState, setImageLoadState] = (0, import_react5.useState)(null);
|
|
1685
|
+
const handleImageLoad = () => {
|
|
1686
|
+
setImageLoadState("loaded");
|
|
1687
|
+
onImageLoad?.("image");
|
|
1688
|
+
};
|
|
1689
|
+
const handleImageLoadError = () => {
|
|
1690
|
+
setImageLoadState("error");
|
|
1691
|
+
onImageLoad?.("initials");
|
|
1692
|
+
};
|
|
1693
|
+
const avatarSize = heightAndWidth ?? avatarSizeMap[size];
|
|
1694
|
+
const avatarColor = (0, import_react5.useMemo)(() => chooseColorScheme(name), [name]);
|
|
1695
|
+
const showInitials = (0, import_type_guards6.isNil)(imageUrl) || imageLoadState === "error";
|
|
1696
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1697
|
+
AvatarWrapper,
|
|
1698
|
+
{
|
|
1699
|
+
...otherProps,
|
|
1700
|
+
$maxHeight: avatarSize,
|
|
1701
|
+
children: showInitials ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1702
|
+
InitialsContainer,
|
|
1703
|
+
{
|
|
1704
|
+
$colorScheme: avatarColor,
|
|
1705
|
+
$heightAndWidth: avatarSize,
|
|
1706
|
+
children: formatNameForDisplay(name)
|
|
1707
|
+
}
|
|
1708
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1709
|
+
AvatarImage,
|
|
1710
|
+
{
|
|
1711
|
+
$heightAndWidth: avatarSize,
|
|
1712
|
+
alt: name ?? "Unavailable",
|
|
1713
|
+
onError: handleImageLoadError,
|
|
1714
|
+
onLoad: handleImageLoad,
|
|
1715
|
+
src: imageUrl
|
|
1716
|
+
}
|
|
1717
|
+
)
|
|
1718
|
+
}
|
|
1719
|
+
);
|
|
1720
|
+
};
|
|
1721
|
+
Avatar.displayName = "Avatar";
|
|
1722
|
+
|
|
1723
|
+
// src/components/Badge/Badge.tsx
|
|
1724
|
+
var import_react6 = require("react");
|
|
1725
|
+
var import_styled_components13 = __toESM(require("styled-components"));
|
|
1726
|
+
var import_type_guards7 = require("@wistia/type-guards");
|
|
1727
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
1728
|
+
var StyledBadge = import_styled_components13.default.div`
|
|
1495
1729
|
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1496
1730
|
align-items: center;
|
|
1497
1731
|
background-color: var(--color-bg-surface-secondary);
|
|
@@ -1511,10 +1745,10 @@ var StyledBadge = import_styled_components11.default.div`
|
|
|
1511
1745
|
width: 12px;
|
|
1512
1746
|
}
|
|
1513
1747
|
`;
|
|
1514
|
-
var Badge = (0,
|
|
1748
|
+
var Badge = (0, import_react6.forwardRef)(
|
|
1515
1749
|
({ colorScheme = "inherit", label, icon, ...otherProps }, ref) => {
|
|
1516
|
-
const hasIcon = (0,
|
|
1517
|
-
return /* @__PURE__ */ (0,
|
|
1750
|
+
const hasIcon = (0, import_type_guards7.isNotNil)(icon);
|
|
1751
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
1518
1752
|
StyledBadge,
|
|
1519
1753
|
{
|
|
1520
1754
|
ref,
|
|
@@ -1523,7 +1757,7 @@ var Badge = (0, import_react5.forwardRef)(
|
|
|
1523
1757
|
$hasIcon: hasIcon,
|
|
1524
1758
|
children: [
|
|
1525
1759
|
hasIcon ? icon : null,
|
|
1526
|
-
/* @__PURE__ */ (0,
|
|
1760
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", { children: label })
|
|
1527
1761
|
]
|
|
1528
1762
|
}
|
|
1529
1763
|
);
|
|
@@ -1532,15 +1766,15 @@ var Badge = (0, import_react5.forwardRef)(
|
|
|
1532
1766
|
Badge.displayName = "Badge";
|
|
1533
1767
|
|
|
1534
1768
|
// src/components/Box/Box.tsx
|
|
1535
|
-
var
|
|
1536
|
-
var
|
|
1537
|
-
var
|
|
1538
|
-
var
|
|
1769
|
+
var import_react7 = require("react");
|
|
1770
|
+
var import_styled_components14 = __toESM(require("styled-components"));
|
|
1771
|
+
var import_type_guards8 = require("@wistia/type-guards");
|
|
1772
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
1539
1773
|
var isDev = process.env["NODE_ENV"] === "development";
|
|
1540
1774
|
var PROPS_FOR_FLEX_CHILDREN = /* @__PURE__ */ new Set(["alignSelf", "basis", "grow", "order", "shrink"]);
|
|
1541
1775
|
var getGapStyle = (gap) => {
|
|
1542
|
-
if ((0,
|
|
1543
|
-
if ((0,
|
|
1776
|
+
if ((0, import_type_guards8.isNotNil)(gap)) {
|
|
1777
|
+
if ((0, import_type_guards8.isRecord)(gap)) {
|
|
1544
1778
|
return Object.entries(gap).map(([key, value]) => `${key}-gap: ${value};`).join("");
|
|
1545
1779
|
}
|
|
1546
1780
|
return `gap: ${gap.toString()};`;
|
|
@@ -1577,34 +1811,34 @@ var getFillViewportStyle = (fillViewport) => {
|
|
|
1577
1811
|
}
|
|
1578
1812
|
return void 0;
|
|
1579
1813
|
};
|
|
1580
|
-
var BoxComponent =
|
|
1814
|
+
var BoxComponent = import_styled_components14.default.div`
|
|
1581
1815
|
align-content: ${({ $alignContent }) => $alignContent};
|
|
1582
1816
|
align-items: ${({ $alignItems }) => $alignItems};
|
|
1583
1817
|
align-self: ${({ $alignSelf }) => $alignSelf ?? null};
|
|
1584
|
-
display: ${({ $inline }) => (0,
|
|
1585
|
-
flex-basis: ${({ $basis }) => (0,
|
|
1818
|
+
display: ${({ $inline }) => (0, import_type_guards8.isNotNil)($inline) && $inline ? "inline-flex" : "flex"};
|
|
1819
|
+
flex-basis: ${({ $basis }) => (0, import_type_guards8.isNotNil)($basis) ? $basis : null};
|
|
1586
1820
|
flex-direction: ${({ $flexDirection }) => $flexDirection};
|
|
1587
1821
|
${({ $fillBox: fill }) => getFillStyle(fill)};
|
|
1588
1822
|
${({ $fillViewport }) => getFillViewportStyle($fillViewport)};
|
|
1589
1823
|
|
|
1590
1824
|
/* Box children styles */
|
|
1591
|
-
flex-grow: ${({ $grow }) => (0,
|
|
1592
|
-
flex-shrink: ${({ $shrink }) => (0,
|
|
1825
|
+
flex-grow: ${({ $grow }) => (0, import_type_guards8.isNotNil)($grow) ? $grow : null};
|
|
1826
|
+
flex-shrink: ${({ $shrink }) => (0, import_type_guards8.isNotNil)($shrink) ? $shrink : null};
|
|
1593
1827
|
flex-wrap: ${({ $wrapItems }) => $wrapItems ? "wrap" : "nowrap"};
|
|
1594
1828
|
${({ $gap }) => getGapStyle($gap)};
|
|
1595
1829
|
justify-content: ${({ $justifyContent }) => $justifyContent};
|
|
1596
|
-
order: ${({ $order }) => (0,
|
|
1830
|
+
order: ${({ $order }) => (0, import_type_guards8.isNotNil)($order) ? $order : null};
|
|
1597
1831
|
`;
|
|
1598
1832
|
var wrapChildren = (children) => {
|
|
1599
|
-
if ((0,
|
|
1833
|
+
if ((0, import_type_guards8.isNotNil)(children)) {
|
|
1600
1834
|
if (typeof children === "object" && isDev) {
|
|
1601
|
-
return
|
|
1602
|
-
if ((0,
|
|
1835
|
+
return import_react7.Children.map(children, (child) => {
|
|
1836
|
+
if ((0, import_type_guards8.isNil)(child)) return null;
|
|
1603
1837
|
const elementParams = {};
|
|
1604
1838
|
if (child.type?.displayName === "Box" || child.type?.displayName === "Box_UI") {
|
|
1605
1839
|
elementParams.hasBoxParent = true;
|
|
1606
1840
|
}
|
|
1607
|
-
return (0,
|
|
1841
|
+
return (0, import_react7.cloneElement)(child, elementParams);
|
|
1608
1842
|
});
|
|
1609
1843
|
}
|
|
1610
1844
|
return children;
|
|
@@ -1632,7 +1866,7 @@ var Box = ({
|
|
|
1632
1866
|
}
|
|
1633
1867
|
});
|
|
1634
1868
|
}
|
|
1635
|
-
return /* @__PURE__ */ (0,
|
|
1869
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1636
1870
|
BoxComponent,
|
|
1637
1871
|
{
|
|
1638
1872
|
$alignContent: alignContent,
|
|
@@ -1653,13 +1887,13 @@ var Box = ({
|
|
|
1653
1887
|
Box.displayName = "Box";
|
|
1654
1888
|
|
|
1655
1889
|
// src/components/Button/Button.tsx
|
|
1656
|
-
var
|
|
1657
|
-
var
|
|
1658
|
-
var
|
|
1890
|
+
var import_react10 = require("react");
|
|
1891
|
+
var import_styled_components19 = __toESM(require("styled-components"));
|
|
1892
|
+
var import_type_guards12 = require("@wistia/type-guards");
|
|
1659
1893
|
|
|
1660
1894
|
// src/css/buttonResetCss.tsx
|
|
1661
|
-
var
|
|
1662
|
-
var buttonResetCss =
|
|
1895
|
+
var import_styled_components15 = require("styled-components");
|
|
1896
|
+
var buttonResetCss = import_styled_components15.css`
|
|
1663
1897
|
align-items: center;
|
|
1664
1898
|
background-color: transparent;
|
|
1665
1899
|
background-image: none;
|
|
@@ -1704,8 +1938,8 @@ var buttonResetCss = import_styled_components13.css`
|
|
|
1704
1938
|
`;
|
|
1705
1939
|
|
|
1706
1940
|
// src/components/Button/buttonStyles.tsx
|
|
1707
|
-
var
|
|
1708
|
-
var buttonSmallStyles =
|
|
1941
|
+
var import_styled_components16 = require("styled-components");
|
|
1942
|
+
var buttonSmallStyles = import_styled_components16.css`
|
|
1709
1943
|
--button-padding-vertical: var(--space-01);
|
|
1710
1944
|
--button-padding-horizontal: var(--space-02);
|
|
1711
1945
|
--button-label-padding-horizontal: var(--space-01);
|
|
@@ -1716,7 +1950,7 @@ var buttonSmallStyles = import_styled_components14.css`
|
|
|
1716
1950
|
--button-icon-size: 12px;
|
|
1717
1951
|
--button-label-gap: 4px;
|
|
1718
1952
|
`;
|
|
1719
|
-
var buttonMediumStyles =
|
|
1953
|
+
var buttonMediumStyles = import_styled_components16.css`
|
|
1720
1954
|
--button-padding-vertical: var(--space-02);
|
|
1721
1955
|
--button-padding-horizontal: var(--space-02);
|
|
1722
1956
|
--button-label-padding-horizontal: 6px;
|
|
@@ -1727,7 +1961,7 @@ var buttonMediumStyles = import_styled_components14.css`
|
|
|
1727
1961
|
--button-icon-size: 16px;
|
|
1728
1962
|
--button-label-gap: 6px;
|
|
1729
1963
|
`;
|
|
1730
|
-
var buttonLargeStyles =
|
|
1964
|
+
var buttonLargeStyles = import_styled_components16.css`
|
|
1731
1965
|
--button-padding-vertical: var(--space-02);
|
|
1732
1966
|
--button-padding-horizontal: var(--space-02);
|
|
1733
1967
|
--button-label-padding-horizontal: var(--space-02);
|
|
@@ -1738,7 +1972,7 @@ var buttonLargeStyles = import_styled_components14.css`
|
|
|
1738
1972
|
--button-icon-size: 24px;
|
|
1739
1973
|
--button-label-gap: 8px;
|
|
1740
1974
|
`;
|
|
1741
|
-
var buttonExtraLargeStyles =
|
|
1975
|
+
var buttonExtraLargeStyles = import_styled_components16.css`
|
|
1742
1976
|
--button-padding-vertical: var(--space-03);
|
|
1743
1977
|
--button-padding-horizontal: var(--space-03);
|
|
1744
1978
|
--button-label-padding-horizontal: var(--space-02);
|
|
@@ -1749,35 +1983,35 @@ var buttonExtraLargeStyles = import_styled_components14.css`
|
|
|
1749
1983
|
--button-icon-size: 24px;
|
|
1750
1984
|
--button-label-gap: 8px;
|
|
1751
1985
|
`;
|
|
1752
|
-
var ghostButtonVariant =
|
|
1986
|
+
var ghostButtonVariant = import_styled_components16.css`
|
|
1753
1987
|
--button-color-bg: transparent;
|
|
1754
1988
|
--button-color-bg-hover: var(--color-bg-surface-hover);
|
|
1755
1989
|
--button-color-bg-active: var(--color-bg-surface-active);
|
|
1756
1990
|
--button-color-text: var(--color-text);
|
|
1757
1991
|
--button-color-icon: var(--color-icon);
|
|
1758
1992
|
`;
|
|
1759
|
-
var outlineButtonVariant =
|
|
1993
|
+
var outlineButtonVariant = import_styled_components16.css`
|
|
1760
1994
|
${ghostButtonVariant};
|
|
1761
1995
|
--button-color-border: var(--color-border);
|
|
1762
1996
|
|
|
1763
1997
|
border: 1px solid var(--button-color-border);
|
|
1764
1998
|
box-shadow: 0 0 0 2px var(--button-color-border) inset;
|
|
1765
1999
|
`;
|
|
1766
|
-
var softButtonVariant =
|
|
2000
|
+
var softButtonVariant = import_styled_components16.css`
|
|
1767
2001
|
--button-color-bg: var(--color-bg-surface-secondary);
|
|
1768
2002
|
--button-color-bg-hover: var(--color-bg-surface-secondary-hover);
|
|
1769
2003
|
--button-color-bg-active: var(--color-bg-surface-secondary-active);
|
|
1770
2004
|
--button-color-text: var(--color-text);
|
|
1771
2005
|
--button-color-icon: var(--color-icon);
|
|
1772
2006
|
`;
|
|
1773
|
-
var solidButtonVariant =
|
|
2007
|
+
var solidButtonVariant = import_styled_components16.css`
|
|
1774
2008
|
--button-color-bg: var(--color-bg-fill);
|
|
1775
2009
|
--button-color-bg-hover: var(--color-bg-fill-hover);
|
|
1776
2010
|
--button-color-bg-active: var(--color-bg-fill-active);
|
|
1777
2011
|
--button-color-text: var(--color-text-on-fill);
|
|
1778
2012
|
--button-color-icon: var(--color-icon-on-fill);
|
|
1779
2013
|
`;
|
|
1780
|
-
var disabledButtonVariant =
|
|
2014
|
+
var disabledButtonVariant = import_styled_components16.css`
|
|
1781
2015
|
--button-color-bg: var(--color-bg-surface-disabled);
|
|
1782
2016
|
--button-color-bg-hover: var(--color-bg-surface-disabled);
|
|
1783
2017
|
--button-color-bg-active: var(--color-bg-surface-disabled);
|
|
@@ -1785,7 +2019,7 @@ var disabledButtonVariant = import_styled_components14.css`
|
|
|
1785
2019
|
--button-color-icon: var(--color-icon-disabled);
|
|
1786
2020
|
--button-color-border: var(--color-border-disabled);
|
|
1787
2021
|
`;
|
|
1788
|
-
var pressedButtonVariant =
|
|
2022
|
+
var pressedButtonVariant = import_styled_components16.css`
|
|
1789
2023
|
--button-color-bg: var(--color-bg-surface-selected);
|
|
1790
2024
|
--button-color-bg-hover: var(--color-bg-surface-selected-hover);
|
|
1791
2025
|
--button-color-bg-active: var(--color-bg-surface-selected-active);
|
|
@@ -1793,7 +2027,7 @@ var pressedButtonVariant = import_styled_components14.css`
|
|
|
1793
2027
|
--button-color-icon: var(--color-icon-selected);
|
|
1794
2028
|
--button-color-border: var(--color-border-selected);
|
|
1795
2029
|
`;
|
|
1796
|
-
var buttonBaseStyles =
|
|
2030
|
+
var buttonBaseStyles = import_styled_components16.css`
|
|
1797
2031
|
border-radius: var(--border-radius-rounded);
|
|
1798
2032
|
font-family: var(--button-typography-family);
|
|
1799
2033
|
font-size: var(--button-typography-size);
|
|
@@ -1860,18 +2094,18 @@ var buttonSizeStyles = {
|
|
|
1860
2094
|
};
|
|
1861
2095
|
|
|
1862
2096
|
// src/components/Icon/Icon.tsx
|
|
1863
|
-
var
|
|
1864
|
-
var
|
|
2097
|
+
var import_type_guards10 = require("@wistia/type-guards");
|
|
2098
|
+
var import_styled_components17 = __toESM(require("styled-components"));
|
|
1865
2099
|
|
|
1866
2100
|
// src/components/Icon/icons/AbTestIcon.tsx
|
|
1867
|
-
var
|
|
1868
|
-
var AbTestIcon = (props) => /* @__PURE__ */ (0,
|
|
2101
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
2102
|
+
var AbTestIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1869
2103
|
"svg",
|
|
1870
2104
|
{
|
|
1871
2105
|
...props,
|
|
1872
2106
|
viewBox: "0 0 24 24",
|
|
1873
2107
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1874
|
-
children: /* @__PURE__ */ (0,
|
|
2108
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1875
2109
|
"path",
|
|
1876
2110
|
{
|
|
1877
2111
|
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",
|
|
@@ -1882,14 +2116,14 @@ var AbTestIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
|
1882
2116
|
);
|
|
1883
2117
|
|
|
1884
2118
|
// src/components/Icon/icons/AccessibilityIcon.tsx
|
|
1885
|
-
var
|
|
1886
|
-
var AccessibilityIcon = (props) => /* @__PURE__ */ (0,
|
|
2119
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
2120
|
+
var AccessibilityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1887
2121
|
"svg",
|
|
1888
2122
|
{
|
|
1889
2123
|
...props,
|
|
1890
2124
|
viewBox: "0 0 24 24",
|
|
1891
2125
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1892
|
-
children: /* @__PURE__ */ (0,
|
|
2126
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1893
2127
|
"path",
|
|
1894
2128
|
{
|
|
1895
2129
|
clipRule: "evenodd",
|
|
@@ -1902,14 +2136,14 @@ var AccessibilityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
|
1902
2136
|
);
|
|
1903
2137
|
|
|
1904
2138
|
// src/components/Icon/icons/ActivityIcon.tsx
|
|
1905
|
-
var
|
|
1906
|
-
var ActivityIcon = (props) => /* @__PURE__ */ (0,
|
|
2139
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
2140
|
+
var ActivityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1907
2141
|
"svg",
|
|
1908
2142
|
{
|
|
1909
2143
|
...props,
|
|
1910
2144
|
viewBox: "0 0 24 24",
|
|
1911
2145
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1912
|
-
children: /* @__PURE__ */ (0,
|
|
2146
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1913
2147
|
"path",
|
|
1914
2148
|
{
|
|
1915
2149
|
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",
|
|
@@ -1920,14 +2154,14 @@ var ActivityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
|
1920
2154
|
);
|
|
1921
2155
|
|
|
1922
2156
|
// src/components/Icon/icons/AddMediaIcon.tsx
|
|
1923
|
-
var
|
|
1924
|
-
var AddMediaIcon = (props) => /* @__PURE__ */ (0,
|
|
2157
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
2158
|
+
var AddMediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1925
2159
|
"svg",
|
|
1926
2160
|
{
|
|
1927
2161
|
...props,
|
|
1928
2162
|
viewBox: "0 0 24 24",
|
|
1929
2163
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1930
|
-
children: /* @__PURE__ */ (0,
|
|
2164
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1931
2165
|
"path",
|
|
1932
2166
|
{
|
|
1933
2167
|
clipRule: "evenodd",
|
|
@@ -1940,14 +2174,14 @@ var AddMediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
|
1940
2174
|
);
|
|
1941
2175
|
|
|
1942
2176
|
// src/components/Icon/icons/AnnotationLinkIcon.tsx
|
|
1943
|
-
var
|
|
1944
|
-
var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0,
|
|
2177
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
2178
|
+
var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1945
2179
|
"svg",
|
|
1946
2180
|
{
|
|
1947
2181
|
...props,
|
|
1948
2182
|
viewBox: "0 0 24 24",
|
|
1949
2183
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1950
|
-
children: /* @__PURE__ */ (0,
|
|
2184
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1951
2185
|
"path",
|
|
1952
2186
|
{
|
|
1953
2187
|
clipRule: "evenodd",
|
|
@@ -1960,14 +2194,14 @@ var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)
|
|
|
1960
2194
|
);
|
|
1961
2195
|
|
|
1962
2196
|
// src/components/Icon/icons/AppearanceIcon.tsx
|
|
1963
|
-
var
|
|
1964
|
-
var AppearanceIcon = (props) => /* @__PURE__ */ (0,
|
|
2197
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
2198
|
+
var AppearanceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1965
2199
|
"svg",
|
|
1966
2200
|
{
|
|
1967
2201
|
...props,
|
|
1968
2202
|
viewBox: "0 0 24 24",
|
|
1969
2203
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1970
|
-
children: /* @__PURE__ */ (0,
|
|
2204
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1971
2205
|
"path",
|
|
1972
2206
|
{
|
|
1973
2207
|
clipRule: "evenodd",
|
|
@@ -1980,14 +2214,14 @@ var AppearanceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
|
1980
2214
|
);
|
|
1981
2215
|
|
|
1982
2216
|
// src/components/Icon/icons/ArchiveIcon.tsx
|
|
1983
|
-
var
|
|
1984
|
-
var ArchiveIcon = (props) => /* @__PURE__ */ (0,
|
|
2217
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
2218
|
+
var ArchiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1985
2219
|
"svg",
|
|
1986
2220
|
{
|
|
1987
2221
|
...props,
|
|
1988
2222
|
viewBox: "0 0 24 24",
|
|
1989
2223
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1990
|
-
children: /* @__PURE__ */ (0,
|
|
2224
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1991
2225
|
"path",
|
|
1992
2226
|
{
|
|
1993
2227
|
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",
|
|
@@ -1998,14 +2232,14 @@ var ArchiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
|
1998
2232
|
);
|
|
1999
2233
|
|
|
2000
2234
|
// src/components/Icon/icons/ArrowDownIcon.tsx
|
|
2001
|
-
var
|
|
2002
|
-
var ArrowDownIcon = (props) => /* @__PURE__ */ (0,
|
|
2235
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
2236
|
+
var ArrowDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
2003
2237
|
"svg",
|
|
2004
2238
|
{
|
|
2005
2239
|
...props,
|
|
2006
2240
|
viewBox: "0 0 24 24",
|
|
2007
2241
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2008
|
-
children: /* @__PURE__ */ (0,
|
|
2242
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
2009
2243
|
"path",
|
|
2010
2244
|
{
|
|
2011
2245
|
clipRule: "evenodd",
|
|
@@ -2018,14 +2252,14 @@ var ArrowDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
|
2018
2252
|
);
|
|
2019
2253
|
|
|
2020
2254
|
// src/components/Icon/icons/ArrowLeftIcon.tsx
|
|
2021
|
-
var
|
|
2022
|
-
var ArrowLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
2255
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
2256
|
+
var ArrowLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2023
2257
|
"svg",
|
|
2024
2258
|
{
|
|
2025
2259
|
...props,
|
|
2026
2260
|
viewBox: "0 0 24 24",
|
|
2027
2261
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2028
|
-
children: /* @__PURE__ */ (0,
|
|
2262
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2029
2263
|
"path",
|
|
2030
2264
|
{
|
|
2031
2265
|
clipRule: "evenodd",
|
|
@@ -2038,14 +2272,14 @@ var ArrowLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
|
2038
2272
|
);
|
|
2039
2273
|
|
|
2040
2274
|
// src/components/Icon/icons/ArrowRightIcon.tsx
|
|
2041
|
-
var
|
|
2042
|
-
var ArrowRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2275
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
2276
|
+
var ArrowRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2043
2277
|
"svg",
|
|
2044
2278
|
{
|
|
2045
2279
|
...props,
|
|
2046
2280
|
viewBox: "0 0 24 24",
|
|
2047
2281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2048
|
-
children: /* @__PURE__ */ (0,
|
|
2282
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2049
2283
|
"path",
|
|
2050
2284
|
{
|
|
2051
2285
|
clipRule: "evenodd",
|
|
@@ -2058,14 +2292,14 @@ var ArrowRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
|
2058
2292
|
);
|
|
2059
2293
|
|
|
2060
2294
|
// src/components/Icon/icons/ArrowUpIcon.tsx
|
|
2061
|
-
var
|
|
2062
|
-
var ArrowUpIcon = (props) => /* @__PURE__ */ (0,
|
|
2295
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
2296
|
+
var ArrowUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2063
2297
|
"svg",
|
|
2064
2298
|
{
|
|
2065
2299
|
...props,
|
|
2066
2300
|
viewBox: "0 0 24 24",
|
|
2067
2301
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2068
|
-
children: /* @__PURE__ */ (0,
|
|
2302
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2069
2303
|
"path",
|
|
2070
2304
|
{
|
|
2071
2305
|
clipRule: "evenodd",
|
|
@@ -2078,14 +2312,14 @@ var ArrowUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
|
2078
2312
|
);
|
|
2079
2313
|
|
|
2080
2314
|
// src/components/Icon/icons/ArrowUpRightIcon.tsx
|
|
2081
|
-
var
|
|
2082
|
-
var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2315
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
2316
|
+
var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2083
2317
|
"svg",
|
|
2084
2318
|
{
|
|
2085
2319
|
...props,
|
|
2086
2320
|
viewBox: "0 0 24 24",
|
|
2087
2321
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2088
|
-
children: /* @__PURE__ */ (0,
|
|
2322
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2089
2323
|
"path",
|
|
2090
2324
|
{
|
|
2091
2325
|
clipRule: "evenodd",
|
|
@@ -2098,14 +2332,14 @@ var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
|
2098
2332
|
);
|
|
2099
2333
|
|
|
2100
2334
|
// src/components/Icon/icons/AsteriskIcon.tsx
|
|
2101
|
-
var
|
|
2102
|
-
var AsteriskIcon = (props) => /* @__PURE__ */ (0,
|
|
2335
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
2336
|
+
var AsteriskIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2103
2337
|
"svg",
|
|
2104
2338
|
{
|
|
2105
2339
|
...props,
|
|
2106
2340
|
viewBox: "0 0 24 24",
|
|
2107
2341
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2108
|
-
children: /* @__PURE__ */ (0,
|
|
2342
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2109
2343
|
"path",
|
|
2110
2344
|
{
|
|
2111
2345
|
clipRule: "evenodd",
|
|
@@ -2118,14 +2352,14 @@ var AsteriskIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
|
2118
2352
|
);
|
|
2119
2353
|
|
|
2120
2354
|
// src/components/Icon/icons/AudioDescriptionIcon.tsx
|
|
2121
|
-
var
|
|
2122
|
-
var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0,
|
|
2355
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
2356
|
+
var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2123
2357
|
"svg",
|
|
2124
2358
|
{
|
|
2125
2359
|
...props,
|
|
2126
2360
|
viewBox: "0 0 24 24",
|
|
2127
2361
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2128
|
-
children: /* @__PURE__ */ (0,
|
|
2362
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2129
2363
|
"path",
|
|
2130
2364
|
{
|
|
2131
2365
|
clipRule: "evenodd",
|
|
@@ -2138,14 +2372,14 @@ var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.j
|
|
|
2138
2372
|
);
|
|
2139
2373
|
|
|
2140
2374
|
// src/components/Icon/icons/AutoScrollIcon.tsx
|
|
2141
|
-
var
|
|
2142
|
-
var AutoScrollIcon = (props) => /* @__PURE__ */ (0,
|
|
2375
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
2376
|
+
var AutoScrollIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2143
2377
|
"svg",
|
|
2144
2378
|
{
|
|
2145
2379
|
...props,
|
|
2146
2380
|
viewBox: "0 0 24 24",
|
|
2147
2381
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2148
|
-
children: /* @__PURE__ */ (0,
|
|
2382
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2149
2383
|
"path",
|
|
2150
2384
|
{
|
|
2151
2385
|
clipRule: "evenodd",
|
|
@@ -2158,14 +2392,14 @@ var AutoScrollIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
|
2158
2392
|
);
|
|
2159
2393
|
|
|
2160
2394
|
// src/components/Icon/icons/BackgroundIcon.tsx
|
|
2161
|
-
var
|
|
2162
|
-
var BackgroundIcon = (props) => /* @__PURE__ */ (0,
|
|
2395
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
2396
|
+
var BackgroundIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2163
2397
|
"svg",
|
|
2164
2398
|
{
|
|
2165
2399
|
...props,
|
|
2166
2400
|
viewBox: "0 0 24 24",
|
|
2167
2401
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2168
|
-
children: /* @__PURE__ */ (0,
|
|
2402
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2169
2403
|
"path",
|
|
2170
2404
|
{
|
|
2171
2405
|
clipRule: "evenodd",
|
|
@@ -2178,14 +2412,14 @@ var BackgroundIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
|
2178
2412
|
);
|
|
2179
2413
|
|
|
2180
2414
|
// src/components/Icon/icons/BellIcon.tsx
|
|
2181
|
-
var
|
|
2182
|
-
var BellIcon = (props) => /* @__PURE__ */ (0,
|
|
2415
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
2416
|
+
var BellIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2183
2417
|
"svg",
|
|
2184
2418
|
{
|
|
2185
2419
|
...props,
|
|
2186
2420
|
viewBox: "0 0 24 24",
|
|
2187
2421
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2188
|
-
children: /* @__PURE__ */ (0,
|
|
2422
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2189
2423
|
"path",
|
|
2190
2424
|
{
|
|
2191
2425
|
clipRule: "evenodd",
|
|
@@ -2198,14 +2432,14 @@ var BellIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
|
2198
2432
|
);
|
|
2199
2433
|
|
|
2200
2434
|
// src/components/Icon/icons/BoltIcon.tsx
|
|
2201
|
-
var
|
|
2202
|
-
var BoltIcon = (props) => /* @__PURE__ */ (0,
|
|
2435
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
2436
|
+
var BoltIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2203
2437
|
"svg",
|
|
2204
2438
|
{
|
|
2205
2439
|
...props,
|
|
2206
2440
|
viewBox: "0 0 24 24",
|
|
2207
2441
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2208
|
-
children: /* @__PURE__ */ (0,
|
|
2442
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2209
2443
|
"path",
|
|
2210
2444
|
{
|
|
2211
2445
|
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",
|
|
@@ -2216,14 +2450,14 @@ var BoltIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
|
2216
2450
|
);
|
|
2217
2451
|
|
|
2218
2452
|
// src/components/Icon/icons/CalendarIcon.tsx
|
|
2219
|
-
var
|
|
2220
|
-
var CalendarIcon = (props) => /* @__PURE__ */ (0,
|
|
2453
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
2454
|
+
var CalendarIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2221
2455
|
"svg",
|
|
2222
2456
|
{
|
|
2223
2457
|
...props,
|
|
2224
2458
|
viewBox: "0 0 24 24",
|
|
2225
2459
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2226
|
-
children: /* @__PURE__ */ (0,
|
|
2460
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2227
2461
|
"path",
|
|
2228
2462
|
{
|
|
2229
2463
|
clipRule: "evenodd",
|
|
@@ -2236,14 +2470,14 @@ var CalendarIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
|
2236
2470
|
);
|
|
2237
2471
|
|
|
2238
2472
|
// src/components/Icon/icons/CallToActionIcon.tsx
|
|
2239
|
-
var
|
|
2240
|
-
var CallToActionIcon = (props) => /* @__PURE__ */ (0,
|
|
2473
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
2474
|
+
var CallToActionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2241
2475
|
"svg",
|
|
2242
2476
|
{
|
|
2243
2477
|
...props,
|
|
2244
2478
|
viewBox: "0 0 24 24",
|
|
2245
2479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2246
|
-
children: /* @__PURE__ */ (0,
|
|
2480
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2247
2481
|
"path",
|
|
2248
2482
|
{
|
|
2249
2483
|
clipRule: "evenodd",
|
|
@@ -2256,14 +2490,14 @@ var CallToActionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
|
2256
2490
|
);
|
|
2257
2491
|
|
|
2258
2492
|
// src/components/Icon/icons/CameraIcon.tsx
|
|
2259
|
-
var
|
|
2260
|
-
var CameraIcon = (props) => /* @__PURE__ */ (0,
|
|
2493
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
2494
|
+
var CameraIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2261
2495
|
"svg",
|
|
2262
2496
|
{
|
|
2263
2497
|
...props,
|
|
2264
2498
|
viewBox: "0 0 24 24",
|
|
2265
2499
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2266
|
-
children: /* @__PURE__ */ (0,
|
|
2500
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2267
2501
|
"path",
|
|
2268
2502
|
{
|
|
2269
2503
|
clipRule: "evenodd",
|
|
@@ -2276,14 +2510,14 @@ var CameraIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
|
2276
2510
|
);
|
|
2277
2511
|
|
|
2278
2512
|
// src/components/Icon/icons/CameraOffIcon.tsx
|
|
2279
|
-
var
|
|
2280
|
-
var CameraOffIcon = (props) => /* @__PURE__ */ (0,
|
|
2513
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
2514
|
+
var CameraOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2281
2515
|
"svg",
|
|
2282
2516
|
{
|
|
2283
2517
|
...props,
|
|
2284
2518
|
viewBox: "0 0 24 24",
|
|
2285
2519
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2286
|
-
children: /* @__PURE__ */ (0,
|
|
2520
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2287
2521
|
"path",
|
|
2288
2522
|
{
|
|
2289
2523
|
clipRule: "evenodd",
|
|
@@ -2296,14 +2530,14 @@ var CameraOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
|
2296
2530
|
);
|
|
2297
2531
|
|
|
2298
2532
|
// src/components/Icon/icons/CaretDownIcon.tsx
|
|
2299
|
-
var
|
|
2300
|
-
var CaretDownIcon = (props) => /* @__PURE__ */ (0,
|
|
2533
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
2534
|
+
var CaretDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2301
2535
|
"svg",
|
|
2302
2536
|
{
|
|
2303
2537
|
...props,
|
|
2304
2538
|
viewBox: "0 0 24 24",
|
|
2305
2539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2306
|
-
children: /* @__PURE__ */ (0,
|
|
2540
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2307
2541
|
"path",
|
|
2308
2542
|
{
|
|
2309
2543
|
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",
|
|
@@ -2314,14 +2548,14 @@ var CaretDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
|
2314
2548
|
);
|
|
2315
2549
|
|
|
2316
2550
|
// src/components/Icon/icons/CaretDownStrongIcon.tsx
|
|
2317
|
-
var
|
|
2318
|
-
var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2551
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
2552
|
+
var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2319
2553
|
"svg",
|
|
2320
2554
|
{
|
|
2321
2555
|
...props,
|
|
2322
2556
|
viewBox: "0 0 24 24",
|
|
2323
2557
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2324
|
-
children: /* @__PURE__ */ (0,
|
|
2558
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2325
2559
|
"path",
|
|
2326
2560
|
{
|
|
2327
2561
|
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",
|
|
@@ -2332,14 +2566,14 @@ var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.js
|
|
|
2332
2566
|
);
|
|
2333
2567
|
|
|
2334
2568
|
// src/components/Icon/icons/CaretLeftIcon.tsx
|
|
2335
|
-
var
|
|
2336
|
-
var CaretLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
2569
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
2570
|
+
var CaretLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2337
2571
|
"svg",
|
|
2338
2572
|
{
|
|
2339
2573
|
...props,
|
|
2340
2574
|
viewBox: "0 0 24 24",
|
|
2341
2575
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2342
|
-
children: /* @__PURE__ */ (0,
|
|
2576
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2343
2577
|
"path",
|
|
2344
2578
|
{
|
|
2345
2579
|
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",
|
|
@@ -2350,14 +2584,14 @@ var CaretLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
|
2350
2584
|
);
|
|
2351
2585
|
|
|
2352
2586
|
// src/components/Icon/icons/CaretLeftStrongIcon.tsx
|
|
2353
|
-
var
|
|
2354
|
-
var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2587
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
2588
|
+
var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2355
2589
|
"svg",
|
|
2356
2590
|
{
|
|
2357
2591
|
...props,
|
|
2358
2592
|
viewBox: "0 0 24 24",
|
|
2359
2593
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2360
|
-
children: /* @__PURE__ */ (0,
|
|
2594
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2361
2595
|
"path",
|
|
2362
2596
|
{
|
|
2363
2597
|
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",
|
|
@@ -2368,14 +2602,14 @@ var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.js
|
|
|
2368
2602
|
);
|
|
2369
2603
|
|
|
2370
2604
|
// src/components/Icon/icons/CaretRightIcon.tsx
|
|
2371
|
-
var
|
|
2372
|
-
var CaretRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2605
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
2606
|
+
var CaretRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2373
2607
|
"svg",
|
|
2374
2608
|
{
|
|
2375
2609
|
...props,
|
|
2376
2610
|
viewBox: "0 0 24 24",
|
|
2377
2611
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2378
|
-
children: /* @__PURE__ */ (0,
|
|
2612
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2379
2613
|
"path",
|
|
2380
2614
|
{
|
|
2381
2615
|
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",
|
|
@@ -2386,14 +2620,14 @@ var CaretRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
|
2386
2620
|
);
|
|
2387
2621
|
|
|
2388
2622
|
// src/components/Icon/icons/CaretRightStrongIcon.tsx
|
|
2389
|
-
var
|
|
2390
|
-
var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2623
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
2624
|
+
var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2391
2625
|
"svg",
|
|
2392
2626
|
{
|
|
2393
2627
|
...props,
|
|
2394
2628
|
viewBox: "0 0 24 24",
|
|
2395
2629
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2396
|
-
children: /* @__PURE__ */ (0,
|
|
2630
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2397
2631
|
"path",
|
|
2398
2632
|
{
|
|
2399
2633
|
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",
|
|
@@ -2404,14 +2638,14 @@ var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.j
|
|
|
2404
2638
|
);
|
|
2405
2639
|
|
|
2406
2640
|
// src/components/Icon/icons/CaretUpIcon.tsx
|
|
2407
|
-
var
|
|
2408
|
-
var CaretUpIcon = (props) => /* @__PURE__ */ (0,
|
|
2641
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
2642
|
+
var CaretUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2409
2643
|
"svg",
|
|
2410
2644
|
{
|
|
2411
2645
|
...props,
|
|
2412
2646
|
viewBox: "0 0 24 24",
|
|
2413
2647
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2414
|
-
children: /* @__PURE__ */ (0,
|
|
2648
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2415
2649
|
"path",
|
|
2416
2650
|
{
|
|
2417
2651
|
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",
|
|
@@ -2422,14 +2656,14 @@ var CaretUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
|
2422
2656
|
);
|
|
2423
2657
|
|
|
2424
2658
|
// src/components/Icon/icons/CaretUpStrongIcon.tsx
|
|
2425
|
-
var
|
|
2426
|
-
var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2659
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
2660
|
+
var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2427
2661
|
"svg",
|
|
2428
2662
|
{
|
|
2429
2663
|
...props,
|
|
2430
2664
|
viewBox: "0 0 24 24",
|
|
2431
2665
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2432
|
-
children: /* @__PURE__ */ (0,
|
|
2666
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2433
2667
|
"path",
|
|
2434
2668
|
{
|
|
2435
2669
|
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",
|
|
@@ -2440,14 +2674,14 @@ var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)
|
|
|
2440
2674
|
);
|
|
2441
2675
|
|
|
2442
2676
|
// src/components/Icon/icons/ChannelIcon.tsx
|
|
2443
|
-
var
|
|
2444
|
-
var ChannelIcon = (props) => /* @__PURE__ */ (0,
|
|
2677
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
2678
|
+
var ChannelIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2445
2679
|
"svg",
|
|
2446
2680
|
{
|
|
2447
2681
|
...props,
|
|
2448
2682
|
viewBox: "0 0 24 24",
|
|
2449
2683
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2450
|
-
children: /* @__PURE__ */ (0,
|
|
2684
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2451
2685
|
"path",
|
|
2452
2686
|
{
|
|
2453
2687
|
clipRule: "evenodd",
|
|
@@ -2460,14 +2694,14 @@ var ChannelIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
|
2460
2694
|
);
|
|
2461
2695
|
|
|
2462
2696
|
// src/components/Icon/icons/ChaptersIcon.tsx
|
|
2463
|
-
var
|
|
2464
|
-
var ChaptersIcon = (props) => /* @__PURE__ */ (0,
|
|
2697
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
2698
|
+
var ChaptersIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2465
2699
|
"svg",
|
|
2466
2700
|
{
|
|
2467
2701
|
...props,
|
|
2468
2702
|
viewBox: "0 0 24 24",
|
|
2469
2703
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2470
|
-
children: /* @__PURE__ */ (0,
|
|
2704
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2471
2705
|
"path",
|
|
2472
2706
|
{
|
|
2473
2707
|
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",
|
|
@@ -2478,14 +2712,14 @@ var ChaptersIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
|
2478
2712
|
);
|
|
2479
2713
|
|
|
2480
2714
|
// src/components/Icon/icons/CheckmarkCircleIcon.tsx
|
|
2481
|
-
var
|
|
2482
|
-
var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
2715
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
2716
|
+
var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2483
2717
|
"svg",
|
|
2484
2718
|
{
|
|
2485
2719
|
...props,
|
|
2486
2720
|
viewBox: "0 0 24 24",
|
|
2487
2721
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2488
|
-
children: /* @__PURE__ */ (0,
|
|
2722
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2489
2723
|
"path",
|
|
2490
2724
|
{
|
|
2491
2725
|
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",
|
|
@@ -2496,14 +2730,14 @@ var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.js
|
|
|
2496
2730
|
);
|
|
2497
2731
|
|
|
2498
2732
|
// src/components/Icon/icons/CheckmarkCircleOutlineIcon.tsx
|
|
2499
|
-
var
|
|
2500
|
-
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0,
|
|
2733
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
2734
|
+
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2501
2735
|
"svg",
|
|
2502
2736
|
{
|
|
2503
2737
|
...props,
|
|
2504
2738
|
viewBox: "0 0 24 24",
|
|
2505
2739
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2506
|
-
children: /* @__PURE__ */ (0,
|
|
2740
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2507
2741
|
"path",
|
|
2508
2742
|
{
|
|
2509
2743
|
clipRule: "evenodd",
|
|
@@ -2516,14 +2750,14 @@ var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runti
|
|
|
2516
2750
|
);
|
|
2517
2751
|
|
|
2518
2752
|
// src/components/Icon/icons/CheckmarkIcon.tsx
|
|
2519
|
-
var
|
|
2520
|
-
var CheckmarkIcon = (props) => /* @__PURE__ */ (0,
|
|
2753
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
2754
|
+
var CheckmarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2521
2755
|
"svg",
|
|
2522
2756
|
{
|
|
2523
2757
|
...props,
|
|
2524
2758
|
viewBox: "0 0 24 24",
|
|
2525
2759
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2526
|
-
children: /* @__PURE__ */ (0,
|
|
2760
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2527
2761
|
"path",
|
|
2528
2762
|
{
|
|
2529
2763
|
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",
|
|
@@ -2534,14 +2768,14 @@ var CheckmarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
|
2534
2768
|
);
|
|
2535
2769
|
|
|
2536
2770
|
// src/components/Icon/icons/CheckmarkThreeQuatersCircleIcon.tsx
|
|
2537
|
-
var
|
|
2538
|
-
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
2771
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
2772
|
+
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2539
2773
|
"svg",
|
|
2540
2774
|
{
|
|
2541
2775
|
...props,
|
|
2542
2776
|
viewBox: "0 0 24 24",
|
|
2543
2777
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2544
|
-
children: /* @__PURE__ */ (0,
|
|
2778
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2545
2779
|
"path",
|
|
2546
2780
|
{
|
|
2547
2781
|
clipRule: "evenodd",
|
|
@@ -2554,14 +2788,14 @@ var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_
|
|
|
2554
2788
|
);
|
|
2555
2789
|
|
|
2556
2790
|
// src/components/Icon/icons/CircleSlashedIcon.tsx
|
|
2557
|
-
var
|
|
2558
|
-
var CircleSlashedIcon = (props) => /* @__PURE__ */ (0,
|
|
2791
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
2792
|
+
var CircleSlashedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2559
2793
|
"svg",
|
|
2560
2794
|
{
|
|
2561
2795
|
...props,
|
|
2562
2796
|
viewBox: "0 0 24 24",
|
|
2563
2797
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2564
|
-
children: /* @__PURE__ */ (0,
|
|
2798
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2565
2799
|
"path",
|
|
2566
2800
|
{
|
|
2567
2801
|
clipRule: "evenodd",
|
|
@@ -2574,14 +2808,14 @@ var CircleSlashedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)
|
|
|
2574
2808
|
);
|
|
2575
2809
|
|
|
2576
2810
|
// src/components/Icon/icons/CloseIcon.tsx
|
|
2577
|
-
var
|
|
2578
|
-
var CloseIcon = (props) => /* @__PURE__ */ (0,
|
|
2811
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
2812
|
+
var CloseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2579
2813
|
"svg",
|
|
2580
2814
|
{
|
|
2581
2815
|
...props,
|
|
2582
2816
|
viewBox: "0 0 24 24",
|
|
2583
2817
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2584
|
-
children: /* @__PURE__ */ (0,
|
|
2818
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2585
2819
|
"path",
|
|
2586
2820
|
{
|
|
2587
2821
|
clipRule: "evenodd",
|
|
@@ -2594,14 +2828,14 @@ var CloseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
|
2594
2828
|
);
|
|
2595
2829
|
|
|
2596
2830
|
// src/components/Icon/icons/CloseOctagonIcon.tsx
|
|
2597
|
-
var
|
|
2598
|
-
var CloseOctagonIcon = (props) => /* @__PURE__ */ (0,
|
|
2831
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
2832
|
+
var CloseOctagonIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2599
2833
|
"svg",
|
|
2600
2834
|
{
|
|
2601
2835
|
...props,
|
|
2602
2836
|
viewBox: "0 0 24 24",
|
|
2603
2837
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2604
|
-
children: /* @__PURE__ */ (0,
|
|
2838
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2605
2839
|
"path",
|
|
2606
2840
|
{
|
|
2607
2841
|
clipRule: "evenodd",
|
|
@@ -2614,14 +2848,14 @@ var CloseOctagonIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
|
2614
2848
|
);
|
|
2615
2849
|
|
|
2616
2850
|
// src/components/Icon/icons/ClosedCaptionsIcon.tsx
|
|
2617
|
-
var
|
|
2618
|
-
var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0,
|
|
2851
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
2852
|
+
var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2619
2853
|
"svg",
|
|
2620
2854
|
{
|
|
2621
2855
|
...props,
|
|
2622
2856
|
viewBox: "0 0 24 24",
|
|
2623
2857
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2624
|
-
children: /* @__PURE__ */ (0,
|
|
2858
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2625
2859
|
"path",
|
|
2626
2860
|
{
|
|
2627
2861
|
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",
|
|
@@ -2632,14 +2866,14 @@ var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx
|
|
|
2632
2866
|
);
|
|
2633
2867
|
|
|
2634
2868
|
// src/components/Icon/icons/CollapseDiagonalIcon.tsx
|
|
2635
|
-
var
|
|
2636
|
-
var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0,
|
|
2869
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
2870
|
+
var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2637
2871
|
"svg",
|
|
2638
2872
|
{
|
|
2639
2873
|
...props,
|
|
2640
2874
|
viewBox: "0 0 24 24",
|
|
2641
2875
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2642
|
-
children: /* @__PURE__ */ (0,
|
|
2876
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2643
2877
|
"path",
|
|
2644
2878
|
{
|
|
2645
2879
|
clipRule: "evenodd",
|
|
@@ -2652,14 +2886,14 @@ var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.j
|
|
|
2652
2886
|
);
|
|
2653
2887
|
|
|
2654
2888
|
// src/components/Icon/icons/CommentsIcon.tsx
|
|
2655
|
-
var
|
|
2656
|
-
var CommentsIcon = (props) => /* @__PURE__ */ (0,
|
|
2889
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
2890
|
+
var CommentsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2657
2891
|
"svg",
|
|
2658
2892
|
{
|
|
2659
2893
|
...props,
|
|
2660
2894
|
viewBox: "0 0 24 24",
|
|
2661
2895
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2662
|
-
children: /* @__PURE__ */ (0,
|
|
2896
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2663
2897
|
"path",
|
|
2664
2898
|
{
|
|
2665
2899
|
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",
|
|
@@ -2670,14 +2904,14 @@ var CommentsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
|
2670
2904
|
);
|
|
2671
2905
|
|
|
2672
2906
|
// src/components/Icon/icons/CompanyIcon.tsx
|
|
2673
|
-
var
|
|
2674
|
-
var CompanyIcon = (props) => /* @__PURE__ */ (0,
|
|
2907
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
2908
|
+
var CompanyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2675
2909
|
"svg",
|
|
2676
2910
|
{
|
|
2677
2911
|
...props,
|
|
2678
2912
|
viewBox: "0 0 24 24",
|
|
2679
2913
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2680
|
-
children: /* @__PURE__ */ (0,
|
|
2914
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2681
2915
|
"path",
|
|
2682
2916
|
{
|
|
2683
2917
|
clipRule: "evenodd",
|
|
@@ -2690,14 +2924,14 @@ var CompanyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
|
2690
2924
|
);
|
|
2691
2925
|
|
|
2692
2926
|
// src/components/Icon/icons/CompareIcon.tsx
|
|
2693
|
-
var
|
|
2694
|
-
var CompareIcon = (props) => /* @__PURE__ */ (0,
|
|
2927
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
2928
|
+
var CompareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2695
2929
|
"svg",
|
|
2696
2930
|
{
|
|
2697
2931
|
...props,
|
|
2698
2932
|
viewBox: "0 0 24 24",
|
|
2699
2933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2700
|
-
children: /* @__PURE__ */ (0,
|
|
2934
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2701
2935
|
"path",
|
|
2702
2936
|
{
|
|
2703
2937
|
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",
|
|
@@ -2708,14 +2942,14 @@ var CompareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
|
2708
2942
|
);
|
|
2709
2943
|
|
|
2710
2944
|
// src/components/Icon/icons/ContentLibraryIcon.tsx
|
|
2711
|
-
var
|
|
2712
|
-
var ContentLibraryIcon = (props) => /* @__PURE__ */ (0,
|
|
2945
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
2946
|
+
var ContentLibraryIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2713
2947
|
"svg",
|
|
2714
2948
|
{
|
|
2715
2949
|
...props,
|
|
2716
2950
|
viewBox: "0 0 24 24",
|
|
2717
2951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2718
|
-
children: /* @__PURE__ */ (0,
|
|
2952
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2719
2953
|
"path",
|
|
2720
2954
|
{
|
|
2721
2955
|
clipRule: "evenodd",
|
|
@@ -2728,14 +2962,14 @@ var ContentLibraryIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx
|
|
|
2728
2962
|
);
|
|
2729
2963
|
|
|
2730
2964
|
// src/components/Icon/icons/ControlsIcon.tsx
|
|
2731
|
-
var
|
|
2732
|
-
var ControlsIcon = (props) => /* @__PURE__ */ (0,
|
|
2965
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
2966
|
+
var ControlsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2733
2967
|
"svg",
|
|
2734
2968
|
{
|
|
2735
2969
|
...props,
|
|
2736
2970
|
viewBox: "0 0 24 24",
|
|
2737
2971
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2738
|
-
children: /* @__PURE__ */ (0,
|
|
2972
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2739
2973
|
"path",
|
|
2740
2974
|
{
|
|
2741
2975
|
clipRule: "evenodd",
|
|
@@ -2748,14 +2982,14 @@ var ControlsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
|
2748
2982
|
);
|
|
2749
2983
|
|
|
2750
2984
|
// src/components/Icon/icons/CursorClickIcon.tsx
|
|
2751
|
-
var
|
|
2752
|
-
var CursorClickIcon = (props) => /* @__PURE__ */ (0,
|
|
2985
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
2986
|
+
var CursorClickIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2753
2987
|
"svg",
|
|
2754
2988
|
{
|
|
2755
2989
|
...props,
|
|
2756
2990
|
viewBox: "0 0 24 24",
|
|
2757
2991
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2758
|
-
children: /* @__PURE__ */ (0,
|
|
2992
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2759
2993
|
"path",
|
|
2760
2994
|
{
|
|
2761
2995
|
clipRule: "evenodd",
|
|
@@ -2768,14 +3002,14 @@ var CursorClickIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
|
2768
3002
|
);
|
|
2769
3003
|
|
|
2770
3004
|
// src/components/Icon/icons/DeleteIcon.tsx
|
|
2771
|
-
var
|
|
2772
|
-
var DeleteIcon = (props) => /* @__PURE__ */ (0,
|
|
3005
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
3006
|
+
var DeleteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2773
3007
|
"svg",
|
|
2774
3008
|
{
|
|
2775
3009
|
...props,
|
|
2776
3010
|
viewBox: "0 0 24 24",
|
|
2777
3011
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2778
|
-
children: /* @__PURE__ */ (0,
|
|
3012
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2779
3013
|
"path",
|
|
2780
3014
|
{
|
|
2781
3015
|
clipRule: "evenodd",
|
|
@@ -2788,14 +3022,14 @@ var DeleteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
|
2788
3022
|
);
|
|
2789
3023
|
|
|
2790
3024
|
// src/components/Icon/icons/DesktopIcon.tsx
|
|
2791
|
-
var
|
|
2792
|
-
var DesktopIcon = (props) => /* @__PURE__ */ (0,
|
|
3025
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
3026
|
+
var DesktopIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2793
3027
|
"svg",
|
|
2794
3028
|
{
|
|
2795
3029
|
...props,
|
|
2796
3030
|
viewBox: "0 0 24 24",
|
|
2797
3031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2798
|
-
children: /* @__PURE__ */ (0,
|
|
3032
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2799
3033
|
"path",
|
|
2800
3034
|
{
|
|
2801
3035
|
clipRule: "evenodd",
|
|
@@ -2808,14 +3042,14 @@ var DesktopIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
|
2808
3042
|
);
|
|
2809
3043
|
|
|
2810
3044
|
// src/components/Icon/icons/DotsHorizontalIcon.tsx
|
|
2811
|
-
var
|
|
2812
|
-
var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0,
|
|
3045
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
3046
|
+
var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2813
3047
|
"svg",
|
|
2814
3048
|
{
|
|
2815
3049
|
...props,
|
|
2816
3050
|
viewBox: "0 0 24 24",
|
|
2817
3051
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2818
|
-
children: /* @__PURE__ */ (0,
|
|
3052
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2819
3053
|
"path",
|
|
2820
3054
|
{
|
|
2821
3055
|
clipRule: "evenodd",
|
|
@@ -2828,14 +3062,14 @@ var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime54.jsx
|
|
|
2828
3062
|
);
|
|
2829
3063
|
|
|
2830
3064
|
// src/components/Icon/icons/DownloadIcon.tsx
|
|
2831
|
-
var
|
|
2832
|
-
var DownloadIcon = (props) => /* @__PURE__ */ (0,
|
|
3065
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
3066
|
+
var DownloadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2833
3067
|
"svg",
|
|
2834
3068
|
{
|
|
2835
3069
|
...props,
|
|
2836
3070
|
viewBox: "0 0 24 24",
|
|
2837
3071
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2838
|
-
children: /* @__PURE__ */ (0,
|
|
3072
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2839
3073
|
"path",
|
|
2840
3074
|
{
|
|
2841
3075
|
clipRule: "evenodd",
|
|
@@ -2848,14 +3082,14 @@ var DownloadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
|
2848
3082
|
);
|
|
2849
3083
|
|
|
2850
3084
|
// src/components/Icon/icons/EditTranscriptIcon.tsx
|
|
2851
|
-
var
|
|
2852
|
-
var EditTranscriptIcon = (props) => /* @__PURE__ */ (0,
|
|
3085
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
3086
|
+
var EditTranscriptIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2853
3087
|
"svg",
|
|
2854
3088
|
{
|
|
2855
3089
|
...props,
|
|
2856
3090
|
viewBox: "0 0 24 24",
|
|
2857
3091
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2858
|
-
children: /* @__PURE__ */ (0,
|
|
3092
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2859
3093
|
"path",
|
|
2860
3094
|
{
|
|
2861
3095
|
clipRule: "evenodd",
|
|
@@ -2868,14 +3102,14 @@ var EditTranscriptIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime56.jsx
|
|
|
2868
3102
|
);
|
|
2869
3103
|
|
|
2870
3104
|
// src/components/Icon/icons/EllipsesVerticalIcon.tsx
|
|
2871
|
-
var
|
|
2872
|
-
var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0,
|
|
3105
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
3106
|
+
var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2873
3107
|
"svg",
|
|
2874
3108
|
{
|
|
2875
3109
|
...props,
|
|
2876
3110
|
viewBox: "0 0 24 24",
|
|
2877
3111
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2878
|
-
children: /* @__PURE__ */ (0,
|
|
3112
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2879
3113
|
"path",
|
|
2880
3114
|
{
|
|
2881
3115
|
clipRule: "evenodd",
|
|
@@ -2888,14 +3122,14 @@ var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime57.j
|
|
|
2888
3122
|
);
|
|
2889
3123
|
|
|
2890
3124
|
// src/components/Icon/icons/EmbedIcon.tsx
|
|
2891
|
-
var
|
|
2892
|
-
var EmbedIcon = (props) => /* @__PURE__ */ (0,
|
|
3125
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
3126
|
+
var EmbedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2893
3127
|
"svg",
|
|
2894
3128
|
{
|
|
2895
3129
|
...props,
|
|
2896
3130
|
viewBox: "0 0 24 24",
|
|
2897
3131
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2898
|
-
children: /* @__PURE__ */ (0,
|
|
3132
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2899
3133
|
"path",
|
|
2900
3134
|
{
|
|
2901
3135
|
clipRule: "evenodd",
|
|
@@ -2908,14 +3142,14 @@ var EmbedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
|
2908
3142
|
);
|
|
2909
3143
|
|
|
2910
3144
|
// src/components/Icon/icons/EnvelopeIcon.tsx
|
|
2911
|
-
var
|
|
2912
|
-
var EnvelopeIcon = (props) => /* @__PURE__ */ (0,
|
|
3145
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
3146
|
+
var EnvelopeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2913
3147
|
"svg",
|
|
2914
3148
|
{
|
|
2915
3149
|
...props,
|
|
2916
3150
|
viewBox: "0 0 24 24",
|
|
2917
3151
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2918
|
-
children: /* @__PURE__ */ (0,
|
|
3152
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2919
3153
|
"path",
|
|
2920
3154
|
{
|
|
2921
3155
|
clipRule: "evenodd",
|
|
@@ -2928,14 +3162,14 @@ var EnvelopeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
|
2928
3162
|
);
|
|
2929
3163
|
|
|
2930
3164
|
// src/components/Icon/icons/ErrorIcon.tsx
|
|
2931
|
-
var
|
|
2932
|
-
var ErrorIcon = (props) => /* @__PURE__ */ (0,
|
|
3165
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
3166
|
+
var ErrorIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2933
3167
|
"svg",
|
|
2934
3168
|
{
|
|
2935
3169
|
...props,
|
|
2936
3170
|
viewBox: "0 0 24 24",
|
|
2937
3171
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2938
|
-
children: /* @__PURE__ */ (0,
|
|
3172
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2939
3173
|
"path",
|
|
2940
3174
|
{
|
|
2941
3175
|
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",
|
|
@@ -2946,14 +3180,14 @@ var ErrorIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
|
2946
3180
|
);
|
|
2947
3181
|
|
|
2948
3182
|
// src/components/Icon/icons/ExpandDiagonalIcon.tsx
|
|
2949
|
-
var
|
|
2950
|
-
var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0,
|
|
3183
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
3184
|
+
var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2951
3185
|
"svg",
|
|
2952
3186
|
{
|
|
2953
3187
|
...props,
|
|
2954
3188
|
viewBox: "0 0 24 24",
|
|
2955
3189
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2956
|
-
children: /* @__PURE__ */ (0,
|
|
3190
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2957
3191
|
"path",
|
|
2958
3192
|
{
|
|
2959
3193
|
clipRule: "evenodd",
|
|
@@ -2966,14 +3200,14 @@ var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx
|
|
|
2966
3200
|
);
|
|
2967
3201
|
|
|
2968
3202
|
// src/components/Icon/icons/ExpandIcon.tsx
|
|
2969
|
-
var
|
|
2970
|
-
var ExpandIcon = (props) => /* @__PURE__ */ (0,
|
|
3203
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
3204
|
+
var ExpandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
2971
3205
|
"svg",
|
|
2972
3206
|
{
|
|
2973
3207
|
...props,
|
|
2974
3208
|
viewBox: "0 0 24 24",
|
|
2975
3209
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2976
|
-
children: /* @__PURE__ */ (0,
|
|
3210
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
2977
3211
|
"path",
|
|
2978
3212
|
{
|
|
2979
3213
|
clipRule: "evenodd",
|
|
@@ -2986,14 +3220,14 @@ var ExpandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
|
2986
3220
|
);
|
|
2987
3221
|
|
|
2988
3222
|
// src/components/Icon/icons/FavoriteIcon.tsx
|
|
2989
|
-
var
|
|
2990
|
-
var FavoriteIcon = (props) => /* @__PURE__ */ (0,
|
|
3223
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
3224
|
+
var FavoriteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
2991
3225
|
"svg",
|
|
2992
3226
|
{
|
|
2993
3227
|
...props,
|
|
2994
3228
|
viewBox: "0 0 24 24",
|
|
2995
3229
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2996
|
-
children: /* @__PURE__ */ (0,
|
|
3230
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
2997
3231
|
"path",
|
|
2998
3232
|
{
|
|
2999
3233
|
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",
|
|
@@ -3004,14 +3238,14 @@ var FavoriteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
|
3004
3238
|
);
|
|
3005
3239
|
|
|
3006
3240
|
// src/components/Icon/icons/FavoriteOutlineIcon.tsx
|
|
3007
|
-
var
|
|
3008
|
-
var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0,
|
|
3241
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
3242
|
+
var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3009
3243
|
"svg",
|
|
3010
3244
|
{
|
|
3011
3245
|
...props,
|
|
3012
3246
|
viewBox: "0 0 24 24",
|
|
3013
3247
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3014
|
-
children: /* @__PURE__ */ (0,
|
|
3248
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3015
3249
|
"path",
|
|
3016
3250
|
{
|
|
3017
3251
|
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",
|
|
@@ -3025,14 +3259,14 @@ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime64.js
|
|
|
3025
3259
|
);
|
|
3026
3260
|
|
|
3027
3261
|
// src/components/Icon/icons/FileTreeIcon.tsx
|
|
3028
|
-
var
|
|
3029
|
-
var FileTreeIcon = (props) => /* @__PURE__ */ (0,
|
|
3262
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
3263
|
+
var FileTreeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3030
3264
|
"svg",
|
|
3031
3265
|
{
|
|
3032
3266
|
...props,
|
|
3033
3267
|
viewBox: "0 0 24 24",
|
|
3034
3268
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3035
|
-
children: /* @__PURE__ */ (0,
|
|
3269
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3036
3270
|
"path",
|
|
3037
3271
|
{
|
|
3038
3272
|
clipRule: "evenodd",
|
|
@@ -3045,14 +3279,14 @@ var FileTreeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
|
3045
3279
|
);
|
|
3046
3280
|
|
|
3047
3281
|
// src/components/Icon/icons/FilterIcon.tsx
|
|
3048
|
-
var
|
|
3049
|
-
var FilterIcon = (props) => /* @__PURE__ */ (0,
|
|
3282
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
3283
|
+
var FilterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3050
3284
|
"svg",
|
|
3051
3285
|
{
|
|
3052
3286
|
...props,
|
|
3053
3287
|
viewBox: "0 0 24 24",
|
|
3054
3288
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3055
|
-
children: /* @__PURE__ */ (0,
|
|
3289
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3056
3290
|
"path",
|
|
3057
3291
|
{
|
|
3058
3292
|
clipRule: "evenodd",
|
|
@@ -3065,14 +3299,14 @@ var FilterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
|
3065
3299
|
);
|
|
3066
3300
|
|
|
3067
3301
|
// src/components/Icon/icons/FontsIcon.tsx
|
|
3068
|
-
var
|
|
3069
|
-
var FontsIcon = (props) => /* @__PURE__ */ (0,
|
|
3302
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3303
|
+
var FontsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3070
3304
|
"svg",
|
|
3071
3305
|
{
|
|
3072
3306
|
...props,
|
|
3073
3307
|
viewBox: "0 0 24 24",
|
|
3074
3308
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3075
|
-
children: /* @__PURE__ */ (0,
|
|
3309
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3076
3310
|
"path",
|
|
3077
3311
|
{
|
|
3078
3312
|
clipRule: "evenodd",
|
|
@@ -3085,14 +3319,14 @@ var FontsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
|
3085
3319
|
);
|
|
3086
3320
|
|
|
3087
3321
|
// src/components/Icon/icons/FullScreenIcon.tsx
|
|
3088
|
-
var
|
|
3089
|
-
var FullScreenIcon = (props) => /* @__PURE__ */ (0,
|
|
3322
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
3323
|
+
var FullScreenIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3090
3324
|
"svg",
|
|
3091
3325
|
{
|
|
3092
3326
|
...props,
|
|
3093
3327
|
viewBox: "0 0 24 24",
|
|
3094
3328
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3095
|
-
children: /* @__PURE__ */ (0,
|
|
3329
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3096
3330
|
"path",
|
|
3097
3331
|
{
|
|
3098
3332
|
clipRule: "evenodd",
|
|
@@ -3105,14 +3339,14 @@ var FullScreenIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
|
3105
3339
|
);
|
|
3106
3340
|
|
|
3107
3341
|
// src/components/Icon/icons/GearIcon.tsx
|
|
3108
|
-
var
|
|
3109
|
-
var GearIcon = (props) => /* @__PURE__ */ (0,
|
|
3342
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
3343
|
+
var GearIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3110
3344
|
"svg",
|
|
3111
3345
|
{
|
|
3112
3346
|
...props,
|
|
3113
3347
|
viewBox: "0 0 24 24",
|
|
3114
3348
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3115
|
-
children: /* @__PURE__ */ (0,
|
|
3349
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3116
3350
|
"path",
|
|
3117
3351
|
{
|
|
3118
3352
|
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",
|
|
@@ -3123,14 +3357,14 @@ var GearIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
|
3123
3357
|
);
|
|
3124
3358
|
|
|
3125
3359
|
// src/components/Icon/icons/GettingStartedIcon.tsx
|
|
3126
|
-
var
|
|
3127
|
-
var GettingStartedIcon = (props) => /* @__PURE__ */ (0,
|
|
3360
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
3361
|
+
var GettingStartedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3128
3362
|
"svg",
|
|
3129
3363
|
{
|
|
3130
3364
|
...props,
|
|
3131
3365
|
viewBox: "0 0 24 24",
|
|
3132
3366
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3133
|
-
children: /* @__PURE__ */ (0,
|
|
3367
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3134
3368
|
"path",
|
|
3135
3369
|
{
|
|
3136
3370
|
clipRule: "evenodd",
|
|
@@ -3143,14 +3377,14 @@ var GettingStartedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx
|
|
|
3143
3377
|
);
|
|
3144
3378
|
|
|
3145
3379
|
// src/components/Icon/icons/GridIcon.tsx
|
|
3146
|
-
var
|
|
3147
|
-
var GridIcon = (props) => /* @__PURE__ */ (0,
|
|
3380
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
3381
|
+
var GridIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3148
3382
|
"svg",
|
|
3149
3383
|
{
|
|
3150
3384
|
...props,
|
|
3151
3385
|
viewBox: "0 0 24 24",
|
|
3152
3386
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3153
|
-
children: /* @__PURE__ */ (0,
|
|
3387
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3154
3388
|
"path",
|
|
3155
3389
|
{
|
|
3156
3390
|
clipRule: "evenodd",
|
|
@@ -3163,14 +3397,14 @@ var GridIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
|
3163
3397
|
);
|
|
3164
3398
|
|
|
3165
3399
|
// src/components/Icon/icons/GripDotsVerticalIcon.tsx
|
|
3166
|
-
var
|
|
3167
|
-
var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0,
|
|
3400
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
3401
|
+
var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
3168
3402
|
"svg",
|
|
3169
3403
|
{
|
|
3170
3404
|
...props,
|
|
3171
3405
|
viewBox: "0 0 24 24",
|
|
3172
3406
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3173
|
-
children: /* @__PURE__ */ (0,
|
|
3407
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
3174
3408
|
"path",
|
|
3175
3409
|
{
|
|
3176
3410
|
clipRule: "evenodd",
|
|
@@ -3183,14 +3417,14 @@ var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime72.j
|
|
|
3183
3417
|
);
|
|
3184
3418
|
|
|
3185
3419
|
// src/components/Icon/icons/HelpCenterIcon.tsx
|
|
3186
|
-
var
|
|
3187
|
-
var HelpCenterIcon = (props) => /* @__PURE__ */ (0,
|
|
3420
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
3421
|
+
var HelpCenterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3188
3422
|
"svg",
|
|
3189
3423
|
{
|
|
3190
3424
|
...props,
|
|
3191
3425
|
viewBox: "0 0 24 24",
|
|
3192
3426
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3193
|
-
children: /* @__PURE__ */ (0,
|
|
3427
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3194
3428
|
"path",
|
|
3195
3429
|
{
|
|
3196
3430
|
clipRule: "evenodd",
|
|
@@ -3203,14 +3437,14 @@ var HelpCenterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
|
3203
3437
|
);
|
|
3204
3438
|
|
|
3205
3439
|
// src/components/Icon/icons/HideIcon.tsx
|
|
3206
|
-
var
|
|
3207
|
-
var HideIcon = (props) => /* @__PURE__ */ (0,
|
|
3440
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
3441
|
+
var HideIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3208
3442
|
"svg",
|
|
3209
3443
|
{
|
|
3210
3444
|
...props,
|
|
3211
3445
|
viewBox: "0 0 24 24",
|
|
3212
3446
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3213
|
-
children: /* @__PURE__ */ (0,
|
|
3447
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3214
3448
|
"path",
|
|
3215
3449
|
{
|
|
3216
3450
|
clipRule: "evenodd",
|
|
@@ -3223,14 +3457,14 @@ var HideIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
|
3223
3457
|
);
|
|
3224
3458
|
|
|
3225
3459
|
// src/components/Icon/icons/HomeIcon.tsx
|
|
3226
|
-
var
|
|
3227
|
-
var HomeIcon = (props) => /* @__PURE__ */ (0,
|
|
3460
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
3461
|
+
var HomeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3228
3462
|
"svg",
|
|
3229
3463
|
{
|
|
3230
3464
|
...props,
|
|
3231
3465
|
viewBox: "0 0 24 24",
|
|
3232
3466
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3233
|
-
children: /* @__PURE__ */ (0,
|
|
3467
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3234
3468
|
"path",
|
|
3235
3469
|
{
|
|
3236
3470
|
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",
|
|
@@ -3241,14 +3475,14 @@ var HomeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
|
3241
3475
|
);
|
|
3242
3476
|
|
|
3243
3477
|
// src/components/Icon/icons/HourglassIcon.tsx
|
|
3244
|
-
var
|
|
3245
|
-
var HourglassIcon = (props) => /* @__PURE__ */ (0,
|
|
3478
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
3479
|
+
var HourglassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
3246
3480
|
"svg",
|
|
3247
3481
|
{
|
|
3248
3482
|
...props,
|
|
3249
3483
|
viewBox: "0 0 24 24",
|
|
3250
3484
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3251
|
-
children: /* @__PURE__ */ (0,
|
|
3485
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
3252
3486
|
"path",
|
|
3253
3487
|
{
|
|
3254
3488
|
clipRule: "evenodd",
|
|
@@ -3261,14 +3495,14 @@ var HourglassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
|
3261
3495
|
);
|
|
3262
3496
|
|
|
3263
3497
|
// src/components/Icon/icons/InfoIcon.tsx
|
|
3264
|
-
var
|
|
3265
|
-
var InfoIcon = (props) => /* @__PURE__ */ (0,
|
|
3498
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
3499
|
+
var InfoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3266
3500
|
"svg",
|
|
3267
3501
|
{
|
|
3268
3502
|
...props,
|
|
3269
3503
|
viewBox: "0 0 24 24",
|
|
3270
3504
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3271
|
-
children: /* @__PURE__ */ (0,
|
|
3505
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3272
3506
|
"path",
|
|
3273
3507
|
{
|
|
3274
3508
|
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",
|
|
@@ -3279,14 +3513,14 @@ var InfoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
|
3279
3513
|
);
|
|
3280
3514
|
|
|
3281
3515
|
// src/components/Icon/icons/IntegrationsIcon.tsx
|
|
3282
|
-
var
|
|
3283
|
-
var IntegrationsIcon = (props) => /* @__PURE__ */ (0,
|
|
3516
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
3517
|
+
var IntegrationsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3284
3518
|
"svg",
|
|
3285
3519
|
{
|
|
3286
3520
|
...props,
|
|
3287
3521
|
viewBox: "0 0 24 24",
|
|
3288
3522
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3289
|
-
children: /* @__PURE__ */ (0,
|
|
3523
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3290
3524
|
"path",
|
|
3291
3525
|
{
|
|
3292
3526
|
clipRule: "evenodd",
|
|
@@ -3299,14 +3533,14 @@ var IntegrationsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
|
3299
3533
|
);
|
|
3300
3534
|
|
|
3301
3535
|
// src/components/Icon/icons/LeaveIcon.tsx
|
|
3302
|
-
var
|
|
3303
|
-
var LeaveIcon = (props) => /* @__PURE__ */ (0,
|
|
3536
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
3537
|
+
var LeaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3304
3538
|
"svg",
|
|
3305
3539
|
{
|
|
3306
3540
|
...props,
|
|
3307
3541
|
viewBox: "0 0 24 24",
|
|
3308
3542
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3309
|
-
children: /* @__PURE__ */ (0,
|
|
3543
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3310
3544
|
"path",
|
|
3311
3545
|
{
|
|
3312
3546
|
clipRule: "evenodd",
|
|
@@ -3319,14 +3553,14 @@ var LeaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
|
3319
3553
|
);
|
|
3320
3554
|
|
|
3321
3555
|
// src/components/Icon/icons/LinkIcon.tsx
|
|
3322
|
-
var
|
|
3323
|
-
var LinkIcon = (props) => /* @__PURE__ */ (0,
|
|
3556
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
3557
|
+
var LinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3324
3558
|
"svg",
|
|
3325
3559
|
{
|
|
3326
3560
|
...props,
|
|
3327
3561
|
viewBox: "0 0 24 24",
|
|
3328
3562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3329
|
-
children: /* @__PURE__ */ (0,
|
|
3563
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3330
3564
|
"path",
|
|
3331
3565
|
{
|
|
3332
3566
|
clipRule: "evenodd",
|
|
@@ -3339,14 +3573,14 @@ var LinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
|
3339
3573
|
);
|
|
3340
3574
|
|
|
3341
3575
|
// src/components/Icon/icons/ListIcon.tsx
|
|
3342
|
-
var
|
|
3343
|
-
var ListIcon = (props) => /* @__PURE__ */ (0,
|
|
3576
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
3577
|
+
var ListIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
3344
3578
|
"svg",
|
|
3345
3579
|
{
|
|
3346
3580
|
...props,
|
|
3347
3581
|
viewBox: "0 0 24 24",
|
|
3348
3582
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3349
|
-
children: /* @__PURE__ */ (0,
|
|
3583
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
3350
3584
|
"path",
|
|
3351
3585
|
{
|
|
3352
3586
|
clipRule: "evenodd",
|
|
@@ -3359,14 +3593,14 @@ var ListIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
|
3359
3593
|
);
|
|
3360
3594
|
|
|
3361
3595
|
// src/components/Icon/icons/LiveIcon.tsx
|
|
3362
|
-
var
|
|
3363
|
-
var LiveIcon = (props) => /* @__PURE__ */ (0,
|
|
3596
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
3597
|
+
var LiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
3364
3598
|
"svg",
|
|
3365
3599
|
{
|
|
3366
3600
|
...props,
|
|
3367
3601
|
viewBox: "0 0 24 24",
|
|
3368
3602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3369
|
-
children: /* @__PURE__ */ (0,
|
|
3603
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
3370
3604
|
"path",
|
|
3371
3605
|
{
|
|
3372
3606
|
clipRule: "evenodd",
|
|
@@ -3379,14 +3613,14 @@ var LiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
|
3379
3613
|
);
|
|
3380
3614
|
|
|
3381
3615
|
// src/components/Icon/icons/LockIcon.tsx
|
|
3382
|
-
var
|
|
3383
|
-
var LockIcon = (props) => /* @__PURE__ */ (0,
|
|
3616
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
3617
|
+
var LockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
3384
3618
|
"svg",
|
|
3385
3619
|
{
|
|
3386
3620
|
...props,
|
|
3387
3621
|
viewBox: "0 0 24 24",
|
|
3388
3622
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3389
|
-
children: /* @__PURE__ */ (0,
|
|
3623
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
3390
3624
|
"path",
|
|
3391
3625
|
{
|
|
3392
3626
|
clipRule: "evenodd",
|
|
@@ -3399,14 +3633,14 @@ var LockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
|
3399
3633
|
);
|
|
3400
3634
|
|
|
3401
3635
|
// src/components/Icon/icons/LogoutIcon.tsx
|
|
3402
|
-
var
|
|
3403
|
-
var LogoutIcon = (props) => /* @__PURE__ */ (0,
|
|
3636
|
+
var import_jsx_runtime86 = require("react/jsx-runtime");
|
|
3637
|
+
var LogoutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
3404
3638
|
"svg",
|
|
3405
3639
|
{
|
|
3406
3640
|
...props,
|
|
3407
3641
|
viewBox: "0 0 24 24",
|
|
3408
3642
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3409
|
-
children: /* @__PURE__ */ (0,
|
|
3643
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
3410
3644
|
"path",
|
|
3411
3645
|
{
|
|
3412
3646
|
clipRule: "evenodd",
|
|
@@ -3419,14 +3653,14 @@ var LogoutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
|
3419
3653
|
);
|
|
3420
3654
|
|
|
3421
3655
|
// src/components/Icon/icons/MaximizeIcon.tsx
|
|
3422
|
-
var
|
|
3423
|
-
var MaximizeIcon = (props) => /* @__PURE__ */ (0,
|
|
3656
|
+
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
3657
|
+
var MaximizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
3424
3658
|
"svg",
|
|
3425
3659
|
{
|
|
3426
3660
|
...props,
|
|
3427
3661
|
viewBox: "0 0 24 24",
|
|
3428
3662
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3429
|
-
children: /* @__PURE__ */ (0,
|
|
3663
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
3430
3664
|
"path",
|
|
3431
3665
|
{
|
|
3432
3666
|
clipRule: "evenodd",
|
|
@@ -3439,14 +3673,14 @@ var MaximizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
|
3439
3673
|
);
|
|
3440
3674
|
|
|
3441
3675
|
// src/components/Icon/icons/MediaIcon.tsx
|
|
3442
|
-
var
|
|
3443
|
-
var MediaIcon = (props) => /* @__PURE__ */ (0,
|
|
3676
|
+
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
3677
|
+
var MediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
3444
3678
|
"svg",
|
|
3445
3679
|
{
|
|
3446
3680
|
...props,
|
|
3447
3681
|
viewBox: "0 0 24 24",
|
|
3448
3682
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3449
|
-
children: /* @__PURE__ */ (0,
|
|
3683
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
3450
3684
|
"path",
|
|
3451
3685
|
{
|
|
3452
3686
|
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",
|
|
@@ -3457,14 +3691,14 @@ var MediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
|
3457
3691
|
);
|
|
3458
3692
|
|
|
3459
3693
|
// src/components/Icon/icons/MenuIcon.tsx
|
|
3460
|
-
var
|
|
3461
|
-
var MenuIcon = (props) => /* @__PURE__ */ (0,
|
|
3694
|
+
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
3695
|
+
var MenuIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
3462
3696
|
"svg",
|
|
3463
3697
|
{
|
|
3464
3698
|
...props,
|
|
3465
3699
|
viewBox: "0 0 24 24",
|
|
3466
3700
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3467
|
-
children: /* @__PURE__ */ (0,
|
|
3701
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
3468
3702
|
"path",
|
|
3469
3703
|
{
|
|
3470
3704
|
clipRule: "evenodd",
|
|
@@ -3477,14 +3711,14 @@ var MenuIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
|
3477
3711
|
);
|
|
3478
3712
|
|
|
3479
3713
|
// src/components/Icon/icons/MicIcon.tsx
|
|
3480
|
-
var
|
|
3481
|
-
var MicIcon = (props) => /* @__PURE__ */ (0,
|
|
3714
|
+
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
3715
|
+
var MicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
3482
3716
|
"svg",
|
|
3483
3717
|
{
|
|
3484
3718
|
...props,
|
|
3485
3719
|
viewBox: "0 0 24 24",
|
|
3486
3720
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3487
|
-
children: /* @__PURE__ */ (0,
|
|
3721
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
3488
3722
|
"path",
|
|
3489
3723
|
{
|
|
3490
3724
|
clipRule: "evenodd",
|
|
@@ -3497,14 +3731,14 @@ var MicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
|
3497
3731
|
);
|
|
3498
3732
|
|
|
3499
3733
|
// src/components/Icon/icons/MicOffIcon.tsx
|
|
3500
|
-
var
|
|
3501
|
-
var MicOffIcon = (props) => /* @__PURE__ */ (0,
|
|
3734
|
+
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
3735
|
+
var MicOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
3502
3736
|
"svg",
|
|
3503
3737
|
{
|
|
3504
3738
|
...props,
|
|
3505
3739
|
viewBox: "0 0 24 24",
|
|
3506
3740
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3507
|
-
children: /* @__PURE__ */ (0,
|
|
3741
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
3508
3742
|
"path",
|
|
3509
3743
|
{
|
|
3510
3744
|
clipRule: "evenodd",
|
|
@@ -3517,14 +3751,14 @@ var MicOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
|
3517
3751
|
);
|
|
3518
3752
|
|
|
3519
3753
|
// src/components/Icon/icons/MinimizeIcon.tsx
|
|
3520
|
-
var
|
|
3521
|
-
var MinimizeIcon = (props) => /* @__PURE__ */ (0,
|
|
3754
|
+
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
3755
|
+
var MinimizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
3522
3756
|
"svg",
|
|
3523
3757
|
{
|
|
3524
3758
|
...props,
|
|
3525
3759
|
viewBox: "0 0 24 24",
|
|
3526
3760
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3527
|
-
children: /* @__PURE__ */ (0,
|
|
3761
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
3528
3762
|
"path",
|
|
3529
3763
|
{
|
|
3530
3764
|
clipRule: "evenodd",
|
|
@@ -3537,14 +3771,14 @@ var MinimizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
|
3537
3771
|
);
|
|
3538
3772
|
|
|
3539
3773
|
// src/components/Icon/icons/MinusCircleIcon.tsx
|
|
3540
|
-
var
|
|
3541
|
-
var MinusCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
3774
|
+
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
3775
|
+
var MinusCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
3542
3776
|
"svg",
|
|
3543
3777
|
{
|
|
3544
3778
|
...props,
|
|
3545
3779
|
viewBox: "0 0 24 24",
|
|
3546
3780
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3547
|
-
children: /* @__PURE__ */ (0,
|
|
3781
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
3548
3782
|
"path",
|
|
3549
3783
|
{
|
|
3550
3784
|
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",
|
|
@@ -3555,14 +3789,14 @@ var MinusCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
|
3555
3789
|
);
|
|
3556
3790
|
|
|
3557
3791
|
// src/components/Icon/icons/MobileIcon.tsx
|
|
3558
|
-
var
|
|
3559
|
-
var MobileIcon = (props) => /* @__PURE__ */ (0,
|
|
3792
|
+
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
3793
|
+
var MobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
3560
3794
|
"svg",
|
|
3561
3795
|
{
|
|
3562
3796
|
...props,
|
|
3563
3797
|
viewBox: "0 0 24 24",
|
|
3564
3798
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3565
|
-
children: /* @__PURE__ */ (0,
|
|
3799
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
3566
3800
|
"path",
|
|
3567
3801
|
{
|
|
3568
3802
|
clipRule: "evenodd",
|
|
@@ -3575,14 +3809,14 @@ var MobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
|
3575
3809
|
);
|
|
3576
3810
|
|
|
3577
3811
|
// src/components/Icon/icons/MoreOptionsIcon.tsx
|
|
3578
|
-
var
|
|
3579
|
-
var MoreOptionsIcon = (props) => /* @__PURE__ */ (0,
|
|
3812
|
+
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
3813
|
+
var MoreOptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
3580
3814
|
"svg",
|
|
3581
3815
|
{
|
|
3582
3816
|
...props,
|
|
3583
3817
|
viewBox: "0 0 24 24",
|
|
3584
3818
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3585
|
-
children: /* @__PURE__ */ (0,
|
|
3819
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
3586
3820
|
"path",
|
|
3587
3821
|
{
|
|
3588
3822
|
clipRule: "evenodd",
|
|
@@ -3595,14 +3829,14 @@ var MoreOptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
|
3595
3829
|
);
|
|
3596
3830
|
|
|
3597
3831
|
// src/components/Icon/icons/MoveLeftIcon.tsx
|
|
3598
|
-
var
|
|
3599
|
-
var MoveLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
3832
|
+
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
3833
|
+
var MoveLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3600
3834
|
"svg",
|
|
3601
3835
|
{
|
|
3602
3836
|
...props,
|
|
3603
3837
|
viewBox: "0 0 24 24",
|
|
3604
3838
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3605
|
-
children: /* @__PURE__ */ (0,
|
|
3839
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3606
3840
|
"path",
|
|
3607
3841
|
{
|
|
3608
3842
|
clipRule: "evenodd",
|
|
@@ -3615,14 +3849,14 @@ var MoveLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
|
3615
3849
|
);
|
|
3616
3850
|
|
|
3617
3851
|
// src/components/Icon/icons/MoveRightIcon.tsx
|
|
3618
|
-
var
|
|
3619
|
-
var MoveRightIcon = (props) => /* @__PURE__ */ (0,
|
|
3852
|
+
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
3853
|
+
var MoveRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3620
3854
|
"svg",
|
|
3621
3855
|
{
|
|
3622
3856
|
...props,
|
|
3623
3857
|
viewBox: "0 0 24 24",
|
|
3624
3858
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3625
|
-
children: /* @__PURE__ */ (0,
|
|
3859
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3626
3860
|
"path",
|
|
3627
3861
|
{
|
|
3628
3862
|
clipRule: "evenodd",
|
|
@@ -3635,14 +3869,14 @@ var MoveRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
|
3635
3869
|
);
|
|
3636
3870
|
|
|
3637
3871
|
// src/components/Icon/icons/MusicIcon.tsx
|
|
3638
|
-
var
|
|
3639
|
-
var MusicIcon = (props) => /* @__PURE__ */ (0,
|
|
3872
|
+
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
3873
|
+
var MusicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
3640
3874
|
"svg",
|
|
3641
3875
|
{
|
|
3642
3876
|
...props,
|
|
3643
3877
|
viewBox: "0 0 24 24",
|
|
3644
3878
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3645
|
-
children: /* @__PURE__ */ (0,
|
|
3879
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
3646
3880
|
"path",
|
|
3647
3881
|
{
|
|
3648
3882
|
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",
|
|
@@ -3653,14 +3887,14 @@ var MusicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
|
3653
3887
|
);
|
|
3654
3888
|
|
|
3655
3889
|
// src/components/Icon/icons/OpenNewIcon.tsx
|
|
3656
|
-
var
|
|
3657
|
-
var OpenNewIcon = (props) => /* @__PURE__ */ (0,
|
|
3890
|
+
var import_jsx_runtime99 = require("react/jsx-runtime");
|
|
3891
|
+
var OpenNewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
3658
3892
|
"svg",
|
|
3659
3893
|
{
|
|
3660
3894
|
...props,
|
|
3661
3895
|
viewBox: "0 0 24 24",
|
|
3662
3896
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3663
|
-
children: /* @__PURE__ */ (0,
|
|
3897
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
3664
3898
|
"path",
|
|
3665
3899
|
{
|
|
3666
3900
|
clipRule: "evenodd",
|
|
@@ -3673,14 +3907,14 @@ var OpenNewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
|
3673
3907
|
);
|
|
3674
3908
|
|
|
3675
3909
|
// src/components/Icon/icons/OverviewIcon.tsx
|
|
3676
|
-
var
|
|
3677
|
-
var OverviewIcon = (props) => /* @__PURE__ */ (0,
|
|
3910
|
+
var import_jsx_runtime100 = require("react/jsx-runtime");
|
|
3911
|
+
var OverviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
3678
3912
|
"svg",
|
|
3679
3913
|
{
|
|
3680
3914
|
...props,
|
|
3681
3915
|
viewBox: "0 0 24 24",
|
|
3682
3916
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3683
|
-
children: /* @__PURE__ */ (0,
|
|
3917
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
3684
3918
|
"path",
|
|
3685
3919
|
{
|
|
3686
3920
|
clipRule: "evenodd",
|
|
@@ -3693,14 +3927,14 @@ var OverviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
|
3693
3927
|
);
|
|
3694
3928
|
|
|
3695
3929
|
// src/components/Icon/icons/PageIcon.tsx
|
|
3696
|
-
var
|
|
3697
|
-
var PageIcon = (props) => /* @__PURE__ */ (0,
|
|
3930
|
+
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
3931
|
+
var PageIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
3698
3932
|
"svg",
|
|
3699
3933
|
{
|
|
3700
3934
|
...props,
|
|
3701
3935
|
viewBox: "0 0 24 24",
|
|
3702
3936
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3703
|
-
children: /* @__PURE__ */ (0,
|
|
3937
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
3704
3938
|
"path",
|
|
3705
3939
|
{
|
|
3706
3940
|
clipRule: "evenodd",
|
|
@@ -3713,14 +3947,14 @@ var PageIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
|
3713
3947
|
);
|
|
3714
3948
|
|
|
3715
3949
|
// src/components/Icon/icons/PanelLeftIcon.tsx
|
|
3716
|
-
var
|
|
3717
|
-
var PanelLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
3950
|
+
var import_jsx_runtime102 = require("react/jsx-runtime");
|
|
3951
|
+
var PanelLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
3718
3952
|
"svg",
|
|
3719
3953
|
{
|
|
3720
3954
|
...props,
|
|
3721
3955
|
viewBox: "0 0 24 24",
|
|
3722
3956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3723
|
-
children: /* @__PURE__ */ (0,
|
|
3957
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
3724
3958
|
"path",
|
|
3725
3959
|
{
|
|
3726
3960
|
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",
|
|
@@ -3731,14 +3965,14 @@ var PanelLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
|
3731
3965
|
);
|
|
3732
3966
|
|
|
3733
3967
|
// src/components/Icon/icons/PanelRightIcon.tsx
|
|
3734
|
-
var
|
|
3735
|
-
var PanelRightIcon = (props) => /* @__PURE__ */ (0,
|
|
3968
|
+
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
3969
|
+
var PanelRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
3736
3970
|
"svg",
|
|
3737
3971
|
{
|
|
3738
3972
|
...props,
|
|
3739
3973
|
viewBox: "0 0 24 24",
|
|
3740
3974
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3741
|
-
children: /* @__PURE__ */ (0,
|
|
3975
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
3742
3976
|
"path",
|
|
3743
3977
|
{
|
|
3744
3978
|
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",
|
|
@@ -3749,14 +3983,14 @@ var PanelRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
|
3749
3983
|
);
|
|
3750
3984
|
|
|
3751
3985
|
// src/components/Icon/icons/PanelUpIcon.tsx
|
|
3752
|
-
var
|
|
3753
|
-
var PanelUpIcon = (props) => /* @__PURE__ */ (0,
|
|
3986
|
+
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
3987
|
+
var PanelUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
3754
3988
|
"svg",
|
|
3755
3989
|
{
|
|
3756
3990
|
...props,
|
|
3757
3991
|
viewBox: "0 0 24 24",
|
|
3758
3992
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3759
|
-
children: /* @__PURE__ */ (0,
|
|
3993
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
3760
3994
|
"path",
|
|
3761
3995
|
{
|
|
3762
3996
|
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",
|
|
@@ -3767,14 +4001,14 @@ var PanelUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
|
3767
4001
|
);
|
|
3768
4002
|
|
|
3769
4003
|
// src/components/Icon/icons/PasswordIcon.tsx
|
|
3770
|
-
var
|
|
3771
|
-
var PasswordIcon = (props) => /* @__PURE__ */ (0,
|
|
4004
|
+
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
4005
|
+
var PasswordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
3772
4006
|
"svg",
|
|
3773
4007
|
{
|
|
3774
4008
|
...props,
|
|
3775
4009
|
viewBox: "0 0 24 24",
|
|
3776
4010
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3777
|
-
children: /* @__PURE__ */ (0,
|
|
4011
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
3778
4012
|
"path",
|
|
3779
4013
|
{
|
|
3780
4014
|
clipRule: "evenodd",
|
|
@@ -3787,14 +4021,14 @@ var PasswordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
|
3787
4021
|
);
|
|
3788
4022
|
|
|
3789
4023
|
// src/components/Icon/icons/PencilIcon.tsx
|
|
3790
|
-
var
|
|
3791
|
-
var PencilIcon = (props) => /* @__PURE__ */ (0,
|
|
4024
|
+
var import_jsx_runtime106 = require("react/jsx-runtime");
|
|
4025
|
+
var PencilIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
3792
4026
|
"svg",
|
|
3793
4027
|
{
|
|
3794
4028
|
...props,
|
|
3795
4029
|
viewBox: "0 0 24 24",
|
|
3796
4030
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3797
|
-
children: /* @__PURE__ */ (0,
|
|
4031
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
3798
4032
|
"path",
|
|
3799
4033
|
{
|
|
3800
4034
|
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",
|
|
@@ -3805,14 +4039,14 @@ var PencilIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
|
3805
4039
|
);
|
|
3806
4040
|
|
|
3807
4041
|
// src/components/Icon/icons/PeopleIcon.tsx
|
|
3808
|
-
var
|
|
3809
|
-
var PeopleIcon = (props) => /* @__PURE__ */ (0,
|
|
4042
|
+
var import_jsx_runtime107 = require("react/jsx-runtime");
|
|
4043
|
+
var PeopleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
3810
4044
|
"svg",
|
|
3811
4045
|
{
|
|
3812
4046
|
...props,
|
|
3813
4047
|
viewBox: "0 0 24 24",
|
|
3814
4048
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3815
|
-
children: /* @__PURE__ */ (0,
|
|
4049
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
3816
4050
|
"path",
|
|
3817
4051
|
{
|
|
3818
4052
|
clipRule: "evenodd",
|
|
@@ -3825,14 +4059,14 @@ var PeopleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
|
3825
4059
|
);
|
|
3826
4060
|
|
|
3827
4061
|
// src/components/Icon/icons/PinIcon.tsx
|
|
3828
|
-
var
|
|
3829
|
-
var PinIcon = (props) => /* @__PURE__ */ (0,
|
|
4062
|
+
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
4063
|
+
var PinIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
3830
4064
|
"svg",
|
|
3831
4065
|
{
|
|
3832
4066
|
...props,
|
|
3833
4067
|
viewBox: "0 0 24 24",
|
|
3834
4068
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3835
|
-
children: /* @__PURE__ */ (0,
|
|
4069
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
3836
4070
|
"path",
|
|
3837
4071
|
{
|
|
3838
4072
|
clipRule: "evenodd",
|
|
@@ -3845,14 +4079,14 @@ var PinIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
|
3845
4079
|
);
|
|
3846
4080
|
|
|
3847
4081
|
// src/components/Icon/icons/PinSlashIcon.tsx
|
|
3848
|
-
var
|
|
3849
|
-
var PinSlashIcon = (props) => /* @__PURE__ */ (0,
|
|
4082
|
+
var import_jsx_runtime109 = require("react/jsx-runtime");
|
|
4083
|
+
var PinSlashIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
3850
4084
|
"svg",
|
|
3851
4085
|
{
|
|
3852
4086
|
...props,
|
|
3853
4087
|
viewBox: "0 0 24 24",
|
|
3854
4088
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3855
|
-
children: /* @__PURE__ */ (0,
|
|
4089
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
3856
4090
|
"path",
|
|
3857
4091
|
{
|
|
3858
4092
|
clipRule: "evenodd",
|
|
@@ -3865,14 +4099,14 @@ var PinSlashIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
|
3865
4099
|
);
|
|
3866
4100
|
|
|
3867
4101
|
// src/components/Icon/icons/PlayIcon.tsx
|
|
3868
|
-
var
|
|
3869
|
-
var PlayIcon = (props) => /* @__PURE__ */ (0,
|
|
4102
|
+
var import_jsx_runtime110 = require("react/jsx-runtime");
|
|
4103
|
+
var PlayIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
3870
4104
|
"svg",
|
|
3871
4105
|
{
|
|
3872
4106
|
...props,
|
|
3873
4107
|
viewBox: "0 0 24 24",
|
|
3874
4108
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3875
|
-
children: /* @__PURE__ */ (0,
|
|
4109
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
3876
4110
|
"path",
|
|
3877
4111
|
{
|
|
3878
4112
|
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",
|
|
@@ -3883,14 +4117,14 @@ var PlayIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
|
3883
4117
|
);
|
|
3884
4118
|
|
|
3885
4119
|
// src/components/Icon/icons/PlayerIcon.tsx
|
|
3886
|
-
var
|
|
3887
|
-
var PlayerIcon = (props) => /* @__PURE__ */ (0,
|
|
4120
|
+
var import_jsx_runtime111 = require("react/jsx-runtime");
|
|
4121
|
+
var PlayerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
3888
4122
|
"svg",
|
|
3889
4123
|
{
|
|
3890
4124
|
...props,
|
|
3891
4125
|
viewBox: "0 0 24 24",
|
|
3892
4126
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3893
|
-
children: /* @__PURE__ */ (0,
|
|
4127
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
3894
4128
|
"path",
|
|
3895
4129
|
{
|
|
3896
4130
|
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",
|
|
@@ -3901,14 +4135,14 @@ var PlayerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
|
3901
4135
|
);
|
|
3902
4136
|
|
|
3903
4137
|
// src/components/Icon/icons/PlusIcon.tsx
|
|
3904
|
-
var
|
|
3905
|
-
var PlusIcon = (props) => /* @__PURE__ */ (0,
|
|
4138
|
+
var import_jsx_runtime112 = require("react/jsx-runtime");
|
|
4139
|
+
var PlusIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
3906
4140
|
"svg",
|
|
3907
4141
|
{
|
|
3908
4142
|
...props,
|
|
3909
4143
|
viewBox: "0 0 24 24",
|
|
3910
4144
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3911
|
-
children: /* @__PURE__ */ (0,
|
|
4145
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
3912
4146
|
"path",
|
|
3913
4147
|
{
|
|
3914
4148
|
clipRule: "evenodd",
|
|
@@ -3921,14 +4155,14 @@ var PlusIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
|
3921
4155
|
);
|
|
3922
4156
|
|
|
3923
4157
|
// src/components/Icon/icons/PodcastIcon.tsx
|
|
3924
|
-
var
|
|
3925
|
-
var PodcastIcon = (props) => /* @__PURE__ */ (0,
|
|
4158
|
+
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
4159
|
+
var PodcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
3926
4160
|
"svg",
|
|
3927
4161
|
{
|
|
3928
4162
|
...props,
|
|
3929
4163
|
viewBox: "0 0 24 24",
|
|
3930
4164
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3931
|
-
children: /* @__PURE__ */ (0,
|
|
4165
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
3932
4166
|
"path",
|
|
3933
4167
|
{
|
|
3934
4168
|
clipRule: "evenodd",
|
|
@@ -3941,14 +4175,14 @@ var PodcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
|
3941
4175
|
);
|
|
3942
4176
|
|
|
3943
4177
|
// src/components/Icon/icons/PreviewIcon.tsx
|
|
3944
|
-
var
|
|
3945
|
-
var PreviewIcon = (props) => /* @__PURE__ */ (0,
|
|
4178
|
+
var import_jsx_runtime114 = require("react/jsx-runtime");
|
|
4179
|
+
var PreviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
3946
4180
|
"svg",
|
|
3947
4181
|
{
|
|
3948
4182
|
...props,
|
|
3949
4183
|
viewBox: "0 0 24 24",
|
|
3950
4184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3951
|
-
children: /* @__PURE__ */ (0,
|
|
4185
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
3952
4186
|
"path",
|
|
3953
4187
|
{
|
|
3954
4188
|
clipRule: "evenodd",
|
|
@@ -3961,14 +4195,14 @@ var PreviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
|
3961
4195
|
);
|
|
3962
4196
|
|
|
3963
4197
|
// src/components/Icon/icons/PrivateUserSessionsIcon.tsx
|
|
3964
|
-
var
|
|
3965
|
-
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4198
|
+
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
4199
|
+
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3966
4200
|
"svg",
|
|
3967
4201
|
{
|
|
3968
4202
|
...props,
|
|
3969
4203
|
viewBox: "0 0 24 24",
|
|
3970
4204
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3971
|
-
children: /* @__PURE__ */ (0,
|
|
4205
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3972
4206
|
"path",
|
|
3973
4207
|
{
|
|
3974
4208
|
clipRule: "evenodd",
|
|
@@ -3981,15 +4215,15 @@ var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime1
|
|
|
3981
4215
|
);
|
|
3982
4216
|
|
|
3983
4217
|
// src/components/Icon/icons/ProjectIcon.tsx
|
|
3984
|
-
var
|
|
3985
|
-
var ProjectIcon = (props) => /* @__PURE__ */ (0,
|
|
4218
|
+
var import_jsx_runtime116 = require("react/jsx-runtime");
|
|
4219
|
+
var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
|
|
3986
4220
|
"svg",
|
|
3987
4221
|
{
|
|
3988
4222
|
...props,
|
|
3989
4223
|
viewBox: "0 0 24 24",
|
|
3990
4224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3991
4225
|
children: [
|
|
3992
|
-
/* @__PURE__ */ (0,
|
|
4226
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
3993
4227
|
"path",
|
|
3994
4228
|
{
|
|
3995
4229
|
clipRule: "evenodd",
|
|
@@ -3998,7 +4232,7 @@ var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
|
|
|
3998
4232
|
fillRule: "evenodd"
|
|
3999
4233
|
}
|
|
4000
4234
|
),
|
|
4001
|
-
/* @__PURE__ */ (0,
|
|
4235
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
4002
4236
|
"path",
|
|
4003
4237
|
{
|
|
4004
4238
|
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",
|
|
@@ -4010,14 +4244,14 @@ var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
|
|
|
4010
4244
|
);
|
|
4011
4245
|
|
|
4012
4246
|
// src/components/Icon/icons/PropertiesIcon.tsx
|
|
4013
|
-
var
|
|
4014
|
-
var PropertiesIcon = (props) => /* @__PURE__ */ (0,
|
|
4247
|
+
var import_jsx_runtime117 = require("react/jsx-runtime");
|
|
4248
|
+
var PropertiesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
4015
4249
|
"svg",
|
|
4016
4250
|
{
|
|
4017
4251
|
...props,
|
|
4018
4252
|
viewBox: "0 0 24 24",
|
|
4019
4253
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4020
|
-
children: /* @__PURE__ */ (0,
|
|
4254
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
4021
4255
|
"path",
|
|
4022
4256
|
{
|
|
4023
4257
|
clipRule: "evenodd",
|
|
@@ -4030,14 +4264,14 @@ var PropertiesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
|
4030
4264
|
);
|
|
4031
4265
|
|
|
4032
4266
|
// src/components/Icon/icons/QuestionMarkIcon.tsx
|
|
4033
|
-
var
|
|
4034
|
-
var QuestionMarkIcon = (props) => /* @__PURE__ */ (0,
|
|
4267
|
+
var import_jsx_runtime118 = require("react/jsx-runtime");
|
|
4268
|
+
var QuestionMarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
4035
4269
|
"svg",
|
|
4036
4270
|
{
|
|
4037
4271
|
...props,
|
|
4038
4272
|
viewBox: "0 0 24 24",
|
|
4039
4273
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4040
|
-
children: /* @__PURE__ */ (0,
|
|
4274
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
4041
4275
|
"path",
|
|
4042
4276
|
{
|
|
4043
4277
|
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",
|
|
@@ -4048,14 +4282,14 @@ var QuestionMarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime116.jsx)
|
|
|
4048
4282
|
);
|
|
4049
4283
|
|
|
4050
4284
|
// src/components/Icon/icons/ReactIcon.tsx
|
|
4051
|
-
var
|
|
4052
|
-
var ReactIcon = (props) => /* @__PURE__ */ (0,
|
|
4285
|
+
var import_jsx_runtime119 = require("react/jsx-runtime");
|
|
4286
|
+
var ReactIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
4053
4287
|
"svg",
|
|
4054
4288
|
{
|
|
4055
4289
|
...props,
|
|
4056
4290
|
viewBox: "0 0 24 24",
|
|
4057
4291
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4058
|
-
children: /* @__PURE__ */ (0,
|
|
4292
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
4059
4293
|
"path",
|
|
4060
4294
|
{
|
|
4061
4295
|
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",
|
|
@@ -4066,14 +4300,14 @@ var ReactIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
|
4066
4300
|
);
|
|
4067
4301
|
|
|
4068
4302
|
// src/components/Icon/icons/RecordIcon.tsx
|
|
4069
|
-
var
|
|
4070
|
-
var RecordIcon = (props) => /* @__PURE__ */ (0,
|
|
4303
|
+
var import_jsx_runtime120 = require("react/jsx-runtime");
|
|
4304
|
+
var RecordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
4071
4305
|
"svg",
|
|
4072
4306
|
{
|
|
4073
4307
|
...props,
|
|
4074
4308
|
viewBox: "0 0 24 24",
|
|
4075
4309
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4076
|
-
children: /* @__PURE__ */ (0,
|
|
4310
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
4077
4311
|
"path",
|
|
4078
4312
|
{
|
|
4079
4313
|
clipRule: "evenodd",
|
|
@@ -4086,14 +4320,14 @@ var RecordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
|
4086
4320
|
);
|
|
4087
4321
|
|
|
4088
4322
|
// src/components/Icon/icons/RedoIcon.tsx
|
|
4089
|
-
var
|
|
4090
|
-
var RedoIcon = (props) => /* @__PURE__ */ (0,
|
|
4323
|
+
var import_jsx_runtime121 = require("react/jsx-runtime");
|
|
4324
|
+
var RedoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
4091
4325
|
"svg",
|
|
4092
4326
|
{
|
|
4093
4327
|
...props,
|
|
4094
4328
|
viewBox: "0 0 24 24",
|
|
4095
4329
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4096
|
-
children: /* @__PURE__ */ (0,
|
|
4330
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
4097
4331
|
"path",
|
|
4098
4332
|
{
|
|
4099
4333
|
clipRule: "evenodd",
|
|
@@ -4106,14 +4340,14 @@ var RedoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
|
4106
4340
|
);
|
|
4107
4341
|
|
|
4108
4342
|
// src/components/Icon/icons/ReplaceIcon.tsx
|
|
4109
|
-
var
|
|
4110
|
-
var ReplaceIcon = (props) => /* @__PURE__ */ (0,
|
|
4343
|
+
var import_jsx_runtime122 = require("react/jsx-runtime");
|
|
4344
|
+
var ReplaceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
4111
4345
|
"svg",
|
|
4112
4346
|
{
|
|
4113
4347
|
...props,
|
|
4114
4348
|
viewBox: "0 0 24 24",
|
|
4115
4349
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4116
|
-
children: /* @__PURE__ */ (0,
|
|
4350
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
4117
4351
|
"path",
|
|
4118
4352
|
{
|
|
4119
4353
|
clipRule: "evenodd",
|
|
@@ -4126,14 +4360,14 @@ var ReplaceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
|
4126
4360
|
);
|
|
4127
4361
|
|
|
4128
4362
|
// src/components/Icon/icons/ReplyIcon.tsx
|
|
4129
|
-
var
|
|
4130
|
-
var ReplyIcon = (props) => /* @__PURE__ */ (0,
|
|
4363
|
+
var import_jsx_runtime123 = require("react/jsx-runtime");
|
|
4364
|
+
var ReplyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
4131
4365
|
"svg",
|
|
4132
4366
|
{
|
|
4133
4367
|
...props,
|
|
4134
4368
|
viewBox: "0 0 24 24",
|
|
4135
4369
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4136
|
-
children: /* @__PURE__ */ (0,
|
|
4370
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
4137
4371
|
"path",
|
|
4138
4372
|
{
|
|
4139
4373
|
clipRule: "evenodd",
|
|
@@ -4146,14 +4380,14 @@ var ReplyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
|
4146
4380
|
);
|
|
4147
4381
|
|
|
4148
4382
|
// src/components/Icon/icons/SaveAsCopyIcon.tsx
|
|
4149
|
-
var
|
|
4150
|
-
var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0,
|
|
4383
|
+
var import_jsx_runtime124 = require("react/jsx-runtime");
|
|
4384
|
+
var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
4151
4385
|
"svg",
|
|
4152
4386
|
{
|
|
4153
4387
|
...props,
|
|
4154
4388
|
viewBox: "0 0 24 24",
|
|
4155
4389
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4156
|
-
children: /* @__PURE__ */ (0,
|
|
4390
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
4157
4391
|
"path",
|
|
4158
4392
|
{
|
|
4159
4393
|
clipRule: "evenodd",
|
|
@@ -4166,14 +4400,14 @@ var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
|
4166
4400
|
);
|
|
4167
4401
|
|
|
4168
4402
|
// src/components/Icon/icons/SaveIcon.tsx
|
|
4169
|
-
var
|
|
4170
|
-
var SaveIcon = (props) => /* @__PURE__ */ (0,
|
|
4403
|
+
var import_jsx_runtime125 = require("react/jsx-runtime");
|
|
4404
|
+
var SaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
|
|
4171
4405
|
"svg",
|
|
4172
4406
|
{
|
|
4173
4407
|
...props,
|
|
4174
4408
|
viewBox: "0 0 24 24",
|
|
4175
4409
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4176
|
-
children: /* @__PURE__ */ (0,
|
|
4410
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
|
|
4177
4411
|
"path",
|
|
4178
4412
|
{
|
|
4179
4413
|
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",
|
|
@@ -4184,14 +4418,14 @@ var SaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
|
4184
4418
|
);
|
|
4185
4419
|
|
|
4186
4420
|
// src/components/Icon/icons/ScissorsIcon.tsx
|
|
4187
|
-
var
|
|
4188
|
-
var ScissorsIcon = (props) => /* @__PURE__ */ (0,
|
|
4421
|
+
var import_jsx_runtime126 = require("react/jsx-runtime");
|
|
4422
|
+
var ScissorsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
4189
4423
|
"svg",
|
|
4190
4424
|
{
|
|
4191
4425
|
...props,
|
|
4192
4426
|
viewBox: "0 0 24 24",
|
|
4193
4427
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4194
|
-
children: /* @__PURE__ */ (0,
|
|
4428
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
4195
4429
|
"path",
|
|
4196
4430
|
{
|
|
4197
4431
|
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",
|
|
@@ -4202,14 +4436,14 @@ var ScissorsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
|
4202
4436
|
);
|
|
4203
4437
|
|
|
4204
4438
|
// src/components/Icon/icons/ScreenshareOffIcon.tsx
|
|
4205
|
-
var
|
|
4206
|
-
var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0,
|
|
4439
|
+
var import_jsx_runtime127 = require("react/jsx-runtime");
|
|
4440
|
+
var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
4207
4441
|
"svg",
|
|
4208
4442
|
{
|
|
4209
4443
|
...props,
|
|
4210
4444
|
viewBox: "0 0 24 24",
|
|
4211
4445
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4212
|
-
children: /* @__PURE__ */ (0,
|
|
4446
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
4213
4447
|
"path",
|
|
4214
4448
|
{
|
|
4215
4449
|
clipRule: "evenodd",
|
|
@@ -4222,14 +4456,14 @@ var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime125.js
|
|
|
4222
4456
|
);
|
|
4223
4457
|
|
|
4224
4458
|
// src/components/Icon/icons/ScreenshareOnIcon.tsx
|
|
4225
|
-
var
|
|
4226
|
-
var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0,
|
|
4459
|
+
var import_jsx_runtime128 = require("react/jsx-runtime");
|
|
4460
|
+
var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
4227
4461
|
"svg",
|
|
4228
4462
|
{
|
|
4229
4463
|
...props,
|
|
4230
4464
|
viewBox: "0 0 24 24",
|
|
4231
4465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4232
|
-
children: /* @__PURE__ */ (0,
|
|
4466
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
4233
4467
|
"path",
|
|
4234
4468
|
{
|
|
4235
4469
|
clipRule: "evenodd",
|
|
@@ -4242,14 +4476,14 @@ var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime126.jsx
|
|
|
4242
4476
|
);
|
|
4243
4477
|
|
|
4244
4478
|
// src/components/Icon/icons/SearchIcon.tsx
|
|
4245
|
-
var
|
|
4246
|
-
var SearchIcon = (props) => /* @__PURE__ */ (0,
|
|
4479
|
+
var import_jsx_runtime129 = require("react/jsx-runtime");
|
|
4480
|
+
var SearchIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
4247
4481
|
"svg",
|
|
4248
4482
|
{
|
|
4249
4483
|
...props,
|
|
4250
4484
|
viewBox: "0 0 24 24",
|
|
4251
4485
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4252
|
-
children: /* @__PURE__ */ (0,
|
|
4486
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
4253
4487
|
"path",
|
|
4254
4488
|
{
|
|
4255
4489
|
clipRule: "evenodd",
|
|
@@ -4262,14 +4496,14 @@ var SearchIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
|
4262
4496
|
);
|
|
4263
4497
|
|
|
4264
4498
|
// src/components/Icon/icons/SendIcon.tsx
|
|
4265
|
-
var
|
|
4266
|
-
var SendIcon = (props) => /* @__PURE__ */ (0,
|
|
4499
|
+
var import_jsx_runtime130 = require("react/jsx-runtime");
|
|
4500
|
+
var SendIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
4267
4501
|
"svg",
|
|
4268
4502
|
{
|
|
4269
4503
|
...props,
|
|
4270
4504
|
viewBox: "0 0 24 24",
|
|
4271
4505
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4272
|
-
children: /* @__PURE__ */ (0,
|
|
4506
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
4273
4507
|
"path",
|
|
4274
4508
|
{
|
|
4275
4509
|
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",
|
|
@@ -4280,14 +4514,14 @@ var SendIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
|
4280
4514
|
);
|
|
4281
4515
|
|
|
4282
4516
|
// src/components/Icon/icons/ShapesIcon.tsx
|
|
4283
|
-
var
|
|
4284
|
-
var ShapesIcon = (props) => /* @__PURE__ */ (0,
|
|
4517
|
+
var import_jsx_runtime131 = require("react/jsx-runtime");
|
|
4518
|
+
var ShapesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
4285
4519
|
"svg",
|
|
4286
4520
|
{
|
|
4287
4521
|
...props,
|
|
4288
4522
|
viewBox: "0 0 24 24",
|
|
4289
4523
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4290
|
-
children: /* @__PURE__ */ (0,
|
|
4524
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
4291
4525
|
"path",
|
|
4292
4526
|
{
|
|
4293
4527
|
clipRule: "evenodd",
|
|
@@ -4300,14 +4534,14 @@ var ShapesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
|
4300
4534
|
);
|
|
4301
4535
|
|
|
4302
4536
|
// src/components/Icon/icons/ShareIcon.tsx
|
|
4303
|
-
var
|
|
4304
|
-
var ShareIcon = (props) => /* @__PURE__ */ (0,
|
|
4537
|
+
var import_jsx_runtime132 = require("react/jsx-runtime");
|
|
4538
|
+
var ShareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
4305
4539
|
"svg",
|
|
4306
4540
|
{
|
|
4307
4541
|
...props,
|
|
4308
4542
|
viewBox: "0 0 24 24",
|
|
4309
4543
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4310
|
-
children: /* @__PURE__ */ (0,
|
|
4544
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
4311
4545
|
"path",
|
|
4312
4546
|
{
|
|
4313
4547
|
clipRule: "evenodd",
|
|
@@ -4320,14 +4554,14 @@ var ShareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
|
4320
4554
|
);
|
|
4321
4555
|
|
|
4322
4556
|
// src/components/Icon/icons/SharingPermissionsIcon.tsx
|
|
4323
|
-
var
|
|
4324
|
-
var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4557
|
+
var import_jsx_runtime133 = require("react/jsx-runtime");
|
|
4558
|
+
var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
4325
4559
|
"svg",
|
|
4326
4560
|
{
|
|
4327
4561
|
...props,
|
|
4328
4562
|
viewBox: "0 0 24 24",
|
|
4329
4563
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4330
|
-
children: /* @__PURE__ */ (0,
|
|
4564
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
4331
4565
|
"path",
|
|
4332
4566
|
{
|
|
4333
4567
|
clipRule: "evenodd",
|
|
@@ -4340,14 +4574,14 @@ var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13
|
|
|
4340
4574
|
);
|
|
4341
4575
|
|
|
4342
4576
|
// src/components/Icon/icons/SimulcastIcon.tsx
|
|
4343
|
-
var
|
|
4344
|
-
var SimulcastIcon = (props) => /* @__PURE__ */ (0,
|
|
4577
|
+
var import_jsx_runtime134 = require("react/jsx-runtime");
|
|
4578
|
+
var SimulcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
4345
4579
|
"svg",
|
|
4346
4580
|
{
|
|
4347
4581
|
...props,
|
|
4348
4582
|
viewBox: "0 0 24 24",
|
|
4349
4583
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4350
|
-
children: /* @__PURE__ */ (0,
|
|
4584
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
4351
4585
|
"path",
|
|
4352
4586
|
{
|
|
4353
4587
|
clipRule: "evenodd",
|
|
@@ -4360,14 +4594,14 @@ var SimulcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
|
4360
4594
|
);
|
|
4361
4595
|
|
|
4362
4596
|
// src/components/Icon/icons/SortIcon.tsx
|
|
4363
|
-
var
|
|
4364
|
-
var SortIcon = (props) => /* @__PURE__ */ (0,
|
|
4597
|
+
var import_jsx_runtime135 = require("react/jsx-runtime");
|
|
4598
|
+
var SortIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
4365
4599
|
"svg",
|
|
4366
4600
|
{
|
|
4367
4601
|
...props,
|
|
4368
4602
|
viewBox: "0 0 24 24",
|
|
4369
4603
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4370
|
-
children: /* @__PURE__ */ (0,
|
|
4604
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
4371
4605
|
"path",
|
|
4372
4606
|
{
|
|
4373
4607
|
clipRule: "evenodd",
|
|
@@ -4380,14 +4614,14 @@ var SortIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
|
4380
4614
|
);
|
|
4381
4615
|
|
|
4382
4616
|
// src/components/Icon/icons/SparkleIcon.tsx
|
|
4383
|
-
var
|
|
4384
|
-
var SparkleIcon = (props) => /* @__PURE__ */ (0,
|
|
4617
|
+
var import_jsx_runtime136 = require("react/jsx-runtime");
|
|
4618
|
+
var SparkleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
4385
4619
|
"svg",
|
|
4386
4620
|
{
|
|
4387
4621
|
...props,
|
|
4388
4622
|
viewBox: "0 0 24 24",
|
|
4389
4623
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4390
|
-
children: /* @__PURE__ */ (0,
|
|
4624
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
4391
4625
|
"path",
|
|
4392
4626
|
{
|
|
4393
4627
|
clipRule: "evenodd",
|
|
@@ -4400,15 +4634,15 @@ var SparkleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
|
4400
4634
|
);
|
|
4401
4635
|
|
|
4402
4636
|
// src/components/Icon/icons/SpinnerIcon.tsx
|
|
4403
|
-
var
|
|
4404
|
-
var SpinnerIcon = (props) => /* @__PURE__ */ (0,
|
|
4637
|
+
var import_jsx_runtime137 = require("react/jsx-runtime");
|
|
4638
|
+
var SpinnerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(
|
|
4405
4639
|
"svg",
|
|
4406
4640
|
{
|
|
4407
4641
|
...props,
|
|
4408
4642
|
viewBox: "0 0 24 24",
|
|
4409
4643
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4410
4644
|
children: [
|
|
4411
|
-
/* @__PURE__ */ (0,
|
|
4645
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
4412
4646
|
"path",
|
|
4413
4647
|
{
|
|
4414
4648
|
clipRule: "evenodd",
|
|
@@ -4417,7 +4651,7 @@ var SpinnerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
|
|
|
4417
4651
|
fillRule: "evenodd"
|
|
4418
4652
|
}
|
|
4419
4653
|
),
|
|
4420
|
-
/* @__PURE__ */ (0,
|
|
4654
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
4421
4655
|
"animateTransform",
|
|
4422
4656
|
{
|
|
4423
4657
|
attributeName: "transform",
|
|
@@ -4433,14 +4667,14 @@ var SpinnerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
|
|
|
4433
4667
|
);
|
|
4434
4668
|
|
|
4435
4669
|
// src/components/Icon/icons/StatsIcon.tsx
|
|
4436
|
-
var
|
|
4437
|
-
var StatsIcon = (props) => /* @__PURE__ */ (0,
|
|
4670
|
+
var import_jsx_runtime138 = require("react/jsx-runtime");
|
|
4671
|
+
var StatsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
4438
4672
|
"svg",
|
|
4439
4673
|
{
|
|
4440
4674
|
...props,
|
|
4441
4675
|
viewBox: "0 0 24 24",
|
|
4442
4676
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4443
|
-
children: /* @__PURE__ */ (0,
|
|
4677
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
4444
4678
|
"path",
|
|
4445
4679
|
{
|
|
4446
4680
|
clipRule: "evenodd",
|
|
@@ -4453,14 +4687,14 @@ var StatsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
|
4453
4687
|
);
|
|
4454
4688
|
|
|
4455
4689
|
// src/components/Icon/icons/SwitchAccountsIcon.tsx
|
|
4456
|
-
var
|
|
4457
|
-
var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0,
|
|
4690
|
+
var import_jsx_runtime139 = require("react/jsx-runtime");
|
|
4691
|
+
var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
4458
4692
|
"svg",
|
|
4459
4693
|
{
|
|
4460
4694
|
...props,
|
|
4461
4695
|
viewBox: "0 0 24 24",
|
|
4462
4696
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4463
|
-
children: /* @__PURE__ */ (0,
|
|
4697
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
4464
4698
|
"path",
|
|
4465
4699
|
{
|
|
4466
4700
|
clipRule: "evenodd",
|
|
@@ -4473,14 +4707,14 @@ var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime137.js
|
|
|
4473
4707
|
);
|
|
4474
4708
|
|
|
4475
4709
|
// src/components/Icon/icons/TagIcon.tsx
|
|
4476
|
-
var
|
|
4477
|
-
var TagIcon = (props) => /* @__PURE__ */ (0,
|
|
4710
|
+
var import_jsx_runtime140 = require("react/jsx-runtime");
|
|
4711
|
+
var TagIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
4478
4712
|
"svg",
|
|
4479
4713
|
{
|
|
4480
4714
|
...props,
|
|
4481
4715
|
viewBox: "0 0 24 24",
|
|
4482
4716
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4483
|
-
children: /* @__PURE__ */ (0,
|
|
4717
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
4484
4718
|
"path",
|
|
4485
4719
|
{
|
|
4486
4720
|
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",
|
|
@@ -4491,14 +4725,14 @@ var TagIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
|
4491
4725
|
);
|
|
4492
4726
|
|
|
4493
4727
|
// src/components/Icon/icons/ThumbnailIcon.tsx
|
|
4494
|
-
var
|
|
4495
|
-
var ThumbnailIcon = (props) => /* @__PURE__ */ (0,
|
|
4728
|
+
var import_jsx_runtime141 = require("react/jsx-runtime");
|
|
4729
|
+
var ThumbnailIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
4496
4730
|
"svg",
|
|
4497
4731
|
{
|
|
4498
4732
|
...props,
|
|
4499
4733
|
viewBox: "0 0 24 24",
|
|
4500
4734
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4501
|
-
children: /* @__PURE__ */ (0,
|
|
4735
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
4502
4736
|
"path",
|
|
4503
4737
|
{
|
|
4504
4738
|
clipRule: "evenodd",
|
|
@@ -4511,14 +4745,14 @@ var ThumbnailIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
|
4511
4745
|
);
|
|
4512
4746
|
|
|
4513
4747
|
// src/components/Icon/icons/ThumbsDownIcon.tsx
|
|
4514
|
-
var
|
|
4515
|
-
var ThumbsDownIcon = (props) => /* @__PURE__ */ (0,
|
|
4748
|
+
var import_jsx_runtime142 = require("react/jsx-runtime");
|
|
4749
|
+
var ThumbsDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
4516
4750
|
"svg",
|
|
4517
4751
|
{
|
|
4518
4752
|
...props,
|
|
4519
4753
|
viewBox: "0 0 24 24",
|
|
4520
4754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4521
|
-
children: /* @__PURE__ */ (0,
|
|
4755
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
4522
4756
|
"path",
|
|
4523
4757
|
{
|
|
4524
4758
|
clipRule: "evenodd",
|
|
@@ -4531,14 +4765,14 @@ var ThumbsDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
|
4531
4765
|
);
|
|
4532
4766
|
|
|
4533
4767
|
// src/components/Icon/icons/ThumbsUpIcon.tsx
|
|
4534
|
-
var
|
|
4535
|
-
var ThumbsUpIcon = (props) => /* @__PURE__ */ (0,
|
|
4768
|
+
var import_jsx_runtime143 = require("react/jsx-runtime");
|
|
4769
|
+
var ThumbsUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
4536
4770
|
"svg",
|
|
4537
4771
|
{
|
|
4538
4772
|
...props,
|
|
4539
4773
|
viewBox: "0 0 24 24",
|
|
4540
4774
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4541
|
-
children: /* @__PURE__ */ (0,
|
|
4775
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
4542
4776
|
"path",
|
|
4543
4777
|
{
|
|
4544
4778
|
clipRule: "evenodd",
|
|
@@ -4551,14 +4785,14 @@ var ThumbsUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
|
4551
4785
|
);
|
|
4552
4786
|
|
|
4553
4787
|
// src/components/Icon/icons/TransitionsIcon.tsx
|
|
4554
|
-
var
|
|
4555
|
-
var TransitionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4788
|
+
var import_jsx_runtime144 = require("react/jsx-runtime");
|
|
4789
|
+
var TransitionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
4556
4790
|
"svg",
|
|
4557
4791
|
{
|
|
4558
4792
|
...props,
|
|
4559
4793
|
viewBox: "0 0 24 24",
|
|
4560
4794
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4561
|
-
children: /* @__PURE__ */ (0,
|
|
4795
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
4562
4796
|
"path",
|
|
4563
4797
|
{
|
|
4564
4798
|
clipRule: "evenodd",
|
|
@@ -4571,14 +4805,14 @@ var TransitionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
|
4571
4805
|
);
|
|
4572
4806
|
|
|
4573
4807
|
// src/components/Icon/icons/TrimIcon.tsx
|
|
4574
|
-
var
|
|
4575
|
-
var TrimIcon = (props) => /* @__PURE__ */ (0,
|
|
4808
|
+
var import_jsx_runtime145 = require("react/jsx-runtime");
|
|
4809
|
+
var TrimIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
4576
4810
|
"svg",
|
|
4577
4811
|
{
|
|
4578
4812
|
...props,
|
|
4579
4813
|
viewBox: "0 0 24 24",
|
|
4580
4814
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4581
|
-
children: /* @__PURE__ */ (0,
|
|
4815
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
4582
4816
|
"path",
|
|
4583
4817
|
{
|
|
4584
4818
|
clipRule: "evenodd",
|
|
@@ -4591,14 +4825,14 @@ var TrimIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
|
4591
4825
|
);
|
|
4592
4826
|
|
|
4593
4827
|
// src/components/Icon/icons/TurnstileIcon.tsx
|
|
4594
|
-
var
|
|
4595
|
-
var TurnstileIcon = (props) => /* @__PURE__ */ (0,
|
|
4828
|
+
var import_jsx_runtime146 = require("react/jsx-runtime");
|
|
4829
|
+
var TurnstileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
4596
4830
|
"svg",
|
|
4597
4831
|
{
|
|
4598
4832
|
...props,
|
|
4599
4833
|
viewBox: "0 0 24 24",
|
|
4600
4834
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4601
|
-
children: /* @__PURE__ */ (0,
|
|
4835
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
4602
4836
|
"path",
|
|
4603
4837
|
{
|
|
4604
4838
|
clipRule: "evenodd",
|
|
@@ -4611,14 +4845,14 @@ var TurnstileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
|
4611
4845
|
);
|
|
4612
4846
|
|
|
4613
4847
|
// src/components/Icon/icons/UndoIcon.tsx
|
|
4614
|
-
var
|
|
4615
|
-
var UndoIcon = (props) => /* @__PURE__ */ (0,
|
|
4848
|
+
var import_jsx_runtime147 = require("react/jsx-runtime");
|
|
4849
|
+
var UndoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
4616
4850
|
"svg",
|
|
4617
4851
|
{
|
|
4618
4852
|
...props,
|
|
4619
4853
|
viewBox: "0 0 24 24",
|
|
4620
4854
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4621
|
-
children: /* @__PURE__ */ (0,
|
|
4855
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
4622
4856
|
"path",
|
|
4623
4857
|
{
|
|
4624
4858
|
clipRule: "evenodd",
|
|
@@ -4631,14 +4865,14 @@ var UndoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
|
4631
4865
|
);
|
|
4632
4866
|
|
|
4633
4867
|
// src/components/Icon/icons/UnlockIcon.tsx
|
|
4634
|
-
var
|
|
4635
|
-
var UnlockIcon = (props) => /* @__PURE__ */ (0,
|
|
4868
|
+
var import_jsx_runtime148 = require("react/jsx-runtime");
|
|
4869
|
+
var UnlockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
4636
4870
|
"svg",
|
|
4637
4871
|
{
|
|
4638
4872
|
...props,
|
|
4639
4873
|
viewBox: "0 0 24 24",
|
|
4640
4874
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4641
|
-
children: /* @__PURE__ */ (0,
|
|
4875
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
4642
4876
|
"path",
|
|
4643
4877
|
{
|
|
4644
4878
|
clipRule: "evenodd",
|
|
@@ -4651,14 +4885,14 @@ var UnlockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
|
4651
4885
|
);
|
|
4652
4886
|
|
|
4653
4887
|
// src/components/Icon/icons/UploadIcon.tsx
|
|
4654
|
-
var
|
|
4655
|
-
var UploadIcon = (props) => /* @__PURE__ */ (0,
|
|
4888
|
+
var import_jsx_runtime149 = require("react/jsx-runtime");
|
|
4889
|
+
var UploadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
4656
4890
|
"svg",
|
|
4657
4891
|
{
|
|
4658
4892
|
...props,
|
|
4659
4893
|
viewBox: "0 0 24 24",
|
|
4660
4894
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4661
|
-
children: /* @__PURE__ */ (0,
|
|
4895
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
4662
4896
|
"path",
|
|
4663
4897
|
{
|
|
4664
4898
|
clipRule: "evenodd",
|
|
@@ -4671,14 +4905,14 @@ var UploadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
|
4671
4905
|
);
|
|
4672
4906
|
|
|
4673
4907
|
// src/components/Icon/icons/UsersPermissionsIcon.tsx
|
|
4674
|
-
var
|
|
4675
|
-
var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4908
|
+
var import_jsx_runtime150 = require("react/jsx-runtime");
|
|
4909
|
+
var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
4676
4910
|
"svg",
|
|
4677
4911
|
{
|
|
4678
4912
|
...props,
|
|
4679
4913
|
viewBox: "0 0 24 24",
|
|
4680
4914
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4681
|
-
children: /* @__PURE__ */ (0,
|
|
4915
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
4682
4916
|
"path",
|
|
4683
4917
|
{
|
|
4684
4918
|
clipRule: "evenodd",
|
|
@@ -4691,14 +4925,14 @@ var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime148.
|
|
|
4691
4925
|
);
|
|
4692
4926
|
|
|
4693
4927
|
// src/components/Icon/icons/ViewStreamIcon.tsx
|
|
4694
|
-
var
|
|
4695
|
-
var ViewStreamIcon = (props) => /* @__PURE__ */ (0,
|
|
4928
|
+
var import_jsx_runtime151 = require("react/jsx-runtime");
|
|
4929
|
+
var ViewStreamIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
4696
4930
|
"svg",
|
|
4697
4931
|
{
|
|
4698
4932
|
...props,
|
|
4699
4933
|
viewBox: "0 0 24 24",
|
|
4700
4934
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4701
|
-
children: /* @__PURE__ */ (0,
|
|
4935
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
4702
4936
|
"path",
|
|
4703
4937
|
{
|
|
4704
4938
|
clipRule: "evenodd",
|
|
@@ -4711,14 +4945,14 @@ var ViewStreamIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
|
4711
4945
|
);
|
|
4712
4946
|
|
|
4713
4947
|
// src/components/Icon/icons/VolumeIcon.tsx
|
|
4714
|
-
var
|
|
4715
|
-
var VolumeIcon = (props) => /* @__PURE__ */ (0,
|
|
4948
|
+
var import_jsx_runtime152 = require("react/jsx-runtime");
|
|
4949
|
+
var VolumeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
4716
4950
|
"svg",
|
|
4717
4951
|
{
|
|
4718
4952
|
...props,
|
|
4719
4953
|
viewBox: "0 0 24 24",
|
|
4720
4954
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4721
|
-
children: /* @__PURE__ */ (0,
|
|
4955
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
4722
4956
|
"path",
|
|
4723
4957
|
{
|
|
4724
4958
|
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",
|
|
@@ -4729,14 +4963,14 @@ var VolumeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
|
4729
4963
|
);
|
|
4730
4964
|
|
|
4731
4965
|
// src/components/Icon/icons/VolumeOffIcon.tsx
|
|
4732
|
-
var
|
|
4733
|
-
var VolumeOffIcon = (props) => /* @__PURE__ */ (0,
|
|
4966
|
+
var import_jsx_runtime153 = require("react/jsx-runtime");
|
|
4967
|
+
var VolumeOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
4734
4968
|
"svg",
|
|
4735
4969
|
{
|
|
4736
4970
|
...props,
|
|
4737
4971
|
viewBox: "0 0 24 24",
|
|
4738
4972
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4739
|
-
children: /* @__PURE__ */ (0,
|
|
4973
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
4740
4974
|
"path",
|
|
4741
4975
|
{
|
|
4742
4976
|
clipRule: "evenodd",
|
|
@@ -4749,14 +4983,14 @@ var VolumeOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
|
4749
4983
|
);
|
|
4750
4984
|
|
|
4751
4985
|
// src/components/Icon/icons/VolumeUpIcon.tsx
|
|
4752
|
-
var
|
|
4753
|
-
var VolumeUpIcon = (props) => /* @__PURE__ */ (0,
|
|
4986
|
+
var import_jsx_runtime154 = require("react/jsx-runtime");
|
|
4987
|
+
var VolumeUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
4754
4988
|
"svg",
|
|
4755
4989
|
{
|
|
4756
4990
|
...props,
|
|
4757
4991
|
viewBox: "0 0 24 24",
|
|
4758
4992
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4759
|
-
children: /* @__PURE__ */ (0,
|
|
4993
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
4760
4994
|
"path",
|
|
4761
4995
|
{
|
|
4762
4996
|
clipRule: "evenodd",
|
|
@@ -4769,14 +5003,14 @@ var VolumeUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
|
4769
5003
|
);
|
|
4770
5004
|
|
|
4771
5005
|
// src/components/Icon/icons/VolumeXIcon.tsx
|
|
4772
|
-
var
|
|
4773
|
-
var VolumeXIcon = (props) => /* @__PURE__ */ (0,
|
|
5006
|
+
var import_jsx_runtime155 = require("react/jsx-runtime");
|
|
5007
|
+
var VolumeXIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
4774
5008
|
"svg",
|
|
4775
5009
|
{
|
|
4776
5010
|
...props,
|
|
4777
5011
|
viewBox: "0 0 24 24",
|
|
4778
5012
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4779
|
-
children: /* @__PURE__ */ (0,
|
|
5013
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
4780
5014
|
"path",
|
|
4781
5015
|
{
|
|
4782
5016
|
clipRule: "evenodd",
|
|
@@ -4789,14 +5023,14 @@ var VolumeXIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
|
4789
5023
|
);
|
|
4790
5024
|
|
|
4791
5025
|
// src/components/Icon/icons/WandIcon.tsx
|
|
4792
|
-
var
|
|
4793
|
-
var WandIcon = (props) => /* @__PURE__ */ (0,
|
|
5026
|
+
var import_jsx_runtime156 = require("react/jsx-runtime");
|
|
5027
|
+
var WandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
4794
5028
|
"svg",
|
|
4795
5029
|
{
|
|
4796
5030
|
...props,
|
|
4797
5031
|
viewBox: "0 0 24 24",
|
|
4798
5032
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4799
|
-
children: /* @__PURE__ */ (0,
|
|
5033
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
4800
5034
|
"path",
|
|
4801
5035
|
{
|
|
4802
5036
|
clipRule: "evenodd",
|
|
@@ -4809,14 +5043,14 @@ var WandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
|
4809
5043
|
);
|
|
4810
5044
|
|
|
4811
5045
|
// src/components/Icon/icons/ZoomInIcon.tsx
|
|
4812
|
-
var
|
|
4813
|
-
var ZoomInIcon = (props) => /* @__PURE__ */ (0,
|
|
5046
|
+
var import_jsx_runtime157 = require("react/jsx-runtime");
|
|
5047
|
+
var ZoomInIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime157.jsx)(
|
|
4814
5048
|
"svg",
|
|
4815
5049
|
{
|
|
4816
5050
|
...props,
|
|
4817
5051
|
viewBox: "0 0 24 24",
|
|
4818
5052
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4819
|
-
children: /* @__PURE__ */ (0,
|
|
5053
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime157.jsx)(
|
|
4820
5054
|
"path",
|
|
4821
5055
|
{
|
|
4822
5056
|
clipRule: "evenodd",
|
|
@@ -4829,14 +5063,14 @@ var ZoomInIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
|
4829
5063
|
);
|
|
4830
5064
|
|
|
4831
5065
|
// src/components/Icon/icons/ZoomOutIcon.tsx
|
|
4832
|
-
var
|
|
4833
|
-
var ZoomOutIcon = (props) => /* @__PURE__ */ (0,
|
|
5066
|
+
var import_jsx_runtime158 = require("react/jsx-runtime");
|
|
5067
|
+
var ZoomOutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
4834
5068
|
"svg",
|
|
4835
5069
|
{
|
|
4836
5070
|
...props,
|
|
4837
5071
|
viewBox: "0 0 24 24",
|
|
4838
5072
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4839
|
-
children: /* @__PURE__ */ (0,
|
|
5073
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
4840
5074
|
"path",
|
|
4841
5075
|
{
|
|
4842
5076
|
clipRule: "evenodd",
|
|
@@ -5005,24 +5239,24 @@ var iconMap = {
|
|
|
5005
5239
|
};
|
|
5006
5240
|
|
|
5007
5241
|
// src/private/hooks/useResponsiveProp/useResponsiveProp.ts
|
|
5008
|
-
var
|
|
5009
|
-
var
|
|
5242
|
+
var import_type_guards9 = require("@wistia/type-guards");
|
|
5243
|
+
var import_react8 = require("react");
|
|
5010
5244
|
var isResponsiveObject = (values) => {
|
|
5011
5245
|
return typeof values === "object" && values !== null && !Array.isArray(values) && "base" in values;
|
|
5012
5246
|
};
|
|
5013
5247
|
var useResponsiveProp = (values) => {
|
|
5014
5248
|
const activeMediaQueries = useActiveMq();
|
|
5015
|
-
return (0,
|
|
5016
|
-
if ((0,
|
|
5249
|
+
return (0, import_react8.useMemo)(() => {
|
|
5250
|
+
if ((0, import_type_guards9.isRecord)(values) && isResponsiveObject(values)) {
|
|
5017
5251
|
const mq2 = activeMediaQueries.find((key) => key in values);
|
|
5018
|
-
return (0,
|
|
5252
|
+
return (0, import_type_guards9.isNotUndefined)(mq2) && (0, import_type_guards9.isNotUndefined)(values[mq2]) ? values[mq2] : values.base;
|
|
5019
5253
|
}
|
|
5020
5254
|
return values;
|
|
5021
5255
|
}, [activeMediaQueries, values]);
|
|
5022
5256
|
};
|
|
5023
5257
|
|
|
5024
5258
|
// src/components/Icon/Icon.tsx
|
|
5025
|
-
var
|
|
5259
|
+
var import_jsx_runtime159 = require("react/jsx-runtime");
|
|
5026
5260
|
var iconSizeMap = {
|
|
5027
5261
|
sm: "12",
|
|
5028
5262
|
md: "16",
|
|
@@ -5030,7 +5264,7 @@ var iconSizeMap = {
|
|
|
5030
5264
|
xl: "32",
|
|
5031
5265
|
xxl: "48"
|
|
5032
5266
|
};
|
|
5033
|
-
var StyledIcon =
|
|
5267
|
+
var StyledIcon = import_styled_components17.default.svg`
|
|
5034
5268
|
${({ $colorScheme }) => getColorScheme($colorScheme ?? "inherit")}
|
|
5035
5269
|
`;
|
|
5036
5270
|
var Icon = ({
|
|
@@ -5042,13 +5276,13 @@ var Icon = ({
|
|
|
5042
5276
|
...otherProps
|
|
5043
5277
|
}) => {
|
|
5044
5278
|
const responsiveSize = useResponsiveProp(size);
|
|
5045
|
-
if ((0,
|
|
5279
|
+
if ((0, import_type_guards10.isNil)(type)) {
|
|
5046
5280
|
throw new Error("An Icon component requires a `type` prop to be provided");
|
|
5047
5281
|
}
|
|
5048
|
-
if ((0,
|
|
5282
|
+
if ((0, import_type_guards10.isNil)(iconMap[type])) {
|
|
5049
5283
|
throw new Error(`Type "${type}" does not exist, please update type prop in Icon component.`);
|
|
5050
5284
|
}
|
|
5051
|
-
if ((0,
|
|
5285
|
+
if ((0, import_type_guards10.isNil)(iconSizeMap[responsiveSize])) {
|
|
5052
5286
|
throw new Error(
|
|
5053
5287
|
`Size "${responsiveSize}" does not exist, please update size prop in Icon component.`
|
|
5054
5288
|
);
|
|
@@ -5059,7 +5293,7 @@ var Icon = ({
|
|
|
5059
5293
|
...style
|
|
5060
5294
|
};
|
|
5061
5295
|
const iconColor = invertColor ? "var(--color-icon-on-fill)" : "var(--color-icon)";
|
|
5062
|
-
return /* @__PURE__ */ (0,
|
|
5296
|
+
return /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
5063
5297
|
StyledIcon,
|
|
5064
5298
|
{
|
|
5065
5299
|
$colorScheme: colorScheme,
|
|
@@ -5079,13 +5313,13 @@ var Icon = ({
|
|
|
5079
5313
|
Icon.displayName = "Icon";
|
|
5080
5314
|
|
|
5081
5315
|
// src/components/Link/Link.tsx
|
|
5082
|
-
var
|
|
5083
|
-
var
|
|
5084
|
-
var
|
|
5316
|
+
var import_react9 = require("react");
|
|
5317
|
+
var import_type_guards11 = require("@wistia/type-guards");
|
|
5318
|
+
var import_styled_components18 = __toESM(require("styled-components"));
|
|
5085
5319
|
var import_react_router_dom = require("react-router-dom");
|
|
5086
|
-
var
|
|
5320
|
+
var import_jsx_runtime160 = require("react/jsx-runtime");
|
|
5087
5321
|
var generateHref = (href, type, disabled) => {
|
|
5088
|
-
if (disabled || (0,
|
|
5322
|
+
if (disabled || (0, import_type_guards11.isNil)(href)) {
|
|
5089
5323
|
return void 0;
|
|
5090
5324
|
}
|
|
5091
5325
|
let to = href;
|
|
@@ -5097,17 +5331,17 @@ var generateHref = (href, type, disabled) => {
|
|
|
5097
5331
|
}
|
|
5098
5332
|
return to;
|
|
5099
5333
|
};
|
|
5100
|
-
var isButton = (props) => (0,
|
|
5101
|
-
var isLink = (props) => (0,
|
|
5102
|
-
var StyledLink =
|
|
5103
|
-
${({ href }) => (0,
|
|
5334
|
+
var isButton = (props) => (0, import_type_guards11.isUndefined)(props.href);
|
|
5335
|
+
var isLink = (props) => (0, import_type_guards11.isNotUndefined)(props.href);
|
|
5336
|
+
var StyledLink = import_styled_components18.default.a`
|
|
5337
|
+
${({ href }) => (0, import_type_guards11.isNil)(href) && buttonResetCss};
|
|
5104
5338
|
${({ $colorScheme }) => getColorScheme($colorScheme)}
|
|
5105
5339
|
cursor: pointer;
|
|
5106
5340
|
font-family: var(--typography-family-default);
|
|
5107
5341
|
color: var(--color-text-link);
|
|
5108
5342
|
text-decoration: ${({ $underline }) => $underline ? "underline" : "none"};
|
|
5109
5343
|
`;
|
|
5110
|
-
var Link = (0,
|
|
5344
|
+
var Link = (0, import_react9.forwardRef)(
|
|
5111
5345
|
({
|
|
5112
5346
|
beforeAction,
|
|
5113
5347
|
children,
|
|
@@ -5131,7 +5365,7 @@ var Link = (0, import_react8.forwardRef)(
|
|
|
5131
5365
|
} finally {
|
|
5132
5366
|
if (routingCallback !== null) {
|
|
5133
5367
|
routingCallback();
|
|
5134
|
-
} else if ((0,
|
|
5368
|
+
} else if ((0, import_type_guards11.isNotNil)(to)) {
|
|
5135
5369
|
window.location.assign(to);
|
|
5136
5370
|
} else {
|
|
5137
5371
|
}
|
|
@@ -5145,7 +5379,7 @@ var Link = (0, import_react8.forwardRef)(
|
|
|
5145
5379
|
onClick: handleClick
|
|
5146
5380
|
};
|
|
5147
5381
|
if (isButton(props)) {
|
|
5148
|
-
return /* @__PURE__ */ (0,
|
|
5382
|
+
return /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
|
|
5149
5383
|
StyledLink,
|
|
5150
5384
|
{
|
|
5151
5385
|
ref,
|
|
@@ -5165,7 +5399,7 @@ var Link = (0, import_react8.forwardRef)(
|
|
|
5165
5399
|
...commonProps,
|
|
5166
5400
|
...externalLinkProps
|
|
5167
5401
|
};
|
|
5168
|
-
return inRouterContext && type !== "external" ? /* @__PURE__ */ (0,
|
|
5402
|
+
return inRouterContext && type !== "external" ? /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
|
|
5169
5403
|
StyledLink,
|
|
5170
5404
|
{
|
|
5171
5405
|
as: import_react_router_dom.Link,
|
|
@@ -5173,7 +5407,7 @@ var Link = (0, import_react8.forwardRef)(
|
|
|
5173
5407
|
to: to ?? "",
|
|
5174
5408
|
children
|
|
5175
5409
|
}
|
|
5176
|
-
) : /* @__PURE__ */ (0,
|
|
5410
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
|
|
5177
5411
|
StyledLink,
|
|
5178
5412
|
{
|
|
5179
5413
|
as: "a",
|
|
@@ -5189,9 +5423,9 @@ var Link = (0, import_react8.forwardRef)(
|
|
|
5189
5423
|
Link.displayName = "Link";
|
|
5190
5424
|
|
|
5191
5425
|
// src/components/Button/Button.tsx
|
|
5192
|
-
var
|
|
5193
|
-
var isLink2 = (props) => (0,
|
|
5194
|
-
var StyledButton =
|
|
5426
|
+
var import_jsx_runtime161 = require("react/jsx-runtime");
|
|
5427
|
+
var isLink2 = (props) => (0, import_type_guards12.isNotUndefined)(props.href);
|
|
5428
|
+
var StyledButton = import_styled_components19.default.button`
|
|
5195
5429
|
${buttonResetCss}
|
|
5196
5430
|
${({ $colorScheme }) => getColorScheme($colorScheme)}
|
|
5197
5431
|
${({ $size }) => buttonSizeStyles[$size]}
|
|
@@ -5200,7 +5434,7 @@ var StyledButton = import_styled_components17.default.button`
|
|
|
5200
5434
|
${({ $fullWidth }) => $fullWidth && "width: 100%;"}
|
|
5201
5435
|
position: relative;
|
|
5202
5436
|
`;
|
|
5203
|
-
var StyledButtonContent =
|
|
5437
|
+
var StyledButtonContent = import_styled_components19.default.div`
|
|
5204
5438
|
align-items: center;
|
|
5205
5439
|
display: inline-flex;
|
|
5206
5440
|
flex-grow: 1;
|
|
@@ -5212,11 +5446,11 @@ var StyledButtonContent = import_styled_components17.default.div`
|
|
|
5212
5446
|
${({ $hasLeftIcon }) => $hasLeftIcon && "padding-left: 0;"}
|
|
5213
5447
|
${({ $hasRightIcon }) => $hasRightIcon && "padding-right: 0;"}
|
|
5214
5448
|
`;
|
|
5215
|
-
var StyledButtonContentLabel =
|
|
5449
|
+
var StyledButtonContentLabel = import_styled_components19.default.span`
|
|
5216
5450
|
flex: 1;
|
|
5217
5451
|
text-align: center;
|
|
5218
5452
|
`;
|
|
5219
|
-
var StyledButtonLoading =
|
|
5453
|
+
var StyledButtonLoading = import_styled_components19.default.div`
|
|
5220
5454
|
position: absolute;
|
|
5221
5455
|
display: flex;
|
|
5222
5456
|
`;
|
|
@@ -5226,24 +5460,24 @@ var ButtonContent = ({
|
|
|
5226
5460
|
rightIcon,
|
|
5227
5461
|
children
|
|
5228
5462
|
}) => {
|
|
5229
|
-
return /* @__PURE__ */ (0,
|
|
5230
|
-
isLoading ? /* @__PURE__ */ (0,
|
|
5231
|
-
/* @__PURE__ */ (0,
|
|
5463
|
+
return /* @__PURE__ */ (0, import_jsx_runtime161.jsxs)(import_jsx_runtime161.Fragment, { children: [
|
|
5464
|
+
isLoading ? /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(StyledButtonLoading, { children: /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(Icon, { type: "spinner" }) }) : null,
|
|
5465
|
+
/* @__PURE__ */ (0, import_jsx_runtime161.jsxs)(
|
|
5232
5466
|
StyledButtonContent,
|
|
5233
5467
|
{
|
|
5234
|
-
$hasLeftIcon: (0,
|
|
5235
|
-
$hasRightIcon: (0,
|
|
5468
|
+
$hasLeftIcon: (0, import_type_guards12.isNotNil)(leftIcon),
|
|
5469
|
+
$hasRightIcon: (0, import_type_guards12.isNotNil)(rightIcon),
|
|
5236
5470
|
$isLoading: isLoading,
|
|
5237
5471
|
children: [
|
|
5238
5472
|
leftIcon ?? null,
|
|
5239
|
-
/* @__PURE__ */ (0,
|
|
5473
|
+
/* @__PURE__ */ (0, import_jsx_runtime161.jsx)(StyledButtonContentLabel, { children }),
|
|
5240
5474
|
rightIcon ?? null
|
|
5241
5475
|
]
|
|
5242
5476
|
}
|
|
5243
5477
|
)
|
|
5244
5478
|
] });
|
|
5245
5479
|
};
|
|
5246
|
-
var Button = (0,
|
|
5480
|
+
var Button = (0, import_react10.forwardRef)(
|
|
5247
5481
|
({
|
|
5248
5482
|
children,
|
|
5249
5483
|
forceState,
|
|
@@ -5278,14 +5512,14 @@ var Button = (0, import_react9.forwardRef)(
|
|
|
5278
5512
|
commonProps.className = `${className ?? ""} force-state-${forceState}`;
|
|
5279
5513
|
}
|
|
5280
5514
|
if (isLink2(props)) {
|
|
5281
|
-
return /* @__PURE__ */ (0,
|
|
5515
|
+
return /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
5282
5516
|
StyledButton,
|
|
5283
5517
|
{
|
|
5284
5518
|
ref,
|
|
5285
5519
|
as: Link,
|
|
5286
5520
|
...props,
|
|
5287
5521
|
...commonProps,
|
|
5288
|
-
children: /* @__PURE__ */ (0,
|
|
5522
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
5289
5523
|
ButtonContent,
|
|
5290
5524
|
{
|
|
5291
5525
|
isLoading,
|
|
@@ -5302,11 +5536,11 @@ var Button = (0, import_react9.forwardRef)(
|
|
|
5302
5536
|
event.preventDefault();
|
|
5303
5537
|
return;
|
|
5304
5538
|
}
|
|
5305
|
-
if ((0,
|
|
5539
|
+
if ((0, import_type_guards12.isNotNil)(onClick)) {
|
|
5306
5540
|
onClick(event);
|
|
5307
5541
|
}
|
|
5308
5542
|
};
|
|
5309
|
-
return /* @__PURE__ */ (0,
|
|
5543
|
+
return /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
5310
5544
|
StyledButton,
|
|
5311
5545
|
{
|
|
5312
5546
|
ref,
|
|
@@ -5314,7 +5548,7 @@ var Button = (0, import_react9.forwardRef)(
|
|
|
5314
5548
|
type: "button",
|
|
5315
5549
|
...props,
|
|
5316
5550
|
...commonProps,
|
|
5317
|
-
children: /* @__PURE__ */ (0,
|
|
5551
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
5318
5552
|
ButtonContent,
|
|
5319
5553
|
{
|
|
5320
5554
|
isLoading,
|
|
@@ -5330,9 +5564,9 @@ var Button = (0, import_react9.forwardRef)(
|
|
|
5330
5564
|
Button.displayName = "Button";
|
|
5331
5565
|
|
|
5332
5566
|
// src/components/ButtonGroup/ButtonGroup.tsx
|
|
5333
|
-
var
|
|
5334
|
-
var
|
|
5335
|
-
var
|
|
5567
|
+
var import_styled_components20 = __toESM(require("styled-components"));
|
|
5568
|
+
var import_type_guards13 = require("@wistia/type-guards");
|
|
5569
|
+
var import_jsx_runtime162 = require("react/jsx-runtime");
|
|
5336
5570
|
var getAlignment = (align) => {
|
|
5337
5571
|
if (align === "center") {
|
|
5338
5572
|
return "center";
|
|
@@ -5345,7 +5579,7 @@ var getAlignment = (align) => {
|
|
|
5345
5579
|
}
|
|
5346
5580
|
return void 0;
|
|
5347
5581
|
};
|
|
5348
|
-
var ButtonGroupComponent =
|
|
5582
|
+
var ButtonGroupComponent = import_styled_components20.default.div`
|
|
5349
5583
|
display: flex;
|
|
5350
5584
|
|
|
5351
5585
|
/* this helps ensure that primary buttons appear at the top of the column */
|
|
@@ -5371,10 +5605,10 @@ var ButtonGroup = ({
|
|
|
5371
5605
|
fullWidth = false,
|
|
5372
5606
|
...otherProps
|
|
5373
5607
|
}) => {
|
|
5374
|
-
if ((0,
|
|
5608
|
+
if ((0, import_type_guards13.isNil)(children)) {
|
|
5375
5609
|
return null;
|
|
5376
5610
|
}
|
|
5377
|
-
return /* @__PURE__ */ (0,
|
|
5611
|
+
return /* @__PURE__ */ (0, import_jsx_runtime162.jsx)(
|
|
5378
5612
|
ButtonGroupComponent,
|
|
5379
5613
|
{
|
|
5380
5614
|
$align: align,
|
|
@@ -5386,48 +5620,14 @@ var ButtonGroup = ({
|
|
|
5386
5620
|
};
|
|
5387
5621
|
ButtonGroup.displayName = "ButtonGroup";
|
|
5388
5622
|
|
|
5389
|
-
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
5390
|
-
var import_styled_components19 = __toESM(require("styled-components"));
|
|
5391
|
-
var import_jsx_runtime161 = require("react/jsx-runtime");
|
|
5392
|
-
var colorSchemeOptions = [
|
|
5393
|
-
"inherit",
|
|
5394
|
-
"default",
|
|
5395
|
-
"info",
|
|
5396
|
-
"success",
|
|
5397
|
-
"warning",
|
|
5398
|
-
"error",
|
|
5399
|
-
"blue",
|
|
5400
|
-
"green",
|
|
5401
|
-
"orange",
|
|
5402
|
-
"pink",
|
|
5403
|
-
"purple",
|
|
5404
|
-
"yellow"
|
|
5405
|
-
];
|
|
5406
|
-
var StyledColorSchemeWrapper = import_styled_components19.default.div`
|
|
5407
|
-
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
5408
|
-
`;
|
|
5409
|
-
var ColorSchemeWrapper = ({
|
|
5410
|
-
colorScheme,
|
|
5411
|
-
children,
|
|
5412
|
-
...otherProps
|
|
5413
|
-
}) => /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
5414
|
-
StyledColorSchemeWrapper,
|
|
5415
|
-
{
|
|
5416
|
-
$colorScheme: colorScheme,
|
|
5417
|
-
...otherProps,
|
|
5418
|
-
children
|
|
5419
|
-
}
|
|
5420
|
-
);
|
|
5421
|
-
ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
|
|
5422
|
-
|
|
5423
5623
|
// src/components/Divider/Divider.tsx
|
|
5424
|
-
var
|
|
5425
|
-
var
|
|
5624
|
+
var import_styled_components21 = __toESM(require("styled-components"));
|
|
5625
|
+
var import_jsx_runtime163 = require("react/jsx-runtime");
|
|
5426
5626
|
var sizeToPixelMap = {
|
|
5427
5627
|
lg: 4,
|
|
5428
5628
|
sm: 1
|
|
5429
5629
|
};
|
|
5430
|
-
var DividerComponent =
|
|
5630
|
+
var DividerComponent = import_styled_components21.default.hr`
|
|
5431
5631
|
background: none;
|
|
5432
5632
|
border-bottom: none;
|
|
5433
5633
|
border-left: none;
|
|
@@ -5442,7 +5642,7 @@ var DividerComponent = import_styled_components20.default.hr`
|
|
|
5442
5642
|
`;
|
|
5443
5643
|
var Divider = ({ size = "sm", ...otherProps }) => {
|
|
5444
5644
|
const responsiveSize = useResponsiveProp(size);
|
|
5445
|
-
return /* @__PURE__ */ (0,
|
|
5645
|
+
return /* @__PURE__ */ (0, import_jsx_runtime163.jsx)(
|
|
5446
5646
|
DividerComponent,
|
|
5447
5647
|
{
|
|
5448
5648
|
$borderHeight: sizeToPixelMap[responsiveSize],
|
|
@@ -5453,10 +5653,10 @@ var Divider = ({ size = "sm", ...otherProps }) => {
|
|
|
5453
5653
|
Divider.displayName = "Divider";
|
|
5454
5654
|
|
|
5455
5655
|
// src/components/Ellipsis/Ellipsis.tsx
|
|
5456
|
-
var
|
|
5457
|
-
var
|
|
5458
|
-
var
|
|
5459
|
-
var ellipsisStyle =
|
|
5656
|
+
var import_type_guards14 = require("@wistia/type-guards");
|
|
5657
|
+
var import_styled_components22 = __toESM(require("styled-components"));
|
|
5658
|
+
var import_jsx_runtime164 = require("react/jsx-runtime");
|
|
5659
|
+
var ellipsisStyle = import_styled_components22.css`
|
|
5460
5660
|
overflow: hidden;
|
|
5461
5661
|
text-overflow: ellipsis;
|
|
5462
5662
|
white-space: nowrap;
|
|
@@ -5479,14 +5679,14 @@ var ellipsisStyle = import_styled_components21.css`
|
|
|
5479
5679
|
}
|
|
5480
5680
|
}
|
|
5481
5681
|
`;
|
|
5482
|
-
var ellipsisFlexParentStyle =
|
|
5682
|
+
var ellipsisFlexParentStyle = import_styled_components22.css`
|
|
5483
5683
|
min-width: 0;
|
|
5484
5684
|
`;
|
|
5485
|
-
var EllipsisComponent =
|
|
5685
|
+
var EllipsisComponent = import_styled_components22.default.div`
|
|
5486
5686
|
${ellipsisStyle};
|
|
5487
5687
|
${({ $lines }) => {
|
|
5488
|
-
if ((0,
|
|
5489
|
-
return
|
|
5688
|
+
if ((0, import_type_guards14.isNotNil)($lines)) {
|
|
5689
|
+
return import_styled_components22.css`
|
|
5490
5690
|
-webkit-box-orient: vertical;
|
|
5491
5691
|
-webkit-line-clamp: ${$lines};
|
|
5492
5692
|
display: -webkit-box;
|
|
@@ -5496,7 +5696,7 @@ var EllipsisComponent = import_styled_components21.default.div`
|
|
|
5496
5696
|
return void 0;
|
|
5497
5697
|
}}
|
|
5498
5698
|
`;
|
|
5499
|
-
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0,
|
|
5699
|
+
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0, import_jsx_runtime164.jsx)(
|
|
5500
5700
|
EllipsisComponent,
|
|
5501
5701
|
{
|
|
5502
5702
|
$lines: lines,
|
|
@@ -5507,8 +5707,8 @@ var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0, impor
|
|
|
5507
5707
|
Ellipsis.displayName = "Ellipsis";
|
|
5508
5708
|
|
|
5509
5709
|
// src/components/Heading/Heading.tsx
|
|
5510
|
-
var
|
|
5511
|
-
var
|
|
5710
|
+
var import_react11 = require("react");
|
|
5711
|
+
var import_styled_components23 = __toESM(require("styled-components"));
|
|
5512
5712
|
|
|
5513
5713
|
// src/private/helpers/makePolymorphic/makePolymorphic.tsx
|
|
5514
5714
|
var makePolymorphic = (component) => {
|
|
@@ -5516,44 +5716,44 @@ var makePolymorphic = (component) => {
|
|
|
5516
5716
|
};
|
|
5517
5717
|
|
|
5518
5718
|
// src/components/Heading/Heading.tsx
|
|
5519
|
-
var
|
|
5520
|
-
var heroStyle =
|
|
5719
|
+
var import_jsx_runtime165 = require("react/jsx-runtime");
|
|
5720
|
+
var heroStyle = import_styled_components23.css`
|
|
5521
5721
|
--font-family: var(--typography-heading-hero-family);
|
|
5522
5722
|
--font-size: var(--typography-heading-hero-size);
|
|
5523
5723
|
--font-weight: var(--typography-heading-hero-weight);
|
|
5524
5724
|
--line-height: var(--typography-heading-hero-line-height);
|
|
5525
5725
|
`;
|
|
5526
|
-
var heading1TextStyle =
|
|
5726
|
+
var heading1TextStyle = import_styled_components23.css`
|
|
5527
5727
|
--font-family: var(--typography-heading-1-family);
|
|
5528
5728
|
--font-size: var(--typography-heading-1-size);
|
|
5529
5729
|
--font-weight: var(--typography-heading-1-weight);
|
|
5530
5730
|
--line-height: var(--typography-heading-1-line-height);
|
|
5531
5731
|
`;
|
|
5532
|
-
var heading2TextStyle =
|
|
5732
|
+
var heading2TextStyle = import_styled_components23.css`
|
|
5533
5733
|
--font-family: var(--typography-heading-2-family);
|
|
5534
5734
|
--font-size: var(--typography-heading-2-size);
|
|
5535
5735
|
--font-weight: var(--typography-heading-2-weight);
|
|
5536
5736
|
--line-height: var(--typography-heading-2-line-height);
|
|
5537
5737
|
`;
|
|
5538
|
-
var heading3TextStyle =
|
|
5738
|
+
var heading3TextStyle = import_styled_components23.css`
|
|
5539
5739
|
--font-family: var(--typography-heading-3-family);
|
|
5540
5740
|
--font-size: var(--typography-heading-3-size);
|
|
5541
5741
|
--font-weight: var(--typography-heading-3-weight);
|
|
5542
5742
|
--line-height: var(--typography-heading-3-line-height);
|
|
5543
5743
|
`;
|
|
5544
|
-
var heading4TextStyle =
|
|
5744
|
+
var heading4TextStyle = import_styled_components23.css`
|
|
5545
5745
|
--font-family: var(--typography-heading-4-family);
|
|
5546
5746
|
--font-size: var(--typography-heading-4-size);
|
|
5547
5747
|
--font-weight: var(--typography-heading-4-weight);
|
|
5548
5748
|
--line-height: var(--typography-heading-4-line-height);
|
|
5549
5749
|
`;
|
|
5550
|
-
var heading5TextStyle =
|
|
5750
|
+
var heading5TextStyle = import_styled_components23.css`
|
|
5551
5751
|
--font-family: var(--typography-heading-5-family);
|
|
5552
5752
|
--font-size: var(--typography-heading-5-size);
|
|
5553
5753
|
--font-weight: var(--typography-heading-5-weight);
|
|
5554
5754
|
--line-height: var(--typography-heading-5-line-height);
|
|
5555
5755
|
`;
|
|
5556
|
-
var heading6TextStyle =
|
|
5756
|
+
var heading6TextStyle = import_styled_components23.css`
|
|
5557
5757
|
--font-family: var(--typography-heading-6-family);
|
|
5558
5758
|
--font-size: var(--typography-heading-6-size);
|
|
5559
5759
|
--font-weight: var(--typography-heading-6-weight);
|
|
@@ -5569,7 +5769,7 @@ var variantStyleMap = {
|
|
|
5569
5769
|
heading6: heading6TextStyle
|
|
5570
5770
|
};
|
|
5571
5771
|
var DEFAULT_ELEMENT = "h1";
|
|
5572
|
-
var StyledHeading =
|
|
5772
|
+
var StyledHeading = import_styled_components23.default.div`
|
|
5573
5773
|
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
5574
5774
|
font-family: var(--font-family);
|
|
5575
5775
|
font-size: var(--font-size);
|
|
@@ -5578,16 +5778,16 @@ var StyledHeading = import_styled_components22.default.div`
|
|
|
5578
5778
|
color: var(--color-text);
|
|
5579
5779
|
${({ $variant }) => variantStyleMap[$variant]}
|
|
5580
5780
|
${({ $ellipsis }) => $ellipsis && ellipsisStyle};
|
|
5581
|
-
${({ $inline }) => $inline &&
|
|
5781
|
+
${({ $inline }) => $inline && import_styled_components23.css`
|
|
5582
5782
|
display: inline-block;
|
|
5583
5783
|
`}
|
|
5584
|
-
${({ $disabled }) => $disabled &&
|
|
5784
|
+
${({ $disabled }) => $disabled && import_styled_components23.css`
|
|
5585
5785
|
color: var(--color-text-disabled);
|
|
5586
5786
|
`}
|
|
5587
|
-
${({ $preventUserSelect }) => $preventUserSelect &&
|
|
5787
|
+
${({ $preventUserSelect }) => $preventUserSelect && import_styled_components23.css`
|
|
5588
5788
|
user-select: none;
|
|
5589
5789
|
`}
|
|
5590
|
-
${({ $align }) =>
|
|
5790
|
+
${({ $align }) => import_styled_components23.css`
|
|
5591
5791
|
text-align: ${$align};
|
|
5592
5792
|
`}
|
|
5593
5793
|
margin: 0;
|
|
@@ -5601,7 +5801,7 @@ var variantElementMap = {
|
|
|
5601
5801
|
heading5: "h5",
|
|
5602
5802
|
heading6: "h6"
|
|
5603
5803
|
};
|
|
5604
|
-
var HeadingComponent = (0,
|
|
5804
|
+
var HeadingComponent = (0, import_react11.forwardRef)(
|
|
5605
5805
|
({
|
|
5606
5806
|
align = "left",
|
|
5607
5807
|
colorScheme = "inherit",
|
|
@@ -5612,7 +5812,7 @@ var HeadingComponent = (0, import_react10.forwardRef)(
|
|
|
5612
5812
|
variant = "heading1",
|
|
5613
5813
|
renderAs,
|
|
5614
5814
|
...otherProps
|
|
5615
|
-
}, ref) => /* @__PURE__ */ (0,
|
|
5815
|
+
}, ref) => /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(
|
|
5616
5816
|
StyledHeading,
|
|
5617
5817
|
{
|
|
5618
5818
|
ref,
|
|
@@ -5632,21 +5832,21 @@ HeadingComponent.displayName = "Heading";
|
|
|
5632
5832
|
var Heading = makePolymorphic(HeadingComponent);
|
|
5633
5833
|
|
|
5634
5834
|
// src/components/IconButton/IconButton.tsx
|
|
5635
|
-
var
|
|
5636
|
-
var
|
|
5835
|
+
var import_react12 = require("react");
|
|
5836
|
+
var import_styled_components25 = __toESM(require("styled-components"));
|
|
5637
5837
|
|
|
5638
5838
|
// src/components/Tooltip/Tooltip.tsx
|
|
5639
5839
|
var import_react_tooltip2 = require("@radix-ui/react-tooltip");
|
|
5640
|
-
var
|
|
5641
|
-
var
|
|
5642
|
-
var CompactTooltipStyles =
|
|
5840
|
+
var import_styled_components24 = __toESM(require("styled-components"));
|
|
5841
|
+
var import_jsx_runtime166 = require("react/jsx-runtime");
|
|
5842
|
+
var CompactTooltipStyles = import_styled_components24.css`
|
|
5643
5843
|
--tooltip-font-size: var(--typography-label-4-size);
|
|
5644
5844
|
--tooltip-line-height: var(--typography-label-4-line-height);
|
|
5645
5845
|
--tooltip-font-weight: var(--typography-label-4-weight);
|
|
5646
5846
|
--tooltip-horizontal-padding: var(--space-02);
|
|
5647
5847
|
--tooltip-vertical-padding: var(--space-03);
|
|
5648
5848
|
`;
|
|
5649
|
-
var StyledContent = (0,
|
|
5849
|
+
var StyledContent = (0, import_styled_components24.default)(import_react_tooltip2.Content)`
|
|
5650
5850
|
--tooltip-font-family: var(--typography-family-default);
|
|
5651
5851
|
--tooltip-border-radius: var(--border-radius-05);
|
|
5652
5852
|
--tooltip-bg: var(--color-bg-tooltip);
|
|
@@ -5704,14 +5904,14 @@ var Tooltip = ({
|
|
|
5704
5904
|
if (forceOpen === true) {
|
|
5705
5905
|
rootProps.open = true;
|
|
5706
5906
|
}
|
|
5707
|
-
return /* @__PURE__ */ (0,
|
|
5907
|
+
return /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(
|
|
5708
5908
|
import_react_tooltip2.Root,
|
|
5709
5909
|
{
|
|
5710
5910
|
delayDuration: delay,
|
|
5711
5911
|
...rootProps,
|
|
5712
5912
|
children: [
|
|
5713
|
-
/* @__PURE__ */ (0,
|
|
5714
|
-
/* @__PURE__ */ (0,
|
|
5913
|
+
/* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_react_tooltip2.Trigger, { asChild: true, children }),
|
|
5914
|
+
/* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_react_tooltip2.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(
|
|
5715
5915
|
StyledContent,
|
|
5716
5916
|
{
|
|
5717
5917
|
$compact: compact,
|
|
@@ -5719,7 +5919,7 @@ var Tooltip = ({
|
|
|
5719
5919
|
sideOffset: hideArrow ? VISUAL_OFFSET : VISUAL_OFFSET - 2,
|
|
5720
5920
|
children: [
|
|
5721
5921
|
content,
|
|
5722
|
-
!hideArrow ? /* @__PURE__ */ (0,
|
|
5922
|
+
!hideArrow ? /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_react_tooltip2.Arrow, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(
|
|
5723
5923
|
"svg",
|
|
5724
5924
|
{
|
|
5725
5925
|
fill: "var(--tooltip-bg)",
|
|
@@ -5728,7 +5928,7 @@ var Tooltip = ({
|
|
|
5728
5928
|
viewBox: "0 0 12 8",
|
|
5729
5929
|
width: "12",
|
|
5730
5930
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5731
|
-
children: /* @__PURE__ */ (0,
|
|
5931
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime166.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" })
|
|
5732
5932
|
}
|
|
5733
5933
|
) }) : null
|
|
5734
5934
|
]
|
|
@@ -5741,8 +5941,8 @@ var Tooltip = ({
|
|
|
5741
5941
|
Tooltip.displayName = "Tooltip";
|
|
5742
5942
|
|
|
5743
5943
|
// src/components/IconButton/IconButton.tsx
|
|
5744
|
-
var
|
|
5745
|
-
var StyledButton2 = (0,
|
|
5944
|
+
var import_jsx_runtime167 = require("react/jsx-runtime");
|
|
5945
|
+
var StyledButton2 = (0, import_styled_components25.default)(Button)`
|
|
5746
5946
|
--icon-button-size-sm: 24px;
|
|
5747
5947
|
--icon-button-size-md: 32px;
|
|
5748
5948
|
--icon-button-size-lg: 40px;
|
|
@@ -5756,10 +5956,10 @@ var StyledButton2 = (0, import_styled_components24.default)(Button)`
|
|
|
5756
5956
|
align-items: center;
|
|
5757
5957
|
line-height: 1;
|
|
5758
5958
|
`;
|
|
5759
|
-
var IconButton = (0,
|
|
5959
|
+
var IconButton = (0, import_react12.forwardRef)(
|
|
5760
5960
|
({ children, label, disableTooltip = false, size = "md", ...props }, ref) => {
|
|
5761
5961
|
const responsiveSize = useResponsiveProp(size);
|
|
5762
|
-
const button = /* @__PURE__ */ (0,
|
|
5962
|
+
const button = /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
|
|
5763
5963
|
StyledButton2,
|
|
5764
5964
|
{
|
|
5765
5965
|
...props,
|
|
@@ -5767,7 +5967,7 @@ var IconButton = (0, import_react11.forwardRef)(
|
|
|
5767
5967
|
"aria-label": label,
|
|
5768
5968
|
"data-wistia-ui-icon-button": true,
|
|
5769
5969
|
size: responsiveSize,
|
|
5770
|
-
children: (0,
|
|
5970
|
+
children: (0, import_react12.cloneElement)(import_react12.Children.only(children), {
|
|
5771
5971
|
size: responsiveSize
|
|
5772
5972
|
})
|
|
5773
5973
|
}
|
|
@@ -5775,15 +5975,15 @@ var IconButton = (0, import_react11.forwardRef)(
|
|
|
5775
5975
|
if (disableTooltip) {
|
|
5776
5976
|
return button;
|
|
5777
5977
|
}
|
|
5778
|
-
return /* @__PURE__ */ (0,
|
|
5978
|
+
return /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(Tooltip, { content: label, children: button });
|
|
5779
5979
|
}
|
|
5780
5980
|
);
|
|
5781
5981
|
IconButton.displayName = "IconButton";
|
|
5782
5982
|
|
|
5783
5983
|
// src/components/Label/Label.tsx
|
|
5784
|
-
var
|
|
5785
|
-
var
|
|
5786
|
-
var requiredStyle =
|
|
5984
|
+
var import_styled_components26 = __toESM(require("styled-components"));
|
|
5985
|
+
var import_jsx_runtime168 = require("react/jsx-runtime");
|
|
5986
|
+
var requiredStyle = import_styled_components26.css`
|
|
5787
5987
|
&::after {
|
|
5788
5988
|
color: red; /* TODO need a color for this */
|
|
5789
5989
|
display: inline;
|
|
@@ -5791,11 +5991,11 @@ var requiredStyle = import_styled_components25.css`
|
|
|
5791
5991
|
content: '*';
|
|
5792
5992
|
}
|
|
5793
5993
|
`;
|
|
5794
|
-
var disabledStyle =
|
|
5994
|
+
var disabledStyle = import_styled_components26.css`
|
|
5795
5995
|
color: var(--color-text-disabled);
|
|
5796
5996
|
`;
|
|
5797
5997
|
var SPACE_BETWEEN_LABEL_AND_INPUT = "var(--space-02)";
|
|
5798
|
-
var StyledLabel =
|
|
5998
|
+
var StyledLabel = import_styled_components26.default.label`
|
|
5799
5999
|
display: block;
|
|
5800
6000
|
font-size: var(--typography-label-1-size);
|
|
5801
6001
|
font-weight: var(--typography-label-1-weight);
|
|
@@ -5826,7 +6026,7 @@ var Label = ({
|
|
|
5826
6026
|
required = false,
|
|
5827
6027
|
screenReaderOnly = false,
|
|
5828
6028
|
...otherProps
|
|
5829
|
-
}) => /* @__PURE__ */ (0,
|
|
6029
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime168.jsx)(
|
|
5830
6030
|
StyledLabel,
|
|
5831
6031
|
{
|
|
5832
6032
|
disabled,
|
|
@@ -5839,11 +6039,11 @@ var Label = ({
|
|
|
5839
6039
|
Label.displayName = "Label";
|
|
5840
6040
|
|
|
5841
6041
|
// src/components/ScreenReaderOnly/ScreenReaderOnly.tsx
|
|
5842
|
-
var
|
|
5843
|
-
var
|
|
5844
|
-
var
|
|
5845
|
-
var VisuallyHidden =
|
|
5846
|
-
var VisuallyHiddenButFocusable =
|
|
6042
|
+
var import_styled_components27 = __toESM(require("styled-components"));
|
|
6043
|
+
var import_type_guards15 = require("@wistia/type-guards");
|
|
6044
|
+
var import_jsx_runtime169 = require("react/jsx-runtime");
|
|
6045
|
+
var VisuallyHidden = import_styled_components27.default.div({ ...visuallyHiddenStyle });
|
|
6046
|
+
var VisuallyHiddenButFocusable = import_styled_components27.default.div({
|
|
5847
6047
|
"&:not(:focus-within)": visuallyHiddenStyle
|
|
5848
6048
|
});
|
|
5849
6049
|
var ScreenReaderOnly = ({
|
|
@@ -5852,20 +6052,20 @@ var ScreenReaderOnly = ({
|
|
|
5852
6052
|
focusable = false,
|
|
5853
6053
|
...otherProps
|
|
5854
6054
|
}) => {
|
|
5855
|
-
const accessibleText = (0,
|
|
6055
|
+
const accessibleText = (0, import_type_guards15.isNotNil)(text) ? text : children;
|
|
5856
6056
|
if (focusable) {
|
|
5857
|
-
return /* @__PURE__ */ (0,
|
|
6057
|
+
return /* @__PURE__ */ (0, import_jsx_runtime169.jsx)(VisuallyHiddenButFocusable, { ...otherProps, children: accessibleText });
|
|
5858
6058
|
}
|
|
5859
|
-
return /* @__PURE__ */ (0,
|
|
6059
|
+
return /* @__PURE__ */ (0, import_jsx_runtime169.jsx)(VisuallyHidden, { ...otherProps, children: accessibleText });
|
|
5860
6060
|
};
|
|
5861
6061
|
ScreenReaderOnly.displayName = "ScreenReaderOnly";
|
|
5862
6062
|
|
|
5863
6063
|
// src/components/Stack/Stack.tsx
|
|
5864
|
-
var
|
|
5865
|
-
var
|
|
5866
|
-
var
|
|
6064
|
+
var import_react13 = require("react");
|
|
6065
|
+
var import_styled_components28 = __toESM(require("styled-components"));
|
|
6066
|
+
var import_jsx_runtime170 = require("react/jsx-runtime");
|
|
5867
6067
|
var DEFAULT_ELEMENT2 = "div";
|
|
5868
|
-
var StyledStack =
|
|
6068
|
+
var StyledStack = import_styled_components28.default.div`
|
|
5869
6069
|
display: flex;
|
|
5870
6070
|
flex-direction: ${({ $direction }) => $direction === "horizontal" ? "row" : "column"};
|
|
5871
6071
|
gap: ${({ $gap }) => `var(--${$gap})`};
|
|
@@ -5874,11 +6074,11 @@ var StyledStack = import_styled_components27.default.div`
|
|
|
5874
6074
|
flex: 1;
|
|
5875
6075
|
}
|
|
5876
6076
|
`;
|
|
5877
|
-
var StackComponent = (0,
|
|
6077
|
+
var StackComponent = (0, import_react13.forwardRef)(
|
|
5878
6078
|
({ renderAs, direction = "vertical", gap = "space-02", ...props }, ref) => {
|
|
5879
6079
|
const responsiveGap = useResponsiveProp(gap);
|
|
5880
6080
|
const responsiveDirection = useResponsiveProp(direction);
|
|
5881
|
-
return /* @__PURE__ */ (0,
|
|
6081
|
+
return /* @__PURE__ */ (0, import_jsx_runtime170.jsx)(
|
|
5882
6082
|
StyledStack,
|
|
5883
6083
|
{
|
|
5884
6084
|
ref,
|
|
@@ -5894,90 +6094,90 @@ StackComponent.displayName = "Stack";
|
|
|
5894
6094
|
var Stack = makePolymorphic(StackComponent);
|
|
5895
6095
|
|
|
5896
6096
|
// src/components/Text/Text.tsx
|
|
5897
|
-
var
|
|
5898
|
-
var
|
|
5899
|
-
var
|
|
5900
|
-
var bodyBoldStyles =
|
|
6097
|
+
var import_react14 = require("react");
|
|
6098
|
+
var import_styled_components29 = __toESM(require("styled-components"));
|
|
6099
|
+
var import_jsx_runtime171 = require("react/jsx-runtime");
|
|
6100
|
+
var bodyBoldStyles = import_styled_components29.css`
|
|
5901
6101
|
> strong,
|
|
5902
6102
|
b {
|
|
5903
6103
|
font-weight: var(--typography-weight-body-bold);
|
|
5904
6104
|
}
|
|
5905
6105
|
`;
|
|
5906
|
-
var labelBoldStyles =
|
|
6106
|
+
var labelBoldStyles = import_styled_components29.css`
|
|
5907
6107
|
> strong,
|
|
5908
6108
|
b {
|
|
5909
6109
|
font-weight: var(--typography-weight-label-bold);
|
|
5910
6110
|
}
|
|
5911
6111
|
`;
|
|
5912
|
-
var body1TextStyle =
|
|
6112
|
+
var body1TextStyle = import_styled_components29.css`
|
|
5913
6113
|
--font-family: var(--typography-body-1-family);
|
|
5914
6114
|
--font-size: var(--typography-body-1-size);
|
|
5915
6115
|
--font-weight: var(--typography-body-1-weight);
|
|
5916
6116
|
--line-height: var(--typography-body-1-line-height);
|
|
5917
6117
|
${bodyBoldStyles}
|
|
5918
6118
|
`;
|
|
5919
|
-
var body2TextStyle =
|
|
6119
|
+
var body2TextStyle = import_styled_components29.css`
|
|
5920
6120
|
--font-family: var(--typography-body-2-family);
|
|
5921
6121
|
--font-size: var(--typography-body-2-size);
|
|
5922
6122
|
--font-weight: var(--typography-body-2-weight);
|
|
5923
6123
|
--line-height: var(--typography-body-2-line-height);
|
|
5924
6124
|
${bodyBoldStyles}
|
|
5925
6125
|
`;
|
|
5926
|
-
var body3TextStyle =
|
|
6126
|
+
var body3TextStyle = import_styled_components29.css`
|
|
5927
6127
|
--font-family: var(--typography-body-3-family);
|
|
5928
6128
|
--font-size: var(--typography-body-3-size);
|
|
5929
6129
|
--font-weight: var(--typography-body-3-weight);
|
|
5930
6130
|
--line-height: var(--typography-body-3-line-height);
|
|
5931
6131
|
${bodyBoldStyles}
|
|
5932
6132
|
`;
|
|
5933
|
-
var body4TextStyle =
|
|
6133
|
+
var body4TextStyle = import_styled_components29.css`
|
|
5934
6134
|
--font-family: var(--typography-body-4-family);
|
|
5935
6135
|
--font-size: var(--typography-body-4-size);
|
|
5936
6136
|
--font-weight: var(--typography-body-4-weight);
|
|
5937
6137
|
--line-height: var(--typography-body-4-line-height);
|
|
5938
6138
|
${bodyBoldStyles}
|
|
5939
6139
|
`;
|
|
5940
|
-
var label1TextStyle =
|
|
6140
|
+
var label1TextStyle = import_styled_components29.css`
|
|
5941
6141
|
--font-family: var(--typography-label-1-family);
|
|
5942
6142
|
--font-size: var(--typography-label-1-size);
|
|
5943
6143
|
--font-weight: var(--typography-label-1-weight);
|
|
5944
6144
|
--line-height: var(--typography-label-1-line-height);
|
|
5945
6145
|
${labelBoldStyles}
|
|
5946
6146
|
`;
|
|
5947
|
-
var label2TextStyle =
|
|
6147
|
+
var label2TextStyle = import_styled_components29.css`
|
|
5948
6148
|
--font-family: var(--typography-label-2-family);
|
|
5949
6149
|
--font-size: var(--typography-label-2-size);
|
|
5950
6150
|
--font-weight: var(--typography-label-2-weight);
|
|
5951
6151
|
--line-height: var(--typography-label-2-line-height);
|
|
5952
6152
|
${labelBoldStyles}
|
|
5953
6153
|
`;
|
|
5954
|
-
var label3TextStyle =
|
|
6154
|
+
var label3TextStyle = import_styled_components29.css`
|
|
5955
6155
|
--font-family: var(--typography-label-3-family);
|
|
5956
6156
|
--font-size: var(--typography-label-3-size);
|
|
5957
6157
|
--font-weight: var(--typography-label-3-weight);
|
|
5958
6158
|
--line-height: var(--typography-label-3-line-height);
|
|
5959
6159
|
${labelBoldStyles}
|
|
5960
6160
|
`;
|
|
5961
|
-
var label4TextStyle =
|
|
6161
|
+
var label4TextStyle = import_styled_components29.css`
|
|
5962
6162
|
--font-family: var(--typography-label-4-family);
|
|
5963
6163
|
--font-size: var(--typography-label-4-size);
|
|
5964
6164
|
--font-weight: var(--typography-label-4-weight);
|
|
5965
6165
|
--line-height: var(--typography-label-4-line-height);
|
|
5966
6166
|
${labelBoldStyles}
|
|
5967
6167
|
`;
|
|
5968
|
-
var body1MonoTextStyle =
|
|
6168
|
+
var body1MonoTextStyle = import_styled_components29.css`
|
|
5969
6169
|
${body1TextStyle};
|
|
5970
6170
|
--font-family: var(--typography-family-mono);
|
|
5971
6171
|
`;
|
|
5972
|
-
var body2MonoTextStyle =
|
|
6172
|
+
var body2MonoTextStyle = import_styled_components29.css`
|
|
5973
6173
|
${body2TextStyle};
|
|
5974
6174
|
--font-family: var(--typography-family-mono);
|
|
5975
6175
|
`;
|
|
5976
|
-
var body3MonoTextStyle =
|
|
6176
|
+
var body3MonoTextStyle = import_styled_components29.css`
|
|
5977
6177
|
${body3TextStyle};
|
|
5978
6178
|
--font-family: var(--typography-family-mono);
|
|
5979
6179
|
`;
|
|
5980
|
-
var body4MonoTextStyle =
|
|
6180
|
+
var body4MonoTextStyle = import_styled_components29.css`
|
|
5981
6181
|
${body4TextStyle};
|
|
5982
6182
|
--font-family: var(--typography-family-mono);
|
|
5983
6183
|
`;
|
|
@@ -5995,13 +6195,13 @@ var variantStyleMap2 = {
|
|
|
5995
6195
|
label3: label3TextStyle,
|
|
5996
6196
|
label4: label4TextStyle
|
|
5997
6197
|
};
|
|
5998
|
-
var highContrastProminenceStyle =
|
|
6198
|
+
var highContrastProminenceStyle = import_styled_components29.css`
|
|
5999
6199
|
--text-color: var(--color-text-high-contrast);
|
|
6000
6200
|
`;
|
|
6001
|
-
var vibrantProminenceStyle =
|
|
6201
|
+
var vibrantProminenceStyle = import_styled_components29.css`
|
|
6002
6202
|
--text-color: var(--color-text);
|
|
6003
6203
|
`;
|
|
6004
|
-
var secondaryProminenceStyle =
|
|
6204
|
+
var secondaryProminenceStyle = import_styled_components29.css`
|
|
6005
6205
|
--text-color: var(--color-text-secondary);
|
|
6006
6206
|
`;
|
|
6007
6207
|
var prominenceMap = {
|
|
@@ -6009,7 +6209,7 @@ var prominenceMap = {
|
|
|
6009
6209
|
vibrant: vibrantProminenceStyle,
|
|
6010
6210
|
secondary: secondaryProminenceStyle
|
|
6011
6211
|
};
|
|
6012
|
-
var StyledText =
|
|
6212
|
+
var StyledText = import_styled_components29.default.div`
|
|
6013
6213
|
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
6014
6214
|
font-family: var(--font-family);
|
|
6015
6215
|
font-size: var(--font-size);
|
|
@@ -6021,24 +6221,24 @@ var StyledText = import_styled_components28.default.div`
|
|
|
6021
6221
|
${({ $variant }) => variantStyleMap2[$variant]}
|
|
6022
6222
|
${({ $prominence }) => prominenceMap[$prominence]}
|
|
6023
6223
|
${({ $ellipsis }) => $ellipsis && ellipsisStyle};
|
|
6024
|
-
${({ $inline }) => $inline &&
|
|
6224
|
+
${({ $inline }) => $inline && import_styled_components29.css`
|
|
6025
6225
|
display: inline-block;
|
|
6026
6226
|
`}
|
|
6027
|
-
${({ $disabled }) => $disabled &&
|
|
6227
|
+
${({ $disabled }) => $disabled && import_styled_components29.css`
|
|
6028
6228
|
--text-color: var(--color-text-disabled);
|
|
6029
6229
|
`}
|
|
6030
|
-
${({ $preventUserSelect }) => $preventUserSelect &&
|
|
6230
|
+
${({ $preventUserSelect }) => $preventUserSelect && import_styled_components29.css`
|
|
6031
6231
|
user-select: none;
|
|
6032
6232
|
`}
|
|
6033
|
-
${({ align }) =>
|
|
6034
|
-
text-align: ${align};
|
|
6233
|
+
${({ $align }) => import_styled_components29.css`
|
|
6234
|
+
text-align: ${$align};
|
|
6035
6235
|
`}
|
|
6036
|
-
${({ as }) => as === "p" &&
|
|
6236
|
+
${({ as }) => as === "p" && import_styled_components29.css`
|
|
6037
6237
|
display: block;
|
|
6038
6238
|
`}
|
|
6039
6239
|
`;
|
|
6040
6240
|
var DEFAULT_ELEMENT3 = "div";
|
|
6041
|
-
var TextComponent = (0,
|
|
6241
|
+
var TextComponent = (0, import_react14.forwardRef)(
|
|
6042
6242
|
({
|
|
6043
6243
|
align = "left",
|
|
6044
6244
|
colorScheme = "inherit",
|
|
@@ -6051,10 +6251,11 @@ var TextComponent = (0, import_react13.forwardRef)(
|
|
|
6051
6251
|
renderAs,
|
|
6052
6252
|
...otherProps
|
|
6053
6253
|
}, ref) => {
|
|
6054
|
-
return /* @__PURE__ */ (0,
|
|
6254
|
+
return /* @__PURE__ */ (0, import_jsx_runtime171.jsx)(
|
|
6055
6255
|
StyledText,
|
|
6056
6256
|
{
|
|
6057
6257
|
ref,
|
|
6258
|
+
$align: align,
|
|
6058
6259
|
$colorScheme: colorScheme,
|
|
6059
6260
|
$disabled: disabled,
|
|
6060
6261
|
$ellipsis: ellipsis,
|
|
@@ -6062,7 +6263,6 @@ var TextComponent = (0, import_react13.forwardRef)(
|
|
|
6062
6263
|
$preventUserSelect: preventUserSelect,
|
|
6063
6264
|
$prominence: prominence,
|
|
6064
6265
|
$variant: variant,
|
|
6065
|
-
align,
|
|
6066
6266
|
as: renderAs ?? DEFAULT_ELEMENT3,
|
|
6067
6267
|
...otherProps
|
|
6068
6268
|
}
|
|
@@ -6073,20 +6273,20 @@ TextComponent.displayName = "Text";
|
|
|
6073
6273
|
var Text = makePolymorphic(TextComponent);
|
|
6074
6274
|
|
|
6075
6275
|
// src/components/WistiaLogo/WistiaLogo.tsx
|
|
6076
|
-
var
|
|
6077
|
-
var
|
|
6078
|
-
var
|
|
6276
|
+
var import_styled_components30 = __toESM(require("styled-components"));
|
|
6277
|
+
var import_type_guards16 = require("@wistia/type-guards");
|
|
6278
|
+
var import_jsx_runtime172 = require("react/jsx-runtime");
|
|
6079
6279
|
var renderBrandmark = (brandmarkColor, iconOnly) => {
|
|
6080
6280
|
if (iconOnly) {
|
|
6081
|
-
return /* @__PURE__ */ (0,
|
|
6281
|
+
return /* @__PURE__ */ (0, import_jsx_runtime172.jsx)("g", { fill: brandmarkColor, children: /* @__PURE__ */ (0, import_jsx_runtime172.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" }) });
|
|
6082
6282
|
}
|
|
6083
|
-
return /* @__PURE__ */ (0,
|
|
6283
|
+
return /* @__PURE__ */ (0, import_jsx_runtime172.jsx)("g", { fill: brandmarkColor, children: /* @__PURE__ */ (0, import_jsx_runtime172.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" }) });
|
|
6084
6284
|
};
|
|
6085
6285
|
var renderLogotype = (logotypeColor, iconOnly) => {
|
|
6086
6286
|
if (iconOnly) {
|
|
6087
6287
|
return null;
|
|
6088
6288
|
}
|
|
6089
|
-
return /* @__PURE__ */ (0,
|
|
6289
|
+
return /* @__PURE__ */ (0, import_jsx_runtime172.jsx)("g", { fill: logotypeColor, children: /* @__PURE__ */ (0, import_jsx_runtime172.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" }) });
|
|
6090
6290
|
};
|
|
6091
6291
|
var computedViewBox = (iconOnly) => {
|
|
6092
6292
|
if (iconOnly) {
|
|
@@ -6094,7 +6294,7 @@ var computedViewBox = (iconOnly) => {
|
|
|
6094
6294
|
}
|
|
6095
6295
|
return "0 0 144 31.47";
|
|
6096
6296
|
};
|
|
6097
|
-
var WistiaLogoComponent =
|
|
6297
|
+
var WistiaLogoComponent = import_styled_components30.default.svg`
|
|
6098
6298
|
height: ${({ height }) => `${height}px`};
|
|
6099
6299
|
|
|
6100
6300
|
/* ensure it will always fit on mobile */
|
|
@@ -6136,7 +6336,7 @@ var WistiaLogo = ({
|
|
|
6136
6336
|
};
|
|
6137
6337
|
const brandmarkColor = VARIANT_COLORS[variant].brandmark;
|
|
6138
6338
|
const logotypeColor = VARIANT_COLORS[variant].logotype;
|
|
6139
|
-
const Logo = /* @__PURE__ */ (0,
|
|
6339
|
+
const Logo = /* @__PURE__ */ (0, import_jsx_runtime172.jsxs)(
|
|
6140
6340
|
WistiaLogoComponent,
|
|
6141
6341
|
{
|
|
6142
6342
|
$hoverColor: hoverColor,
|
|
@@ -6146,18 +6346,19 @@ var WistiaLogo = ({
|
|
|
6146
6346
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6147
6347
|
...otherProps,
|
|
6148
6348
|
children: [
|
|
6149
|
-
/* @__PURE__ */ (0,
|
|
6150
|
-
(0,
|
|
6349
|
+
/* @__PURE__ */ (0, import_jsx_runtime172.jsx)("title", { children: title }),
|
|
6350
|
+
(0, import_type_guards16.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime172.jsx)("desc", { children: description }) : null,
|
|
6151
6351
|
renderBrandmark(brandmarkColor, iconOnly),
|
|
6152
6352
|
renderLogotype(logotypeColor, iconOnly)
|
|
6153
6353
|
]
|
|
6154
6354
|
}
|
|
6155
6355
|
);
|
|
6156
|
-
return href !== void 0 ? /* @__PURE__ */ (0,
|
|
6356
|
+
return href !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime172.jsx)("a", { href, children: Logo }) : Logo;
|
|
6157
6357
|
};
|
|
6158
6358
|
WistiaLogo.displayName = "WistiaLogo";
|
|
6159
6359
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6160
6360
|
0 && (module.exports = {
|
|
6361
|
+
Avatar,
|
|
6161
6362
|
Badge,
|
|
6162
6363
|
Box,
|
|
6163
6364
|
Button,
|