@wistia/ui 0.0.9 → 0.0.11
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 +1009 -764
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +109 -28
- package/dist/index.d.ts +109 -28
- package/dist/index.mjs +945 -703
- 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.11
|
|
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,
|
|
@@ -49,6 +50,7 @@ __export(src_exports, {
|
|
|
49
50
|
Heading: () => Heading,
|
|
50
51
|
Icon: () => Icon,
|
|
51
52
|
IconButton: () => IconButton,
|
|
53
|
+
Label: () => Label,
|
|
52
54
|
Link: () => Link,
|
|
53
55
|
ScreenReaderOnly: () => ScreenReaderOnly,
|
|
54
56
|
Stack: () => Stack,
|
|
@@ -56,6 +58,7 @@ __export(src_exports, {
|
|
|
56
58
|
Tooltip: () => Tooltip,
|
|
57
59
|
UIProvider: () => UIProvider,
|
|
58
60
|
WistiaLogo: () => WistiaLogo,
|
|
61
|
+
colorSchemeOptions: () => colorSchemeOptions,
|
|
59
62
|
copyToClipboard: () => copyToClipboard,
|
|
60
63
|
ellipsisFlexParentStyle: () => ellipsisFlexParentStyle,
|
|
61
64
|
ellipsisStyle: () => ellipsisStyle,
|
|
@@ -808,7 +811,8 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
808
811
|
--color-bg-surface-secondary-hover: var(--gray-4);
|
|
809
812
|
--color-bg-surface-tertiary: var(--gray-5);
|
|
810
813
|
--color-border: var(--gray-6);
|
|
811
|
-
--color-border-
|
|
814
|
+
--color-border-hover: var(--gray-8);
|
|
815
|
+
--color-border-active: var(--gray-9);
|
|
812
816
|
--color-icon: var(--gray-11);
|
|
813
817
|
--color-icon-on-fill: var(--gray-contrast);
|
|
814
818
|
--color-text: var(--gray-12);
|
|
@@ -831,6 +835,8 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
831
835
|
--color-bg-surface-secondary-hover-error: var(--error-4);
|
|
832
836
|
--color-bg-surface-tertiary-error: var(--error-5);
|
|
833
837
|
--color-border-error: var(--error-6);
|
|
838
|
+
--color-border-hover-errror: var(--error-8);
|
|
839
|
+
--color-border-active-error: var(--error-9);
|
|
834
840
|
--color-icon-error: var(--error-11);
|
|
835
841
|
--color-icon-on-fill-error: var(--error-contrast);
|
|
836
842
|
--color-text-error: var(--error-11);
|
|
@@ -851,6 +857,8 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
851
857
|
--color-bg-surface-secondary-info: var(--blue-3);
|
|
852
858
|
--color-bg-surface-tertiary-info: var(--blue-6);
|
|
853
859
|
--color-border-info: var(--blue-6);
|
|
860
|
+
--color-border-hover-info: var(--blue-8);
|
|
861
|
+
--color-border-active-info: var(--blue-9);
|
|
854
862
|
--color-icon-info: var(--blue-11);
|
|
855
863
|
--color-icon-on-fill-info: var(--blue-contrast);
|
|
856
864
|
--color-text-high-contrast-info: var(--blue-12);
|
|
@@ -871,6 +879,8 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
871
879
|
--color-bg-surface-success: var(--success-surface);
|
|
872
880
|
--color-bg-surface-tertiary-success: var(--success-5);
|
|
873
881
|
--color-border-success: var(--success-6);
|
|
882
|
+
--color-border-hover-success: var(--success-8);
|
|
883
|
+
--color-border-active-success: var(--success-9);
|
|
874
884
|
--color-icon-on-fill-success: var(--success-contrast);
|
|
875
885
|
--color-icon-success: var(--success-11);
|
|
876
886
|
--color-text-high-contrast-success: var(--success-12);
|
|
@@ -891,6 +901,8 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
891
901
|
--color-bg-surface-tertiary-warning: var(--warning-5);
|
|
892
902
|
--color-bg-surface-warning: var(--warning-surface);
|
|
893
903
|
--color-border-warning: var(--warning-6);
|
|
904
|
+
--color-border-hover-warning: var(--warning-8);
|
|
905
|
+
--color-border-active-warning: var(--warning-9);
|
|
894
906
|
--color-icon-on-fill-warning: var(--warning-contrast);
|
|
895
907
|
--color-icon-warning: var(--warning-11);
|
|
896
908
|
--color-text-high-contrast-warning: var(--warning-12);
|
|
@@ -913,6 +925,8 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
913
925
|
--color-bg-surface-secondary-hover-blue: var(--blue-4);
|
|
914
926
|
--color-bg-surface-tertiary-blue: var(--blue-5);
|
|
915
927
|
--color-border-blue: var(--blue-6);
|
|
928
|
+
--color-border-hover-blue: var(--blue-8);
|
|
929
|
+
--color-border-active-blue: var(--blue-9);
|
|
916
930
|
--color-icon-blue: var(--blue-11);
|
|
917
931
|
--color-icon-on-fill-blue: var(--blue-contrast);
|
|
918
932
|
--color-text-blue: var(--blue-11);
|
|
@@ -933,6 +947,8 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
933
947
|
--color-bg-surface-secondary-hover-green: var(--green-4);
|
|
934
948
|
--color-bg-surface-tertiary-green: var(--green-5);
|
|
935
949
|
--color-border-green: var(--green-6);
|
|
950
|
+
--color-border-hover-green: var(--green-8);
|
|
951
|
+
--color-border-active-green: var(--green-9);
|
|
936
952
|
--color-icon-green: var(--green-11);
|
|
937
953
|
--color-icon-on-fill-green: var(--green-contrast);
|
|
938
954
|
--color-text-green: var(--green-11);
|
|
@@ -953,6 +969,8 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
953
969
|
--color-bg-surface-secondary-orange: var(--orange-3);
|
|
954
970
|
--color-bg-surface-tertiary-orange: var(--orange-5);
|
|
955
971
|
--color-border-orange: var(--orange-6);
|
|
972
|
+
--color-border-hover-orange: var(--orange-8);
|
|
973
|
+
--color-border-active-orange: var(--orange-9);
|
|
956
974
|
--color-icon-on-fill-orange: var(--orange-contrast);
|
|
957
975
|
--color-icon-orange: var(--orange-11);
|
|
958
976
|
--color-text-high-contrast-orange: var(--orange-12);
|
|
@@ -973,6 +991,8 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
973
991
|
--color-bg-surface-secondary-pink: var(--pink-3);
|
|
974
992
|
--color-bg-surface-tertiary-pink: var(--pink-5);
|
|
975
993
|
--color-border-pink: var(--pink-6);
|
|
994
|
+
--color-border-hover-pink: var(--pink-8);
|
|
995
|
+
--color-border-active-pink: var(--pink-9);
|
|
976
996
|
--color-icon-on-fill-pink: var(--pink-contrast);
|
|
977
997
|
--color-icon-pink: var(--pink-11);
|
|
978
998
|
--color-text-high-contrast-pink: var(--pink-12);
|
|
@@ -993,6 +1013,8 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
993
1013
|
--color-bg-surface-secondary-purple: var(--purple-3);
|
|
994
1014
|
--color-bg-surface-tertiary-purple: var(--purple-5);
|
|
995
1015
|
--color-border-purple: var(--purple-6);
|
|
1016
|
+
--color-border-hover-purple: var(--purple-8);
|
|
1017
|
+
--color-border-active-purple: var(--purple-9);
|
|
996
1018
|
--color-icon-on-fill-purple: var(--purple-contrast);
|
|
997
1019
|
--color-icon-purple: var(--purple-11);
|
|
998
1020
|
--color-text-high-contrast-purple: var(--purple-12);
|
|
@@ -1013,6 +1035,8 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
1013
1035
|
--color-bg-surface-tertiary-yellow: var(--yellow-5);
|
|
1014
1036
|
--color-bg-surface-yellow: var(--yellow-surface);
|
|
1015
1037
|
--color-border-yellow: var(--yellow-6);
|
|
1038
|
+
--color-border-hover-yellow: var(--yellow-8);
|
|
1039
|
+
--color-border-active-yellow: var(--yellow-9);
|
|
1016
1040
|
--color-icon-on-fill-yellow: var(--yellow-contrast);
|
|
1017
1041
|
--color-icon-yellow: var(--yellow-11);
|
|
1018
1042
|
--color-text-high-contrast-yellow: var(--yellow-12);
|
|
@@ -1044,6 +1068,9 @@ var colorAliasTokens = import_styled_components4.css`
|
|
|
1044
1068
|
--color-bg-surface-selected-hover: var(--blue-4);
|
|
1045
1069
|
--color-icon-selected: var(--blue-9);
|
|
1046
1070
|
--color-text-selected: var(--blue-9);
|
|
1071
|
+
--color-border-selected: var(--blue-6);
|
|
1072
|
+
--color-border-hover-selected: var(--blue-8);
|
|
1073
|
+
--color-border-active-selected: var(--blue-9);
|
|
1047
1074
|
`;
|
|
1048
1075
|
|
|
1049
1076
|
// src/css/designTokens/borderRadius.tsx
|
|
@@ -1427,10 +1454,13 @@ var useAriaLive = () => {
|
|
|
1427
1454
|
return context;
|
|
1428
1455
|
};
|
|
1429
1456
|
|
|
1430
|
-
// src/components/
|
|
1457
|
+
// src/components/Avatar/Avatar.tsx
|
|
1431
1458
|
var import_react5 = require("react");
|
|
1459
|
+
var import_type_guards6 = require("@wistia/type-guards");
|
|
1460
|
+
var import_styled_components12 = __toESM(require("styled-components"));
|
|
1461
|
+
|
|
1462
|
+
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
1432
1463
|
var import_styled_components11 = __toESM(require("styled-components"));
|
|
1433
|
-
var import_type_guards5 = require("@wistia/type-guards");
|
|
1434
1464
|
|
|
1435
1465
|
// src/private/helpers/getColorScheme/getColorScheme.ts
|
|
1436
1466
|
var import_styled_components10 = require("styled-components");
|
|
@@ -1451,6 +1481,8 @@ var colorSchemeSchema = [
|
|
|
1451
1481
|
{ token: "text-secondary", step: "11" },
|
|
1452
1482
|
{ token: "text-on-fill", step: "contrast" },
|
|
1453
1483
|
{ token: "border", step: "6" },
|
|
1484
|
+
{ token: "border-hover", step: "8" },
|
|
1485
|
+
{ token: "border-active", step: "9" },
|
|
1454
1486
|
{ token: "icon", step: "11" },
|
|
1455
1487
|
{ token: "icon-on-fill", step: "contrast" }
|
|
1456
1488
|
];
|
|
@@ -1487,9 +1519,172 @@ var getColorScheme = (colorScheme) => {
|
|
|
1487
1519
|
`;
|
|
1488
1520
|
};
|
|
1489
1521
|
|
|
1490
|
-
// src/components/
|
|
1522
|
+
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
1491
1523
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
1492
|
-
var
|
|
1524
|
+
var colorSchemeOptions = [
|
|
1525
|
+
"inherit",
|
|
1526
|
+
"default",
|
|
1527
|
+
"info",
|
|
1528
|
+
"success",
|
|
1529
|
+
"warning",
|
|
1530
|
+
"error",
|
|
1531
|
+
"blue",
|
|
1532
|
+
"green",
|
|
1533
|
+
"orange",
|
|
1534
|
+
"pink",
|
|
1535
|
+
"purple",
|
|
1536
|
+
"yellow"
|
|
1537
|
+
];
|
|
1538
|
+
var StyledColorSchemeWrapper = import_styled_components11.default.div`
|
|
1539
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1540
|
+
`;
|
|
1541
|
+
var ColorSchemeWrapper = ({
|
|
1542
|
+
colorScheme,
|
|
1543
|
+
children,
|
|
1544
|
+
...otherProps
|
|
1545
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
1546
|
+
StyledColorSchemeWrapper,
|
|
1547
|
+
{
|
|
1548
|
+
$colorScheme: colorScheme,
|
|
1549
|
+
...otherProps,
|
|
1550
|
+
children
|
|
1551
|
+
}
|
|
1552
|
+
);
|
|
1553
|
+
ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
|
|
1554
|
+
|
|
1555
|
+
// src/components/Avatar/formatNameForDisplay.tsx
|
|
1556
|
+
var import_type_guards5 = require("@wistia/type-guards");
|
|
1557
|
+
var containsEmojiCharacter = (char) => {
|
|
1558
|
+
const emojiRegex = /<a?:.+?:\d{18}>|\p{Extended_Pictographic}/gu;
|
|
1559
|
+
return emojiRegex.test(char);
|
|
1560
|
+
};
|
|
1561
|
+
var formatNameForDisplay = (name) => {
|
|
1562
|
+
if ((0, import_type_guards5.isNil)(name) || !(0, import_type_guards5.isString)(name) || (0, import_type_guards5.isEmptyString)(name) || containsEmojiCharacter(name)) {
|
|
1563
|
+
return "U";
|
|
1564
|
+
}
|
|
1565
|
+
const firstChar = name.trim().substring(0, 1);
|
|
1566
|
+
return firstChar.toUpperCase();
|
|
1567
|
+
};
|
|
1568
|
+
|
|
1569
|
+
// src/components/Avatar/Avatar.tsx
|
|
1570
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
1571
|
+
var AvatarImage = import_styled_components12.default.img`
|
|
1572
|
+
align-items: center;
|
|
1573
|
+
background-color: white;
|
|
1574
|
+
border-radius: 50%;
|
|
1575
|
+
display: flex;
|
|
1576
|
+
height: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1577
|
+
justify-content: center;
|
|
1578
|
+
object-fit: cover;
|
|
1579
|
+
overflow: hidden;
|
|
1580
|
+
pointer-events: none;
|
|
1581
|
+
user-select: none;
|
|
1582
|
+
width: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1583
|
+
|
|
1584
|
+
a:hover & {
|
|
1585
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 25%);
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
a:active & {
|
|
1589
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 50%);
|
|
1590
|
+
}
|
|
1591
|
+
`;
|
|
1592
|
+
var avatarSizeMap = {
|
|
1593
|
+
sm: 16,
|
|
1594
|
+
md: 24,
|
|
1595
|
+
lg: 32
|
|
1596
|
+
};
|
|
1597
|
+
var fontSizeScaleMultiplier = 0.55;
|
|
1598
|
+
var InitialsContainer = import_styled_components12.default.div`
|
|
1599
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1600
|
+
align-items: center;
|
|
1601
|
+
background-color: var(--color-bg-fill);
|
|
1602
|
+
border: 1px solid var(--color-border);
|
|
1603
|
+
border-radius: 50%;
|
|
1604
|
+
color: var(--color-text-on-fill);
|
|
1605
|
+
display: flex;
|
|
1606
|
+
font-size: ${({ $heightAndWidth }) => $heightAndWidth * fontSizeScaleMultiplier}px;
|
|
1607
|
+
height: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1608
|
+
justify-content: center;
|
|
1609
|
+
overflow: hidden;
|
|
1610
|
+
width: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1611
|
+
|
|
1612
|
+
a:hover & {
|
|
1613
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 25%);
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
a:active & {
|
|
1617
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 50%);
|
|
1618
|
+
}
|
|
1619
|
+
`;
|
|
1620
|
+
var AvatarWrapper = import_styled_components12.default.div`
|
|
1621
|
+
max-height: ${({ $maxHeight }) => $maxHeight}px;
|
|
1622
|
+
`;
|
|
1623
|
+
var chooseColorScheme = (name) => {
|
|
1624
|
+
if ((0, import_type_guards6.isNil)(name) || name === "Anonymous") {
|
|
1625
|
+
return "default";
|
|
1626
|
+
}
|
|
1627
|
+
const filteredColors = colorSchemeOptions.filter(
|
|
1628
|
+
(color) => color !== "inherit" && color !== "default"
|
|
1629
|
+
);
|
|
1630
|
+
const multiplier = 31;
|
|
1631
|
+
const hashCode = (str) => Array.from(str).reduce((sum, char) => Math.imul(multiplier, sum) + char.charCodeAt(0) | 0, 0);
|
|
1632
|
+
const index = Math.abs(hashCode(name)) % filteredColors.length;
|
|
1633
|
+
return filteredColors[index] ?? "default";
|
|
1634
|
+
};
|
|
1635
|
+
var Avatar = ({
|
|
1636
|
+
imageUrl,
|
|
1637
|
+
heightAndWidth,
|
|
1638
|
+
name,
|
|
1639
|
+
size = "md",
|
|
1640
|
+
onImageLoad,
|
|
1641
|
+
...otherProps
|
|
1642
|
+
}) => {
|
|
1643
|
+
const [imageLoadState, setImageLoadState] = (0, import_react5.useState)(null);
|
|
1644
|
+
const handleImageLoad = () => {
|
|
1645
|
+
setImageLoadState("loaded");
|
|
1646
|
+
onImageLoad?.("image");
|
|
1647
|
+
};
|
|
1648
|
+
const handleImageLoadError = () => {
|
|
1649
|
+
setImageLoadState("error");
|
|
1650
|
+
onImageLoad?.("initials");
|
|
1651
|
+
};
|
|
1652
|
+
const avatarSize = heightAndWidth ?? avatarSizeMap[size];
|
|
1653
|
+
const avatarColor = (0, import_react5.useMemo)(() => chooseColorScheme(name), [name]);
|
|
1654
|
+
const showInitials = (0, import_type_guards6.isNil)(imageUrl) || imageLoadState === "error";
|
|
1655
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1656
|
+
AvatarWrapper,
|
|
1657
|
+
{
|
|
1658
|
+
...otherProps,
|
|
1659
|
+
$maxHeight: avatarSize,
|
|
1660
|
+
children: showInitials ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1661
|
+
InitialsContainer,
|
|
1662
|
+
{
|
|
1663
|
+
$colorScheme: avatarColor,
|
|
1664
|
+
$heightAndWidth: avatarSize,
|
|
1665
|
+
children: formatNameForDisplay(name)
|
|
1666
|
+
}
|
|
1667
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1668
|
+
AvatarImage,
|
|
1669
|
+
{
|
|
1670
|
+
$heightAndWidth: avatarSize,
|
|
1671
|
+
alt: name ?? "Unavailable",
|
|
1672
|
+
onError: handleImageLoadError,
|
|
1673
|
+
onLoad: handleImageLoad,
|
|
1674
|
+
src: imageUrl
|
|
1675
|
+
}
|
|
1676
|
+
)
|
|
1677
|
+
}
|
|
1678
|
+
);
|
|
1679
|
+
};
|
|
1680
|
+
Avatar.displayName = "Avatar";
|
|
1681
|
+
|
|
1682
|
+
// src/components/Badge/Badge.tsx
|
|
1683
|
+
var import_react6 = require("react");
|
|
1684
|
+
var import_styled_components13 = __toESM(require("styled-components"));
|
|
1685
|
+
var import_type_guards7 = require("@wistia/type-guards");
|
|
1686
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
1687
|
+
var StyledBadge = import_styled_components13.default.div`
|
|
1493
1688
|
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1494
1689
|
align-items: center;
|
|
1495
1690
|
background-color: var(--color-bg-surface-secondary);
|
|
@@ -1509,10 +1704,10 @@ var StyledBadge = import_styled_components11.default.div`
|
|
|
1509
1704
|
width: 12px;
|
|
1510
1705
|
}
|
|
1511
1706
|
`;
|
|
1512
|
-
var Badge = (0,
|
|
1707
|
+
var Badge = (0, import_react6.forwardRef)(
|
|
1513
1708
|
({ colorScheme = "inherit", label, icon, ...otherProps }, ref) => {
|
|
1514
|
-
const hasIcon = (0,
|
|
1515
|
-
return /* @__PURE__ */ (0,
|
|
1709
|
+
const hasIcon = (0, import_type_guards7.isNotNil)(icon);
|
|
1710
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
1516
1711
|
StyledBadge,
|
|
1517
1712
|
{
|
|
1518
1713
|
ref,
|
|
@@ -1521,7 +1716,7 @@ var Badge = (0, import_react5.forwardRef)(
|
|
|
1521
1716
|
$hasIcon: hasIcon,
|
|
1522
1717
|
children: [
|
|
1523
1718
|
hasIcon ? icon : null,
|
|
1524
|
-
/* @__PURE__ */ (0,
|
|
1719
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", { children: label })
|
|
1525
1720
|
]
|
|
1526
1721
|
}
|
|
1527
1722
|
);
|
|
@@ -1530,15 +1725,15 @@ var Badge = (0, import_react5.forwardRef)(
|
|
|
1530
1725
|
Badge.displayName = "Badge";
|
|
1531
1726
|
|
|
1532
1727
|
// src/components/Box/Box.tsx
|
|
1533
|
-
var
|
|
1534
|
-
var
|
|
1535
|
-
var
|
|
1536
|
-
var
|
|
1728
|
+
var import_react7 = require("react");
|
|
1729
|
+
var import_styled_components14 = __toESM(require("styled-components"));
|
|
1730
|
+
var import_type_guards8 = require("@wistia/type-guards");
|
|
1731
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
1537
1732
|
var isDev = process.env["NODE_ENV"] === "development";
|
|
1538
1733
|
var PROPS_FOR_FLEX_CHILDREN = /* @__PURE__ */ new Set(["alignSelf", "basis", "grow", "order", "shrink"]);
|
|
1539
1734
|
var getGapStyle = (gap) => {
|
|
1540
|
-
if ((0,
|
|
1541
|
-
if ((0,
|
|
1735
|
+
if ((0, import_type_guards8.isNotNil)(gap)) {
|
|
1736
|
+
if ((0, import_type_guards8.isRecord)(gap)) {
|
|
1542
1737
|
return Object.entries(gap).map(([key, value]) => `${key}-gap: ${value};`).join("");
|
|
1543
1738
|
}
|
|
1544
1739
|
return `gap: ${gap.toString()};`;
|
|
@@ -1575,34 +1770,34 @@ var getFillViewportStyle = (fillViewport) => {
|
|
|
1575
1770
|
}
|
|
1576
1771
|
return void 0;
|
|
1577
1772
|
};
|
|
1578
|
-
var BoxComponent =
|
|
1579
|
-
align-content: ${({ alignContent }) => alignContent};
|
|
1580
|
-
align-items: ${({ alignItems }) => alignItems};
|
|
1581
|
-
align-self: ${({ alignSelf }) => alignSelf ?? null};
|
|
1582
|
-
display: ${({ inline }) => (0,
|
|
1583
|
-
flex-basis: ${({ basis }) => (0,
|
|
1584
|
-
flex-direction: ${({ flexDirection }) => flexDirection};
|
|
1585
|
-
${({ fillBox: fill }) => getFillStyle(fill)};
|
|
1586
|
-
${({ fillViewport }) => getFillViewportStyle(fillViewport)};
|
|
1773
|
+
var BoxComponent = import_styled_components14.default.div`
|
|
1774
|
+
align-content: ${({ $alignContent }) => $alignContent};
|
|
1775
|
+
align-items: ${({ $alignItems }) => $alignItems};
|
|
1776
|
+
align-self: ${({ $alignSelf }) => $alignSelf ?? null};
|
|
1777
|
+
display: ${({ $inline }) => (0, import_type_guards8.isNotNil)($inline) && $inline ? "inline-flex" : "flex"};
|
|
1778
|
+
flex-basis: ${({ $basis }) => (0, import_type_guards8.isNotNil)($basis) ? $basis : null};
|
|
1779
|
+
flex-direction: ${({ $flexDirection }) => $flexDirection};
|
|
1780
|
+
${({ $fillBox: fill }) => getFillStyle(fill)};
|
|
1781
|
+
${({ $fillViewport }) => getFillViewportStyle($fillViewport)};
|
|
1587
1782
|
|
|
1588
1783
|
/* Box children styles */
|
|
1589
|
-
flex-grow: ${({ grow }) => (0,
|
|
1590
|
-
flex-shrink: ${({ shrink }) => (0,
|
|
1591
|
-
flex-wrap: ${({ wrapItems }) => wrapItems ? "wrap" : "nowrap"};
|
|
1592
|
-
${({ gap }) => getGapStyle(gap)};
|
|
1593
|
-
justify-content: ${({ justifyContent }) => justifyContent};
|
|
1594
|
-
order: ${({ order }) => (0,
|
|
1784
|
+
flex-grow: ${({ $grow }) => (0, import_type_guards8.isNotNil)($grow) ? $grow : null};
|
|
1785
|
+
flex-shrink: ${({ $shrink }) => (0, import_type_guards8.isNotNil)($shrink) ? $shrink : null};
|
|
1786
|
+
flex-wrap: ${({ $wrapItems }) => $wrapItems ? "wrap" : "nowrap"};
|
|
1787
|
+
${({ $gap }) => getGapStyle($gap)};
|
|
1788
|
+
justify-content: ${({ $justifyContent }) => $justifyContent};
|
|
1789
|
+
order: ${({ $order }) => (0, import_type_guards8.isNotNil)($order) ? $order : null};
|
|
1595
1790
|
`;
|
|
1596
1791
|
var wrapChildren = (children) => {
|
|
1597
|
-
if ((0,
|
|
1792
|
+
if ((0, import_type_guards8.isNotNil)(children)) {
|
|
1598
1793
|
if (typeof children === "object" && isDev) {
|
|
1599
|
-
return
|
|
1600
|
-
if ((0,
|
|
1794
|
+
return import_react7.Children.map(children, (child) => {
|
|
1795
|
+
if ((0, import_type_guards8.isNil)(child)) return null;
|
|
1601
1796
|
const elementParams = {};
|
|
1602
1797
|
if (child.type?.displayName === "Box" || child.type?.displayName === "Box_UI") {
|
|
1603
1798
|
elementParams.hasBoxParent = true;
|
|
1604
1799
|
}
|
|
1605
|
-
return (0,
|
|
1800
|
+
return (0, import_react7.cloneElement)(child, elementParams);
|
|
1606
1801
|
});
|
|
1607
1802
|
}
|
|
1608
1803
|
return children;
|
|
@@ -1617,6 +1812,7 @@ var Box = ({
|
|
|
1617
1812
|
hasBoxParent = false,
|
|
1618
1813
|
fill = false,
|
|
1619
1814
|
fillViewport = false,
|
|
1815
|
+
gap,
|
|
1620
1816
|
inline = false,
|
|
1621
1817
|
justifyContent = "flex-start",
|
|
1622
1818
|
wrapItems = false,
|
|
@@ -1629,18 +1825,19 @@ var Box = ({
|
|
|
1629
1825
|
}
|
|
1630
1826
|
});
|
|
1631
1827
|
}
|
|
1632
|
-
return /* @__PURE__ */ (0,
|
|
1828
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1633
1829
|
BoxComponent,
|
|
1634
1830
|
{
|
|
1635
|
-
alignContent,
|
|
1636
|
-
alignItems,
|
|
1831
|
+
$alignContent: alignContent,
|
|
1832
|
+
$alignItems: alignItems,
|
|
1833
|
+
$fillBox: fill,
|
|
1834
|
+
$fillViewport: fillViewport,
|
|
1835
|
+
$flexDirection: direction,
|
|
1836
|
+
$gap: gap,
|
|
1837
|
+
$inline: inline,
|
|
1838
|
+
$justifyContent: justifyContent,
|
|
1839
|
+
$wrapItems: wrapItems,
|
|
1637
1840
|
as: "div",
|
|
1638
|
-
fillBox: fill,
|
|
1639
|
-
fillViewport,
|
|
1640
|
-
flexDirection: direction,
|
|
1641
|
-
inline,
|
|
1642
|
-
justifyContent,
|
|
1643
|
-
wrapItems,
|
|
1644
1841
|
...otherProps,
|
|
1645
1842
|
children: wrapChildren(children)
|
|
1646
1843
|
}
|
|
@@ -1649,13 +1846,13 @@ var Box = ({
|
|
|
1649
1846
|
Box.displayName = "Box";
|
|
1650
1847
|
|
|
1651
1848
|
// src/components/Button/Button.tsx
|
|
1652
|
-
var
|
|
1653
|
-
var
|
|
1654
|
-
var
|
|
1849
|
+
var import_react10 = require("react");
|
|
1850
|
+
var import_styled_components19 = __toESM(require("styled-components"));
|
|
1851
|
+
var import_type_guards12 = require("@wistia/type-guards");
|
|
1655
1852
|
|
|
1656
1853
|
// src/css/buttonResetCss.tsx
|
|
1657
|
-
var
|
|
1658
|
-
var buttonResetCss =
|
|
1854
|
+
var import_styled_components15 = require("styled-components");
|
|
1855
|
+
var buttonResetCss = import_styled_components15.css`
|
|
1659
1856
|
align-items: center;
|
|
1660
1857
|
background-color: transparent;
|
|
1661
1858
|
background-image: none;
|
|
@@ -1700,8 +1897,8 @@ var buttonResetCss = import_styled_components13.css`
|
|
|
1700
1897
|
`;
|
|
1701
1898
|
|
|
1702
1899
|
// src/components/Button/buttonStyles.tsx
|
|
1703
|
-
var
|
|
1704
|
-
var buttonSmallStyles =
|
|
1900
|
+
var import_styled_components16 = require("styled-components");
|
|
1901
|
+
var buttonSmallStyles = import_styled_components16.css`
|
|
1705
1902
|
--button-padding-vertical: var(--space-01);
|
|
1706
1903
|
--button-padding-horizontal: var(--space-02);
|
|
1707
1904
|
--button-label-padding-horizontal: var(--space-01);
|
|
@@ -1712,7 +1909,7 @@ var buttonSmallStyles = import_styled_components14.css`
|
|
|
1712
1909
|
--button-icon-size: 12px;
|
|
1713
1910
|
--button-label-gap: 4px;
|
|
1714
1911
|
`;
|
|
1715
|
-
var buttonMediumStyles =
|
|
1912
|
+
var buttonMediumStyles = import_styled_components16.css`
|
|
1716
1913
|
--button-padding-vertical: var(--space-02);
|
|
1717
1914
|
--button-padding-horizontal: var(--space-02);
|
|
1718
1915
|
--button-label-padding-horizontal: 6px;
|
|
@@ -1723,7 +1920,7 @@ var buttonMediumStyles = import_styled_components14.css`
|
|
|
1723
1920
|
--button-icon-size: 16px;
|
|
1724
1921
|
--button-label-gap: 6px;
|
|
1725
1922
|
`;
|
|
1726
|
-
var buttonLargeStyles =
|
|
1923
|
+
var buttonLargeStyles = import_styled_components16.css`
|
|
1727
1924
|
--button-padding-vertical: var(--space-02);
|
|
1728
1925
|
--button-padding-horizontal: var(--space-02);
|
|
1729
1926
|
--button-label-padding-horizontal: var(--space-02);
|
|
@@ -1734,7 +1931,7 @@ var buttonLargeStyles = import_styled_components14.css`
|
|
|
1734
1931
|
--button-icon-size: 24px;
|
|
1735
1932
|
--button-label-gap: 8px;
|
|
1736
1933
|
`;
|
|
1737
|
-
var
|
|
1934
|
+
var buttonExtraLargeStyles = import_styled_components16.css`
|
|
1738
1935
|
--button-padding-vertical: var(--space-03);
|
|
1739
1936
|
--button-padding-horizontal: var(--space-03);
|
|
1740
1937
|
--button-label-padding-horizontal: var(--space-02);
|
|
@@ -1745,35 +1942,35 @@ var buttonHeroStyles = import_styled_components14.css`
|
|
|
1745
1942
|
--button-icon-size: 24px;
|
|
1746
1943
|
--button-label-gap: 8px;
|
|
1747
1944
|
`;
|
|
1748
|
-
var ghostButtonVariant =
|
|
1945
|
+
var ghostButtonVariant = import_styled_components16.css`
|
|
1749
1946
|
--button-color-bg: transparent;
|
|
1750
1947
|
--button-color-bg-hover: var(--color-bg-surface-hover);
|
|
1751
1948
|
--button-color-bg-active: var(--color-bg-surface-active);
|
|
1752
1949
|
--button-color-text: var(--color-text);
|
|
1753
1950
|
--button-color-icon: var(--color-icon);
|
|
1754
1951
|
`;
|
|
1755
|
-
var outlineButtonVariant =
|
|
1952
|
+
var outlineButtonVariant = import_styled_components16.css`
|
|
1756
1953
|
${ghostButtonVariant};
|
|
1757
1954
|
--button-color-border: var(--color-border);
|
|
1758
1955
|
|
|
1759
1956
|
border: 1px solid var(--button-color-border);
|
|
1760
1957
|
box-shadow: 0 0 0 2px var(--button-color-border) inset;
|
|
1761
1958
|
`;
|
|
1762
|
-
var softButtonVariant =
|
|
1959
|
+
var softButtonVariant = import_styled_components16.css`
|
|
1763
1960
|
--button-color-bg: var(--color-bg-surface-secondary);
|
|
1764
1961
|
--button-color-bg-hover: var(--color-bg-surface-secondary-hover);
|
|
1765
1962
|
--button-color-bg-active: var(--color-bg-surface-secondary-active);
|
|
1766
1963
|
--button-color-text: var(--color-text);
|
|
1767
1964
|
--button-color-icon: var(--color-icon);
|
|
1768
1965
|
`;
|
|
1769
|
-
var solidButtonVariant =
|
|
1966
|
+
var solidButtonVariant = import_styled_components16.css`
|
|
1770
1967
|
--button-color-bg: var(--color-bg-fill);
|
|
1771
1968
|
--button-color-bg-hover: var(--color-bg-fill-hover);
|
|
1772
1969
|
--button-color-bg-active: var(--color-bg-fill-active);
|
|
1773
1970
|
--button-color-text: var(--color-text-on-fill);
|
|
1774
1971
|
--button-color-icon: var(--color-icon-on-fill);
|
|
1775
1972
|
`;
|
|
1776
|
-
var disabledButtonVariant =
|
|
1973
|
+
var disabledButtonVariant = import_styled_components16.css`
|
|
1777
1974
|
--button-color-bg: var(--color-bg-surface-disabled);
|
|
1778
1975
|
--button-color-bg-hover: var(--color-bg-surface-disabled);
|
|
1779
1976
|
--button-color-bg-active: var(--color-bg-surface-disabled);
|
|
@@ -1781,7 +1978,7 @@ var disabledButtonVariant = import_styled_components14.css`
|
|
|
1781
1978
|
--button-color-icon: var(--color-icon-disabled);
|
|
1782
1979
|
--button-color-border: var(--color-border-disabled);
|
|
1783
1980
|
`;
|
|
1784
|
-
var pressedButtonVariant =
|
|
1981
|
+
var pressedButtonVariant = import_styled_components16.css`
|
|
1785
1982
|
--button-color-bg: var(--color-bg-surface-selected);
|
|
1786
1983
|
--button-color-bg-hover: var(--color-bg-surface-selected-hover);
|
|
1787
1984
|
--button-color-bg-active: var(--color-bg-surface-selected-active);
|
|
@@ -1789,7 +1986,7 @@ var pressedButtonVariant = import_styled_components14.css`
|
|
|
1789
1986
|
--button-color-icon: var(--color-icon-selected);
|
|
1790
1987
|
--button-color-border: var(--color-border-selected);
|
|
1791
1988
|
`;
|
|
1792
|
-
var buttonBaseStyles =
|
|
1989
|
+
var buttonBaseStyles = import_styled_components16.css`
|
|
1793
1990
|
border-radius: var(--border-radius-rounded);
|
|
1794
1991
|
font-family: var(--button-typography-family);
|
|
1795
1992
|
font-size: var(--button-typography-size);
|
|
@@ -1849,25 +2046,25 @@ var buttonVariantsStyles = {
|
|
|
1849
2046
|
solid: solidButtonVariant
|
|
1850
2047
|
};
|
|
1851
2048
|
var buttonSizeStyles = {
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
2049
|
+
sm: buttonSmallStyles,
|
|
2050
|
+
md: buttonMediumStyles,
|
|
2051
|
+
lg: buttonLargeStyles,
|
|
2052
|
+
xl: buttonExtraLargeStyles
|
|
1856
2053
|
};
|
|
1857
2054
|
|
|
1858
2055
|
// src/components/Icon/Icon.tsx
|
|
1859
|
-
var
|
|
1860
|
-
var
|
|
2056
|
+
var import_type_guards10 = require("@wistia/type-guards");
|
|
2057
|
+
var import_styled_components17 = __toESM(require("styled-components"));
|
|
1861
2058
|
|
|
1862
2059
|
// src/components/Icon/icons/AbTestIcon.tsx
|
|
1863
|
-
var
|
|
1864
|
-
var AbTestIcon = (props) => /* @__PURE__ */ (0,
|
|
2060
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
2061
|
+
var AbTestIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1865
2062
|
"svg",
|
|
1866
2063
|
{
|
|
1867
2064
|
...props,
|
|
1868
2065
|
viewBox: "0 0 24 24",
|
|
1869
2066
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1870
|
-
children: /* @__PURE__ */ (0,
|
|
2067
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1871
2068
|
"path",
|
|
1872
2069
|
{
|
|
1873
2070
|
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",
|
|
@@ -1878,14 +2075,14 @@ var AbTestIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
|
1878
2075
|
);
|
|
1879
2076
|
|
|
1880
2077
|
// src/components/Icon/icons/AccessibilityIcon.tsx
|
|
1881
|
-
var
|
|
1882
|
-
var AccessibilityIcon = (props) => /* @__PURE__ */ (0,
|
|
2078
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
2079
|
+
var AccessibilityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1883
2080
|
"svg",
|
|
1884
2081
|
{
|
|
1885
2082
|
...props,
|
|
1886
2083
|
viewBox: "0 0 24 24",
|
|
1887
2084
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1888
|
-
children: /* @__PURE__ */ (0,
|
|
2085
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1889
2086
|
"path",
|
|
1890
2087
|
{
|
|
1891
2088
|
clipRule: "evenodd",
|
|
@@ -1898,14 +2095,14 @@ var AccessibilityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
|
1898
2095
|
);
|
|
1899
2096
|
|
|
1900
2097
|
// src/components/Icon/icons/ActivityIcon.tsx
|
|
1901
|
-
var
|
|
1902
|
-
var ActivityIcon = (props) => /* @__PURE__ */ (0,
|
|
2098
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
2099
|
+
var ActivityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1903
2100
|
"svg",
|
|
1904
2101
|
{
|
|
1905
2102
|
...props,
|
|
1906
2103
|
viewBox: "0 0 24 24",
|
|
1907
2104
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1908
|
-
children: /* @__PURE__ */ (0,
|
|
2105
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1909
2106
|
"path",
|
|
1910
2107
|
{
|
|
1911
2108
|
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",
|
|
@@ -1916,14 +2113,14 @@ var ActivityIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
|
1916
2113
|
);
|
|
1917
2114
|
|
|
1918
2115
|
// src/components/Icon/icons/AddMediaIcon.tsx
|
|
1919
|
-
var
|
|
1920
|
-
var AddMediaIcon = (props) => /* @__PURE__ */ (0,
|
|
2116
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
2117
|
+
var AddMediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1921
2118
|
"svg",
|
|
1922
2119
|
{
|
|
1923
2120
|
...props,
|
|
1924
2121
|
viewBox: "0 0 24 24",
|
|
1925
2122
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1926
|
-
children: /* @__PURE__ */ (0,
|
|
2123
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1927
2124
|
"path",
|
|
1928
2125
|
{
|
|
1929
2126
|
clipRule: "evenodd",
|
|
@@ -1936,14 +2133,14 @@ var AddMediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
|
1936
2133
|
);
|
|
1937
2134
|
|
|
1938
2135
|
// src/components/Icon/icons/AnnotationLinkIcon.tsx
|
|
1939
|
-
var
|
|
1940
|
-
var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0,
|
|
2136
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
2137
|
+
var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1941
2138
|
"svg",
|
|
1942
2139
|
{
|
|
1943
2140
|
...props,
|
|
1944
2141
|
viewBox: "0 0 24 24",
|
|
1945
2142
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1946
|
-
children: /* @__PURE__ */ (0,
|
|
2143
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1947
2144
|
"path",
|
|
1948
2145
|
{
|
|
1949
2146
|
clipRule: "evenodd",
|
|
@@ -1956,14 +2153,14 @@ var AnnotationLinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)
|
|
|
1956
2153
|
);
|
|
1957
2154
|
|
|
1958
2155
|
// src/components/Icon/icons/AppearanceIcon.tsx
|
|
1959
|
-
var
|
|
1960
|
-
var AppearanceIcon = (props) => /* @__PURE__ */ (0,
|
|
2156
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
2157
|
+
var AppearanceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1961
2158
|
"svg",
|
|
1962
2159
|
{
|
|
1963
2160
|
...props,
|
|
1964
2161
|
viewBox: "0 0 24 24",
|
|
1965
2162
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1966
|
-
children: /* @__PURE__ */ (0,
|
|
2163
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1967
2164
|
"path",
|
|
1968
2165
|
{
|
|
1969
2166
|
clipRule: "evenodd",
|
|
@@ -1976,14 +2173,14 @@ var AppearanceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
|
1976
2173
|
);
|
|
1977
2174
|
|
|
1978
2175
|
// src/components/Icon/icons/ArchiveIcon.tsx
|
|
1979
|
-
var
|
|
1980
|
-
var ArchiveIcon = (props) => /* @__PURE__ */ (0,
|
|
2176
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
2177
|
+
var ArchiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1981
2178
|
"svg",
|
|
1982
2179
|
{
|
|
1983
2180
|
...props,
|
|
1984
2181
|
viewBox: "0 0 24 24",
|
|
1985
2182
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1986
|
-
children: /* @__PURE__ */ (0,
|
|
2183
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1987
2184
|
"path",
|
|
1988
2185
|
{
|
|
1989
2186
|
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",
|
|
@@ -1994,14 +2191,14 @@ var ArchiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
|
1994
2191
|
);
|
|
1995
2192
|
|
|
1996
2193
|
// src/components/Icon/icons/ArrowDownIcon.tsx
|
|
1997
|
-
var
|
|
1998
|
-
var ArrowDownIcon = (props) => /* @__PURE__ */ (0,
|
|
2194
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
2195
|
+
var ArrowDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1999
2196
|
"svg",
|
|
2000
2197
|
{
|
|
2001
2198
|
...props,
|
|
2002
2199
|
viewBox: "0 0 24 24",
|
|
2003
2200
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2004
|
-
children: /* @__PURE__ */ (0,
|
|
2201
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
2005
2202
|
"path",
|
|
2006
2203
|
{
|
|
2007
2204
|
clipRule: "evenodd",
|
|
@@ -2014,14 +2211,14 @@ var ArrowDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
|
2014
2211
|
);
|
|
2015
2212
|
|
|
2016
2213
|
// src/components/Icon/icons/ArrowLeftIcon.tsx
|
|
2017
|
-
var
|
|
2018
|
-
var ArrowLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
2214
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
2215
|
+
var ArrowLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2019
2216
|
"svg",
|
|
2020
2217
|
{
|
|
2021
2218
|
...props,
|
|
2022
2219
|
viewBox: "0 0 24 24",
|
|
2023
2220
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2024
|
-
children: /* @__PURE__ */ (0,
|
|
2221
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2025
2222
|
"path",
|
|
2026
2223
|
{
|
|
2027
2224
|
clipRule: "evenodd",
|
|
@@ -2034,14 +2231,14 @@ var ArrowLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
|
2034
2231
|
);
|
|
2035
2232
|
|
|
2036
2233
|
// src/components/Icon/icons/ArrowRightIcon.tsx
|
|
2037
|
-
var
|
|
2038
|
-
var ArrowRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2234
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
2235
|
+
var ArrowRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2039
2236
|
"svg",
|
|
2040
2237
|
{
|
|
2041
2238
|
...props,
|
|
2042
2239
|
viewBox: "0 0 24 24",
|
|
2043
2240
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2044
|
-
children: /* @__PURE__ */ (0,
|
|
2241
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2045
2242
|
"path",
|
|
2046
2243
|
{
|
|
2047
2244
|
clipRule: "evenodd",
|
|
@@ -2054,14 +2251,14 @@ var ArrowRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
|
2054
2251
|
);
|
|
2055
2252
|
|
|
2056
2253
|
// src/components/Icon/icons/ArrowUpIcon.tsx
|
|
2057
|
-
var
|
|
2058
|
-
var ArrowUpIcon = (props) => /* @__PURE__ */ (0,
|
|
2254
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
2255
|
+
var ArrowUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2059
2256
|
"svg",
|
|
2060
2257
|
{
|
|
2061
2258
|
...props,
|
|
2062
2259
|
viewBox: "0 0 24 24",
|
|
2063
2260
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2064
|
-
children: /* @__PURE__ */ (0,
|
|
2261
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2065
2262
|
"path",
|
|
2066
2263
|
{
|
|
2067
2264
|
clipRule: "evenodd",
|
|
@@ -2074,14 +2271,14 @@ var ArrowUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
|
2074
2271
|
);
|
|
2075
2272
|
|
|
2076
2273
|
// src/components/Icon/icons/ArrowUpRightIcon.tsx
|
|
2077
|
-
var
|
|
2078
|
-
var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2274
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
2275
|
+
var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2079
2276
|
"svg",
|
|
2080
2277
|
{
|
|
2081
2278
|
...props,
|
|
2082
2279
|
viewBox: "0 0 24 24",
|
|
2083
2280
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2084
|
-
children: /* @__PURE__ */ (0,
|
|
2281
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2085
2282
|
"path",
|
|
2086
2283
|
{
|
|
2087
2284
|
clipRule: "evenodd",
|
|
@@ -2094,14 +2291,14 @@ var ArrowUpRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
|
2094
2291
|
);
|
|
2095
2292
|
|
|
2096
2293
|
// src/components/Icon/icons/AsteriskIcon.tsx
|
|
2097
|
-
var
|
|
2098
|
-
var AsteriskIcon = (props) => /* @__PURE__ */ (0,
|
|
2294
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
2295
|
+
var AsteriskIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2099
2296
|
"svg",
|
|
2100
2297
|
{
|
|
2101
2298
|
...props,
|
|
2102
2299
|
viewBox: "0 0 24 24",
|
|
2103
2300
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2104
|
-
children: /* @__PURE__ */ (0,
|
|
2301
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2105
2302
|
"path",
|
|
2106
2303
|
{
|
|
2107
2304
|
clipRule: "evenodd",
|
|
@@ -2114,14 +2311,14 @@ var AsteriskIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
|
2114
2311
|
);
|
|
2115
2312
|
|
|
2116
2313
|
// src/components/Icon/icons/AudioDescriptionIcon.tsx
|
|
2117
|
-
var
|
|
2118
|
-
var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0,
|
|
2314
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
2315
|
+
var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2119
2316
|
"svg",
|
|
2120
2317
|
{
|
|
2121
2318
|
...props,
|
|
2122
2319
|
viewBox: "0 0 24 24",
|
|
2123
2320
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2124
|
-
children: /* @__PURE__ */ (0,
|
|
2321
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2125
2322
|
"path",
|
|
2126
2323
|
{
|
|
2127
2324
|
clipRule: "evenodd",
|
|
@@ -2134,14 +2331,14 @@ var AudioDescriptionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.j
|
|
|
2134
2331
|
);
|
|
2135
2332
|
|
|
2136
2333
|
// src/components/Icon/icons/AutoScrollIcon.tsx
|
|
2137
|
-
var
|
|
2138
|
-
var AutoScrollIcon = (props) => /* @__PURE__ */ (0,
|
|
2334
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
2335
|
+
var AutoScrollIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2139
2336
|
"svg",
|
|
2140
2337
|
{
|
|
2141
2338
|
...props,
|
|
2142
2339
|
viewBox: "0 0 24 24",
|
|
2143
2340
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2144
|
-
children: /* @__PURE__ */ (0,
|
|
2341
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2145
2342
|
"path",
|
|
2146
2343
|
{
|
|
2147
2344
|
clipRule: "evenodd",
|
|
@@ -2154,14 +2351,14 @@ var AutoScrollIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
|
2154
2351
|
);
|
|
2155
2352
|
|
|
2156
2353
|
// src/components/Icon/icons/BackgroundIcon.tsx
|
|
2157
|
-
var
|
|
2158
|
-
var BackgroundIcon = (props) => /* @__PURE__ */ (0,
|
|
2354
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
2355
|
+
var BackgroundIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2159
2356
|
"svg",
|
|
2160
2357
|
{
|
|
2161
2358
|
...props,
|
|
2162
2359
|
viewBox: "0 0 24 24",
|
|
2163
2360
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2164
|
-
children: /* @__PURE__ */ (0,
|
|
2361
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2165
2362
|
"path",
|
|
2166
2363
|
{
|
|
2167
2364
|
clipRule: "evenodd",
|
|
@@ -2174,14 +2371,14 @@ var BackgroundIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
|
2174
2371
|
);
|
|
2175
2372
|
|
|
2176
2373
|
// src/components/Icon/icons/BellIcon.tsx
|
|
2177
|
-
var
|
|
2178
|
-
var BellIcon = (props) => /* @__PURE__ */ (0,
|
|
2374
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
2375
|
+
var BellIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2179
2376
|
"svg",
|
|
2180
2377
|
{
|
|
2181
2378
|
...props,
|
|
2182
2379
|
viewBox: "0 0 24 24",
|
|
2183
2380
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2184
|
-
children: /* @__PURE__ */ (0,
|
|
2381
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2185
2382
|
"path",
|
|
2186
2383
|
{
|
|
2187
2384
|
clipRule: "evenodd",
|
|
@@ -2194,14 +2391,14 @@ var BellIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
|
2194
2391
|
);
|
|
2195
2392
|
|
|
2196
2393
|
// src/components/Icon/icons/BoltIcon.tsx
|
|
2197
|
-
var
|
|
2198
|
-
var BoltIcon = (props) => /* @__PURE__ */ (0,
|
|
2394
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
2395
|
+
var BoltIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2199
2396
|
"svg",
|
|
2200
2397
|
{
|
|
2201
2398
|
...props,
|
|
2202
2399
|
viewBox: "0 0 24 24",
|
|
2203
2400
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2204
|
-
children: /* @__PURE__ */ (0,
|
|
2401
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2205
2402
|
"path",
|
|
2206
2403
|
{
|
|
2207
2404
|
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",
|
|
@@ -2212,14 +2409,14 @@ var BoltIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
|
2212
2409
|
);
|
|
2213
2410
|
|
|
2214
2411
|
// src/components/Icon/icons/CalendarIcon.tsx
|
|
2215
|
-
var
|
|
2216
|
-
var CalendarIcon = (props) => /* @__PURE__ */ (0,
|
|
2412
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
2413
|
+
var CalendarIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2217
2414
|
"svg",
|
|
2218
2415
|
{
|
|
2219
2416
|
...props,
|
|
2220
2417
|
viewBox: "0 0 24 24",
|
|
2221
2418
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2222
|
-
children: /* @__PURE__ */ (0,
|
|
2419
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2223
2420
|
"path",
|
|
2224
2421
|
{
|
|
2225
2422
|
clipRule: "evenodd",
|
|
@@ -2232,14 +2429,14 @@ var CalendarIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
|
2232
2429
|
);
|
|
2233
2430
|
|
|
2234
2431
|
// src/components/Icon/icons/CallToActionIcon.tsx
|
|
2235
|
-
var
|
|
2236
|
-
var CallToActionIcon = (props) => /* @__PURE__ */ (0,
|
|
2432
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
2433
|
+
var CallToActionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2237
2434
|
"svg",
|
|
2238
2435
|
{
|
|
2239
2436
|
...props,
|
|
2240
2437
|
viewBox: "0 0 24 24",
|
|
2241
2438
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2242
|
-
children: /* @__PURE__ */ (0,
|
|
2439
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2243
2440
|
"path",
|
|
2244
2441
|
{
|
|
2245
2442
|
clipRule: "evenodd",
|
|
@@ -2252,14 +2449,14 @@ var CallToActionIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
|
2252
2449
|
);
|
|
2253
2450
|
|
|
2254
2451
|
// src/components/Icon/icons/CameraIcon.tsx
|
|
2255
|
-
var
|
|
2256
|
-
var CameraIcon = (props) => /* @__PURE__ */ (0,
|
|
2452
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
2453
|
+
var CameraIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2257
2454
|
"svg",
|
|
2258
2455
|
{
|
|
2259
2456
|
...props,
|
|
2260
2457
|
viewBox: "0 0 24 24",
|
|
2261
2458
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2262
|
-
children: /* @__PURE__ */ (0,
|
|
2459
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2263
2460
|
"path",
|
|
2264
2461
|
{
|
|
2265
2462
|
clipRule: "evenodd",
|
|
@@ -2272,14 +2469,14 @@ var CameraIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
|
2272
2469
|
);
|
|
2273
2470
|
|
|
2274
2471
|
// src/components/Icon/icons/CameraOffIcon.tsx
|
|
2275
|
-
var
|
|
2276
|
-
var CameraOffIcon = (props) => /* @__PURE__ */ (0,
|
|
2472
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
2473
|
+
var CameraOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2277
2474
|
"svg",
|
|
2278
2475
|
{
|
|
2279
2476
|
...props,
|
|
2280
2477
|
viewBox: "0 0 24 24",
|
|
2281
2478
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2282
|
-
children: /* @__PURE__ */ (0,
|
|
2479
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2283
2480
|
"path",
|
|
2284
2481
|
{
|
|
2285
2482
|
clipRule: "evenodd",
|
|
@@ -2292,14 +2489,14 @@ var CameraOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
|
2292
2489
|
);
|
|
2293
2490
|
|
|
2294
2491
|
// src/components/Icon/icons/CaretDownIcon.tsx
|
|
2295
|
-
var
|
|
2296
|
-
var CaretDownIcon = (props) => /* @__PURE__ */ (0,
|
|
2492
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
2493
|
+
var CaretDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2297
2494
|
"svg",
|
|
2298
2495
|
{
|
|
2299
2496
|
...props,
|
|
2300
2497
|
viewBox: "0 0 24 24",
|
|
2301
2498
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2302
|
-
children: /* @__PURE__ */ (0,
|
|
2499
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2303
2500
|
"path",
|
|
2304
2501
|
{
|
|
2305
2502
|
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",
|
|
@@ -2310,14 +2507,14 @@ var CaretDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
|
2310
2507
|
);
|
|
2311
2508
|
|
|
2312
2509
|
// src/components/Icon/icons/CaretDownStrongIcon.tsx
|
|
2313
|
-
var
|
|
2314
|
-
var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2510
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
2511
|
+
var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2315
2512
|
"svg",
|
|
2316
2513
|
{
|
|
2317
2514
|
...props,
|
|
2318
2515
|
viewBox: "0 0 24 24",
|
|
2319
2516
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2320
|
-
children: /* @__PURE__ */ (0,
|
|
2517
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2321
2518
|
"path",
|
|
2322
2519
|
{
|
|
2323
2520
|
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",
|
|
@@ -2328,14 +2525,14 @@ var CaretDownStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.js
|
|
|
2328
2525
|
);
|
|
2329
2526
|
|
|
2330
2527
|
// src/components/Icon/icons/CaretLeftIcon.tsx
|
|
2331
|
-
var
|
|
2332
|
-
var CaretLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
2528
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
2529
|
+
var CaretLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2333
2530
|
"svg",
|
|
2334
2531
|
{
|
|
2335
2532
|
...props,
|
|
2336
2533
|
viewBox: "0 0 24 24",
|
|
2337
2534
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2338
|
-
children: /* @__PURE__ */ (0,
|
|
2535
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2339
2536
|
"path",
|
|
2340
2537
|
{
|
|
2341
2538
|
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",
|
|
@@ -2346,14 +2543,14 @@ var CaretLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
|
2346
2543
|
);
|
|
2347
2544
|
|
|
2348
2545
|
// src/components/Icon/icons/CaretLeftStrongIcon.tsx
|
|
2349
|
-
var
|
|
2350
|
-
var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2546
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
2547
|
+
var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2351
2548
|
"svg",
|
|
2352
2549
|
{
|
|
2353
2550
|
...props,
|
|
2354
2551
|
viewBox: "0 0 24 24",
|
|
2355
2552
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2356
|
-
children: /* @__PURE__ */ (0,
|
|
2553
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2357
2554
|
"path",
|
|
2358
2555
|
{
|
|
2359
2556
|
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",
|
|
@@ -2364,14 +2561,14 @@ var CaretLeftStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.js
|
|
|
2364
2561
|
);
|
|
2365
2562
|
|
|
2366
2563
|
// src/components/Icon/icons/CaretRightIcon.tsx
|
|
2367
|
-
var
|
|
2368
|
-
var CaretRightIcon = (props) => /* @__PURE__ */ (0,
|
|
2564
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
2565
|
+
var CaretRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2369
2566
|
"svg",
|
|
2370
2567
|
{
|
|
2371
2568
|
...props,
|
|
2372
2569
|
viewBox: "0 0 24 24",
|
|
2373
2570
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2374
|
-
children: /* @__PURE__ */ (0,
|
|
2571
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2375
2572
|
"path",
|
|
2376
2573
|
{
|
|
2377
2574
|
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",
|
|
@@ -2382,14 +2579,14 @@ var CaretRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
|
2382
2579
|
);
|
|
2383
2580
|
|
|
2384
2581
|
// src/components/Icon/icons/CaretRightStrongIcon.tsx
|
|
2385
|
-
var
|
|
2386
|
-
var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2582
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
2583
|
+
var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2387
2584
|
"svg",
|
|
2388
2585
|
{
|
|
2389
2586
|
...props,
|
|
2390
2587
|
viewBox: "0 0 24 24",
|
|
2391
2588
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2392
|
-
children: /* @__PURE__ */ (0,
|
|
2589
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2393
2590
|
"path",
|
|
2394
2591
|
{
|
|
2395
2592
|
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",
|
|
@@ -2400,14 +2597,14 @@ var CaretRightStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime32.j
|
|
|
2400
2597
|
);
|
|
2401
2598
|
|
|
2402
2599
|
// src/components/Icon/icons/CaretUpIcon.tsx
|
|
2403
|
-
var
|
|
2404
|
-
var CaretUpIcon = (props) => /* @__PURE__ */ (0,
|
|
2600
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
2601
|
+
var CaretUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2405
2602
|
"svg",
|
|
2406
2603
|
{
|
|
2407
2604
|
...props,
|
|
2408
2605
|
viewBox: "0 0 24 24",
|
|
2409
2606
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2410
|
-
children: /* @__PURE__ */ (0,
|
|
2607
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2411
2608
|
"path",
|
|
2412
2609
|
{
|
|
2413
2610
|
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",
|
|
@@ -2418,14 +2615,14 @@ var CaretUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
|
2418
2615
|
);
|
|
2419
2616
|
|
|
2420
2617
|
// src/components/Icon/icons/CaretUpStrongIcon.tsx
|
|
2421
|
-
var
|
|
2422
|
-
var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0,
|
|
2618
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
2619
|
+
var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2423
2620
|
"svg",
|
|
2424
2621
|
{
|
|
2425
2622
|
...props,
|
|
2426
2623
|
viewBox: "0 0 24 24",
|
|
2427
2624
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2428
|
-
children: /* @__PURE__ */ (0,
|
|
2625
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2429
2626
|
"path",
|
|
2430
2627
|
{
|
|
2431
2628
|
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",
|
|
@@ -2436,14 +2633,14 @@ var CaretUpStrongIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)
|
|
|
2436
2633
|
);
|
|
2437
2634
|
|
|
2438
2635
|
// src/components/Icon/icons/ChannelIcon.tsx
|
|
2439
|
-
var
|
|
2440
|
-
var ChannelIcon = (props) => /* @__PURE__ */ (0,
|
|
2636
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
2637
|
+
var ChannelIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2441
2638
|
"svg",
|
|
2442
2639
|
{
|
|
2443
2640
|
...props,
|
|
2444
2641
|
viewBox: "0 0 24 24",
|
|
2445
2642
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2446
|
-
children: /* @__PURE__ */ (0,
|
|
2643
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2447
2644
|
"path",
|
|
2448
2645
|
{
|
|
2449
2646
|
clipRule: "evenodd",
|
|
@@ -2456,14 +2653,14 @@ var ChannelIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
|
2456
2653
|
);
|
|
2457
2654
|
|
|
2458
2655
|
// src/components/Icon/icons/ChaptersIcon.tsx
|
|
2459
|
-
var
|
|
2460
|
-
var ChaptersIcon = (props) => /* @__PURE__ */ (0,
|
|
2656
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
2657
|
+
var ChaptersIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2461
2658
|
"svg",
|
|
2462
2659
|
{
|
|
2463
2660
|
...props,
|
|
2464
2661
|
viewBox: "0 0 24 24",
|
|
2465
2662
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2466
|
-
children: /* @__PURE__ */ (0,
|
|
2663
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2467
2664
|
"path",
|
|
2468
2665
|
{
|
|
2469
2666
|
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",
|
|
@@ -2474,14 +2671,14 @@ var ChaptersIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
|
2474
2671
|
);
|
|
2475
2672
|
|
|
2476
2673
|
// src/components/Icon/icons/CheckmarkCircleIcon.tsx
|
|
2477
|
-
var
|
|
2478
|
-
var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
2674
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
2675
|
+
var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2479
2676
|
"svg",
|
|
2480
2677
|
{
|
|
2481
2678
|
...props,
|
|
2482
2679
|
viewBox: "0 0 24 24",
|
|
2483
2680
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2484
|
-
children: /* @__PURE__ */ (0,
|
|
2681
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2485
2682
|
"path",
|
|
2486
2683
|
{
|
|
2487
2684
|
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",
|
|
@@ -2492,14 +2689,14 @@ var CheckmarkCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime37.js
|
|
|
2492
2689
|
);
|
|
2493
2690
|
|
|
2494
2691
|
// src/components/Icon/icons/CheckmarkCircleOutlineIcon.tsx
|
|
2495
|
-
var
|
|
2496
|
-
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0,
|
|
2692
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
2693
|
+
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2497
2694
|
"svg",
|
|
2498
2695
|
{
|
|
2499
2696
|
...props,
|
|
2500
2697
|
viewBox: "0 0 24 24",
|
|
2501
2698
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2502
|
-
children: /* @__PURE__ */ (0,
|
|
2699
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2503
2700
|
"path",
|
|
2504
2701
|
{
|
|
2505
2702
|
clipRule: "evenodd",
|
|
@@ -2512,14 +2709,14 @@ var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runti
|
|
|
2512
2709
|
);
|
|
2513
2710
|
|
|
2514
2711
|
// src/components/Icon/icons/CheckmarkIcon.tsx
|
|
2515
|
-
var
|
|
2516
|
-
var CheckmarkIcon = (props) => /* @__PURE__ */ (0,
|
|
2712
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
2713
|
+
var CheckmarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2517
2714
|
"svg",
|
|
2518
2715
|
{
|
|
2519
2716
|
...props,
|
|
2520
2717
|
viewBox: "0 0 24 24",
|
|
2521
2718
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2522
|
-
children: /* @__PURE__ */ (0,
|
|
2719
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2523
2720
|
"path",
|
|
2524
2721
|
{
|
|
2525
2722
|
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",
|
|
@@ -2530,14 +2727,14 @@ var CheckmarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
|
2530
2727
|
);
|
|
2531
2728
|
|
|
2532
2729
|
// src/components/Icon/icons/CheckmarkThreeQuatersCircleIcon.tsx
|
|
2533
|
-
var
|
|
2534
|
-
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
2730
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
2731
|
+
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2535
2732
|
"svg",
|
|
2536
2733
|
{
|
|
2537
2734
|
...props,
|
|
2538
2735
|
viewBox: "0 0 24 24",
|
|
2539
2736
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2540
|
-
children: /* @__PURE__ */ (0,
|
|
2737
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2541
2738
|
"path",
|
|
2542
2739
|
{
|
|
2543
2740
|
clipRule: "evenodd",
|
|
@@ -2550,14 +2747,14 @@ var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_
|
|
|
2550
2747
|
);
|
|
2551
2748
|
|
|
2552
2749
|
// src/components/Icon/icons/CircleSlashedIcon.tsx
|
|
2553
|
-
var
|
|
2554
|
-
var CircleSlashedIcon = (props) => /* @__PURE__ */ (0,
|
|
2750
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
2751
|
+
var CircleSlashedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2555
2752
|
"svg",
|
|
2556
2753
|
{
|
|
2557
2754
|
...props,
|
|
2558
2755
|
viewBox: "0 0 24 24",
|
|
2559
2756
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2560
|
-
children: /* @__PURE__ */ (0,
|
|
2757
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2561
2758
|
"path",
|
|
2562
2759
|
{
|
|
2563
2760
|
clipRule: "evenodd",
|
|
@@ -2570,14 +2767,14 @@ var CircleSlashedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)
|
|
|
2570
2767
|
);
|
|
2571
2768
|
|
|
2572
2769
|
// src/components/Icon/icons/CloseIcon.tsx
|
|
2573
|
-
var
|
|
2574
|
-
var CloseIcon = (props) => /* @__PURE__ */ (0,
|
|
2770
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
2771
|
+
var CloseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2575
2772
|
"svg",
|
|
2576
2773
|
{
|
|
2577
2774
|
...props,
|
|
2578
2775
|
viewBox: "0 0 24 24",
|
|
2579
2776
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2580
|
-
children: /* @__PURE__ */ (0,
|
|
2777
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2581
2778
|
"path",
|
|
2582
2779
|
{
|
|
2583
2780
|
clipRule: "evenodd",
|
|
@@ -2590,14 +2787,14 @@ var CloseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
|
2590
2787
|
);
|
|
2591
2788
|
|
|
2592
2789
|
// src/components/Icon/icons/CloseOctagonIcon.tsx
|
|
2593
|
-
var
|
|
2594
|
-
var CloseOctagonIcon = (props) => /* @__PURE__ */ (0,
|
|
2790
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
2791
|
+
var CloseOctagonIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2595
2792
|
"svg",
|
|
2596
2793
|
{
|
|
2597
2794
|
...props,
|
|
2598
2795
|
viewBox: "0 0 24 24",
|
|
2599
2796
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2600
|
-
children: /* @__PURE__ */ (0,
|
|
2797
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2601
2798
|
"path",
|
|
2602
2799
|
{
|
|
2603
2800
|
clipRule: "evenodd",
|
|
@@ -2610,14 +2807,14 @@ var CloseOctagonIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
|
2610
2807
|
);
|
|
2611
2808
|
|
|
2612
2809
|
// src/components/Icon/icons/ClosedCaptionsIcon.tsx
|
|
2613
|
-
var
|
|
2614
|
-
var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0,
|
|
2810
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
2811
|
+
var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2615
2812
|
"svg",
|
|
2616
2813
|
{
|
|
2617
2814
|
...props,
|
|
2618
2815
|
viewBox: "0 0 24 24",
|
|
2619
2816
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2620
|
-
children: /* @__PURE__ */ (0,
|
|
2817
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2621
2818
|
"path",
|
|
2622
2819
|
{
|
|
2623
2820
|
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",
|
|
@@ -2628,14 +2825,14 @@ var ClosedCaptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx
|
|
|
2628
2825
|
);
|
|
2629
2826
|
|
|
2630
2827
|
// src/components/Icon/icons/CollapseDiagonalIcon.tsx
|
|
2631
|
-
var
|
|
2632
|
-
var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0,
|
|
2828
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
2829
|
+
var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2633
2830
|
"svg",
|
|
2634
2831
|
{
|
|
2635
2832
|
...props,
|
|
2636
2833
|
viewBox: "0 0 24 24",
|
|
2637
2834
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2638
|
-
children: /* @__PURE__ */ (0,
|
|
2835
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2639
2836
|
"path",
|
|
2640
2837
|
{
|
|
2641
2838
|
clipRule: "evenodd",
|
|
@@ -2648,14 +2845,14 @@ var CollapseDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.j
|
|
|
2648
2845
|
);
|
|
2649
2846
|
|
|
2650
2847
|
// src/components/Icon/icons/CommentsIcon.tsx
|
|
2651
|
-
var
|
|
2652
|
-
var CommentsIcon = (props) => /* @__PURE__ */ (0,
|
|
2848
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
2849
|
+
var CommentsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2653
2850
|
"svg",
|
|
2654
2851
|
{
|
|
2655
2852
|
...props,
|
|
2656
2853
|
viewBox: "0 0 24 24",
|
|
2657
2854
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2658
|
-
children: /* @__PURE__ */ (0,
|
|
2855
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2659
2856
|
"path",
|
|
2660
2857
|
{
|
|
2661
2858
|
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",
|
|
@@ -2666,14 +2863,14 @@ var CommentsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
|
2666
2863
|
);
|
|
2667
2864
|
|
|
2668
2865
|
// src/components/Icon/icons/CompanyIcon.tsx
|
|
2669
|
-
var
|
|
2670
|
-
var CompanyIcon = (props) => /* @__PURE__ */ (0,
|
|
2866
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
2867
|
+
var CompanyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2671
2868
|
"svg",
|
|
2672
2869
|
{
|
|
2673
2870
|
...props,
|
|
2674
2871
|
viewBox: "0 0 24 24",
|
|
2675
2872
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2676
|
-
children: /* @__PURE__ */ (0,
|
|
2873
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2677
2874
|
"path",
|
|
2678
2875
|
{
|
|
2679
2876
|
clipRule: "evenodd",
|
|
@@ -2686,14 +2883,14 @@ var CompanyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
|
2686
2883
|
);
|
|
2687
2884
|
|
|
2688
2885
|
// src/components/Icon/icons/CompareIcon.tsx
|
|
2689
|
-
var
|
|
2690
|
-
var CompareIcon = (props) => /* @__PURE__ */ (0,
|
|
2886
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
2887
|
+
var CompareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2691
2888
|
"svg",
|
|
2692
2889
|
{
|
|
2693
2890
|
...props,
|
|
2694
2891
|
viewBox: "0 0 24 24",
|
|
2695
2892
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2696
|
-
children: /* @__PURE__ */ (0,
|
|
2893
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2697
2894
|
"path",
|
|
2698
2895
|
{
|
|
2699
2896
|
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",
|
|
@@ -2704,14 +2901,14 @@ var CompareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
|
2704
2901
|
);
|
|
2705
2902
|
|
|
2706
2903
|
// src/components/Icon/icons/ContentLibraryIcon.tsx
|
|
2707
|
-
var
|
|
2708
|
-
var ContentLibraryIcon = (props) => /* @__PURE__ */ (0,
|
|
2904
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
2905
|
+
var ContentLibraryIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2709
2906
|
"svg",
|
|
2710
2907
|
{
|
|
2711
2908
|
...props,
|
|
2712
2909
|
viewBox: "0 0 24 24",
|
|
2713
2910
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2714
|
-
children: /* @__PURE__ */ (0,
|
|
2911
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2715
2912
|
"path",
|
|
2716
2913
|
{
|
|
2717
2914
|
clipRule: "evenodd",
|
|
@@ -2724,14 +2921,14 @@ var ContentLibraryIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx
|
|
|
2724
2921
|
);
|
|
2725
2922
|
|
|
2726
2923
|
// src/components/Icon/icons/ControlsIcon.tsx
|
|
2727
|
-
var
|
|
2728
|
-
var ControlsIcon = (props) => /* @__PURE__ */ (0,
|
|
2924
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
2925
|
+
var ControlsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2729
2926
|
"svg",
|
|
2730
2927
|
{
|
|
2731
2928
|
...props,
|
|
2732
2929
|
viewBox: "0 0 24 24",
|
|
2733
2930
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2734
|
-
children: /* @__PURE__ */ (0,
|
|
2931
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2735
2932
|
"path",
|
|
2736
2933
|
{
|
|
2737
2934
|
clipRule: "evenodd",
|
|
@@ -2744,14 +2941,14 @@ var ControlsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
|
2744
2941
|
);
|
|
2745
2942
|
|
|
2746
2943
|
// src/components/Icon/icons/CursorClickIcon.tsx
|
|
2747
|
-
var
|
|
2748
|
-
var CursorClickIcon = (props) => /* @__PURE__ */ (0,
|
|
2944
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
2945
|
+
var CursorClickIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2749
2946
|
"svg",
|
|
2750
2947
|
{
|
|
2751
2948
|
...props,
|
|
2752
2949
|
viewBox: "0 0 24 24",
|
|
2753
2950
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2754
|
-
children: /* @__PURE__ */ (0,
|
|
2951
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2755
2952
|
"path",
|
|
2756
2953
|
{
|
|
2757
2954
|
clipRule: "evenodd",
|
|
@@ -2764,14 +2961,14 @@ var CursorClickIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
|
2764
2961
|
);
|
|
2765
2962
|
|
|
2766
2963
|
// src/components/Icon/icons/DeleteIcon.tsx
|
|
2767
|
-
var
|
|
2768
|
-
var DeleteIcon = (props) => /* @__PURE__ */ (0,
|
|
2964
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
2965
|
+
var DeleteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2769
2966
|
"svg",
|
|
2770
2967
|
{
|
|
2771
2968
|
...props,
|
|
2772
2969
|
viewBox: "0 0 24 24",
|
|
2773
2970
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2774
|
-
children: /* @__PURE__ */ (0,
|
|
2971
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2775
2972
|
"path",
|
|
2776
2973
|
{
|
|
2777
2974
|
clipRule: "evenodd",
|
|
@@ -2784,14 +2981,14 @@ var DeleteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
|
2784
2981
|
);
|
|
2785
2982
|
|
|
2786
2983
|
// src/components/Icon/icons/DesktopIcon.tsx
|
|
2787
|
-
var
|
|
2788
|
-
var DesktopIcon = (props) => /* @__PURE__ */ (0,
|
|
2984
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
2985
|
+
var DesktopIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2789
2986
|
"svg",
|
|
2790
2987
|
{
|
|
2791
2988
|
...props,
|
|
2792
2989
|
viewBox: "0 0 24 24",
|
|
2793
2990
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2794
|
-
children: /* @__PURE__ */ (0,
|
|
2991
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2795
2992
|
"path",
|
|
2796
2993
|
{
|
|
2797
2994
|
clipRule: "evenodd",
|
|
@@ -2804,14 +3001,14 @@ var DesktopIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
|
2804
3001
|
);
|
|
2805
3002
|
|
|
2806
3003
|
// src/components/Icon/icons/DotsHorizontalIcon.tsx
|
|
2807
|
-
var
|
|
2808
|
-
var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0,
|
|
3004
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
3005
|
+
var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2809
3006
|
"svg",
|
|
2810
3007
|
{
|
|
2811
3008
|
...props,
|
|
2812
3009
|
viewBox: "0 0 24 24",
|
|
2813
3010
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2814
|
-
children: /* @__PURE__ */ (0,
|
|
3011
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2815
3012
|
"path",
|
|
2816
3013
|
{
|
|
2817
3014
|
clipRule: "evenodd",
|
|
@@ -2824,14 +3021,14 @@ var DotsHorizontalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime54.jsx
|
|
|
2824
3021
|
);
|
|
2825
3022
|
|
|
2826
3023
|
// src/components/Icon/icons/DownloadIcon.tsx
|
|
2827
|
-
var
|
|
2828
|
-
var DownloadIcon = (props) => /* @__PURE__ */ (0,
|
|
3024
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
3025
|
+
var DownloadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2829
3026
|
"svg",
|
|
2830
3027
|
{
|
|
2831
3028
|
...props,
|
|
2832
3029
|
viewBox: "0 0 24 24",
|
|
2833
3030
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2834
|
-
children: /* @__PURE__ */ (0,
|
|
3031
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2835
3032
|
"path",
|
|
2836
3033
|
{
|
|
2837
3034
|
clipRule: "evenodd",
|
|
@@ -2844,14 +3041,14 @@ var DownloadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
|
2844
3041
|
);
|
|
2845
3042
|
|
|
2846
3043
|
// src/components/Icon/icons/EditTranscriptIcon.tsx
|
|
2847
|
-
var
|
|
2848
|
-
var EditTranscriptIcon = (props) => /* @__PURE__ */ (0,
|
|
3044
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
3045
|
+
var EditTranscriptIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2849
3046
|
"svg",
|
|
2850
3047
|
{
|
|
2851
3048
|
...props,
|
|
2852
3049
|
viewBox: "0 0 24 24",
|
|
2853
3050
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2854
|
-
children: /* @__PURE__ */ (0,
|
|
3051
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2855
3052
|
"path",
|
|
2856
3053
|
{
|
|
2857
3054
|
clipRule: "evenodd",
|
|
@@ -2864,14 +3061,14 @@ var EditTranscriptIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime56.jsx
|
|
|
2864
3061
|
);
|
|
2865
3062
|
|
|
2866
3063
|
// src/components/Icon/icons/EllipsesVerticalIcon.tsx
|
|
2867
|
-
var
|
|
2868
|
-
var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0,
|
|
3064
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
3065
|
+
var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2869
3066
|
"svg",
|
|
2870
3067
|
{
|
|
2871
3068
|
...props,
|
|
2872
3069
|
viewBox: "0 0 24 24",
|
|
2873
3070
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2874
|
-
children: /* @__PURE__ */ (0,
|
|
3071
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2875
3072
|
"path",
|
|
2876
3073
|
{
|
|
2877
3074
|
clipRule: "evenodd",
|
|
@@ -2884,14 +3081,14 @@ var EllipsesVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime57.j
|
|
|
2884
3081
|
);
|
|
2885
3082
|
|
|
2886
3083
|
// src/components/Icon/icons/EmbedIcon.tsx
|
|
2887
|
-
var
|
|
2888
|
-
var EmbedIcon = (props) => /* @__PURE__ */ (0,
|
|
3084
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
3085
|
+
var EmbedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2889
3086
|
"svg",
|
|
2890
3087
|
{
|
|
2891
3088
|
...props,
|
|
2892
3089
|
viewBox: "0 0 24 24",
|
|
2893
3090
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2894
|
-
children: /* @__PURE__ */ (0,
|
|
3091
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2895
3092
|
"path",
|
|
2896
3093
|
{
|
|
2897
3094
|
clipRule: "evenodd",
|
|
@@ -2904,14 +3101,14 @@ var EmbedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
|
2904
3101
|
);
|
|
2905
3102
|
|
|
2906
3103
|
// src/components/Icon/icons/EnvelopeIcon.tsx
|
|
2907
|
-
var
|
|
2908
|
-
var EnvelopeIcon = (props) => /* @__PURE__ */ (0,
|
|
3104
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
3105
|
+
var EnvelopeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2909
3106
|
"svg",
|
|
2910
3107
|
{
|
|
2911
3108
|
...props,
|
|
2912
3109
|
viewBox: "0 0 24 24",
|
|
2913
3110
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2914
|
-
children: /* @__PURE__ */ (0,
|
|
3111
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2915
3112
|
"path",
|
|
2916
3113
|
{
|
|
2917
3114
|
clipRule: "evenodd",
|
|
@@ -2924,14 +3121,14 @@ var EnvelopeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
|
2924
3121
|
);
|
|
2925
3122
|
|
|
2926
3123
|
// src/components/Icon/icons/ErrorIcon.tsx
|
|
2927
|
-
var
|
|
2928
|
-
var ErrorIcon = (props) => /* @__PURE__ */ (0,
|
|
3124
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
3125
|
+
var ErrorIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2929
3126
|
"svg",
|
|
2930
3127
|
{
|
|
2931
3128
|
...props,
|
|
2932
3129
|
viewBox: "0 0 24 24",
|
|
2933
3130
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2934
|
-
children: /* @__PURE__ */ (0,
|
|
3131
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2935
3132
|
"path",
|
|
2936
3133
|
{
|
|
2937
3134
|
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",
|
|
@@ -2942,14 +3139,14 @@ var ErrorIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
|
2942
3139
|
);
|
|
2943
3140
|
|
|
2944
3141
|
// src/components/Icon/icons/ExpandDiagonalIcon.tsx
|
|
2945
|
-
var
|
|
2946
|
-
var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0,
|
|
3142
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
3143
|
+
var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2947
3144
|
"svg",
|
|
2948
3145
|
{
|
|
2949
3146
|
...props,
|
|
2950
3147
|
viewBox: "0 0 24 24",
|
|
2951
3148
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2952
|
-
children: /* @__PURE__ */ (0,
|
|
3149
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2953
3150
|
"path",
|
|
2954
3151
|
{
|
|
2955
3152
|
clipRule: "evenodd",
|
|
@@ -2962,14 +3159,14 @@ var ExpandDiagonalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx
|
|
|
2962
3159
|
);
|
|
2963
3160
|
|
|
2964
3161
|
// src/components/Icon/icons/ExpandIcon.tsx
|
|
2965
|
-
var
|
|
2966
|
-
var ExpandIcon = (props) => /* @__PURE__ */ (0,
|
|
3162
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
3163
|
+
var ExpandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
2967
3164
|
"svg",
|
|
2968
3165
|
{
|
|
2969
3166
|
...props,
|
|
2970
3167
|
viewBox: "0 0 24 24",
|
|
2971
3168
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2972
|
-
children: /* @__PURE__ */ (0,
|
|
3169
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
2973
3170
|
"path",
|
|
2974
3171
|
{
|
|
2975
3172
|
clipRule: "evenodd",
|
|
@@ -2982,14 +3179,14 @@ var ExpandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
|
2982
3179
|
);
|
|
2983
3180
|
|
|
2984
3181
|
// src/components/Icon/icons/FavoriteIcon.tsx
|
|
2985
|
-
var
|
|
2986
|
-
var FavoriteIcon = (props) => /* @__PURE__ */ (0,
|
|
3182
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
3183
|
+
var FavoriteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
2987
3184
|
"svg",
|
|
2988
3185
|
{
|
|
2989
3186
|
...props,
|
|
2990
3187
|
viewBox: "0 0 24 24",
|
|
2991
3188
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2992
|
-
children: /* @__PURE__ */ (0,
|
|
3189
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
2993
3190
|
"path",
|
|
2994
3191
|
{
|
|
2995
3192
|
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",
|
|
@@ -3000,14 +3197,14 @@ var FavoriteIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
|
3000
3197
|
);
|
|
3001
3198
|
|
|
3002
3199
|
// src/components/Icon/icons/FavoriteOutlineIcon.tsx
|
|
3003
|
-
var
|
|
3004
|
-
var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0,
|
|
3200
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
3201
|
+
var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3005
3202
|
"svg",
|
|
3006
3203
|
{
|
|
3007
3204
|
...props,
|
|
3008
3205
|
viewBox: "0 0 24 24",
|
|
3009
3206
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3010
|
-
children: /* @__PURE__ */ (0,
|
|
3207
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3011
3208
|
"path",
|
|
3012
3209
|
{
|
|
3013
3210
|
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",
|
|
@@ -3021,14 +3218,14 @@ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime64.js
|
|
|
3021
3218
|
);
|
|
3022
3219
|
|
|
3023
3220
|
// src/components/Icon/icons/FileTreeIcon.tsx
|
|
3024
|
-
var
|
|
3025
|
-
var FileTreeIcon = (props) => /* @__PURE__ */ (0,
|
|
3221
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
3222
|
+
var FileTreeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3026
3223
|
"svg",
|
|
3027
3224
|
{
|
|
3028
3225
|
...props,
|
|
3029
3226
|
viewBox: "0 0 24 24",
|
|
3030
3227
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3031
|
-
children: /* @__PURE__ */ (0,
|
|
3228
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3032
3229
|
"path",
|
|
3033
3230
|
{
|
|
3034
3231
|
clipRule: "evenodd",
|
|
@@ -3041,14 +3238,14 @@ var FileTreeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
|
3041
3238
|
);
|
|
3042
3239
|
|
|
3043
3240
|
// src/components/Icon/icons/FilterIcon.tsx
|
|
3044
|
-
var
|
|
3045
|
-
var FilterIcon = (props) => /* @__PURE__ */ (0,
|
|
3241
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
3242
|
+
var FilterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3046
3243
|
"svg",
|
|
3047
3244
|
{
|
|
3048
3245
|
...props,
|
|
3049
3246
|
viewBox: "0 0 24 24",
|
|
3050
3247
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3051
|
-
children: /* @__PURE__ */ (0,
|
|
3248
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3052
3249
|
"path",
|
|
3053
3250
|
{
|
|
3054
3251
|
clipRule: "evenodd",
|
|
@@ -3061,14 +3258,14 @@ var FilterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
|
3061
3258
|
);
|
|
3062
3259
|
|
|
3063
3260
|
// src/components/Icon/icons/FontsIcon.tsx
|
|
3064
|
-
var
|
|
3065
|
-
var FontsIcon = (props) => /* @__PURE__ */ (0,
|
|
3261
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3262
|
+
var FontsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3066
3263
|
"svg",
|
|
3067
3264
|
{
|
|
3068
3265
|
...props,
|
|
3069
3266
|
viewBox: "0 0 24 24",
|
|
3070
3267
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3071
|
-
children: /* @__PURE__ */ (0,
|
|
3268
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3072
3269
|
"path",
|
|
3073
3270
|
{
|
|
3074
3271
|
clipRule: "evenodd",
|
|
@@ -3081,14 +3278,14 @@ var FontsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
|
3081
3278
|
);
|
|
3082
3279
|
|
|
3083
3280
|
// src/components/Icon/icons/FullScreenIcon.tsx
|
|
3084
|
-
var
|
|
3085
|
-
var FullScreenIcon = (props) => /* @__PURE__ */ (0,
|
|
3281
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
3282
|
+
var FullScreenIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3086
3283
|
"svg",
|
|
3087
3284
|
{
|
|
3088
3285
|
...props,
|
|
3089
3286
|
viewBox: "0 0 24 24",
|
|
3090
3287
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3091
|
-
children: /* @__PURE__ */ (0,
|
|
3288
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3092
3289
|
"path",
|
|
3093
3290
|
{
|
|
3094
3291
|
clipRule: "evenodd",
|
|
@@ -3101,14 +3298,14 @@ var FullScreenIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
|
3101
3298
|
);
|
|
3102
3299
|
|
|
3103
3300
|
// src/components/Icon/icons/GearIcon.tsx
|
|
3104
|
-
var
|
|
3105
|
-
var GearIcon = (props) => /* @__PURE__ */ (0,
|
|
3301
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
3302
|
+
var GearIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3106
3303
|
"svg",
|
|
3107
3304
|
{
|
|
3108
3305
|
...props,
|
|
3109
3306
|
viewBox: "0 0 24 24",
|
|
3110
3307
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3111
|
-
children: /* @__PURE__ */ (0,
|
|
3308
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3112
3309
|
"path",
|
|
3113
3310
|
{
|
|
3114
3311
|
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",
|
|
@@ -3119,14 +3316,14 @@ var GearIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
|
3119
3316
|
);
|
|
3120
3317
|
|
|
3121
3318
|
// src/components/Icon/icons/GettingStartedIcon.tsx
|
|
3122
|
-
var
|
|
3123
|
-
var GettingStartedIcon = (props) => /* @__PURE__ */ (0,
|
|
3319
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
3320
|
+
var GettingStartedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3124
3321
|
"svg",
|
|
3125
3322
|
{
|
|
3126
3323
|
...props,
|
|
3127
3324
|
viewBox: "0 0 24 24",
|
|
3128
3325
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3129
|
-
children: /* @__PURE__ */ (0,
|
|
3326
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3130
3327
|
"path",
|
|
3131
3328
|
{
|
|
3132
3329
|
clipRule: "evenodd",
|
|
@@ -3139,14 +3336,14 @@ var GettingStartedIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx
|
|
|
3139
3336
|
);
|
|
3140
3337
|
|
|
3141
3338
|
// src/components/Icon/icons/GridIcon.tsx
|
|
3142
|
-
var
|
|
3143
|
-
var GridIcon = (props) => /* @__PURE__ */ (0,
|
|
3339
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
3340
|
+
var GridIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3144
3341
|
"svg",
|
|
3145
3342
|
{
|
|
3146
3343
|
...props,
|
|
3147
3344
|
viewBox: "0 0 24 24",
|
|
3148
3345
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3149
|
-
children: /* @__PURE__ */ (0,
|
|
3346
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3150
3347
|
"path",
|
|
3151
3348
|
{
|
|
3152
3349
|
clipRule: "evenodd",
|
|
@@ -3159,14 +3356,14 @@ var GridIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
|
3159
3356
|
);
|
|
3160
3357
|
|
|
3161
3358
|
// src/components/Icon/icons/GripDotsVerticalIcon.tsx
|
|
3162
|
-
var
|
|
3163
|
-
var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0,
|
|
3359
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
3360
|
+
var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
3164
3361
|
"svg",
|
|
3165
3362
|
{
|
|
3166
3363
|
...props,
|
|
3167
3364
|
viewBox: "0 0 24 24",
|
|
3168
3365
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3169
|
-
children: /* @__PURE__ */ (0,
|
|
3366
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
3170
3367
|
"path",
|
|
3171
3368
|
{
|
|
3172
3369
|
clipRule: "evenodd",
|
|
@@ -3179,14 +3376,14 @@ var GripDotsVerticalIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime72.j
|
|
|
3179
3376
|
);
|
|
3180
3377
|
|
|
3181
3378
|
// src/components/Icon/icons/HelpCenterIcon.tsx
|
|
3182
|
-
var
|
|
3183
|
-
var HelpCenterIcon = (props) => /* @__PURE__ */ (0,
|
|
3379
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
3380
|
+
var HelpCenterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3184
3381
|
"svg",
|
|
3185
3382
|
{
|
|
3186
3383
|
...props,
|
|
3187
3384
|
viewBox: "0 0 24 24",
|
|
3188
3385
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3189
|
-
children: /* @__PURE__ */ (0,
|
|
3386
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3190
3387
|
"path",
|
|
3191
3388
|
{
|
|
3192
3389
|
clipRule: "evenodd",
|
|
@@ -3199,14 +3396,14 @@ var HelpCenterIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
|
3199
3396
|
);
|
|
3200
3397
|
|
|
3201
3398
|
// src/components/Icon/icons/HideIcon.tsx
|
|
3202
|
-
var
|
|
3203
|
-
var HideIcon = (props) => /* @__PURE__ */ (0,
|
|
3399
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
3400
|
+
var HideIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3204
3401
|
"svg",
|
|
3205
3402
|
{
|
|
3206
3403
|
...props,
|
|
3207
3404
|
viewBox: "0 0 24 24",
|
|
3208
3405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3209
|
-
children: /* @__PURE__ */ (0,
|
|
3406
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3210
3407
|
"path",
|
|
3211
3408
|
{
|
|
3212
3409
|
clipRule: "evenodd",
|
|
@@ -3219,14 +3416,14 @@ var HideIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
|
3219
3416
|
);
|
|
3220
3417
|
|
|
3221
3418
|
// src/components/Icon/icons/HomeIcon.tsx
|
|
3222
|
-
var
|
|
3223
|
-
var HomeIcon = (props) => /* @__PURE__ */ (0,
|
|
3419
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
3420
|
+
var HomeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3224
3421
|
"svg",
|
|
3225
3422
|
{
|
|
3226
3423
|
...props,
|
|
3227
3424
|
viewBox: "0 0 24 24",
|
|
3228
3425
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3229
|
-
children: /* @__PURE__ */ (0,
|
|
3426
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3230
3427
|
"path",
|
|
3231
3428
|
{
|
|
3232
3429
|
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",
|
|
@@ -3237,14 +3434,14 @@ var HomeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
|
3237
3434
|
);
|
|
3238
3435
|
|
|
3239
3436
|
// src/components/Icon/icons/HourglassIcon.tsx
|
|
3240
|
-
var
|
|
3241
|
-
var HourglassIcon = (props) => /* @__PURE__ */ (0,
|
|
3437
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
3438
|
+
var HourglassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
3242
3439
|
"svg",
|
|
3243
3440
|
{
|
|
3244
3441
|
...props,
|
|
3245
3442
|
viewBox: "0 0 24 24",
|
|
3246
3443
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3247
|
-
children: /* @__PURE__ */ (0,
|
|
3444
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
3248
3445
|
"path",
|
|
3249
3446
|
{
|
|
3250
3447
|
clipRule: "evenodd",
|
|
@@ -3257,14 +3454,14 @@ var HourglassIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
|
3257
3454
|
);
|
|
3258
3455
|
|
|
3259
3456
|
// src/components/Icon/icons/InfoIcon.tsx
|
|
3260
|
-
var
|
|
3261
|
-
var InfoIcon = (props) => /* @__PURE__ */ (0,
|
|
3457
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
3458
|
+
var InfoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3262
3459
|
"svg",
|
|
3263
3460
|
{
|
|
3264
3461
|
...props,
|
|
3265
3462
|
viewBox: "0 0 24 24",
|
|
3266
3463
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3267
|
-
children: /* @__PURE__ */ (0,
|
|
3464
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3268
3465
|
"path",
|
|
3269
3466
|
{
|
|
3270
3467
|
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",
|
|
@@ -3275,14 +3472,14 @@ var InfoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
|
3275
3472
|
);
|
|
3276
3473
|
|
|
3277
3474
|
// src/components/Icon/icons/IntegrationsIcon.tsx
|
|
3278
|
-
var
|
|
3279
|
-
var IntegrationsIcon = (props) => /* @__PURE__ */ (0,
|
|
3475
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
3476
|
+
var IntegrationsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3280
3477
|
"svg",
|
|
3281
3478
|
{
|
|
3282
3479
|
...props,
|
|
3283
3480
|
viewBox: "0 0 24 24",
|
|
3284
3481
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3285
|
-
children: /* @__PURE__ */ (0,
|
|
3482
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3286
3483
|
"path",
|
|
3287
3484
|
{
|
|
3288
3485
|
clipRule: "evenodd",
|
|
@@ -3295,14 +3492,14 @@ var IntegrationsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
|
3295
3492
|
);
|
|
3296
3493
|
|
|
3297
3494
|
// src/components/Icon/icons/LeaveIcon.tsx
|
|
3298
|
-
var
|
|
3299
|
-
var LeaveIcon = (props) => /* @__PURE__ */ (0,
|
|
3495
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
3496
|
+
var LeaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3300
3497
|
"svg",
|
|
3301
3498
|
{
|
|
3302
3499
|
...props,
|
|
3303
3500
|
viewBox: "0 0 24 24",
|
|
3304
3501
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3305
|
-
children: /* @__PURE__ */ (0,
|
|
3502
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3306
3503
|
"path",
|
|
3307
3504
|
{
|
|
3308
3505
|
clipRule: "evenodd",
|
|
@@ -3315,14 +3512,14 @@ var LeaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
|
3315
3512
|
);
|
|
3316
3513
|
|
|
3317
3514
|
// src/components/Icon/icons/LinkIcon.tsx
|
|
3318
|
-
var
|
|
3319
|
-
var LinkIcon = (props) => /* @__PURE__ */ (0,
|
|
3515
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
3516
|
+
var LinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3320
3517
|
"svg",
|
|
3321
3518
|
{
|
|
3322
3519
|
...props,
|
|
3323
3520
|
viewBox: "0 0 24 24",
|
|
3324
3521
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3325
|
-
children: /* @__PURE__ */ (0,
|
|
3522
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3326
3523
|
"path",
|
|
3327
3524
|
{
|
|
3328
3525
|
clipRule: "evenodd",
|
|
@@ -3335,14 +3532,14 @@ var LinkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
|
3335
3532
|
);
|
|
3336
3533
|
|
|
3337
3534
|
// src/components/Icon/icons/ListIcon.tsx
|
|
3338
|
-
var
|
|
3339
|
-
var ListIcon = (props) => /* @__PURE__ */ (0,
|
|
3535
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
3536
|
+
var ListIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
3340
3537
|
"svg",
|
|
3341
3538
|
{
|
|
3342
3539
|
...props,
|
|
3343
3540
|
viewBox: "0 0 24 24",
|
|
3344
3541
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3345
|
-
children: /* @__PURE__ */ (0,
|
|
3542
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
3346
3543
|
"path",
|
|
3347
3544
|
{
|
|
3348
3545
|
clipRule: "evenodd",
|
|
@@ -3355,14 +3552,14 @@ var ListIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
|
3355
3552
|
);
|
|
3356
3553
|
|
|
3357
3554
|
// src/components/Icon/icons/LiveIcon.tsx
|
|
3358
|
-
var
|
|
3359
|
-
var LiveIcon = (props) => /* @__PURE__ */ (0,
|
|
3555
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
3556
|
+
var LiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
3360
3557
|
"svg",
|
|
3361
3558
|
{
|
|
3362
3559
|
...props,
|
|
3363
3560
|
viewBox: "0 0 24 24",
|
|
3364
3561
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3365
|
-
children: /* @__PURE__ */ (0,
|
|
3562
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
3366
3563
|
"path",
|
|
3367
3564
|
{
|
|
3368
3565
|
clipRule: "evenodd",
|
|
@@ -3375,14 +3572,14 @@ var LiveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
|
3375
3572
|
);
|
|
3376
3573
|
|
|
3377
3574
|
// src/components/Icon/icons/LockIcon.tsx
|
|
3378
|
-
var
|
|
3379
|
-
var LockIcon = (props) => /* @__PURE__ */ (0,
|
|
3575
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
3576
|
+
var LockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
3380
3577
|
"svg",
|
|
3381
3578
|
{
|
|
3382
3579
|
...props,
|
|
3383
3580
|
viewBox: "0 0 24 24",
|
|
3384
3581
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3385
|
-
children: /* @__PURE__ */ (0,
|
|
3582
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
3386
3583
|
"path",
|
|
3387
3584
|
{
|
|
3388
3585
|
clipRule: "evenodd",
|
|
@@ -3395,14 +3592,14 @@ var LockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
|
3395
3592
|
);
|
|
3396
3593
|
|
|
3397
3594
|
// src/components/Icon/icons/LogoutIcon.tsx
|
|
3398
|
-
var
|
|
3399
|
-
var LogoutIcon = (props) => /* @__PURE__ */ (0,
|
|
3595
|
+
var import_jsx_runtime86 = require("react/jsx-runtime");
|
|
3596
|
+
var LogoutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
3400
3597
|
"svg",
|
|
3401
3598
|
{
|
|
3402
3599
|
...props,
|
|
3403
3600
|
viewBox: "0 0 24 24",
|
|
3404
3601
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3405
|
-
children: /* @__PURE__ */ (0,
|
|
3602
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
3406
3603
|
"path",
|
|
3407
3604
|
{
|
|
3408
3605
|
clipRule: "evenodd",
|
|
@@ -3415,14 +3612,14 @@ var LogoutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
|
3415
3612
|
);
|
|
3416
3613
|
|
|
3417
3614
|
// src/components/Icon/icons/MaximizeIcon.tsx
|
|
3418
|
-
var
|
|
3419
|
-
var MaximizeIcon = (props) => /* @__PURE__ */ (0,
|
|
3615
|
+
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
3616
|
+
var MaximizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
3420
3617
|
"svg",
|
|
3421
3618
|
{
|
|
3422
3619
|
...props,
|
|
3423
3620
|
viewBox: "0 0 24 24",
|
|
3424
3621
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3425
|
-
children: /* @__PURE__ */ (0,
|
|
3622
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
3426
3623
|
"path",
|
|
3427
3624
|
{
|
|
3428
3625
|
clipRule: "evenodd",
|
|
@@ -3435,14 +3632,14 @@ var MaximizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
|
3435
3632
|
);
|
|
3436
3633
|
|
|
3437
3634
|
// src/components/Icon/icons/MediaIcon.tsx
|
|
3438
|
-
var
|
|
3439
|
-
var MediaIcon = (props) => /* @__PURE__ */ (0,
|
|
3635
|
+
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
3636
|
+
var MediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
3440
3637
|
"svg",
|
|
3441
3638
|
{
|
|
3442
3639
|
...props,
|
|
3443
3640
|
viewBox: "0 0 24 24",
|
|
3444
3641
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3445
|
-
children: /* @__PURE__ */ (0,
|
|
3642
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
3446
3643
|
"path",
|
|
3447
3644
|
{
|
|
3448
3645
|
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",
|
|
@@ -3453,14 +3650,14 @@ var MediaIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
|
3453
3650
|
);
|
|
3454
3651
|
|
|
3455
3652
|
// src/components/Icon/icons/MenuIcon.tsx
|
|
3456
|
-
var
|
|
3457
|
-
var MenuIcon = (props) => /* @__PURE__ */ (0,
|
|
3653
|
+
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
3654
|
+
var MenuIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
3458
3655
|
"svg",
|
|
3459
3656
|
{
|
|
3460
3657
|
...props,
|
|
3461
3658
|
viewBox: "0 0 24 24",
|
|
3462
3659
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3463
|
-
children: /* @__PURE__ */ (0,
|
|
3660
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
3464
3661
|
"path",
|
|
3465
3662
|
{
|
|
3466
3663
|
clipRule: "evenodd",
|
|
@@ -3473,14 +3670,14 @@ var MenuIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
|
3473
3670
|
);
|
|
3474
3671
|
|
|
3475
3672
|
// src/components/Icon/icons/MicIcon.tsx
|
|
3476
|
-
var
|
|
3477
|
-
var MicIcon = (props) => /* @__PURE__ */ (0,
|
|
3673
|
+
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
3674
|
+
var MicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
3478
3675
|
"svg",
|
|
3479
3676
|
{
|
|
3480
3677
|
...props,
|
|
3481
3678
|
viewBox: "0 0 24 24",
|
|
3482
3679
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3483
|
-
children: /* @__PURE__ */ (0,
|
|
3680
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
3484
3681
|
"path",
|
|
3485
3682
|
{
|
|
3486
3683
|
clipRule: "evenodd",
|
|
@@ -3493,14 +3690,14 @@ var MicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
|
3493
3690
|
);
|
|
3494
3691
|
|
|
3495
3692
|
// src/components/Icon/icons/MicOffIcon.tsx
|
|
3496
|
-
var
|
|
3497
|
-
var MicOffIcon = (props) => /* @__PURE__ */ (0,
|
|
3693
|
+
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
3694
|
+
var MicOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
3498
3695
|
"svg",
|
|
3499
3696
|
{
|
|
3500
3697
|
...props,
|
|
3501
3698
|
viewBox: "0 0 24 24",
|
|
3502
3699
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3503
|
-
children: /* @__PURE__ */ (0,
|
|
3700
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
3504
3701
|
"path",
|
|
3505
3702
|
{
|
|
3506
3703
|
clipRule: "evenodd",
|
|
@@ -3513,14 +3710,14 @@ var MicOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
|
3513
3710
|
);
|
|
3514
3711
|
|
|
3515
3712
|
// src/components/Icon/icons/MinimizeIcon.tsx
|
|
3516
|
-
var
|
|
3517
|
-
var MinimizeIcon = (props) => /* @__PURE__ */ (0,
|
|
3713
|
+
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
3714
|
+
var MinimizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
3518
3715
|
"svg",
|
|
3519
3716
|
{
|
|
3520
3717
|
...props,
|
|
3521
3718
|
viewBox: "0 0 24 24",
|
|
3522
3719
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3523
|
-
children: /* @__PURE__ */ (0,
|
|
3720
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
3524
3721
|
"path",
|
|
3525
3722
|
{
|
|
3526
3723
|
clipRule: "evenodd",
|
|
@@ -3533,14 +3730,14 @@ var MinimizeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
|
3533
3730
|
);
|
|
3534
3731
|
|
|
3535
3732
|
// src/components/Icon/icons/MinusCircleIcon.tsx
|
|
3536
|
-
var
|
|
3537
|
-
var MinusCircleIcon = (props) => /* @__PURE__ */ (0,
|
|
3733
|
+
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
3734
|
+
var MinusCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
3538
3735
|
"svg",
|
|
3539
3736
|
{
|
|
3540
3737
|
...props,
|
|
3541
3738
|
viewBox: "0 0 24 24",
|
|
3542
3739
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3543
|
-
children: /* @__PURE__ */ (0,
|
|
3740
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
3544
3741
|
"path",
|
|
3545
3742
|
{
|
|
3546
3743
|
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",
|
|
@@ -3551,14 +3748,14 @@ var MinusCircleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
|
3551
3748
|
);
|
|
3552
3749
|
|
|
3553
3750
|
// src/components/Icon/icons/MobileIcon.tsx
|
|
3554
|
-
var
|
|
3555
|
-
var MobileIcon = (props) => /* @__PURE__ */ (0,
|
|
3751
|
+
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
3752
|
+
var MobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
3556
3753
|
"svg",
|
|
3557
3754
|
{
|
|
3558
3755
|
...props,
|
|
3559
3756
|
viewBox: "0 0 24 24",
|
|
3560
3757
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3561
|
-
children: /* @__PURE__ */ (0,
|
|
3758
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
3562
3759
|
"path",
|
|
3563
3760
|
{
|
|
3564
3761
|
clipRule: "evenodd",
|
|
@@ -3571,14 +3768,14 @@ var MobileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
|
3571
3768
|
);
|
|
3572
3769
|
|
|
3573
3770
|
// src/components/Icon/icons/MoreOptionsIcon.tsx
|
|
3574
|
-
var
|
|
3575
|
-
var MoreOptionsIcon = (props) => /* @__PURE__ */ (0,
|
|
3771
|
+
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
3772
|
+
var MoreOptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
3576
3773
|
"svg",
|
|
3577
3774
|
{
|
|
3578
3775
|
...props,
|
|
3579
3776
|
viewBox: "0 0 24 24",
|
|
3580
3777
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3581
|
-
children: /* @__PURE__ */ (0,
|
|
3778
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
3582
3779
|
"path",
|
|
3583
3780
|
{
|
|
3584
3781
|
clipRule: "evenodd",
|
|
@@ -3591,14 +3788,14 @@ var MoreOptionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
|
3591
3788
|
);
|
|
3592
3789
|
|
|
3593
3790
|
// src/components/Icon/icons/MoveLeftIcon.tsx
|
|
3594
|
-
var
|
|
3595
|
-
var MoveLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
3791
|
+
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
3792
|
+
var MoveLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3596
3793
|
"svg",
|
|
3597
3794
|
{
|
|
3598
3795
|
...props,
|
|
3599
3796
|
viewBox: "0 0 24 24",
|
|
3600
3797
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3601
|
-
children: /* @__PURE__ */ (0,
|
|
3798
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
3602
3799
|
"path",
|
|
3603
3800
|
{
|
|
3604
3801
|
clipRule: "evenodd",
|
|
@@ -3611,14 +3808,14 @@ var MoveLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
|
3611
3808
|
);
|
|
3612
3809
|
|
|
3613
3810
|
// src/components/Icon/icons/MoveRightIcon.tsx
|
|
3614
|
-
var
|
|
3615
|
-
var MoveRightIcon = (props) => /* @__PURE__ */ (0,
|
|
3811
|
+
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
3812
|
+
var MoveRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3616
3813
|
"svg",
|
|
3617
3814
|
{
|
|
3618
3815
|
...props,
|
|
3619
3816
|
viewBox: "0 0 24 24",
|
|
3620
3817
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3621
|
-
children: /* @__PURE__ */ (0,
|
|
3818
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3622
3819
|
"path",
|
|
3623
3820
|
{
|
|
3624
3821
|
clipRule: "evenodd",
|
|
@@ -3631,14 +3828,14 @@ var MoveRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
|
3631
3828
|
);
|
|
3632
3829
|
|
|
3633
3830
|
// src/components/Icon/icons/MusicIcon.tsx
|
|
3634
|
-
var
|
|
3635
|
-
var MusicIcon = (props) => /* @__PURE__ */ (0,
|
|
3831
|
+
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
3832
|
+
var MusicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
3636
3833
|
"svg",
|
|
3637
3834
|
{
|
|
3638
3835
|
...props,
|
|
3639
3836
|
viewBox: "0 0 24 24",
|
|
3640
3837
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3641
|
-
children: /* @__PURE__ */ (0,
|
|
3838
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
3642
3839
|
"path",
|
|
3643
3840
|
{
|
|
3644
3841
|
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",
|
|
@@ -3649,14 +3846,14 @@ var MusicIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
|
3649
3846
|
);
|
|
3650
3847
|
|
|
3651
3848
|
// src/components/Icon/icons/OpenNewIcon.tsx
|
|
3652
|
-
var
|
|
3653
|
-
var OpenNewIcon = (props) => /* @__PURE__ */ (0,
|
|
3849
|
+
var import_jsx_runtime99 = require("react/jsx-runtime");
|
|
3850
|
+
var OpenNewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
3654
3851
|
"svg",
|
|
3655
3852
|
{
|
|
3656
3853
|
...props,
|
|
3657
3854
|
viewBox: "0 0 24 24",
|
|
3658
3855
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3659
|
-
children: /* @__PURE__ */ (0,
|
|
3856
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
3660
3857
|
"path",
|
|
3661
3858
|
{
|
|
3662
3859
|
clipRule: "evenodd",
|
|
@@ -3669,14 +3866,14 @@ var OpenNewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
|
3669
3866
|
);
|
|
3670
3867
|
|
|
3671
3868
|
// src/components/Icon/icons/OverviewIcon.tsx
|
|
3672
|
-
var
|
|
3673
|
-
var OverviewIcon = (props) => /* @__PURE__ */ (0,
|
|
3869
|
+
var import_jsx_runtime100 = require("react/jsx-runtime");
|
|
3870
|
+
var OverviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
3674
3871
|
"svg",
|
|
3675
3872
|
{
|
|
3676
3873
|
...props,
|
|
3677
3874
|
viewBox: "0 0 24 24",
|
|
3678
3875
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3679
|
-
children: /* @__PURE__ */ (0,
|
|
3876
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
3680
3877
|
"path",
|
|
3681
3878
|
{
|
|
3682
3879
|
clipRule: "evenodd",
|
|
@@ -3689,14 +3886,14 @@ var OverviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
|
3689
3886
|
);
|
|
3690
3887
|
|
|
3691
3888
|
// src/components/Icon/icons/PageIcon.tsx
|
|
3692
|
-
var
|
|
3693
|
-
var PageIcon = (props) => /* @__PURE__ */ (0,
|
|
3889
|
+
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
3890
|
+
var PageIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
3694
3891
|
"svg",
|
|
3695
3892
|
{
|
|
3696
3893
|
...props,
|
|
3697
3894
|
viewBox: "0 0 24 24",
|
|
3698
3895
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3699
|
-
children: /* @__PURE__ */ (0,
|
|
3896
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
3700
3897
|
"path",
|
|
3701
3898
|
{
|
|
3702
3899
|
clipRule: "evenodd",
|
|
@@ -3709,14 +3906,14 @@ var PageIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
|
3709
3906
|
);
|
|
3710
3907
|
|
|
3711
3908
|
// src/components/Icon/icons/PanelLeftIcon.tsx
|
|
3712
|
-
var
|
|
3713
|
-
var PanelLeftIcon = (props) => /* @__PURE__ */ (0,
|
|
3909
|
+
var import_jsx_runtime102 = require("react/jsx-runtime");
|
|
3910
|
+
var PanelLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
3714
3911
|
"svg",
|
|
3715
3912
|
{
|
|
3716
3913
|
...props,
|
|
3717
3914
|
viewBox: "0 0 24 24",
|
|
3718
3915
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3719
|
-
children: /* @__PURE__ */ (0,
|
|
3916
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
3720
3917
|
"path",
|
|
3721
3918
|
{
|
|
3722
3919
|
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",
|
|
@@ -3727,14 +3924,14 @@ var PanelLeftIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
|
3727
3924
|
);
|
|
3728
3925
|
|
|
3729
3926
|
// src/components/Icon/icons/PanelRightIcon.tsx
|
|
3730
|
-
var
|
|
3731
|
-
var PanelRightIcon = (props) => /* @__PURE__ */ (0,
|
|
3927
|
+
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
3928
|
+
var PanelRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
3732
3929
|
"svg",
|
|
3733
3930
|
{
|
|
3734
3931
|
...props,
|
|
3735
3932
|
viewBox: "0 0 24 24",
|
|
3736
3933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3737
|
-
children: /* @__PURE__ */ (0,
|
|
3934
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
3738
3935
|
"path",
|
|
3739
3936
|
{
|
|
3740
3937
|
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",
|
|
@@ -3745,14 +3942,14 @@ var PanelRightIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
|
3745
3942
|
);
|
|
3746
3943
|
|
|
3747
3944
|
// src/components/Icon/icons/PanelUpIcon.tsx
|
|
3748
|
-
var
|
|
3749
|
-
var PanelUpIcon = (props) => /* @__PURE__ */ (0,
|
|
3945
|
+
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
3946
|
+
var PanelUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
3750
3947
|
"svg",
|
|
3751
3948
|
{
|
|
3752
3949
|
...props,
|
|
3753
3950
|
viewBox: "0 0 24 24",
|
|
3754
3951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3755
|
-
children: /* @__PURE__ */ (0,
|
|
3952
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
3756
3953
|
"path",
|
|
3757
3954
|
{
|
|
3758
3955
|
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",
|
|
@@ -3763,14 +3960,14 @@ var PanelUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
|
3763
3960
|
);
|
|
3764
3961
|
|
|
3765
3962
|
// src/components/Icon/icons/PasswordIcon.tsx
|
|
3766
|
-
var
|
|
3767
|
-
var PasswordIcon = (props) => /* @__PURE__ */ (0,
|
|
3963
|
+
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
3964
|
+
var PasswordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
3768
3965
|
"svg",
|
|
3769
3966
|
{
|
|
3770
3967
|
...props,
|
|
3771
3968
|
viewBox: "0 0 24 24",
|
|
3772
3969
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3773
|
-
children: /* @__PURE__ */ (0,
|
|
3970
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
3774
3971
|
"path",
|
|
3775
3972
|
{
|
|
3776
3973
|
clipRule: "evenodd",
|
|
@@ -3783,14 +3980,14 @@ var PasswordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
|
3783
3980
|
);
|
|
3784
3981
|
|
|
3785
3982
|
// src/components/Icon/icons/PencilIcon.tsx
|
|
3786
|
-
var
|
|
3787
|
-
var PencilIcon = (props) => /* @__PURE__ */ (0,
|
|
3983
|
+
var import_jsx_runtime106 = require("react/jsx-runtime");
|
|
3984
|
+
var PencilIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
3788
3985
|
"svg",
|
|
3789
3986
|
{
|
|
3790
3987
|
...props,
|
|
3791
3988
|
viewBox: "0 0 24 24",
|
|
3792
3989
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3793
|
-
children: /* @__PURE__ */ (0,
|
|
3990
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
3794
3991
|
"path",
|
|
3795
3992
|
{
|
|
3796
3993
|
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",
|
|
@@ -3801,14 +3998,14 @@ var PencilIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
|
3801
3998
|
);
|
|
3802
3999
|
|
|
3803
4000
|
// src/components/Icon/icons/PeopleIcon.tsx
|
|
3804
|
-
var
|
|
3805
|
-
var PeopleIcon = (props) => /* @__PURE__ */ (0,
|
|
4001
|
+
var import_jsx_runtime107 = require("react/jsx-runtime");
|
|
4002
|
+
var PeopleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
3806
4003
|
"svg",
|
|
3807
4004
|
{
|
|
3808
4005
|
...props,
|
|
3809
4006
|
viewBox: "0 0 24 24",
|
|
3810
4007
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3811
|
-
children: /* @__PURE__ */ (0,
|
|
4008
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
3812
4009
|
"path",
|
|
3813
4010
|
{
|
|
3814
4011
|
clipRule: "evenodd",
|
|
@@ -3821,14 +4018,14 @@ var PeopleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
|
3821
4018
|
);
|
|
3822
4019
|
|
|
3823
4020
|
// src/components/Icon/icons/PinIcon.tsx
|
|
3824
|
-
var
|
|
3825
|
-
var PinIcon = (props) => /* @__PURE__ */ (0,
|
|
4021
|
+
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
4022
|
+
var PinIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
3826
4023
|
"svg",
|
|
3827
4024
|
{
|
|
3828
4025
|
...props,
|
|
3829
4026
|
viewBox: "0 0 24 24",
|
|
3830
4027
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3831
|
-
children: /* @__PURE__ */ (0,
|
|
4028
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
3832
4029
|
"path",
|
|
3833
4030
|
{
|
|
3834
4031
|
clipRule: "evenodd",
|
|
@@ -3841,14 +4038,14 @@ var PinIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
|
3841
4038
|
);
|
|
3842
4039
|
|
|
3843
4040
|
// src/components/Icon/icons/PinSlashIcon.tsx
|
|
3844
|
-
var
|
|
3845
|
-
var PinSlashIcon = (props) => /* @__PURE__ */ (0,
|
|
4041
|
+
var import_jsx_runtime109 = require("react/jsx-runtime");
|
|
4042
|
+
var PinSlashIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
3846
4043
|
"svg",
|
|
3847
4044
|
{
|
|
3848
4045
|
...props,
|
|
3849
4046
|
viewBox: "0 0 24 24",
|
|
3850
4047
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3851
|
-
children: /* @__PURE__ */ (0,
|
|
4048
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
3852
4049
|
"path",
|
|
3853
4050
|
{
|
|
3854
4051
|
clipRule: "evenodd",
|
|
@@ -3861,14 +4058,14 @@ var PinSlashIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
|
3861
4058
|
);
|
|
3862
4059
|
|
|
3863
4060
|
// src/components/Icon/icons/PlayIcon.tsx
|
|
3864
|
-
var
|
|
3865
|
-
var PlayIcon = (props) => /* @__PURE__ */ (0,
|
|
4061
|
+
var import_jsx_runtime110 = require("react/jsx-runtime");
|
|
4062
|
+
var PlayIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
3866
4063
|
"svg",
|
|
3867
4064
|
{
|
|
3868
4065
|
...props,
|
|
3869
4066
|
viewBox: "0 0 24 24",
|
|
3870
4067
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3871
|
-
children: /* @__PURE__ */ (0,
|
|
4068
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
3872
4069
|
"path",
|
|
3873
4070
|
{
|
|
3874
4071
|
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",
|
|
@@ -3879,14 +4076,14 @@ var PlayIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
|
3879
4076
|
);
|
|
3880
4077
|
|
|
3881
4078
|
// src/components/Icon/icons/PlayerIcon.tsx
|
|
3882
|
-
var
|
|
3883
|
-
var PlayerIcon = (props) => /* @__PURE__ */ (0,
|
|
4079
|
+
var import_jsx_runtime111 = require("react/jsx-runtime");
|
|
4080
|
+
var PlayerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
3884
4081
|
"svg",
|
|
3885
4082
|
{
|
|
3886
4083
|
...props,
|
|
3887
4084
|
viewBox: "0 0 24 24",
|
|
3888
4085
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3889
|
-
children: /* @__PURE__ */ (0,
|
|
4086
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
3890
4087
|
"path",
|
|
3891
4088
|
{
|
|
3892
4089
|
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",
|
|
@@ -3897,14 +4094,14 @@ var PlayerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
|
3897
4094
|
);
|
|
3898
4095
|
|
|
3899
4096
|
// src/components/Icon/icons/PlusIcon.tsx
|
|
3900
|
-
var
|
|
3901
|
-
var PlusIcon = (props) => /* @__PURE__ */ (0,
|
|
4097
|
+
var import_jsx_runtime112 = require("react/jsx-runtime");
|
|
4098
|
+
var PlusIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
3902
4099
|
"svg",
|
|
3903
4100
|
{
|
|
3904
4101
|
...props,
|
|
3905
4102
|
viewBox: "0 0 24 24",
|
|
3906
4103
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3907
|
-
children: /* @__PURE__ */ (0,
|
|
4104
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
3908
4105
|
"path",
|
|
3909
4106
|
{
|
|
3910
4107
|
clipRule: "evenodd",
|
|
@@ -3917,14 +4114,14 @@ var PlusIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
|
3917
4114
|
);
|
|
3918
4115
|
|
|
3919
4116
|
// src/components/Icon/icons/PodcastIcon.tsx
|
|
3920
|
-
var
|
|
3921
|
-
var PodcastIcon = (props) => /* @__PURE__ */ (0,
|
|
4117
|
+
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
4118
|
+
var PodcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
3922
4119
|
"svg",
|
|
3923
4120
|
{
|
|
3924
4121
|
...props,
|
|
3925
4122
|
viewBox: "0 0 24 24",
|
|
3926
4123
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3927
|
-
children: /* @__PURE__ */ (0,
|
|
4124
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
3928
4125
|
"path",
|
|
3929
4126
|
{
|
|
3930
4127
|
clipRule: "evenodd",
|
|
@@ -3937,14 +4134,14 @@ var PodcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
|
3937
4134
|
);
|
|
3938
4135
|
|
|
3939
4136
|
// src/components/Icon/icons/PreviewIcon.tsx
|
|
3940
|
-
var
|
|
3941
|
-
var PreviewIcon = (props) => /* @__PURE__ */ (0,
|
|
4137
|
+
var import_jsx_runtime114 = require("react/jsx-runtime");
|
|
4138
|
+
var PreviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
3942
4139
|
"svg",
|
|
3943
4140
|
{
|
|
3944
4141
|
...props,
|
|
3945
4142
|
viewBox: "0 0 24 24",
|
|
3946
4143
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3947
|
-
children: /* @__PURE__ */ (0,
|
|
4144
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
3948
4145
|
"path",
|
|
3949
4146
|
{
|
|
3950
4147
|
clipRule: "evenodd",
|
|
@@ -3957,14 +4154,14 @@ var PreviewIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
|
3957
4154
|
);
|
|
3958
4155
|
|
|
3959
4156
|
// src/components/Icon/icons/PrivateUserSessionsIcon.tsx
|
|
3960
|
-
var
|
|
3961
|
-
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4157
|
+
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
4158
|
+
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3962
4159
|
"svg",
|
|
3963
4160
|
{
|
|
3964
4161
|
...props,
|
|
3965
4162
|
viewBox: "0 0 24 24",
|
|
3966
4163
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3967
|
-
children: /* @__PURE__ */ (0,
|
|
4164
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
3968
4165
|
"path",
|
|
3969
4166
|
{
|
|
3970
4167
|
clipRule: "evenodd",
|
|
@@ -3977,15 +4174,15 @@ var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime1
|
|
|
3977
4174
|
);
|
|
3978
4175
|
|
|
3979
4176
|
// src/components/Icon/icons/ProjectIcon.tsx
|
|
3980
|
-
var
|
|
3981
|
-
var ProjectIcon = (props) => /* @__PURE__ */ (0,
|
|
4177
|
+
var import_jsx_runtime116 = require("react/jsx-runtime");
|
|
4178
|
+
var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
|
|
3982
4179
|
"svg",
|
|
3983
4180
|
{
|
|
3984
4181
|
...props,
|
|
3985
4182
|
viewBox: "0 0 24 24",
|
|
3986
4183
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3987
4184
|
children: [
|
|
3988
|
-
/* @__PURE__ */ (0,
|
|
4185
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
3989
4186
|
"path",
|
|
3990
4187
|
{
|
|
3991
4188
|
clipRule: "evenodd",
|
|
@@ -3994,7 +4191,7 @@ var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
|
|
|
3994
4191
|
fillRule: "evenodd"
|
|
3995
4192
|
}
|
|
3996
4193
|
),
|
|
3997
|
-
/* @__PURE__ */ (0,
|
|
4194
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
3998
4195
|
"path",
|
|
3999
4196
|
{
|
|
4000
4197
|
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",
|
|
@@ -4006,14 +4203,14 @@ var ProjectIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
|
|
|
4006
4203
|
);
|
|
4007
4204
|
|
|
4008
4205
|
// src/components/Icon/icons/PropertiesIcon.tsx
|
|
4009
|
-
var
|
|
4010
|
-
var PropertiesIcon = (props) => /* @__PURE__ */ (0,
|
|
4206
|
+
var import_jsx_runtime117 = require("react/jsx-runtime");
|
|
4207
|
+
var PropertiesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
4011
4208
|
"svg",
|
|
4012
4209
|
{
|
|
4013
4210
|
...props,
|
|
4014
4211
|
viewBox: "0 0 24 24",
|
|
4015
4212
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4016
|
-
children: /* @__PURE__ */ (0,
|
|
4213
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
4017
4214
|
"path",
|
|
4018
4215
|
{
|
|
4019
4216
|
clipRule: "evenodd",
|
|
@@ -4026,14 +4223,14 @@ var PropertiesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
|
4026
4223
|
);
|
|
4027
4224
|
|
|
4028
4225
|
// src/components/Icon/icons/QuestionMarkIcon.tsx
|
|
4029
|
-
var
|
|
4030
|
-
var QuestionMarkIcon = (props) => /* @__PURE__ */ (0,
|
|
4226
|
+
var import_jsx_runtime118 = require("react/jsx-runtime");
|
|
4227
|
+
var QuestionMarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
4031
4228
|
"svg",
|
|
4032
4229
|
{
|
|
4033
4230
|
...props,
|
|
4034
4231
|
viewBox: "0 0 24 24",
|
|
4035
4232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4036
|
-
children: /* @__PURE__ */ (0,
|
|
4233
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
4037
4234
|
"path",
|
|
4038
4235
|
{
|
|
4039
4236
|
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",
|
|
@@ -4044,14 +4241,14 @@ var QuestionMarkIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime116.jsx)
|
|
|
4044
4241
|
);
|
|
4045
4242
|
|
|
4046
4243
|
// src/components/Icon/icons/ReactIcon.tsx
|
|
4047
|
-
var
|
|
4048
|
-
var ReactIcon = (props) => /* @__PURE__ */ (0,
|
|
4244
|
+
var import_jsx_runtime119 = require("react/jsx-runtime");
|
|
4245
|
+
var ReactIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
4049
4246
|
"svg",
|
|
4050
4247
|
{
|
|
4051
4248
|
...props,
|
|
4052
4249
|
viewBox: "0 0 24 24",
|
|
4053
4250
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4054
|
-
children: /* @__PURE__ */ (0,
|
|
4251
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
4055
4252
|
"path",
|
|
4056
4253
|
{
|
|
4057
4254
|
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",
|
|
@@ -4062,14 +4259,14 @@ var ReactIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
|
4062
4259
|
);
|
|
4063
4260
|
|
|
4064
4261
|
// src/components/Icon/icons/RecordIcon.tsx
|
|
4065
|
-
var
|
|
4066
|
-
var RecordIcon = (props) => /* @__PURE__ */ (0,
|
|
4262
|
+
var import_jsx_runtime120 = require("react/jsx-runtime");
|
|
4263
|
+
var RecordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
4067
4264
|
"svg",
|
|
4068
4265
|
{
|
|
4069
4266
|
...props,
|
|
4070
4267
|
viewBox: "0 0 24 24",
|
|
4071
4268
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4072
|
-
children: /* @__PURE__ */ (0,
|
|
4269
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
4073
4270
|
"path",
|
|
4074
4271
|
{
|
|
4075
4272
|
clipRule: "evenodd",
|
|
@@ -4082,14 +4279,14 @@ var RecordIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
|
4082
4279
|
);
|
|
4083
4280
|
|
|
4084
4281
|
// src/components/Icon/icons/RedoIcon.tsx
|
|
4085
|
-
var
|
|
4086
|
-
var RedoIcon = (props) => /* @__PURE__ */ (0,
|
|
4282
|
+
var import_jsx_runtime121 = require("react/jsx-runtime");
|
|
4283
|
+
var RedoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
4087
4284
|
"svg",
|
|
4088
4285
|
{
|
|
4089
4286
|
...props,
|
|
4090
4287
|
viewBox: "0 0 24 24",
|
|
4091
4288
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4092
|
-
children: /* @__PURE__ */ (0,
|
|
4289
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
4093
4290
|
"path",
|
|
4094
4291
|
{
|
|
4095
4292
|
clipRule: "evenodd",
|
|
@@ -4102,14 +4299,14 @@ var RedoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
|
4102
4299
|
);
|
|
4103
4300
|
|
|
4104
4301
|
// src/components/Icon/icons/ReplaceIcon.tsx
|
|
4105
|
-
var
|
|
4106
|
-
var ReplaceIcon = (props) => /* @__PURE__ */ (0,
|
|
4302
|
+
var import_jsx_runtime122 = require("react/jsx-runtime");
|
|
4303
|
+
var ReplaceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
4107
4304
|
"svg",
|
|
4108
4305
|
{
|
|
4109
4306
|
...props,
|
|
4110
4307
|
viewBox: "0 0 24 24",
|
|
4111
4308
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4112
|
-
children: /* @__PURE__ */ (0,
|
|
4309
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
4113
4310
|
"path",
|
|
4114
4311
|
{
|
|
4115
4312
|
clipRule: "evenodd",
|
|
@@ -4122,14 +4319,14 @@ var ReplaceIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
|
4122
4319
|
);
|
|
4123
4320
|
|
|
4124
4321
|
// src/components/Icon/icons/ReplyIcon.tsx
|
|
4125
|
-
var
|
|
4126
|
-
var ReplyIcon = (props) => /* @__PURE__ */ (0,
|
|
4322
|
+
var import_jsx_runtime123 = require("react/jsx-runtime");
|
|
4323
|
+
var ReplyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
4127
4324
|
"svg",
|
|
4128
4325
|
{
|
|
4129
4326
|
...props,
|
|
4130
4327
|
viewBox: "0 0 24 24",
|
|
4131
4328
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4132
|
-
children: /* @__PURE__ */ (0,
|
|
4329
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
4133
4330
|
"path",
|
|
4134
4331
|
{
|
|
4135
4332
|
clipRule: "evenodd",
|
|
@@ -4142,14 +4339,14 @@ var ReplyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
|
4142
4339
|
);
|
|
4143
4340
|
|
|
4144
4341
|
// src/components/Icon/icons/SaveAsCopyIcon.tsx
|
|
4145
|
-
var
|
|
4146
|
-
var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0,
|
|
4342
|
+
var import_jsx_runtime124 = require("react/jsx-runtime");
|
|
4343
|
+
var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
4147
4344
|
"svg",
|
|
4148
4345
|
{
|
|
4149
4346
|
...props,
|
|
4150
4347
|
viewBox: "0 0 24 24",
|
|
4151
4348
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4152
|
-
children: /* @__PURE__ */ (0,
|
|
4349
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
4153
4350
|
"path",
|
|
4154
4351
|
{
|
|
4155
4352
|
clipRule: "evenodd",
|
|
@@ -4162,14 +4359,14 @@ var SaveAsCopyIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
|
4162
4359
|
);
|
|
4163
4360
|
|
|
4164
4361
|
// src/components/Icon/icons/SaveIcon.tsx
|
|
4165
|
-
var
|
|
4166
|
-
var SaveIcon = (props) => /* @__PURE__ */ (0,
|
|
4362
|
+
var import_jsx_runtime125 = require("react/jsx-runtime");
|
|
4363
|
+
var SaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
|
|
4167
4364
|
"svg",
|
|
4168
4365
|
{
|
|
4169
4366
|
...props,
|
|
4170
4367
|
viewBox: "0 0 24 24",
|
|
4171
4368
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4172
|
-
children: /* @__PURE__ */ (0,
|
|
4369
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
|
|
4173
4370
|
"path",
|
|
4174
4371
|
{
|
|
4175
4372
|
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",
|
|
@@ -4180,14 +4377,14 @@ var SaveIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
|
4180
4377
|
);
|
|
4181
4378
|
|
|
4182
4379
|
// src/components/Icon/icons/ScissorsIcon.tsx
|
|
4183
|
-
var
|
|
4184
|
-
var ScissorsIcon = (props) => /* @__PURE__ */ (0,
|
|
4380
|
+
var import_jsx_runtime126 = require("react/jsx-runtime");
|
|
4381
|
+
var ScissorsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
4185
4382
|
"svg",
|
|
4186
4383
|
{
|
|
4187
4384
|
...props,
|
|
4188
4385
|
viewBox: "0 0 24 24",
|
|
4189
4386
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4190
|
-
children: /* @__PURE__ */ (0,
|
|
4387
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
4191
4388
|
"path",
|
|
4192
4389
|
{
|
|
4193
4390
|
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",
|
|
@@ -4198,14 +4395,14 @@ var ScissorsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
|
4198
4395
|
);
|
|
4199
4396
|
|
|
4200
4397
|
// src/components/Icon/icons/ScreenshareOffIcon.tsx
|
|
4201
|
-
var
|
|
4202
|
-
var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0,
|
|
4398
|
+
var import_jsx_runtime127 = require("react/jsx-runtime");
|
|
4399
|
+
var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
4203
4400
|
"svg",
|
|
4204
4401
|
{
|
|
4205
4402
|
...props,
|
|
4206
4403
|
viewBox: "0 0 24 24",
|
|
4207
4404
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4208
|
-
children: /* @__PURE__ */ (0,
|
|
4405
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
4209
4406
|
"path",
|
|
4210
4407
|
{
|
|
4211
4408
|
clipRule: "evenodd",
|
|
@@ -4218,14 +4415,14 @@ var ScreenshareOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime125.js
|
|
|
4218
4415
|
);
|
|
4219
4416
|
|
|
4220
4417
|
// src/components/Icon/icons/ScreenshareOnIcon.tsx
|
|
4221
|
-
var
|
|
4222
|
-
var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0,
|
|
4418
|
+
var import_jsx_runtime128 = require("react/jsx-runtime");
|
|
4419
|
+
var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
4223
4420
|
"svg",
|
|
4224
4421
|
{
|
|
4225
4422
|
...props,
|
|
4226
4423
|
viewBox: "0 0 24 24",
|
|
4227
4424
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4228
|
-
children: /* @__PURE__ */ (0,
|
|
4425
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
4229
4426
|
"path",
|
|
4230
4427
|
{
|
|
4231
4428
|
clipRule: "evenodd",
|
|
@@ -4238,14 +4435,14 @@ var ScreenshareOnIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime126.jsx
|
|
|
4238
4435
|
);
|
|
4239
4436
|
|
|
4240
4437
|
// src/components/Icon/icons/SearchIcon.tsx
|
|
4241
|
-
var
|
|
4242
|
-
var SearchIcon = (props) => /* @__PURE__ */ (0,
|
|
4438
|
+
var import_jsx_runtime129 = require("react/jsx-runtime");
|
|
4439
|
+
var SearchIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
4243
4440
|
"svg",
|
|
4244
4441
|
{
|
|
4245
4442
|
...props,
|
|
4246
4443
|
viewBox: "0 0 24 24",
|
|
4247
4444
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4248
|
-
children: /* @__PURE__ */ (0,
|
|
4445
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
4249
4446
|
"path",
|
|
4250
4447
|
{
|
|
4251
4448
|
clipRule: "evenodd",
|
|
@@ -4258,14 +4455,14 @@ var SearchIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
|
4258
4455
|
);
|
|
4259
4456
|
|
|
4260
4457
|
// src/components/Icon/icons/SendIcon.tsx
|
|
4261
|
-
var
|
|
4262
|
-
var SendIcon = (props) => /* @__PURE__ */ (0,
|
|
4458
|
+
var import_jsx_runtime130 = require("react/jsx-runtime");
|
|
4459
|
+
var SendIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
4263
4460
|
"svg",
|
|
4264
4461
|
{
|
|
4265
4462
|
...props,
|
|
4266
4463
|
viewBox: "0 0 24 24",
|
|
4267
4464
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4268
|
-
children: /* @__PURE__ */ (0,
|
|
4465
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
4269
4466
|
"path",
|
|
4270
4467
|
{
|
|
4271
4468
|
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",
|
|
@@ -4276,14 +4473,14 @@ var SendIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
|
4276
4473
|
);
|
|
4277
4474
|
|
|
4278
4475
|
// src/components/Icon/icons/ShapesIcon.tsx
|
|
4279
|
-
var
|
|
4280
|
-
var ShapesIcon = (props) => /* @__PURE__ */ (0,
|
|
4476
|
+
var import_jsx_runtime131 = require("react/jsx-runtime");
|
|
4477
|
+
var ShapesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
4281
4478
|
"svg",
|
|
4282
4479
|
{
|
|
4283
4480
|
...props,
|
|
4284
4481
|
viewBox: "0 0 24 24",
|
|
4285
4482
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4286
|
-
children: /* @__PURE__ */ (0,
|
|
4483
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
4287
4484
|
"path",
|
|
4288
4485
|
{
|
|
4289
4486
|
clipRule: "evenodd",
|
|
@@ -4296,14 +4493,14 @@ var ShapesIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
|
4296
4493
|
);
|
|
4297
4494
|
|
|
4298
4495
|
// src/components/Icon/icons/ShareIcon.tsx
|
|
4299
|
-
var
|
|
4300
|
-
var ShareIcon = (props) => /* @__PURE__ */ (0,
|
|
4496
|
+
var import_jsx_runtime132 = require("react/jsx-runtime");
|
|
4497
|
+
var ShareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
4301
4498
|
"svg",
|
|
4302
4499
|
{
|
|
4303
4500
|
...props,
|
|
4304
4501
|
viewBox: "0 0 24 24",
|
|
4305
4502
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4306
|
-
children: /* @__PURE__ */ (0,
|
|
4503
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
4307
4504
|
"path",
|
|
4308
4505
|
{
|
|
4309
4506
|
clipRule: "evenodd",
|
|
@@ -4316,14 +4513,14 @@ var ShareIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
|
4316
4513
|
);
|
|
4317
4514
|
|
|
4318
4515
|
// src/components/Icon/icons/SharingPermissionsIcon.tsx
|
|
4319
|
-
var
|
|
4320
|
-
var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4516
|
+
var import_jsx_runtime133 = require("react/jsx-runtime");
|
|
4517
|
+
var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
4321
4518
|
"svg",
|
|
4322
4519
|
{
|
|
4323
4520
|
...props,
|
|
4324
4521
|
viewBox: "0 0 24 24",
|
|
4325
4522
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4326
|
-
children: /* @__PURE__ */ (0,
|
|
4523
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
4327
4524
|
"path",
|
|
4328
4525
|
{
|
|
4329
4526
|
clipRule: "evenodd",
|
|
@@ -4336,14 +4533,14 @@ var SharingPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime13
|
|
|
4336
4533
|
);
|
|
4337
4534
|
|
|
4338
4535
|
// src/components/Icon/icons/SimulcastIcon.tsx
|
|
4339
|
-
var
|
|
4340
|
-
var SimulcastIcon = (props) => /* @__PURE__ */ (0,
|
|
4536
|
+
var import_jsx_runtime134 = require("react/jsx-runtime");
|
|
4537
|
+
var SimulcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
4341
4538
|
"svg",
|
|
4342
4539
|
{
|
|
4343
4540
|
...props,
|
|
4344
4541
|
viewBox: "0 0 24 24",
|
|
4345
4542
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4346
|
-
children: /* @__PURE__ */ (0,
|
|
4543
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
4347
4544
|
"path",
|
|
4348
4545
|
{
|
|
4349
4546
|
clipRule: "evenodd",
|
|
@@ -4356,14 +4553,14 @@ var SimulcastIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
|
4356
4553
|
);
|
|
4357
4554
|
|
|
4358
4555
|
// src/components/Icon/icons/SortIcon.tsx
|
|
4359
|
-
var
|
|
4360
|
-
var SortIcon = (props) => /* @__PURE__ */ (0,
|
|
4556
|
+
var import_jsx_runtime135 = require("react/jsx-runtime");
|
|
4557
|
+
var SortIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
4361
4558
|
"svg",
|
|
4362
4559
|
{
|
|
4363
4560
|
...props,
|
|
4364
4561
|
viewBox: "0 0 24 24",
|
|
4365
4562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4366
|
-
children: /* @__PURE__ */ (0,
|
|
4563
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
4367
4564
|
"path",
|
|
4368
4565
|
{
|
|
4369
4566
|
clipRule: "evenodd",
|
|
@@ -4376,14 +4573,14 @@ var SortIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
|
4376
4573
|
);
|
|
4377
4574
|
|
|
4378
4575
|
// src/components/Icon/icons/SparkleIcon.tsx
|
|
4379
|
-
var
|
|
4380
|
-
var SparkleIcon = (props) => /* @__PURE__ */ (0,
|
|
4576
|
+
var import_jsx_runtime136 = require("react/jsx-runtime");
|
|
4577
|
+
var SparkleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
4381
4578
|
"svg",
|
|
4382
4579
|
{
|
|
4383
4580
|
...props,
|
|
4384
4581
|
viewBox: "0 0 24 24",
|
|
4385
4582
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4386
|
-
children: /* @__PURE__ */ (0,
|
|
4583
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
4387
4584
|
"path",
|
|
4388
4585
|
{
|
|
4389
4586
|
clipRule: "evenodd",
|
|
@@ -4396,34 +4593,47 @@ var SparkleIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
|
4396
4593
|
);
|
|
4397
4594
|
|
|
4398
4595
|
// src/components/Icon/icons/SpinnerIcon.tsx
|
|
4399
|
-
var
|
|
4400
|
-
var SpinnerIcon = (props) => /* @__PURE__ */ (0,
|
|
4596
|
+
var import_jsx_runtime137 = require("react/jsx-runtime");
|
|
4597
|
+
var SpinnerIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(
|
|
4401
4598
|
"svg",
|
|
4402
4599
|
{
|
|
4403
4600
|
...props,
|
|
4404
4601
|
viewBox: "0 0 24 24",
|
|
4405
4602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4406
|
-
children:
|
|
4407
|
-
|
|
4408
|
-
|
|
4409
|
-
|
|
4410
|
-
|
|
4411
|
-
|
|
4412
|
-
|
|
4413
|
-
|
|
4414
|
-
|
|
4603
|
+
children: [
|
|
4604
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
4605
|
+
"path",
|
|
4606
|
+
{
|
|
4607
|
+
clipRule: "evenodd",
|
|
4608
|
+
d: "M11.9999 5.33314C8.31802 5.33314 5.33326 8.31788 5.33326 11.9998C5.33326 15.6817 8.31802 18.6664 11.9999 18.6664C15.6818 18.6664 18.6666 15.6817 18.6666 11.9998C18.6666 11.0793 19.4127 10.3331 20.3332 10.3331C21.2537 10.3331 21.9999 11.0793 21.9999 11.9998C21.9999 17.5226 17.5227 21.9998 11.9999 21.9998C6.47708 21.9998 1.99994 17.5226 1.99994 11.9998C1.99994 6.47697 6.47708 1.99981 11.9999 1.99981C12.9204 1.99981 13.6666 2.74598 13.6666 3.66647C13.6666 4.58697 12.9204 5.33314 11.9999 5.33314Z",
|
|
4609
|
+
fill: "currentColor",
|
|
4610
|
+
fillRule: "evenodd"
|
|
4611
|
+
}
|
|
4612
|
+
),
|
|
4613
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
4614
|
+
"animateTransform",
|
|
4615
|
+
{
|
|
4616
|
+
attributeName: "transform",
|
|
4617
|
+
dur: "1.5s",
|
|
4618
|
+
keyTimes: "0;1",
|
|
4619
|
+
repeatCount: "indefinite",
|
|
4620
|
+
type: "rotate",
|
|
4621
|
+
values: "0 0 0;360 0 0"
|
|
4622
|
+
}
|
|
4623
|
+
)
|
|
4624
|
+
]
|
|
4415
4625
|
}
|
|
4416
4626
|
);
|
|
4417
4627
|
|
|
4418
4628
|
// src/components/Icon/icons/StatsIcon.tsx
|
|
4419
|
-
var
|
|
4420
|
-
var StatsIcon = (props) => /* @__PURE__ */ (0,
|
|
4629
|
+
var import_jsx_runtime138 = require("react/jsx-runtime");
|
|
4630
|
+
var StatsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
4421
4631
|
"svg",
|
|
4422
4632
|
{
|
|
4423
4633
|
...props,
|
|
4424
4634
|
viewBox: "0 0 24 24",
|
|
4425
4635
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4426
|
-
children: /* @__PURE__ */ (0,
|
|
4636
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
4427
4637
|
"path",
|
|
4428
4638
|
{
|
|
4429
4639
|
clipRule: "evenodd",
|
|
@@ -4436,14 +4646,14 @@ var StatsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
|
4436
4646
|
);
|
|
4437
4647
|
|
|
4438
4648
|
// src/components/Icon/icons/SwitchAccountsIcon.tsx
|
|
4439
|
-
var
|
|
4440
|
-
var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0,
|
|
4649
|
+
var import_jsx_runtime139 = require("react/jsx-runtime");
|
|
4650
|
+
var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
4441
4651
|
"svg",
|
|
4442
4652
|
{
|
|
4443
4653
|
...props,
|
|
4444
4654
|
viewBox: "0 0 24 24",
|
|
4445
4655
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4446
|
-
children: /* @__PURE__ */ (0,
|
|
4656
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
4447
4657
|
"path",
|
|
4448
4658
|
{
|
|
4449
4659
|
clipRule: "evenodd",
|
|
@@ -4456,14 +4666,14 @@ var SwitchAccountsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime137.js
|
|
|
4456
4666
|
);
|
|
4457
4667
|
|
|
4458
4668
|
// src/components/Icon/icons/TagIcon.tsx
|
|
4459
|
-
var
|
|
4460
|
-
var TagIcon = (props) => /* @__PURE__ */ (0,
|
|
4669
|
+
var import_jsx_runtime140 = require("react/jsx-runtime");
|
|
4670
|
+
var TagIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
4461
4671
|
"svg",
|
|
4462
4672
|
{
|
|
4463
4673
|
...props,
|
|
4464
4674
|
viewBox: "0 0 24 24",
|
|
4465
4675
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4466
|
-
children: /* @__PURE__ */ (0,
|
|
4676
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
4467
4677
|
"path",
|
|
4468
4678
|
{
|
|
4469
4679
|
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",
|
|
@@ -4474,14 +4684,14 @@ var TagIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
|
4474
4684
|
);
|
|
4475
4685
|
|
|
4476
4686
|
// src/components/Icon/icons/ThumbnailIcon.tsx
|
|
4477
|
-
var
|
|
4478
|
-
var ThumbnailIcon = (props) => /* @__PURE__ */ (0,
|
|
4687
|
+
var import_jsx_runtime141 = require("react/jsx-runtime");
|
|
4688
|
+
var ThumbnailIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
4479
4689
|
"svg",
|
|
4480
4690
|
{
|
|
4481
4691
|
...props,
|
|
4482
4692
|
viewBox: "0 0 24 24",
|
|
4483
4693
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4484
|
-
children: /* @__PURE__ */ (0,
|
|
4694
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
4485
4695
|
"path",
|
|
4486
4696
|
{
|
|
4487
4697
|
clipRule: "evenodd",
|
|
@@ -4494,14 +4704,14 @@ var ThumbnailIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
|
4494
4704
|
);
|
|
4495
4705
|
|
|
4496
4706
|
// src/components/Icon/icons/ThumbsDownIcon.tsx
|
|
4497
|
-
var
|
|
4498
|
-
var ThumbsDownIcon = (props) => /* @__PURE__ */ (0,
|
|
4707
|
+
var import_jsx_runtime142 = require("react/jsx-runtime");
|
|
4708
|
+
var ThumbsDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
4499
4709
|
"svg",
|
|
4500
4710
|
{
|
|
4501
4711
|
...props,
|
|
4502
4712
|
viewBox: "0 0 24 24",
|
|
4503
4713
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4504
|
-
children: /* @__PURE__ */ (0,
|
|
4714
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
4505
4715
|
"path",
|
|
4506
4716
|
{
|
|
4507
4717
|
clipRule: "evenodd",
|
|
@@ -4514,14 +4724,14 @@ var ThumbsDownIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
|
4514
4724
|
);
|
|
4515
4725
|
|
|
4516
4726
|
// src/components/Icon/icons/ThumbsUpIcon.tsx
|
|
4517
|
-
var
|
|
4518
|
-
var ThumbsUpIcon = (props) => /* @__PURE__ */ (0,
|
|
4727
|
+
var import_jsx_runtime143 = require("react/jsx-runtime");
|
|
4728
|
+
var ThumbsUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
4519
4729
|
"svg",
|
|
4520
4730
|
{
|
|
4521
4731
|
...props,
|
|
4522
4732
|
viewBox: "0 0 24 24",
|
|
4523
4733
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4524
|
-
children: /* @__PURE__ */ (0,
|
|
4734
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
4525
4735
|
"path",
|
|
4526
4736
|
{
|
|
4527
4737
|
clipRule: "evenodd",
|
|
@@ -4534,14 +4744,14 @@ var ThumbsUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
|
4534
4744
|
);
|
|
4535
4745
|
|
|
4536
4746
|
// src/components/Icon/icons/TransitionsIcon.tsx
|
|
4537
|
-
var
|
|
4538
|
-
var TransitionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4747
|
+
var import_jsx_runtime144 = require("react/jsx-runtime");
|
|
4748
|
+
var TransitionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
4539
4749
|
"svg",
|
|
4540
4750
|
{
|
|
4541
4751
|
...props,
|
|
4542
4752
|
viewBox: "0 0 24 24",
|
|
4543
4753
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4544
|
-
children: /* @__PURE__ */ (0,
|
|
4754
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
4545
4755
|
"path",
|
|
4546
4756
|
{
|
|
4547
4757
|
clipRule: "evenodd",
|
|
@@ -4554,14 +4764,14 @@ var TransitionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
|
4554
4764
|
);
|
|
4555
4765
|
|
|
4556
4766
|
// src/components/Icon/icons/TrimIcon.tsx
|
|
4557
|
-
var
|
|
4558
|
-
var TrimIcon = (props) => /* @__PURE__ */ (0,
|
|
4767
|
+
var import_jsx_runtime145 = require("react/jsx-runtime");
|
|
4768
|
+
var TrimIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
4559
4769
|
"svg",
|
|
4560
4770
|
{
|
|
4561
4771
|
...props,
|
|
4562
4772
|
viewBox: "0 0 24 24",
|
|
4563
4773
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4564
|
-
children: /* @__PURE__ */ (0,
|
|
4774
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
4565
4775
|
"path",
|
|
4566
4776
|
{
|
|
4567
4777
|
clipRule: "evenodd",
|
|
@@ -4574,14 +4784,14 @@ var TrimIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
|
4574
4784
|
);
|
|
4575
4785
|
|
|
4576
4786
|
// src/components/Icon/icons/TurnstileIcon.tsx
|
|
4577
|
-
var
|
|
4578
|
-
var TurnstileIcon = (props) => /* @__PURE__ */ (0,
|
|
4787
|
+
var import_jsx_runtime146 = require("react/jsx-runtime");
|
|
4788
|
+
var TurnstileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
4579
4789
|
"svg",
|
|
4580
4790
|
{
|
|
4581
4791
|
...props,
|
|
4582
4792
|
viewBox: "0 0 24 24",
|
|
4583
4793
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4584
|
-
children: /* @__PURE__ */ (0,
|
|
4794
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
4585
4795
|
"path",
|
|
4586
4796
|
{
|
|
4587
4797
|
clipRule: "evenodd",
|
|
@@ -4594,14 +4804,14 @@ var TurnstileIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
|
4594
4804
|
);
|
|
4595
4805
|
|
|
4596
4806
|
// src/components/Icon/icons/UndoIcon.tsx
|
|
4597
|
-
var
|
|
4598
|
-
var UndoIcon = (props) => /* @__PURE__ */ (0,
|
|
4807
|
+
var import_jsx_runtime147 = require("react/jsx-runtime");
|
|
4808
|
+
var UndoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
4599
4809
|
"svg",
|
|
4600
4810
|
{
|
|
4601
4811
|
...props,
|
|
4602
4812
|
viewBox: "0 0 24 24",
|
|
4603
4813
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4604
|
-
children: /* @__PURE__ */ (0,
|
|
4814
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
4605
4815
|
"path",
|
|
4606
4816
|
{
|
|
4607
4817
|
clipRule: "evenodd",
|
|
@@ -4614,14 +4824,14 @@ var UndoIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
|
4614
4824
|
);
|
|
4615
4825
|
|
|
4616
4826
|
// src/components/Icon/icons/UnlockIcon.tsx
|
|
4617
|
-
var
|
|
4618
|
-
var UnlockIcon = (props) => /* @__PURE__ */ (0,
|
|
4827
|
+
var import_jsx_runtime148 = require("react/jsx-runtime");
|
|
4828
|
+
var UnlockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
4619
4829
|
"svg",
|
|
4620
4830
|
{
|
|
4621
4831
|
...props,
|
|
4622
4832
|
viewBox: "0 0 24 24",
|
|
4623
4833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4624
|
-
children: /* @__PURE__ */ (0,
|
|
4834
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
4625
4835
|
"path",
|
|
4626
4836
|
{
|
|
4627
4837
|
clipRule: "evenodd",
|
|
@@ -4634,14 +4844,14 @@ var UnlockIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
|
4634
4844
|
);
|
|
4635
4845
|
|
|
4636
4846
|
// src/components/Icon/icons/UploadIcon.tsx
|
|
4637
|
-
var
|
|
4638
|
-
var UploadIcon = (props) => /* @__PURE__ */ (0,
|
|
4847
|
+
var import_jsx_runtime149 = require("react/jsx-runtime");
|
|
4848
|
+
var UploadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
4639
4849
|
"svg",
|
|
4640
4850
|
{
|
|
4641
4851
|
...props,
|
|
4642
4852
|
viewBox: "0 0 24 24",
|
|
4643
4853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4644
|
-
children: /* @__PURE__ */ (0,
|
|
4854
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
4645
4855
|
"path",
|
|
4646
4856
|
{
|
|
4647
4857
|
clipRule: "evenodd",
|
|
@@ -4654,14 +4864,14 @@ var UploadIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
|
4654
4864
|
);
|
|
4655
4865
|
|
|
4656
4866
|
// src/components/Icon/icons/UsersPermissionsIcon.tsx
|
|
4657
|
-
var
|
|
4658
|
-
var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0,
|
|
4867
|
+
var import_jsx_runtime150 = require("react/jsx-runtime");
|
|
4868
|
+
var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
4659
4869
|
"svg",
|
|
4660
4870
|
{
|
|
4661
4871
|
...props,
|
|
4662
4872
|
viewBox: "0 0 24 24",
|
|
4663
4873
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4664
|
-
children: /* @__PURE__ */ (0,
|
|
4874
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
4665
4875
|
"path",
|
|
4666
4876
|
{
|
|
4667
4877
|
clipRule: "evenodd",
|
|
@@ -4674,14 +4884,14 @@ var UsersPermissionsIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime148.
|
|
|
4674
4884
|
);
|
|
4675
4885
|
|
|
4676
4886
|
// src/components/Icon/icons/ViewStreamIcon.tsx
|
|
4677
|
-
var
|
|
4678
|
-
var ViewStreamIcon = (props) => /* @__PURE__ */ (0,
|
|
4887
|
+
var import_jsx_runtime151 = require("react/jsx-runtime");
|
|
4888
|
+
var ViewStreamIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
4679
4889
|
"svg",
|
|
4680
4890
|
{
|
|
4681
4891
|
...props,
|
|
4682
4892
|
viewBox: "0 0 24 24",
|
|
4683
4893
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4684
|
-
children: /* @__PURE__ */ (0,
|
|
4894
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
4685
4895
|
"path",
|
|
4686
4896
|
{
|
|
4687
4897
|
clipRule: "evenodd",
|
|
@@ -4694,14 +4904,14 @@ var ViewStreamIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
|
4694
4904
|
);
|
|
4695
4905
|
|
|
4696
4906
|
// src/components/Icon/icons/VolumeIcon.tsx
|
|
4697
|
-
var
|
|
4698
|
-
var VolumeIcon = (props) => /* @__PURE__ */ (0,
|
|
4907
|
+
var import_jsx_runtime152 = require("react/jsx-runtime");
|
|
4908
|
+
var VolumeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
4699
4909
|
"svg",
|
|
4700
4910
|
{
|
|
4701
4911
|
...props,
|
|
4702
4912
|
viewBox: "0 0 24 24",
|
|
4703
4913
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4704
|
-
children: /* @__PURE__ */ (0,
|
|
4914
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
4705
4915
|
"path",
|
|
4706
4916
|
{
|
|
4707
4917
|
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",
|
|
@@ -4712,14 +4922,14 @@ var VolumeIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
|
4712
4922
|
);
|
|
4713
4923
|
|
|
4714
4924
|
// src/components/Icon/icons/VolumeOffIcon.tsx
|
|
4715
|
-
var
|
|
4716
|
-
var VolumeOffIcon = (props) => /* @__PURE__ */ (0,
|
|
4925
|
+
var import_jsx_runtime153 = require("react/jsx-runtime");
|
|
4926
|
+
var VolumeOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
4717
4927
|
"svg",
|
|
4718
4928
|
{
|
|
4719
4929
|
...props,
|
|
4720
4930
|
viewBox: "0 0 24 24",
|
|
4721
4931
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4722
|
-
children: /* @__PURE__ */ (0,
|
|
4932
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
4723
4933
|
"path",
|
|
4724
4934
|
{
|
|
4725
4935
|
clipRule: "evenodd",
|
|
@@ -4732,14 +4942,14 @@ var VolumeOffIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
|
|
|
4732
4942
|
);
|
|
4733
4943
|
|
|
4734
4944
|
// src/components/Icon/icons/VolumeUpIcon.tsx
|
|
4735
|
-
var
|
|
4736
|
-
var VolumeUpIcon = (props) => /* @__PURE__ */ (0,
|
|
4945
|
+
var import_jsx_runtime154 = require("react/jsx-runtime");
|
|
4946
|
+
var VolumeUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
4737
4947
|
"svg",
|
|
4738
4948
|
{
|
|
4739
4949
|
...props,
|
|
4740
4950
|
viewBox: "0 0 24 24",
|
|
4741
4951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4742
|
-
children: /* @__PURE__ */ (0,
|
|
4952
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
4743
4953
|
"path",
|
|
4744
4954
|
{
|
|
4745
4955
|
clipRule: "evenodd",
|
|
@@ -4752,14 +4962,14 @@ var VolumeUpIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
|
4752
4962
|
);
|
|
4753
4963
|
|
|
4754
4964
|
// src/components/Icon/icons/VolumeXIcon.tsx
|
|
4755
|
-
var
|
|
4756
|
-
var VolumeXIcon = (props) => /* @__PURE__ */ (0,
|
|
4965
|
+
var import_jsx_runtime155 = require("react/jsx-runtime");
|
|
4966
|
+
var VolumeXIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
4757
4967
|
"svg",
|
|
4758
4968
|
{
|
|
4759
4969
|
...props,
|
|
4760
4970
|
viewBox: "0 0 24 24",
|
|
4761
4971
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4762
|
-
children: /* @__PURE__ */ (0,
|
|
4972
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
4763
4973
|
"path",
|
|
4764
4974
|
{
|
|
4765
4975
|
clipRule: "evenodd",
|
|
@@ -4772,14 +4982,14 @@ var VolumeXIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
|
|
|
4772
4982
|
);
|
|
4773
4983
|
|
|
4774
4984
|
// src/components/Icon/icons/WandIcon.tsx
|
|
4775
|
-
var
|
|
4776
|
-
var WandIcon = (props) => /* @__PURE__ */ (0,
|
|
4985
|
+
var import_jsx_runtime156 = require("react/jsx-runtime");
|
|
4986
|
+
var WandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
4777
4987
|
"svg",
|
|
4778
4988
|
{
|
|
4779
4989
|
...props,
|
|
4780
4990
|
viewBox: "0 0 24 24",
|
|
4781
4991
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4782
|
-
children: /* @__PURE__ */ (0,
|
|
4992
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
4783
4993
|
"path",
|
|
4784
4994
|
{
|
|
4785
4995
|
clipRule: "evenodd",
|
|
@@ -4792,14 +5002,14 @@ var WandIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
|
4792
5002
|
);
|
|
4793
5003
|
|
|
4794
5004
|
// src/components/Icon/icons/ZoomInIcon.tsx
|
|
4795
|
-
var
|
|
4796
|
-
var ZoomInIcon = (props) => /* @__PURE__ */ (0,
|
|
5005
|
+
var import_jsx_runtime157 = require("react/jsx-runtime");
|
|
5006
|
+
var ZoomInIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime157.jsx)(
|
|
4797
5007
|
"svg",
|
|
4798
5008
|
{
|
|
4799
5009
|
...props,
|
|
4800
5010
|
viewBox: "0 0 24 24",
|
|
4801
5011
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4802
|
-
children: /* @__PURE__ */ (0,
|
|
5012
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime157.jsx)(
|
|
4803
5013
|
"path",
|
|
4804
5014
|
{
|
|
4805
5015
|
clipRule: "evenodd",
|
|
@@ -4812,14 +5022,14 @@ var ZoomInIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
|
4812
5022
|
);
|
|
4813
5023
|
|
|
4814
5024
|
// src/components/Icon/icons/ZoomOutIcon.tsx
|
|
4815
|
-
var
|
|
4816
|
-
var ZoomOutIcon = (props) => /* @__PURE__ */ (0,
|
|
5025
|
+
var import_jsx_runtime158 = require("react/jsx-runtime");
|
|
5026
|
+
var ZoomOutIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
4817
5027
|
"svg",
|
|
4818
5028
|
{
|
|
4819
5029
|
...props,
|
|
4820
5030
|
viewBox: "0 0 24 24",
|
|
4821
5031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4822
|
-
children: /* @__PURE__ */ (0,
|
|
5032
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
4823
5033
|
"path",
|
|
4824
5034
|
{
|
|
4825
5035
|
clipRule: "evenodd",
|
|
@@ -4988,24 +5198,24 @@ var iconMap = {
|
|
|
4988
5198
|
};
|
|
4989
5199
|
|
|
4990
5200
|
// src/private/hooks/useResponsiveProp/useResponsiveProp.ts
|
|
4991
|
-
var
|
|
4992
|
-
var
|
|
5201
|
+
var import_type_guards9 = require("@wistia/type-guards");
|
|
5202
|
+
var import_react8 = require("react");
|
|
4993
5203
|
var isResponsiveObject = (values) => {
|
|
4994
5204
|
return typeof values === "object" && values !== null && !Array.isArray(values) && "base" in values;
|
|
4995
5205
|
};
|
|
4996
5206
|
var useResponsiveProp = (values) => {
|
|
4997
5207
|
const activeMediaQueries = useActiveMq();
|
|
4998
|
-
return (0,
|
|
4999
|
-
if ((0,
|
|
5208
|
+
return (0, import_react8.useMemo)(() => {
|
|
5209
|
+
if ((0, import_type_guards9.isRecord)(values) && isResponsiveObject(values)) {
|
|
5000
5210
|
const mq2 = activeMediaQueries.find((key) => key in values);
|
|
5001
|
-
return (0,
|
|
5211
|
+
return (0, import_type_guards9.isNotUndefined)(mq2) && (0, import_type_guards9.isNotUndefined)(values[mq2]) ? values[mq2] : values.base;
|
|
5002
5212
|
}
|
|
5003
5213
|
return values;
|
|
5004
5214
|
}, [activeMediaQueries, values]);
|
|
5005
5215
|
};
|
|
5006
5216
|
|
|
5007
5217
|
// src/components/Icon/Icon.tsx
|
|
5008
|
-
var
|
|
5218
|
+
var import_jsx_runtime159 = require("react/jsx-runtime");
|
|
5009
5219
|
var iconSizeMap = {
|
|
5010
5220
|
sm: "12",
|
|
5011
5221
|
md: "16",
|
|
@@ -5013,7 +5223,7 @@ var iconSizeMap = {
|
|
|
5013
5223
|
xl: "32",
|
|
5014
5224
|
xxl: "48"
|
|
5015
5225
|
};
|
|
5016
|
-
var StyledIcon =
|
|
5226
|
+
var StyledIcon = import_styled_components17.default.svg`
|
|
5017
5227
|
${({ $colorScheme }) => getColorScheme($colorScheme ?? "inherit")}
|
|
5018
5228
|
`;
|
|
5019
5229
|
var Icon = ({
|
|
@@ -5025,13 +5235,13 @@ var Icon = ({
|
|
|
5025
5235
|
...otherProps
|
|
5026
5236
|
}) => {
|
|
5027
5237
|
const responsiveSize = useResponsiveProp(size);
|
|
5028
|
-
if ((0,
|
|
5238
|
+
if ((0, import_type_guards10.isNil)(type)) {
|
|
5029
5239
|
throw new Error("An Icon component requires a `type` prop to be provided");
|
|
5030
5240
|
}
|
|
5031
|
-
if ((0,
|
|
5241
|
+
if ((0, import_type_guards10.isNil)(iconMap[type])) {
|
|
5032
5242
|
throw new Error(`Type "${type}" does not exist, please update type prop in Icon component.`);
|
|
5033
5243
|
}
|
|
5034
|
-
if ((0,
|
|
5244
|
+
if ((0, import_type_guards10.isNil)(iconSizeMap[responsiveSize])) {
|
|
5035
5245
|
throw new Error(
|
|
5036
5246
|
`Size "${responsiveSize}" does not exist, please update size prop in Icon component.`
|
|
5037
5247
|
);
|
|
@@ -5042,7 +5252,7 @@ var Icon = ({
|
|
|
5042
5252
|
...style
|
|
5043
5253
|
};
|
|
5044
5254
|
const iconColor = invertColor ? "var(--color-icon-on-fill)" : "var(--color-icon)";
|
|
5045
|
-
return /* @__PURE__ */ (0,
|
|
5255
|
+
return /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
5046
5256
|
StyledIcon,
|
|
5047
5257
|
{
|
|
5048
5258
|
$colorScheme: colorScheme,
|
|
@@ -5062,13 +5272,13 @@ var Icon = ({
|
|
|
5062
5272
|
Icon.displayName = "Icon";
|
|
5063
5273
|
|
|
5064
5274
|
// src/components/Link/Link.tsx
|
|
5065
|
-
var
|
|
5066
|
-
var
|
|
5067
|
-
var
|
|
5275
|
+
var import_react9 = require("react");
|
|
5276
|
+
var import_type_guards11 = require("@wistia/type-guards");
|
|
5277
|
+
var import_styled_components18 = __toESM(require("styled-components"));
|
|
5068
5278
|
var import_react_router_dom = require("react-router-dom");
|
|
5069
|
-
var
|
|
5279
|
+
var import_jsx_runtime160 = require("react/jsx-runtime");
|
|
5070
5280
|
var generateHref = (href, type, disabled) => {
|
|
5071
|
-
if (disabled || (0,
|
|
5281
|
+
if (disabled || (0, import_type_guards11.isNil)(href)) {
|
|
5072
5282
|
return void 0;
|
|
5073
5283
|
}
|
|
5074
5284
|
let to = href;
|
|
@@ -5080,17 +5290,17 @@ var generateHref = (href, type, disabled) => {
|
|
|
5080
5290
|
}
|
|
5081
5291
|
return to;
|
|
5082
5292
|
};
|
|
5083
|
-
var isButton = (props) => (0,
|
|
5084
|
-
var isLink = (props) => (0,
|
|
5085
|
-
var StyledLink =
|
|
5086
|
-
${({ href }) => (0,
|
|
5293
|
+
var isButton = (props) => (0, import_type_guards11.isUndefined)(props.href);
|
|
5294
|
+
var isLink = (props) => (0, import_type_guards11.isNotUndefined)(props.href);
|
|
5295
|
+
var StyledLink = import_styled_components18.default.a`
|
|
5296
|
+
${({ href }) => (0, import_type_guards11.isNil)(href) && buttonResetCss};
|
|
5087
5297
|
${({ $colorScheme }) => getColorScheme($colorScheme)}
|
|
5088
5298
|
cursor: pointer;
|
|
5089
5299
|
font-family: var(--typography-family-default);
|
|
5090
5300
|
color: var(--color-text-link);
|
|
5091
5301
|
text-decoration: ${({ $underline }) => $underline ? "underline" : "none"};
|
|
5092
5302
|
`;
|
|
5093
|
-
var Link = (0,
|
|
5303
|
+
var Link = (0, import_react9.forwardRef)(
|
|
5094
5304
|
({
|
|
5095
5305
|
beforeAction,
|
|
5096
5306
|
children,
|
|
@@ -5114,7 +5324,7 @@ var Link = (0, import_react8.forwardRef)(
|
|
|
5114
5324
|
} finally {
|
|
5115
5325
|
if (routingCallback !== null) {
|
|
5116
5326
|
routingCallback();
|
|
5117
|
-
} else if ((0,
|
|
5327
|
+
} else if ((0, import_type_guards11.isNotNil)(to)) {
|
|
5118
5328
|
window.location.assign(to);
|
|
5119
5329
|
} else {
|
|
5120
5330
|
}
|
|
@@ -5128,7 +5338,7 @@ var Link = (0, import_react8.forwardRef)(
|
|
|
5128
5338
|
onClick: handleClick
|
|
5129
5339
|
};
|
|
5130
5340
|
if (isButton(props)) {
|
|
5131
|
-
return /* @__PURE__ */ (0,
|
|
5341
|
+
return /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
|
|
5132
5342
|
StyledLink,
|
|
5133
5343
|
{
|
|
5134
5344
|
ref,
|
|
@@ -5148,7 +5358,7 @@ var Link = (0, import_react8.forwardRef)(
|
|
|
5148
5358
|
...commonProps,
|
|
5149
5359
|
...externalLinkProps
|
|
5150
5360
|
};
|
|
5151
|
-
return inRouterContext && type !== "external" ? /* @__PURE__ */ (0,
|
|
5361
|
+
return inRouterContext && type !== "external" ? /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
|
|
5152
5362
|
StyledLink,
|
|
5153
5363
|
{
|
|
5154
5364
|
as: import_react_router_dom.Link,
|
|
@@ -5156,7 +5366,7 @@ var Link = (0, import_react8.forwardRef)(
|
|
|
5156
5366
|
to: to ?? "",
|
|
5157
5367
|
children
|
|
5158
5368
|
}
|
|
5159
|
-
) : /* @__PURE__ */ (0,
|
|
5369
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
|
|
5160
5370
|
StyledLink,
|
|
5161
5371
|
{
|
|
5162
5372
|
as: "a",
|
|
@@ -5172,18 +5382,18 @@ var Link = (0, import_react8.forwardRef)(
|
|
|
5172
5382
|
Link.displayName = "Link";
|
|
5173
5383
|
|
|
5174
5384
|
// src/components/Button/Button.tsx
|
|
5175
|
-
var
|
|
5176
|
-
var isLink2 = (props) => (0,
|
|
5177
|
-
var StyledButton =
|
|
5385
|
+
var import_jsx_runtime161 = require("react/jsx-runtime");
|
|
5386
|
+
var isLink2 = (props) => (0, import_type_guards12.isNotUndefined)(props.href);
|
|
5387
|
+
var StyledButton = import_styled_components19.default.button`
|
|
5178
5388
|
${buttonResetCss}
|
|
5179
|
-
${({ colorScheme }) => getColorScheme(colorScheme)}
|
|
5180
|
-
${({ size }) => buttonSizeStyles[size]}
|
|
5181
|
-
${({ variant }) => buttonVariantsStyles[variant]}
|
|
5182
|
-
${({ unstyled }) =>
|
|
5183
|
-
${({ fullWidth }) => fullWidth && "width: 100%;"}
|
|
5389
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)}
|
|
5390
|
+
${({ $size }) => buttonSizeStyles[$size]}
|
|
5391
|
+
${({ $variant }) => buttonVariantsStyles[$variant]}
|
|
5392
|
+
${({ $unstyled }) => !$unstyled && buttonBaseStyles}
|
|
5393
|
+
${({ $fullWidth }) => $fullWidth && "width: 100%;"}
|
|
5184
5394
|
position: relative;
|
|
5185
5395
|
`;
|
|
5186
|
-
var StyledButtonContent =
|
|
5396
|
+
var StyledButtonContent = import_styled_components19.default.div`
|
|
5187
5397
|
align-items: center;
|
|
5188
5398
|
display: inline-flex;
|
|
5189
5399
|
flex-grow: 1;
|
|
@@ -5195,11 +5405,11 @@ var StyledButtonContent = import_styled_components17.default.div`
|
|
|
5195
5405
|
${({ $hasLeftIcon }) => $hasLeftIcon && "padding-left: 0;"}
|
|
5196
5406
|
${({ $hasRightIcon }) => $hasRightIcon && "padding-right: 0;"}
|
|
5197
5407
|
`;
|
|
5198
|
-
var StyledButtonContentLabel =
|
|
5408
|
+
var StyledButtonContentLabel = import_styled_components19.default.span`
|
|
5199
5409
|
flex: 1;
|
|
5200
5410
|
text-align: center;
|
|
5201
5411
|
`;
|
|
5202
|
-
var StyledButtonLoading =
|
|
5412
|
+
var StyledButtonLoading = import_styled_components19.default.div`
|
|
5203
5413
|
position: absolute;
|
|
5204
5414
|
display: flex;
|
|
5205
5415
|
`;
|
|
@@ -5209,24 +5419,24 @@ var ButtonContent = ({
|
|
|
5209
5419
|
rightIcon,
|
|
5210
5420
|
children
|
|
5211
5421
|
}) => {
|
|
5212
|
-
return /* @__PURE__ */ (0,
|
|
5213
|
-
isLoading ? /* @__PURE__ */ (0,
|
|
5214
|
-
/* @__PURE__ */ (0,
|
|
5422
|
+
return /* @__PURE__ */ (0, import_jsx_runtime161.jsxs)(import_jsx_runtime161.Fragment, { children: [
|
|
5423
|
+
isLoading ? /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(StyledButtonLoading, { children: /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(Icon, { type: "spinner" }) }) : null,
|
|
5424
|
+
/* @__PURE__ */ (0, import_jsx_runtime161.jsxs)(
|
|
5215
5425
|
StyledButtonContent,
|
|
5216
5426
|
{
|
|
5217
|
-
$hasLeftIcon: (0,
|
|
5218
|
-
$hasRightIcon: (0,
|
|
5427
|
+
$hasLeftIcon: (0, import_type_guards12.isNotNil)(leftIcon),
|
|
5428
|
+
$hasRightIcon: (0, import_type_guards12.isNotNil)(rightIcon),
|
|
5219
5429
|
$isLoading: isLoading,
|
|
5220
5430
|
children: [
|
|
5221
5431
|
leftIcon ?? null,
|
|
5222
|
-
/* @__PURE__ */ (0,
|
|
5432
|
+
/* @__PURE__ */ (0, import_jsx_runtime161.jsx)(StyledButtonContentLabel, { children }),
|
|
5223
5433
|
rightIcon ?? null
|
|
5224
5434
|
]
|
|
5225
5435
|
}
|
|
5226
5436
|
)
|
|
5227
5437
|
] });
|
|
5228
5438
|
};
|
|
5229
|
-
var Button = (0,
|
|
5439
|
+
var Button = (0, import_react10.forwardRef)(
|
|
5230
5440
|
({
|
|
5231
5441
|
children,
|
|
5232
5442
|
forceState,
|
|
@@ -5239,7 +5449,7 @@ var Button = (0, import_react9.forwardRef)(
|
|
|
5239
5449
|
unstyled = false,
|
|
5240
5450
|
onClick,
|
|
5241
5451
|
fullWidth = false,
|
|
5242
|
-
size = "
|
|
5452
|
+
size = "md",
|
|
5243
5453
|
variant = "solid",
|
|
5244
5454
|
...props
|
|
5245
5455
|
}, ref) => {
|
|
@@ -5248,27 +5458,27 @@ var Button = (0, import_react9.forwardRef)(
|
|
|
5248
5458
|
const isAriaDisabled = () => isLoading || disabled;
|
|
5249
5459
|
const commonProps = {
|
|
5250
5460
|
"aria-disabled": isAriaDisabled() || void 0,
|
|
5251
|
-
colorScheme,
|
|
5252
|
-
|
|
5253
|
-
|
|
5254
|
-
unstyled,
|
|
5461
|
+
$colorScheme: colorScheme,
|
|
5462
|
+
$fullWidth: responsiveFullWidth,
|
|
5463
|
+
$size: responsiveSize,
|
|
5464
|
+
$unstyled: unstyled,
|
|
5465
|
+
$variant: variant,
|
|
5255
5466
|
className,
|
|
5256
|
-
|
|
5257
|
-
|
|
5258
|
-
fullWidth: responsiveFullWidth
|
|
5467
|
+
forceState,
|
|
5468
|
+
isLoading
|
|
5259
5469
|
};
|
|
5260
5470
|
if (forceState) {
|
|
5261
5471
|
commonProps.className = `${className ?? ""} force-state-${forceState}`;
|
|
5262
5472
|
}
|
|
5263
5473
|
if (isLink2(props)) {
|
|
5264
|
-
return /* @__PURE__ */ (0,
|
|
5474
|
+
return /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
5265
5475
|
StyledButton,
|
|
5266
5476
|
{
|
|
5267
5477
|
ref,
|
|
5268
5478
|
as: Link,
|
|
5269
5479
|
...props,
|
|
5270
5480
|
...commonProps,
|
|
5271
|
-
children: /* @__PURE__ */ (0,
|
|
5481
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
5272
5482
|
ButtonContent,
|
|
5273
5483
|
{
|
|
5274
5484
|
isLoading,
|
|
@@ -5285,11 +5495,11 @@ var Button = (0, import_react9.forwardRef)(
|
|
|
5285
5495
|
event.preventDefault();
|
|
5286
5496
|
return;
|
|
5287
5497
|
}
|
|
5288
|
-
if ((0,
|
|
5498
|
+
if ((0, import_type_guards12.isNotNil)(onClick)) {
|
|
5289
5499
|
onClick(event);
|
|
5290
5500
|
}
|
|
5291
5501
|
};
|
|
5292
|
-
return /* @__PURE__ */ (0,
|
|
5502
|
+
return /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
5293
5503
|
StyledButton,
|
|
5294
5504
|
{
|
|
5295
5505
|
ref,
|
|
@@ -5297,7 +5507,7 @@ var Button = (0, import_react9.forwardRef)(
|
|
|
5297
5507
|
type: "button",
|
|
5298
5508
|
...props,
|
|
5299
5509
|
...commonProps,
|
|
5300
|
-
children: /* @__PURE__ */ (0,
|
|
5510
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
5301
5511
|
ButtonContent,
|
|
5302
5512
|
{
|
|
5303
5513
|
isLoading,
|
|
@@ -5313,9 +5523,9 @@ var Button = (0, import_react9.forwardRef)(
|
|
|
5313
5523
|
Button.displayName = "Button";
|
|
5314
5524
|
|
|
5315
5525
|
// src/components/ButtonGroup/ButtonGroup.tsx
|
|
5316
|
-
var
|
|
5317
|
-
var
|
|
5318
|
-
var
|
|
5526
|
+
var import_styled_components20 = __toESM(require("styled-components"));
|
|
5527
|
+
var import_type_guards13 = require("@wistia/type-guards");
|
|
5528
|
+
var import_jsx_runtime162 = require("react/jsx-runtime");
|
|
5319
5529
|
var getAlignment = (align) => {
|
|
5320
5530
|
if (align === "center") {
|
|
5321
5531
|
return "center";
|
|
@@ -5328,15 +5538,15 @@ var getAlignment = (align) => {
|
|
|
5328
5538
|
}
|
|
5329
5539
|
return void 0;
|
|
5330
5540
|
};
|
|
5331
|
-
var ButtonGroupComponent =
|
|
5541
|
+
var ButtonGroupComponent = import_styled_components20.default.div`
|
|
5332
5542
|
display: flex;
|
|
5333
5543
|
|
|
5334
5544
|
/* this helps ensure that primary buttons appear at the top of the column */
|
|
5335
|
-
flex-direction: ${({ align }) => align === "right" ? "column-reverse" : "column"};
|
|
5545
|
+
flex-direction: ${({ $align }) => $align === "right" ? "column-reverse" : "column"};
|
|
5336
5546
|
gap: var(--space-04);
|
|
5337
5547
|
align-items: center;
|
|
5338
|
-
justify-content: ${({ align }) => getAlignment(align)};
|
|
5339
|
-
width: ${({ fullWidth }) => fullWidth ? "100%" : "auto"};
|
|
5548
|
+
justify-content: ${({ $align }) => getAlignment($align)};
|
|
5549
|
+
width: ${({ $fullWidth }) => $fullWidth ? "100%" : "auto"};
|
|
5340
5550
|
|
|
5341
5551
|
${mq.smAndUp} {
|
|
5342
5552
|
flex-direction: row;
|
|
@@ -5354,14 +5564,14 @@ var ButtonGroup = ({
|
|
|
5354
5564
|
fullWidth = false,
|
|
5355
5565
|
...otherProps
|
|
5356
5566
|
}) => {
|
|
5357
|
-
if ((0,
|
|
5567
|
+
if ((0, import_type_guards13.isNil)(children)) {
|
|
5358
5568
|
return null;
|
|
5359
5569
|
}
|
|
5360
|
-
return /* @__PURE__ */ (0,
|
|
5570
|
+
return /* @__PURE__ */ (0, import_jsx_runtime162.jsx)(
|
|
5361
5571
|
ButtonGroupComponent,
|
|
5362
5572
|
{
|
|
5363
|
-
align,
|
|
5364
|
-
fullWidth,
|
|
5573
|
+
$align: align,
|
|
5574
|
+
$fullWidth: fullWidth,
|
|
5365
5575
|
...otherProps,
|
|
5366
5576
|
children
|
|
5367
5577
|
}
|
|
@@ -5370,20 +5580,20 @@ var ButtonGroup = ({
|
|
|
5370
5580
|
ButtonGroup.displayName = "ButtonGroup";
|
|
5371
5581
|
|
|
5372
5582
|
// src/components/Divider/Divider.tsx
|
|
5373
|
-
var
|
|
5374
|
-
var
|
|
5583
|
+
var import_styled_components21 = __toESM(require("styled-components"));
|
|
5584
|
+
var import_jsx_runtime163 = require("react/jsx-runtime");
|
|
5375
5585
|
var sizeToPixelMap = {
|
|
5376
5586
|
lg: 4,
|
|
5377
5587
|
sm: 1
|
|
5378
5588
|
};
|
|
5379
|
-
var DividerComponent =
|
|
5589
|
+
var DividerComponent = import_styled_components21.default.hr`
|
|
5380
5590
|
background: none;
|
|
5381
5591
|
border-bottom: none;
|
|
5382
5592
|
border-left: none;
|
|
5383
5593
|
border-right: none;
|
|
5384
5594
|
border-top-color: var(--color-border);
|
|
5385
5595
|
border-top-style: solid;
|
|
5386
|
-
border-top-width: ${({ borderHeight }) => `${borderHeight}px`};
|
|
5596
|
+
border-top-width: ${({ $borderHeight }) => `${$borderHeight}px`};
|
|
5387
5597
|
clear: both;
|
|
5388
5598
|
height: 0;
|
|
5389
5599
|
line-height: 0;
|
|
@@ -5391,10 +5601,10 @@ var DividerComponent = import_styled_components19.default.hr`
|
|
|
5391
5601
|
`;
|
|
5392
5602
|
var Divider = ({ size = "sm", ...otherProps }) => {
|
|
5393
5603
|
const responsiveSize = useResponsiveProp(size);
|
|
5394
|
-
return /* @__PURE__ */ (0,
|
|
5604
|
+
return /* @__PURE__ */ (0, import_jsx_runtime163.jsx)(
|
|
5395
5605
|
DividerComponent,
|
|
5396
5606
|
{
|
|
5397
|
-
borderHeight: sizeToPixelMap[responsiveSize],
|
|
5607
|
+
$borderHeight: sizeToPixelMap[responsiveSize],
|
|
5398
5608
|
...otherProps
|
|
5399
5609
|
}
|
|
5400
5610
|
);
|
|
@@ -5402,10 +5612,10 @@ var Divider = ({ size = "sm", ...otherProps }) => {
|
|
|
5402
5612
|
Divider.displayName = "Divider";
|
|
5403
5613
|
|
|
5404
5614
|
// src/components/Ellipsis/Ellipsis.tsx
|
|
5405
|
-
var
|
|
5406
|
-
var
|
|
5407
|
-
var
|
|
5408
|
-
var ellipsisStyle =
|
|
5615
|
+
var import_type_guards14 = require("@wistia/type-guards");
|
|
5616
|
+
var import_styled_components22 = __toESM(require("styled-components"));
|
|
5617
|
+
var import_jsx_runtime164 = require("react/jsx-runtime");
|
|
5618
|
+
var ellipsisStyle = import_styled_components22.css`
|
|
5409
5619
|
overflow: hidden;
|
|
5410
5620
|
text-overflow: ellipsis;
|
|
5411
5621
|
white-space: nowrap;
|
|
@@ -5428,16 +5638,16 @@ var ellipsisStyle = import_styled_components20.css`
|
|
|
5428
5638
|
}
|
|
5429
5639
|
}
|
|
5430
5640
|
`;
|
|
5431
|
-
var ellipsisFlexParentStyle =
|
|
5641
|
+
var ellipsisFlexParentStyle = import_styled_components22.css`
|
|
5432
5642
|
min-width: 0;
|
|
5433
5643
|
`;
|
|
5434
|
-
var EllipsisComponent =
|
|
5644
|
+
var EllipsisComponent = import_styled_components22.default.div`
|
|
5435
5645
|
${ellipsisStyle};
|
|
5436
|
-
${({ lines }) => {
|
|
5437
|
-
if ((0,
|
|
5438
|
-
return
|
|
5646
|
+
${({ $lines }) => {
|
|
5647
|
+
if ((0, import_type_guards14.isNotNil)($lines)) {
|
|
5648
|
+
return import_styled_components22.css`
|
|
5439
5649
|
-webkit-box-orient: vertical;
|
|
5440
|
-
-webkit-line-clamp: ${lines};
|
|
5650
|
+
-webkit-line-clamp: ${$lines};
|
|
5441
5651
|
display: -webkit-box;
|
|
5442
5652
|
white-space: initial;
|
|
5443
5653
|
`;
|
|
@@ -5445,10 +5655,10 @@ var EllipsisComponent = import_styled_components20.default.div`
|
|
|
5445
5655
|
return void 0;
|
|
5446
5656
|
}}
|
|
5447
5657
|
`;
|
|
5448
|
-
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0,
|
|
5658
|
+
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0, import_jsx_runtime164.jsx)(
|
|
5449
5659
|
EllipsisComponent,
|
|
5450
5660
|
{
|
|
5451
|
-
lines,
|
|
5661
|
+
$lines: lines,
|
|
5452
5662
|
...otherProps,
|
|
5453
5663
|
children
|
|
5454
5664
|
}
|
|
@@ -5456,8 +5666,8 @@ var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ (0, impor
|
|
|
5456
5666
|
Ellipsis.displayName = "Ellipsis";
|
|
5457
5667
|
|
|
5458
5668
|
// src/components/Heading/Heading.tsx
|
|
5459
|
-
var
|
|
5460
|
-
var
|
|
5669
|
+
var import_react11 = require("react");
|
|
5670
|
+
var import_styled_components23 = __toESM(require("styled-components"));
|
|
5461
5671
|
|
|
5462
5672
|
// src/private/helpers/makePolymorphic/makePolymorphic.tsx
|
|
5463
5673
|
var makePolymorphic = (component) => {
|
|
@@ -5465,44 +5675,44 @@ var makePolymorphic = (component) => {
|
|
|
5465
5675
|
};
|
|
5466
5676
|
|
|
5467
5677
|
// src/components/Heading/Heading.tsx
|
|
5468
|
-
var
|
|
5469
|
-
var heroStyle =
|
|
5678
|
+
var import_jsx_runtime165 = require("react/jsx-runtime");
|
|
5679
|
+
var heroStyle = import_styled_components23.css`
|
|
5470
5680
|
--font-family: var(--typography-heading-hero-family);
|
|
5471
5681
|
--font-size: var(--typography-heading-hero-size);
|
|
5472
5682
|
--font-weight: var(--typography-heading-hero-weight);
|
|
5473
5683
|
--line-height: var(--typography-heading-hero-line-height);
|
|
5474
5684
|
`;
|
|
5475
|
-
var heading1TextStyle =
|
|
5685
|
+
var heading1TextStyle = import_styled_components23.css`
|
|
5476
5686
|
--font-family: var(--typography-heading-1-family);
|
|
5477
5687
|
--font-size: var(--typography-heading-1-size);
|
|
5478
5688
|
--font-weight: var(--typography-heading-1-weight);
|
|
5479
5689
|
--line-height: var(--typography-heading-1-line-height);
|
|
5480
5690
|
`;
|
|
5481
|
-
var heading2TextStyle =
|
|
5691
|
+
var heading2TextStyle = import_styled_components23.css`
|
|
5482
5692
|
--font-family: var(--typography-heading-2-family);
|
|
5483
5693
|
--font-size: var(--typography-heading-2-size);
|
|
5484
5694
|
--font-weight: var(--typography-heading-2-weight);
|
|
5485
5695
|
--line-height: var(--typography-heading-2-line-height);
|
|
5486
5696
|
`;
|
|
5487
|
-
var heading3TextStyle =
|
|
5697
|
+
var heading3TextStyle = import_styled_components23.css`
|
|
5488
5698
|
--font-family: var(--typography-heading-3-family);
|
|
5489
5699
|
--font-size: var(--typography-heading-3-size);
|
|
5490
5700
|
--font-weight: var(--typography-heading-3-weight);
|
|
5491
5701
|
--line-height: var(--typography-heading-3-line-height);
|
|
5492
5702
|
`;
|
|
5493
|
-
var heading4TextStyle =
|
|
5703
|
+
var heading4TextStyle = import_styled_components23.css`
|
|
5494
5704
|
--font-family: var(--typography-heading-4-family);
|
|
5495
5705
|
--font-size: var(--typography-heading-4-size);
|
|
5496
5706
|
--font-weight: var(--typography-heading-4-weight);
|
|
5497
5707
|
--line-height: var(--typography-heading-4-line-height);
|
|
5498
5708
|
`;
|
|
5499
|
-
var heading5TextStyle =
|
|
5709
|
+
var heading5TextStyle = import_styled_components23.css`
|
|
5500
5710
|
--font-family: var(--typography-heading-5-family);
|
|
5501
5711
|
--font-size: var(--typography-heading-5-size);
|
|
5502
5712
|
--font-weight: var(--typography-heading-5-weight);
|
|
5503
5713
|
--line-height: var(--typography-heading-5-line-height);
|
|
5504
5714
|
`;
|
|
5505
|
-
var heading6TextStyle =
|
|
5715
|
+
var heading6TextStyle = import_styled_components23.css`
|
|
5506
5716
|
--font-family: var(--typography-heading-6-family);
|
|
5507
5717
|
--font-size: var(--typography-heading-6-size);
|
|
5508
5718
|
--font-weight: var(--typography-heading-6-weight);
|
|
@@ -5518,26 +5728,26 @@ var variantStyleMap = {
|
|
|
5518
5728
|
heading6: heading6TextStyle
|
|
5519
5729
|
};
|
|
5520
5730
|
var DEFAULT_ELEMENT = "h1";
|
|
5521
|
-
var StyledHeading =
|
|
5522
|
-
${({ colorScheme }) => getColorScheme(colorScheme)};
|
|
5731
|
+
var StyledHeading = import_styled_components23.default.div`
|
|
5732
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
5523
5733
|
font-family: var(--font-family);
|
|
5524
5734
|
font-size: var(--font-size);
|
|
5525
5735
|
font-weight: var(--font-weight);
|
|
5526
5736
|
line-height: var(--line-height);
|
|
5527
5737
|
color: var(--color-text);
|
|
5528
|
-
${({ variant }) => variantStyleMap[variant]}
|
|
5529
|
-
${({ ellipsis }) => ellipsis && ellipsisStyle};
|
|
5530
|
-
${({ inline }) => inline &&
|
|
5738
|
+
${({ $variant }) => variantStyleMap[$variant]}
|
|
5739
|
+
${({ $ellipsis }) => $ellipsis && ellipsisStyle};
|
|
5740
|
+
${({ $inline }) => $inline && import_styled_components23.css`
|
|
5531
5741
|
display: inline-block;
|
|
5532
5742
|
`}
|
|
5533
|
-
${({ disabled }) => disabled &&
|
|
5743
|
+
${({ $disabled }) => $disabled && import_styled_components23.css`
|
|
5534
5744
|
color: var(--color-text-disabled);
|
|
5535
5745
|
`}
|
|
5536
|
-
${({ preventUserSelect }) => preventUserSelect &&
|
|
5746
|
+
${({ $preventUserSelect }) => $preventUserSelect && import_styled_components23.css`
|
|
5537
5747
|
user-select: none;
|
|
5538
5748
|
`}
|
|
5539
|
-
${({ align }) =>
|
|
5540
|
-
text-align: ${align};
|
|
5749
|
+
${({ $align }) => import_styled_components23.css`
|
|
5750
|
+
text-align: ${$align};
|
|
5541
5751
|
`}
|
|
5542
5752
|
margin: 0;
|
|
5543
5753
|
`;
|
|
@@ -5550,7 +5760,7 @@ var variantElementMap = {
|
|
|
5550
5760
|
heading5: "h5",
|
|
5551
5761
|
heading6: "h6"
|
|
5552
5762
|
};
|
|
5553
|
-
var HeadingComponent = (0,
|
|
5763
|
+
var HeadingComponent = (0, import_react11.forwardRef)(
|
|
5554
5764
|
({
|
|
5555
5765
|
align = "left",
|
|
5556
5766
|
colorScheme = "inherit",
|
|
@@ -5561,18 +5771,18 @@ var HeadingComponent = (0, import_react10.forwardRef)(
|
|
|
5561
5771
|
variant = "heading1",
|
|
5562
5772
|
renderAs,
|
|
5563
5773
|
...otherProps
|
|
5564
|
-
}, ref) => /* @__PURE__ */ (0,
|
|
5774
|
+
}, ref) => /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(
|
|
5565
5775
|
StyledHeading,
|
|
5566
5776
|
{
|
|
5567
5777
|
ref,
|
|
5568
|
-
align,
|
|
5778
|
+
$align: align,
|
|
5779
|
+
$colorScheme: colorScheme,
|
|
5780
|
+
$disabled: disabled,
|
|
5781
|
+
$ellipsis: ellipsis,
|
|
5782
|
+
$inline: inline,
|
|
5783
|
+
$preventUserSelect: preventUserSelect,
|
|
5784
|
+
$variant: variant,
|
|
5569
5785
|
as: renderAs ?? variantElementMap[variant],
|
|
5570
|
-
colorScheme,
|
|
5571
|
-
disabled,
|
|
5572
|
-
ellipsis,
|
|
5573
|
-
inline,
|
|
5574
|
-
preventUserSelect,
|
|
5575
|
-
variant,
|
|
5576
5786
|
...otherProps
|
|
5577
5787
|
}
|
|
5578
5788
|
)
|
|
@@ -5581,21 +5791,21 @@ HeadingComponent.displayName = "Heading";
|
|
|
5581
5791
|
var Heading = makePolymorphic(HeadingComponent);
|
|
5582
5792
|
|
|
5583
5793
|
// src/components/IconButton/IconButton.tsx
|
|
5584
|
-
var
|
|
5585
|
-
var
|
|
5794
|
+
var import_react12 = require("react");
|
|
5795
|
+
var import_styled_components25 = __toESM(require("styled-components"));
|
|
5586
5796
|
|
|
5587
5797
|
// src/components/Tooltip/Tooltip.tsx
|
|
5588
5798
|
var import_react_tooltip2 = require("@radix-ui/react-tooltip");
|
|
5589
|
-
var
|
|
5590
|
-
var
|
|
5591
|
-
var CompactTooltipStyles =
|
|
5799
|
+
var import_styled_components24 = __toESM(require("styled-components"));
|
|
5800
|
+
var import_jsx_runtime166 = require("react/jsx-runtime");
|
|
5801
|
+
var CompactTooltipStyles = import_styled_components24.css`
|
|
5592
5802
|
--tooltip-font-size: var(--typography-label-4-size);
|
|
5593
5803
|
--tooltip-line-height: var(--typography-label-4-line-height);
|
|
5594
5804
|
--tooltip-font-weight: var(--typography-label-4-weight);
|
|
5595
5805
|
--tooltip-horizontal-padding: var(--space-02);
|
|
5596
5806
|
--tooltip-vertical-padding: var(--space-03);
|
|
5597
5807
|
`;
|
|
5598
|
-
var StyledContent = (0,
|
|
5808
|
+
var StyledContent = (0, import_styled_components24.default)(import_react_tooltip2.Content)`
|
|
5599
5809
|
--tooltip-font-family: var(--typography-family-default);
|
|
5600
5810
|
--tooltip-border-radius: var(--border-radius-05);
|
|
5601
5811
|
--tooltip-bg: var(--color-bg-tooltip);
|
|
@@ -5653,14 +5863,14 @@ var Tooltip = ({
|
|
|
5653
5863
|
if (forceOpen === true) {
|
|
5654
5864
|
rootProps.open = true;
|
|
5655
5865
|
}
|
|
5656
|
-
return /* @__PURE__ */ (0,
|
|
5866
|
+
return /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(
|
|
5657
5867
|
import_react_tooltip2.Root,
|
|
5658
5868
|
{
|
|
5659
5869
|
delayDuration: delay,
|
|
5660
5870
|
...rootProps,
|
|
5661
5871
|
children: [
|
|
5662
|
-
/* @__PURE__ */ (0,
|
|
5663
|
-
/* @__PURE__ */ (0,
|
|
5872
|
+
/* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_react_tooltip2.Trigger, { asChild: true, children }),
|
|
5873
|
+
/* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_react_tooltip2.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(
|
|
5664
5874
|
StyledContent,
|
|
5665
5875
|
{
|
|
5666
5876
|
$compact: compact,
|
|
@@ -5668,7 +5878,7 @@ var Tooltip = ({
|
|
|
5668
5878
|
sideOffset: hideArrow ? VISUAL_OFFSET : VISUAL_OFFSET - 2,
|
|
5669
5879
|
children: [
|
|
5670
5880
|
content,
|
|
5671
|
-
!hideArrow ? /* @__PURE__ */ (0,
|
|
5881
|
+
!hideArrow ? /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_react_tooltip2.Arrow, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(
|
|
5672
5882
|
"svg",
|
|
5673
5883
|
{
|
|
5674
5884
|
fill: "var(--tooltip-bg)",
|
|
@@ -5677,7 +5887,7 @@ var Tooltip = ({
|
|
|
5677
5887
|
viewBox: "0 0 12 8",
|
|
5678
5888
|
width: "12",
|
|
5679
5889
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5680
|
-
children: /* @__PURE__ */ (0,
|
|
5890
|
+
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" })
|
|
5681
5891
|
}
|
|
5682
5892
|
) }) : null
|
|
5683
5893
|
]
|
|
@@ -5690,18 +5900,12 @@ var Tooltip = ({
|
|
|
5690
5900
|
Tooltip.displayName = "Tooltip";
|
|
5691
5901
|
|
|
5692
5902
|
// src/components/IconButton/IconButton.tsx
|
|
5693
|
-
var
|
|
5694
|
-
var
|
|
5695
|
-
|
|
5696
|
-
|
|
5697
|
-
|
|
5698
|
-
|
|
5699
|
-
};
|
|
5700
|
-
var StyledButton2 = (0, import_styled_components23.default)(Button)`
|
|
5701
|
-
--icon-button-size-small: 24px;
|
|
5702
|
-
--icon-button-size-medium: 32px;
|
|
5703
|
-
--icon-button-size-large: 40px;
|
|
5704
|
-
--icon-button-size-hero: 48px;
|
|
5903
|
+
var import_jsx_runtime167 = require("react/jsx-runtime");
|
|
5904
|
+
var StyledButton2 = (0, import_styled_components25.default)(Button)`
|
|
5905
|
+
--icon-button-size-sm: 24px;
|
|
5906
|
+
--icon-button-size-md: 32px;
|
|
5907
|
+
--icon-button-size-lg: 40px;
|
|
5908
|
+
--icon-button-size-xl: 48px;
|
|
5705
5909
|
|
|
5706
5910
|
border-radius: 50%;
|
|
5707
5911
|
height: ${({ size }) => `var(--icon-button-size-${size})`};
|
|
@@ -5711,10 +5915,10 @@ var StyledButton2 = (0, import_styled_components23.default)(Button)`
|
|
|
5711
5915
|
align-items: center;
|
|
5712
5916
|
line-height: 1;
|
|
5713
5917
|
`;
|
|
5714
|
-
var IconButton = (0,
|
|
5715
|
-
({ children, label, disableTooltip = false, size = "
|
|
5918
|
+
var IconButton = (0, import_react12.forwardRef)(
|
|
5919
|
+
({ children, label, disableTooltip = false, size = "md", ...props }, ref) => {
|
|
5716
5920
|
const responsiveSize = useResponsiveProp(size);
|
|
5717
|
-
const button = /* @__PURE__ */ (0,
|
|
5921
|
+
const button = /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
|
|
5718
5922
|
StyledButton2,
|
|
5719
5923
|
{
|
|
5720
5924
|
...props,
|
|
@@ -5722,25 +5926,83 @@ var IconButton = (0, import_react11.forwardRef)(
|
|
|
5722
5926
|
"aria-label": label,
|
|
5723
5927
|
"data-wistia-ui-icon-button": true,
|
|
5724
5928
|
size: responsiveSize,
|
|
5725
|
-
children: (0,
|
|
5726
|
-
size:
|
|
5929
|
+
children: (0, import_react12.cloneElement)(import_react12.Children.only(children), {
|
|
5930
|
+
size: responsiveSize
|
|
5727
5931
|
})
|
|
5728
5932
|
}
|
|
5729
5933
|
);
|
|
5730
5934
|
if (disableTooltip) {
|
|
5731
5935
|
return button;
|
|
5732
5936
|
}
|
|
5733
|
-
return /* @__PURE__ */ (0,
|
|
5937
|
+
return /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(Tooltip, { content: label, children: button });
|
|
5734
5938
|
}
|
|
5735
5939
|
);
|
|
5736
5940
|
IconButton.displayName = "IconButton";
|
|
5737
5941
|
|
|
5942
|
+
// src/components/Label/Label.tsx
|
|
5943
|
+
var import_styled_components26 = __toESM(require("styled-components"));
|
|
5944
|
+
var import_jsx_runtime168 = require("react/jsx-runtime");
|
|
5945
|
+
var requiredStyle = import_styled_components26.css`
|
|
5946
|
+
&::after {
|
|
5947
|
+
color: red; /* TODO need a color for this */
|
|
5948
|
+
display: inline;
|
|
5949
|
+
padding-left: var(--space-01);
|
|
5950
|
+
content: '*';
|
|
5951
|
+
}
|
|
5952
|
+
`;
|
|
5953
|
+
var disabledStyle = import_styled_components26.css`
|
|
5954
|
+
color: var(--color-text-disabled);
|
|
5955
|
+
`;
|
|
5956
|
+
var SPACE_BETWEEN_LABEL_AND_INPUT = "var(--space-02)";
|
|
5957
|
+
var StyledLabel = import_styled_components26.default.label`
|
|
5958
|
+
display: block;
|
|
5959
|
+
font-size: var(--typography-label-1-size);
|
|
5960
|
+
font-weight: var(--typography-label-1-weight);
|
|
5961
|
+
line-height: var(--typography-label-1-line-height);
|
|
5962
|
+
margin-bottom: ${SPACE_BETWEEN_LABEL_AND_INPUT};
|
|
5963
|
+
width: 100%;
|
|
5964
|
+
|
|
5965
|
+
/* if label is wrapping an input this ensures it appears beneath the label with a nice margin */
|
|
5966
|
+
> input,
|
|
5967
|
+
> textarea,
|
|
5968
|
+
> select {
|
|
5969
|
+
display: block;
|
|
5970
|
+
margin-top: ${SPACE_BETWEEN_LABEL_AND_INPUT};
|
|
5971
|
+
}
|
|
5972
|
+
|
|
5973
|
+
> label {
|
|
5974
|
+
font-weight: normal;
|
|
5975
|
+
}
|
|
5976
|
+
|
|
5977
|
+
${({ screenReaderOnly }) => screenReaderOnly && visuallyHiddenStyle}
|
|
5978
|
+
${({ disabled }) => disabled && disabledStyle}
|
|
5979
|
+
${({ required }) => required && requiredStyle}
|
|
5980
|
+
`;
|
|
5981
|
+
var Label = ({
|
|
5982
|
+
children,
|
|
5983
|
+
disabled = false,
|
|
5984
|
+
htmlFor,
|
|
5985
|
+
required = false,
|
|
5986
|
+
screenReaderOnly = false,
|
|
5987
|
+
...otherProps
|
|
5988
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime168.jsx)(
|
|
5989
|
+
StyledLabel,
|
|
5990
|
+
{
|
|
5991
|
+
disabled,
|
|
5992
|
+
required,
|
|
5993
|
+
screenReaderOnly,
|
|
5994
|
+
...otherProps,
|
|
5995
|
+
children
|
|
5996
|
+
}
|
|
5997
|
+
);
|
|
5998
|
+
Label.displayName = "Label";
|
|
5999
|
+
|
|
5738
6000
|
// src/components/ScreenReaderOnly/ScreenReaderOnly.tsx
|
|
5739
|
-
var
|
|
5740
|
-
var
|
|
5741
|
-
var
|
|
5742
|
-
var VisuallyHidden =
|
|
5743
|
-
var VisuallyHiddenButFocusable =
|
|
6001
|
+
var import_styled_components27 = __toESM(require("styled-components"));
|
|
6002
|
+
var import_type_guards15 = require("@wistia/type-guards");
|
|
6003
|
+
var import_jsx_runtime169 = require("react/jsx-runtime");
|
|
6004
|
+
var VisuallyHidden = import_styled_components27.default.div({ ...visuallyHiddenStyle });
|
|
6005
|
+
var VisuallyHiddenButFocusable = import_styled_components27.default.div({
|
|
5744
6006
|
"&:not(:focus-within)": visuallyHiddenStyle
|
|
5745
6007
|
});
|
|
5746
6008
|
var ScreenReaderOnly = ({
|
|
@@ -5749,39 +6011,39 @@ var ScreenReaderOnly = ({
|
|
|
5749
6011
|
focusable = false,
|
|
5750
6012
|
...otherProps
|
|
5751
6013
|
}) => {
|
|
5752
|
-
const accessibleText = (0,
|
|
6014
|
+
const accessibleText = (0, import_type_guards15.isNotNil)(text) ? text : children;
|
|
5753
6015
|
if (focusable) {
|
|
5754
|
-
return /* @__PURE__ */ (0,
|
|
6016
|
+
return /* @__PURE__ */ (0, import_jsx_runtime169.jsx)(VisuallyHiddenButFocusable, { ...otherProps, children: accessibleText });
|
|
5755
6017
|
}
|
|
5756
|
-
return /* @__PURE__ */ (0,
|
|
6018
|
+
return /* @__PURE__ */ (0, import_jsx_runtime169.jsx)(VisuallyHidden, { ...otherProps, children: accessibleText });
|
|
5757
6019
|
};
|
|
5758
6020
|
ScreenReaderOnly.displayName = "ScreenReaderOnly";
|
|
5759
6021
|
|
|
5760
6022
|
// src/components/Stack/Stack.tsx
|
|
5761
|
-
var
|
|
5762
|
-
var
|
|
5763
|
-
var
|
|
6023
|
+
var import_react13 = require("react");
|
|
6024
|
+
var import_styled_components28 = __toESM(require("styled-components"));
|
|
6025
|
+
var import_jsx_runtime170 = require("react/jsx-runtime");
|
|
5764
6026
|
var DEFAULT_ELEMENT2 = "div";
|
|
5765
|
-
var StyledStack =
|
|
6027
|
+
var StyledStack = import_styled_components28.default.div`
|
|
5766
6028
|
display: flex;
|
|
5767
6029
|
flex-direction: ${({ $direction }) => $direction === "horizontal" ? "row" : "column"};
|
|
5768
|
-
gap: ${({ gap }) => `var(--${gap})`};
|
|
6030
|
+
gap: ${({ $gap }) => `var(--${$gap})`};
|
|
5769
6031
|
|
|
5770
6032
|
> * {
|
|
5771
6033
|
flex: 1;
|
|
5772
6034
|
}
|
|
5773
6035
|
`;
|
|
5774
|
-
var StackComponent = (0,
|
|
6036
|
+
var StackComponent = (0, import_react13.forwardRef)(
|
|
5775
6037
|
({ renderAs, direction = "vertical", gap = "space-02", ...props }, ref) => {
|
|
5776
6038
|
const responsiveGap = useResponsiveProp(gap);
|
|
5777
6039
|
const responsiveDirection = useResponsiveProp(direction);
|
|
5778
|
-
return /* @__PURE__ */ (0,
|
|
6040
|
+
return /* @__PURE__ */ (0, import_jsx_runtime170.jsx)(
|
|
5779
6041
|
StyledStack,
|
|
5780
6042
|
{
|
|
5781
6043
|
ref,
|
|
5782
6044
|
$direction: responsiveDirection,
|
|
6045
|
+
$gap: responsiveGap,
|
|
5783
6046
|
as: renderAs ?? DEFAULT_ELEMENT2,
|
|
5784
|
-
gap: responsiveGap,
|
|
5785
6047
|
...props
|
|
5786
6048
|
}
|
|
5787
6049
|
);
|
|
@@ -5791,90 +6053,90 @@ StackComponent.displayName = "Stack";
|
|
|
5791
6053
|
var Stack = makePolymorphic(StackComponent);
|
|
5792
6054
|
|
|
5793
6055
|
// src/components/Text/Text.tsx
|
|
5794
|
-
var
|
|
5795
|
-
var
|
|
5796
|
-
var
|
|
5797
|
-
var bodyBoldStyles =
|
|
6056
|
+
var import_react14 = require("react");
|
|
6057
|
+
var import_styled_components29 = __toESM(require("styled-components"));
|
|
6058
|
+
var import_jsx_runtime171 = require("react/jsx-runtime");
|
|
6059
|
+
var bodyBoldStyles = import_styled_components29.css`
|
|
5798
6060
|
> strong,
|
|
5799
6061
|
b {
|
|
5800
6062
|
font-weight: var(--typography-weight-body-bold);
|
|
5801
6063
|
}
|
|
5802
6064
|
`;
|
|
5803
|
-
var labelBoldStyles =
|
|
6065
|
+
var labelBoldStyles = import_styled_components29.css`
|
|
5804
6066
|
> strong,
|
|
5805
6067
|
b {
|
|
5806
6068
|
font-weight: var(--typography-weight-label-bold);
|
|
5807
6069
|
}
|
|
5808
6070
|
`;
|
|
5809
|
-
var body1TextStyle =
|
|
6071
|
+
var body1TextStyle = import_styled_components29.css`
|
|
5810
6072
|
--font-family: var(--typography-body-1-family);
|
|
5811
6073
|
--font-size: var(--typography-body-1-size);
|
|
5812
6074
|
--font-weight: var(--typography-body-1-weight);
|
|
5813
6075
|
--line-height: var(--typography-body-1-line-height);
|
|
5814
6076
|
${bodyBoldStyles}
|
|
5815
6077
|
`;
|
|
5816
|
-
var body2TextStyle =
|
|
6078
|
+
var body2TextStyle = import_styled_components29.css`
|
|
5817
6079
|
--font-family: var(--typography-body-2-family);
|
|
5818
6080
|
--font-size: var(--typography-body-2-size);
|
|
5819
6081
|
--font-weight: var(--typography-body-2-weight);
|
|
5820
6082
|
--line-height: var(--typography-body-2-line-height);
|
|
5821
6083
|
${bodyBoldStyles}
|
|
5822
6084
|
`;
|
|
5823
|
-
var body3TextStyle =
|
|
6085
|
+
var body3TextStyle = import_styled_components29.css`
|
|
5824
6086
|
--font-family: var(--typography-body-3-family);
|
|
5825
6087
|
--font-size: var(--typography-body-3-size);
|
|
5826
6088
|
--font-weight: var(--typography-body-3-weight);
|
|
5827
6089
|
--line-height: var(--typography-body-3-line-height);
|
|
5828
6090
|
${bodyBoldStyles}
|
|
5829
6091
|
`;
|
|
5830
|
-
var body4TextStyle =
|
|
6092
|
+
var body4TextStyle = import_styled_components29.css`
|
|
5831
6093
|
--font-family: var(--typography-body-4-family);
|
|
5832
6094
|
--font-size: var(--typography-body-4-size);
|
|
5833
6095
|
--font-weight: var(--typography-body-4-weight);
|
|
5834
6096
|
--line-height: var(--typography-body-4-line-height);
|
|
5835
6097
|
${bodyBoldStyles}
|
|
5836
6098
|
`;
|
|
5837
|
-
var label1TextStyle =
|
|
6099
|
+
var label1TextStyle = import_styled_components29.css`
|
|
5838
6100
|
--font-family: var(--typography-label-1-family);
|
|
5839
6101
|
--font-size: var(--typography-label-1-size);
|
|
5840
6102
|
--font-weight: var(--typography-label-1-weight);
|
|
5841
6103
|
--line-height: var(--typography-label-1-line-height);
|
|
5842
6104
|
${labelBoldStyles}
|
|
5843
6105
|
`;
|
|
5844
|
-
var label2TextStyle =
|
|
6106
|
+
var label2TextStyle = import_styled_components29.css`
|
|
5845
6107
|
--font-family: var(--typography-label-2-family);
|
|
5846
6108
|
--font-size: var(--typography-label-2-size);
|
|
5847
6109
|
--font-weight: var(--typography-label-2-weight);
|
|
5848
6110
|
--line-height: var(--typography-label-2-line-height);
|
|
5849
6111
|
${labelBoldStyles}
|
|
5850
6112
|
`;
|
|
5851
|
-
var label3TextStyle =
|
|
6113
|
+
var label3TextStyle = import_styled_components29.css`
|
|
5852
6114
|
--font-family: var(--typography-label-3-family);
|
|
5853
6115
|
--font-size: var(--typography-label-3-size);
|
|
5854
6116
|
--font-weight: var(--typography-label-3-weight);
|
|
5855
6117
|
--line-height: var(--typography-label-3-line-height);
|
|
5856
6118
|
${labelBoldStyles}
|
|
5857
6119
|
`;
|
|
5858
|
-
var label4TextStyle =
|
|
6120
|
+
var label4TextStyle = import_styled_components29.css`
|
|
5859
6121
|
--font-family: var(--typography-label-4-family);
|
|
5860
6122
|
--font-size: var(--typography-label-4-size);
|
|
5861
6123
|
--font-weight: var(--typography-label-4-weight);
|
|
5862
6124
|
--line-height: var(--typography-label-4-line-height);
|
|
5863
6125
|
${labelBoldStyles}
|
|
5864
6126
|
`;
|
|
5865
|
-
var body1MonoTextStyle =
|
|
6127
|
+
var body1MonoTextStyle = import_styled_components29.css`
|
|
5866
6128
|
${body1TextStyle};
|
|
5867
6129
|
--font-family: var(--typography-family-mono);
|
|
5868
6130
|
`;
|
|
5869
|
-
var body2MonoTextStyle =
|
|
6131
|
+
var body2MonoTextStyle = import_styled_components29.css`
|
|
5870
6132
|
${body2TextStyle};
|
|
5871
6133
|
--font-family: var(--typography-family-mono);
|
|
5872
6134
|
`;
|
|
5873
|
-
var body3MonoTextStyle =
|
|
6135
|
+
var body3MonoTextStyle = import_styled_components29.css`
|
|
5874
6136
|
${body3TextStyle};
|
|
5875
6137
|
--font-family: var(--typography-family-mono);
|
|
5876
6138
|
`;
|
|
5877
|
-
var body4MonoTextStyle =
|
|
6139
|
+
var body4MonoTextStyle = import_styled_components29.css`
|
|
5878
6140
|
${body4TextStyle};
|
|
5879
6141
|
--font-family: var(--typography-family-mono);
|
|
5880
6142
|
`;
|
|
@@ -5892,13 +6154,13 @@ var variantStyleMap2 = {
|
|
|
5892
6154
|
label3: label3TextStyle,
|
|
5893
6155
|
label4: label4TextStyle
|
|
5894
6156
|
};
|
|
5895
|
-
var highContrastProminenceStyle =
|
|
6157
|
+
var highContrastProminenceStyle = import_styled_components29.css`
|
|
5896
6158
|
--text-color: var(--color-text-high-contrast);
|
|
5897
6159
|
`;
|
|
5898
|
-
var vibrantProminenceStyle =
|
|
6160
|
+
var vibrantProminenceStyle = import_styled_components29.css`
|
|
5899
6161
|
--text-color: var(--color-text);
|
|
5900
6162
|
`;
|
|
5901
|
-
var secondaryProminenceStyle =
|
|
6163
|
+
var secondaryProminenceStyle = import_styled_components29.css`
|
|
5902
6164
|
--text-color: var(--color-text-secondary);
|
|
5903
6165
|
`;
|
|
5904
6166
|
var prominenceMap = {
|
|
@@ -5906,8 +6168,8 @@ var prominenceMap = {
|
|
|
5906
6168
|
vibrant: vibrantProminenceStyle,
|
|
5907
6169
|
secondary: secondaryProminenceStyle
|
|
5908
6170
|
};
|
|
5909
|
-
var StyledText =
|
|
5910
|
-
${({ colorScheme }) => getColorScheme(colorScheme)};
|
|
6171
|
+
var StyledText = import_styled_components29.default.div`
|
|
6172
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
5911
6173
|
font-family: var(--font-family);
|
|
5912
6174
|
font-size: var(--font-size);
|
|
5913
6175
|
font-weight: var(--font-weight);
|
|
@@ -5915,27 +6177,27 @@ var StyledText = import_styled_components26.default.div`
|
|
|
5915
6177
|
color: var(--text-color);
|
|
5916
6178
|
font-style: normal;
|
|
5917
6179
|
margin: 0;
|
|
5918
|
-
${({ variant }) => variantStyleMap2[variant]}
|
|
5919
|
-
${({ prominence }) => prominenceMap[prominence]}
|
|
5920
|
-
${({ ellipsis }) => ellipsis && ellipsisStyle};
|
|
5921
|
-
${({ inline }) => inline &&
|
|
6180
|
+
${({ $variant }) => variantStyleMap2[$variant]}
|
|
6181
|
+
${({ $prominence }) => prominenceMap[$prominence]}
|
|
6182
|
+
${({ $ellipsis }) => $ellipsis && ellipsisStyle};
|
|
6183
|
+
${({ $inline }) => $inline && import_styled_components29.css`
|
|
5922
6184
|
display: inline-block;
|
|
5923
6185
|
`}
|
|
5924
|
-
${({ disabled }) => disabled &&
|
|
6186
|
+
${({ $disabled }) => $disabled && import_styled_components29.css`
|
|
5925
6187
|
--text-color: var(--color-text-disabled);
|
|
5926
6188
|
`}
|
|
5927
|
-
${({ preventUserSelect }) => preventUserSelect &&
|
|
6189
|
+
${({ $preventUserSelect }) => $preventUserSelect && import_styled_components29.css`
|
|
5928
6190
|
user-select: none;
|
|
5929
6191
|
`}
|
|
5930
|
-
${({ align }) =>
|
|
5931
|
-
text-align: ${align};
|
|
6192
|
+
${({ $align }) => import_styled_components29.css`
|
|
6193
|
+
text-align: ${$align};
|
|
5932
6194
|
`}
|
|
5933
|
-
${({ as }) => as === "p" &&
|
|
6195
|
+
${({ as }) => as === "p" && import_styled_components29.css`
|
|
5934
6196
|
display: block;
|
|
5935
6197
|
`}
|
|
5936
6198
|
`;
|
|
5937
6199
|
var DEFAULT_ELEMENT3 = "div";
|
|
5938
|
-
var TextComponent = (0,
|
|
6200
|
+
var TextComponent = (0, import_react14.forwardRef)(
|
|
5939
6201
|
({
|
|
5940
6202
|
align = "left",
|
|
5941
6203
|
colorScheme = "inherit",
|
|
@@ -5948,19 +6210,19 @@ var TextComponent = (0, import_react13.forwardRef)(
|
|
|
5948
6210
|
renderAs,
|
|
5949
6211
|
...otherProps
|
|
5950
6212
|
}, ref) => {
|
|
5951
|
-
return /* @__PURE__ */ (0,
|
|
6213
|
+
return /* @__PURE__ */ (0, import_jsx_runtime171.jsx)(
|
|
5952
6214
|
StyledText,
|
|
5953
6215
|
{
|
|
5954
6216
|
ref,
|
|
5955
|
-
align,
|
|
6217
|
+
$align: align,
|
|
6218
|
+
$colorScheme: colorScheme,
|
|
6219
|
+
$disabled: disabled,
|
|
6220
|
+
$ellipsis: ellipsis,
|
|
6221
|
+
$inline: inline,
|
|
6222
|
+
$preventUserSelect: preventUserSelect,
|
|
6223
|
+
$prominence: prominence,
|
|
6224
|
+
$variant: variant,
|
|
5956
6225
|
as: renderAs ?? DEFAULT_ELEMENT3,
|
|
5957
|
-
colorScheme,
|
|
5958
|
-
disabled,
|
|
5959
|
-
ellipsis,
|
|
5960
|
-
inline,
|
|
5961
|
-
preventUserSelect,
|
|
5962
|
-
prominence,
|
|
5963
|
-
variant,
|
|
5964
6226
|
...otherProps
|
|
5965
6227
|
}
|
|
5966
6228
|
);
|
|
@@ -5970,20 +6232,20 @@ TextComponent.displayName = "Text";
|
|
|
5970
6232
|
var Text = makePolymorphic(TextComponent);
|
|
5971
6233
|
|
|
5972
6234
|
// src/components/WistiaLogo/WistiaLogo.tsx
|
|
5973
|
-
var
|
|
5974
|
-
var
|
|
5975
|
-
var
|
|
6235
|
+
var import_styled_components30 = __toESM(require("styled-components"));
|
|
6236
|
+
var import_type_guards16 = require("@wistia/type-guards");
|
|
6237
|
+
var import_jsx_runtime172 = require("react/jsx-runtime");
|
|
5976
6238
|
var renderBrandmark = (brandmarkColor, iconOnly) => {
|
|
5977
6239
|
if (iconOnly) {
|
|
5978
|
-
return /* @__PURE__ */ (0,
|
|
6240
|
+
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" }) });
|
|
5979
6241
|
}
|
|
5980
|
-
return /* @__PURE__ */ (0,
|
|
6242
|
+
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" }) });
|
|
5981
6243
|
};
|
|
5982
6244
|
var renderLogotype = (logotypeColor, iconOnly) => {
|
|
5983
6245
|
if (iconOnly) {
|
|
5984
6246
|
return null;
|
|
5985
6247
|
}
|
|
5986
|
-
return /* @__PURE__ */ (0,
|
|
6248
|
+
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" }) });
|
|
5987
6249
|
};
|
|
5988
6250
|
var computedViewBox = (iconOnly) => {
|
|
5989
6251
|
if (iconOnly) {
|
|
@@ -5991,7 +6253,7 @@ var computedViewBox = (iconOnly) => {
|
|
|
5991
6253
|
}
|
|
5992
6254
|
return "0 0 144 31.47";
|
|
5993
6255
|
};
|
|
5994
|
-
var WistiaLogoComponent =
|
|
6256
|
+
var WistiaLogoComponent = import_styled_components30.default.svg`
|
|
5995
6257
|
height: ${({ height }) => `${height}px`};
|
|
5996
6258
|
|
|
5997
6259
|
/* ensure it will always fit on mobile */
|
|
@@ -6000,7 +6262,7 @@ var WistiaLogoComponent = import_styled_components27.default.svg`
|
|
|
6000
6262
|
|
|
6001
6263
|
&:hover {
|
|
6002
6264
|
path {
|
|
6003
|
-
${({ hoverColor }) => hoverColor !== void 0 ? `fill: ${hoverColor}` : null};
|
|
6265
|
+
${({ $hoverColor }) => $hoverColor !== void 0 ? `fill: ${$hoverColor}` : null};
|
|
6004
6266
|
}
|
|
6005
6267
|
}
|
|
6006
6268
|
`;
|
|
@@ -6033,48 +6295,29 @@ var WistiaLogo = ({
|
|
|
6033
6295
|
};
|
|
6034
6296
|
const brandmarkColor = VARIANT_COLORS[variant].brandmark;
|
|
6035
6297
|
const logotypeColor = VARIANT_COLORS[variant].logotype;
|
|
6036
|
-
const Logo = /* @__PURE__ */ (0,
|
|
6298
|
+
const Logo = /* @__PURE__ */ (0, import_jsx_runtime172.jsxs)(
|
|
6037
6299
|
WistiaLogoComponent,
|
|
6038
6300
|
{
|
|
6301
|
+
$hoverColor: hoverColor,
|
|
6039
6302
|
height,
|
|
6040
|
-
hoverColor,
|
|
6041
6303
|
role: "img",
|
|
6042
6304
|
viewBox: computedViewBox(iconOnly),
|
|
6043
6305
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6044
6306
|
...otherProps,
|
|
6045
6307
|
children: [
|
|
6046
|
-
/* @__PURE__ */ (0,
|
|
6047
|
-
(0,
|
|
6308
|
+
/* @__PURE__ */ (0, import_jsx_runtime172.jsx)("title", { children: title }),
|
|
6309
|
+
(0, import_type_guards16.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime172.jsx)("desc", { children: description }) : null,
|
|
6048
6310
|
renderBrandmark(brandmarkColor, iconOnly),
|
|
6049
6311
|
renderLogotype(logotypeColor, iconOnly)
|
|
6050
6312
|
]
|
|
6051
6313
|
}
|
|
6052
6314
|
);
|
|
6053
|
-
return href !== void 0 ? /* @__PURE__ */ (0,
|
|
6315
|
+
return href !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime172.jsx)("a", { href, children: Logo }) : Logo;
|
|
6054
6316
|
};
|
|
6055
6317
|
WistiaLogo.displayName = "WistiaLogo";
|
|
6056
|
-
|
|
6057
|
-
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
6058
|
-
var import_styled_components28 = __toESM(require("styled-components"));
|
|
6059
|
-
var import_jsx_runtime170 = require("react/jsx-runtime");
|
|
6060
|
-
var StyledColorSchemeWrapper = import_styled_components28.default.div`
|
|
6061
|
-
${({ colorScheme }) => getColorScheme(colorScheme)};
|
|
6062
|
-
`;
|
|
6063
|
-
var ColorSchemeWrapper = ({
|
|
6064
|
-
colorScheme,
|
|
6065
|
-
children,
|
|
6066
|
-
...otherProps
|
|
6067
|
-
}) => /* @__PURE__ */ (0, import_jsx_runtime170.jsx)(
|
|
6068
|
-
StyledColorSchemeWrapper,
|
|
6069
|
-
{
|
|
6070
|
-
colorScheme,
|
|
6071
|
-
...otherProps,
|
|
6072
|
-
children
|
|
6073
|
-
}
|
|
6074
|
-
);
|
|
6075
|
-
ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
|
|
6076
6318
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6077
6319
|
0 && (module.exports = {
|
|
6320
|
+
Avatar,
|
|
6078
6321
|
Badge,
|
|
6079
6322
|
Box,
|
|
6080
6323
|
Button,
|
|
@@ -6085,6 +6328,7 @@ ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
|
|
|
6085
6328
|
Heading,
|
|
6086
6329
|
Icon,
|
|
6087
6330
|
IconButton,
|
|
6331
|
+
Label,
|
|
6088
6332
|
Link,
|
|
6089
6333
|
ScreenReaderOnly,
|
|
6090
6334
|
Stack,
|
|
@@ -6092,6 +6336,7 @@ ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
|
|
|
6092
6336
|
Tooltip,
|
|
6093
6337
|
UIProvider,
|
|
6094
6338
|
WistiaLogo,
|
|
6339
|
+
colorSchemeOptions,
|
|
6095
6340
|
copyToClipboard,
|
|
6096
6341
|
ellipsisFlexParentStyle,
|
|
6097
6342
|
ellipsisStyle,
|