@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.mjs
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
|
*
|
|
@@ -748,7 +748,8 @@ var colorAliasTokens = css4`
|
|
|
748
748
|
--color-bg-surface-secondary-hover: var(--gray-4);
|
|
749
749
|
--color-bg-surface-tertiary: var(--gray-5);
|
|
750
750
|
--color-border: var(--gray-6);
|
|
751
|
-
--color-border-
|
|
751
|
+
--color-border-hover: var(--gray-8);
|
|
752
|
+
--color-border-active: var(--gray-9);
|
|
752
753
|
--color-icon: var(--gray-11);
|
|
753
754
|
--color-icon-on-fill: var(--gray-contrast);
|
|
754
755
|
--color-text: var(--gray-12);
|
|
@@ -771,6 +772,8 @@ var colorAliasTokens = css4`
|
|
|
771
772
|
--color-bg-surface-secondary-hover-error: var(--error-4);
|
|
772
773
|
--color-bg-surface-tertiary-error: var(--error-5);
|
|
773
774
|
--color-border-error: var(--error-6);
|
|
775
|
+
--color-border-hover-errror: var(--error-8);
|
|
776
|
+
--color-border-active-error: var(--error-9);
|
|
774
777
|
--color-icon-error: var(--error-11);
|
|
775
778
|
--color-icon-on-fill-error: var(--error-contrast);
|
|
776
779
|
--color-text-error: var(--error-11);
|
|
@@ -791,6 +794,8 @@ var colorAliasTokens = css4`
|
|
|
791
794
|
--color-bg-surface-secondary-info: var(--blue-3);
|
|
792
795
|
--color-bg-surface-tertiary-info: var(--blue-6);
|
|
793
796
|
--color-border-info: var(--blue-6);
|
|
797
|
+
--color-border-hover-info: var(--blue-8);
|
|
798
|
+
--color-border-active-info: var(--blue-9);
|
|
794
799
|
--color-icon-info: var(--blue-11);
|
|
795
800
|
--color-icon-on-fill-info: var(--blue-contrast);
|
|
796
801
|
--color-text-high-contrast-info: var(--blue-12);
|
|
@@ -811,6 +816,8 @@ var colorAliasTokens = css4`
|
|
|
811
816
|
--color-bg-surface-success: var(--success-surface);
|
|
812
817
|
--color-bg-surface-tertiary-success: var(--success-5);
|
|
813
818
|
--color-border-success: var(--success-6);
|
|
819
|
+
--color-border-hover-success: var(--success-8);
|
|
820
|
+
--color-border-active-success: var(--success-9);
|
|
814
821
|
--color-icon-on-fill-success: var(--success-contrast);
|
|
815
822
|
--color-icon-success: var(--success-11);
|
|
816
823
|
--color-text-high-contrast-success: var(--success-12);
|
|
@@ -831,6 +838,8 @@ var colorAliasTokens = css4`
|
|
|
831
838
|
--color-bg-surface-tertiary-warning: var(--warning-5);
|
|
832
839
|
--color-bg-surface-warning: var(--warning-surface);
|
|
833
840
|
--color-border-warning: var(--warning-6);
|
|
841
|
+
--color-border-hover-warning: var(--warning-8);
|
|
842
|
+
--color-border-active-warning: var(--warning-9);
|
|
834
843
|
--color-icon-on-fill-warning: var(--warning-contrast);
|
|
835
844
|
--color-icon-warning: var(--warning-11);
|
|
836
845
|
--color-text-high-contrast-warning: var(--warning-12);
|
|
@@ -853,6 +862,8 @@ var colorAliasTokens = css4`
|
|
|
853
862
|
--color-bg-surface-secondary-hover-blue: var(--blue-4);
|
|
854
863
|
--color-bg-surface-tertiary-blue: var(--blue-5);
|
|
855
864
|
--color-border-blue: var(--blue-6);
|
|
865
|
+
--color-border-hover-blue: var(--blue-8);
|
|
866
|
+
--color-border-active-blue: var(--blue-9);
|
|
856
867
|
--color-icon-blue: var(--blue-11);
|
|
857
868
|
--color-icon-on-fill-blue: var(--blue-contrast);
|
|
858
869
|
--color-text-blue: var(--blue-11);
|
|
@@ -873,6 +884,8 @@ var colorAliasTokens = css4`
|
|
|
873
884
|
--color-bg-surface-secondary-hover-green: var(--green-4);
|
|
874
885
|
--color-bg-surface-tertiary-green: var(--green-5);
|
|
875
886
|
--color-border-green: var(--green-6);
|
|
887
|
+
--color-border-hover-green: var(--green-8);
|
|
888
|
+
--color-border-active-green: var(--green-9);
|
|
876
889
|
--color-icon-green: var(--green-11);
|
|
877
890
|
--color-icon-on-fill-green: var(--green-contrast);
|
|
878
891
|
--color-text-green: var(--green-11);
|
|
@@ -893,6 +906,8 @@ var colorAliasTokens = css4`
|
|
|
893
906
|
--color-bg-surface-secondary-orange: var(--orange-3);
|
|
894
907
|
--color-bg-surface-tertiary-orange: var(--orange-5);
|
|
895
908
|
--color-border-orange: var(--orange-6);
|
|
909
|
+
--color-border-hover-orange: var(--orange-8);
|
|
910
|
+
--color-border-active-orange: var(--orange-9);
|
|
896
911
|
--color-icon-on-fill-orange: var(--orange-contrast);
|
|
897
912
|
--color-icon-orange: var(--orange-11);
|
|
898
913
|
--color-text-high-contrast-orange: var(--orange-12);
|
|
@@ -913,6 +928,8 @@ var colorAliasTokens = css4`
|
|
|
913
928
|
--color-bg-surface-secondary-pink: var(--pink-3);
|
|
914
929
|
--color-bg-surface-tertiary-pink: var(--pink-5);
|
|
915
930
|
--color-border-pink: var(--pink-6);
|
|
931
|
+
--color-border-hover-pink: var(--pink-8);
|
|
932
|
+
--color-border-active-pink: var(--pink-9);
|
|
916
933
|
--color-icon-on-fill-pink: var(--pink-contrast);
|
|
917
934
|
--color-icon-pink: var(--pink-11);
|
|
918
935
|
--color-text-high-contrast-pink: var(--pink-12);
|
|
@@ -933,6 +950,8 @@ var colorAliasTokens = css4`
|
|
|
933
950
|
--color-bg-surface-secondary-purple: var(--purple-3);
|
|
934
951
|
--color-bg-surface-tertiary-purple: var(--purple-5);
|
|
935
952
|
--color-border-purple: var(--purple-6);
|
|
953
|
+
--color-border-hover-purple: var(--purple-8);
|
|
954
|
+
--color-border-active-purple: var(--purple-9);
|
|
936
955
|
--color-icon-on-fill-purple: var(--purple-contrast);
|
|
937
956
|
--color-icon-purple: var(--purple-11);
|
|
938
957
|
--color-text-high-contrast-purple: var(--purple-12);
|
|
@@ -953,6 +972,8 @@ var colorAliasTokens = css4`
|
|
|
953
972
|
--color-bg-surface-tertiary-yellow: var(--yellow-5);
|
|
954
973
|
--color-bg-surface-yellow: var(--yellow-surface);
|
|
955
974
|
--color-border-yellow: var(--yellow-6);
|
|
975
|
+
--color-border-hover-yellow: var(--yellow-8);
|
|
976
|
+
--color-border-active-yellow: var(--yellow-9);
|
|
956
977
|
--color-icon-on-fill-yellow: var(--yellow-contrast);
|
|
957
978
|
--color-icon-yellow: var(--yellow-11);
|
|
958
979
|
--color-text-high-contrast-yellow: var(--yellow-12);
|
|
@@ -984,6 +1005,9 @@ var colorAliasTokens = css4`
|
|
|
984
1005
|
--color-bg-surface-selected-hover: var(--blue-4);
|
|
985
1006
|
--color-icon-selected: var(--blue-9);
|
|
986
1007
|
--color-text-selected: var(--blue-9);
|
|
1008
|
+
--color-border-selected: var(--blue-6);
|
|
1009
|
+
--color-border-hover-selected: var(--blue-8);
|
|
1010
|
+
--color-border-active-selected: var(--blue-9);
|
|
987
1011
|
`;
|
|
988
1012
|
|
|
989
1013
|
// src/css/designTokens/borderRadius.tsx
|
|
@@ -1367,10 +1391,13 @@ var useAriaLive = () => {
|
|
|
1367
1391
|
return context;
|
|
1368
1392
|
};
|
|
1369
1393
|
|
|
1370
|
-
// src/components/
|
|
1371
|
-
import {
|
|
1394
|
+
// src/components/Avatar/Avatar.tsx
|
|
1395
|
+
import { useState as useState3, useMemo as useMemo2 } from "react";
|
|
1396
|
+
import { isNil as isNil4 } from "@wistia/type-guards";
|
|
1397
|
+
import styled2 from "styled-components";
|
|
1398
|
+
|
|
1399
|
+
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
1372
1400
|
import styled from "styled-components";
|
|
1373
|
-
import { isNotNil } from "@wistia/type-guards";
|
|
1374
1401
|
|
|
1375
1402
|
// src/private/helpers/getColorScheme/getColorScheme.ts
|
|
1376
1403
|
import { css as css9 } from "styled-components";
|
|
@@ -1391,6 +1418,8 @@ var colorSchemeSchema = [
|
|
|
1391
1418
|
{ token: "text-secondary", step: "11" },
|
|
1392
1419
|
{ token: "text-on-fill", step: "contrast" },
|
|
1393
1420
|
{ token: "border", step: "6" },
|
|
1421
|
+
{ token: "border-hover", step: "8" },
|
|
1422
|
+
{ token: "border-active", step: "9" },
|
|
1394
1423
|
{ token: "icon", step: "11" },
|
|
1395
1424
|
{ token: "icon-on-fill", step: "contrast" }
|
|
1396
1425
|
];
|
|
@@ -1427,9 +1456,172 @@ var getColorScheme = (colorScheme) => {
|
|
|
1427
1456
|
`;
|
|
1428
1457
|
};
|
|
1429
1458
|
|
|
1459
|
+
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
1460
|
+
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
1461
|
+
var colorSchemeOptions = [
|
|
1462
|
+
"inherit",
|
|
1463
|
+
"default",
|
|
1464
|
+
"info",
|
|
1465
|
+
"success",
|
|
1466
|
+
"warning",
|
|
1467
|
+
"error",
|
|
1468
|
+
"blue",
|
|
1469
|
+
"green",
|
|
1470
|
+
"orange",
|
|
1471
|
+
"pink",
|
|
1472
|
+
"purple",
|
|
1473
|
+
"yellow"
|
|
1474
|
+
];
|
|
1475
|
+
var StyledColorSchemeWrapper = styled.div`
|
|
1476
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1477
|
+
`;
|
|
1478
|
+
var ColorSchemeWrapper = ({
|
|
1479
|
+
colorScheme,
|
|
1480
|
+
children,
|
|
1481
|
+
...otherProps
|
|
1482
|
+
}) => /* @__PURE__ */ jsx3(
|
|
1483
|
+
StyledColorSchemeWrapper,
|
|
1484
|
+
{
|
|
1485
|
+
$colorScheme: colorScheme,
|
|
1486
|
+
...otherProps,
|
|
1487
|
+
children
|
|
1488
|
+
}
|
|
1489
|
+
);
|
|
1490
|
+
ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
|
|
1491
|
+
|
|
1492
|
+
// src/components/Avatar/formatNameForDisplay.tsx
|
|
1493
|
+
import { isNil as isNil3, isString, isEmptyString } from "@wistia/type-guards";
|
|
1494
|
+
var containsEmojiCharacter = (char) => {
|
|
1495
|
+
const emojiRegex = /<a?:.+?:\d{18}>|\p{Extended_Pictographic}/gu;
|
|
1496
|
+
return emojiRegex.test(char);
|
|
1497
|
+
};
|
|
1498
|
+
var formatNameForDisplay = (name) => {
|
|
1499
|
+
if (isNil3(name) || !isString(name) || isEmptyString(name) || containsEmojiCharacter(name)) {
|
|
1500
|
+
return "U";
|
|
1501
|
+
}
|
|
1502
|
+
const firstChar = name.trim().substring(0, 1);
|
|
1503
|
+
return firstChar.toUpperCase();
|
|
1504
|
+
};
|
|
1505
|
+
|
|
1506
|
+
// src/components/Avatar/Avatar.tsx
|
|
1507
|
+
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
1508
|
+
var AvatarImage = styled2.img`
|
|
1509
|
+
align-items: center;
|
|
1510
|
+
background-color: white;
|
|
1511
|
+
border-radius: 50%;
|
|
1512
|
+
display: flex;
|
|
1513
|
+
height: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1514
|
+
justify-content: center;
|
|
1515
|
+
object-fit: cover;
|
|
1516
|
+
overflow: hidden;
|
|
1517
|
+
pointer-events: none;
|
|
1518
|
+
user-select: none;
|
|
1519
|
+
width: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1520
|
+
|
|
1521
|
+
a:hover & {
|
|
1522
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 25%);
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
a:active & {
|
|
1526
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 50%);
|
|
1527
|
+
}
|
|
1528
|
+
`;
|
|
1529
|
+
var avatarSizeMap = {
|
|
1530
|
+
sm: 16,
|
|
1531
|
+
md: 24,
|
|
1532
|
+
lg: 32
|
|
1533
|
+
};
|
|
1534
|
+
var fontSizeScaleMultiplier = 0.55;
|
|
1535
|
+
var InitialsContainer = styled2.div`
|
|
1536
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1537
|
+
align-items: center;
|
|
1538
|
+
background-color: var(--color-bg-fill);
|
|
1539
|
+
border: 1px solid var(--color-border);
|
|
1540
|
+
border-radius: 50%;
|
|
1541
|
+
color: var(--color-text-on-fill);
|
|
1542
|
+
display: flex;
|
|
1543
|
+
font-size: ${({ $heightAndWidth }) => $heightAndWidth * fontSizeScaleMultiplier}px;
|
|
1544
|
+
height: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1545
|
+
justify-content: center;
|
|
1546
|
+
overflow: hidden;
|
|
1547
|
+
width: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1548
|
+
|
|
1549
|
+
a:hover & {
|
|
1550
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 25%);
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
a:active & {
|
|
1554
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 50%);
|
|
1555
|
+
}
|
|
1556
|
+
`;
|
|
1557
|
+
var AvatarWrapper = styled2.div`
|
|
1558
|
+
max-height: ${({ $maxHeight }) => $maxHeight}px;
|
|
1559
|
+
`;
|
|
1560
|
+
var chooseColorScheme = (name) => {
|
|
1561
|
+
if (isNil4(name) || name === "Anonymous") {
|
|
1562
|
+
return "default";
|
|
1563
|
+
}
|
|
1564
|
+
const filteredColors = colorSchemeOptions.filter(
|
|
1565
|
+
(color) => color !== "inherit" && color !== "default"
|
|
1566
|
+
);
|
|
1567
|
+
const multiplier = 31;
|
|
1568
|
+
const hashCode = (str) => Array.from(str).reduce((sum, char) => Math.imul(multiplier, sum) + char.charCodeAt(0) | 0, 0);
|
|
1569
|
+
const index = Math.abs(hashCode(name)) % filteredColors.length;
|
|
1570
|
+
return filteredColors[index] ?? "default";
|
|
1571
|
+
};
|
|
1572
|
+
var Avatar = ({
|
|
1573
|
+
imageUrl,
|
|
1574
|
+
heightAndWidth,
|
|
1575
|
+
name,
|
|
1576
|
+
size = "md",
|
|
1577
|
+
onImageLoad,
|
|
1578
|
+
...otherProps
|
|
1579
|
+
}) => {
|
|
1580
|
+
const [imageLoadState, setImageLoadState] = useState3(null);
|
|
1581
|
+
const handleImageLoad = () => {
|
|
1582
|
+
setImageLoadState("loaded");
|
|
1583
|
+
onImageLoad?.("image");
|
|
1584
|
+
};
|
|
1585
|
+
const handleImageLoadError = () => {
|
|
1586
|
+
setImageLoadState("error");
|
|
1587
|
+
onImageLoad?.("initials");
|
|
1588
|
+
};
|
|
1589
|
+
const avatarSize = heightAndWidth ?? avatarSizeMap[size];
|
|
1590
|
+
const avatarColor = useMemo2(() => chooseColorScheme(name), [name]);
|
|
1591
|
+
const showInitials = isNil4(imageUrl) || imageLoadState === "error";
|
|
1592
|
+
return /* @__PURE__ */ jsx4(
|
|
1593
|
+
AvatarWrapper,
|
|
1594
|
+
{
|
|
1595
|
+
...otherProps,
|
|
1596
|
+
$maxHeight: avatarSize,
|
|
1597
|
+
children: showInitials ? /* @__PURE__ */ jsx4(
|
|
1598
|
+
InitialsContainer,
|
|
1599
|
+
{
|
|
1600
|
+
$colorScheme: avatarColor,
|
|
1601
|
+
$heightAndWidth: avatarSize,
|
|
1602
|
+
children: formatNameForDisplay(name)
|
|
1603
|
+
}
|
|
1604
|
+
) : /* @__PURE__ */ jsx4(
|
|
1605
|
+
AvatarImage,
|
|
1606
|
+
{
|
|
1607
|
+
$heightAndWidth: avatarSize,
|
|
1608
|
+
alt: name ?? "Unavailable",
|
|
1609
|
+
onError: handleImageLoadError,
|
|
1610
|
+
onLoad: handleImageLoad,
|
|
1611
|
+
src: imageUrl
|
|
1612
|
+
}
|
|
1613
|
+
)
|
|
1614
|
+
}
|
|
1615
|
+
);
|
|
1616
|
+
};
|
|
1617
|
+
Avatar.displayName = "Avatar";
|
|
1618
|
+
|
|
1430
1619
|
// src/components/Badge/Badge.tsx
|
|
1431
|
-
import {
|
|
1432
|
-
|
|
1620
|
+
import { forwardRef } from "react";
|
|
1621
|
+
import styled3 from "styled-components";
|
|
1622
|
+
import { isNotNil } from "@wistia/type-guards";
|
|
1623
|
+
import { jsx as jsx5, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
1624
|
+
var StyledBadge = styled3.div`
|
|
1433
1625
|
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1434
1626
|
align-items: center;
|
|
1435
1627
|
background-color: var(--color-bg-surface-secondary);
|
|
@@ -1461,7 +1653,7 @@ var Badge = forwardRef(
|
|
|
1461
1653
|
$hasIcon: hasIcon,
|
|
1462
1654
|
children: [
|
|
1463
1655
|
hasIcon ? icon : null,
|
|
1464
|
-
/* @__PURE__ */
|
|
1656
|
+
/* @__PURE__ */ jsx5("span", { children: label })
|
|
1465
1657
|
]
|
|
1466
1658
|
}
|
|
1467
1659
|
);
|
|
@@ -1471,9 +1663,9 @@ Badge.displayName = "Badge";
|
|
|
1471
1663
|
|
|
1472
1664
|
// src/components/Box/Box.tsx
|
|
1473
1665
|
import { Children, cloneElement } from "react";
|
|
1474
|
-
import
|
|
1475
|
-
import { isNotNil as isNotNil2, isNil as
|
|
1476
|
-
import { jsx as
|
|
1666
|
+
import styled4 from "styled-components";
|
|
1667
|
+
import { isNotNil as isNotNil2, isNil as isNil5, isRecord } from "@wistia/type-guards";
|
|
1668
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
1477
1669
|
var isDev = process.env["NODE_ENV"] === "development";
|
|
1478
1670
|
var PROPS_FOR_FLEX_CHILDREN = /* @__PURE__ */ new Set(["alignSelf", "basis", "grow", "order", "shrink"]);
|
|
1479
1671
|
var getGapStyle = (gap) => {
|
|
@@ -1515,29 +1707,29 @@ var getFillViewportStyle = (fillViewport) => {
|
|
|
1515
1707
|
}
|
|
1516
1708
|
return void 0;
|
|
1517
1709
|
};
|
|
1518
|
-
var BoxComponent =
|
|
1519
|
-
align-content: ${({ alignContent }) => alignContent};
|
|
1520
|
-
align-items: ${({ alignItems }) => alignItems};
|
|
1521
|
-
align-self: ${({ alignSelf }) => alignSelf ?? null};
|
|
1522
|
-
display: ${({ inline }) => isNotNil2(inline) && inline ? "inline-flex" : "flex"};
|
|
1523
|
-
flex-basis: ${({ basis }) => isNotNil2(basis) ? basis : null};
|
|
1524
|
-
flex-direction: ${({ flexDirection }) => flexDirection};
|
|
1525
|
-
${({ fillBox: fill }) => getFillStyle(fill)};
|
|
1526
|
-
${({ fillViewport }) => getFillViewportStyle(fillViewport)};
|
|
1710
|
+
var BoxComponent = styled4.div`
|
|
1711
|
+
align-content: ${({ $alignContent }) => $alignContent};
|
|
1712
|
+
align-items: ${({ $alignItems }) => $alignItems};
|
|
1713
|
+
align-self: ${({ $alignSelf }) => $alignSelf ?? null};
|
|
1714
|
+
display: ${({ $inline }) => isNotNil2($inline) && $inline ? "inline-flex" : "flex"};
|
|
1715
|
+
flex-basis: ${({ $basis }) => isNotNil2($basis) ? $basis : null};
|
|
1716
|
+
flex-direction: ${({ $flexDirection }) => $flexDirection};
|
|
1717
|
+
${({ $fillBox: fill }) => getFillStyle(fill)};
|
|
1718
|
+
${({ $fillViewport }) => getFillViewportStyle($fillViewport)};
|
|
1527
1719
|
|
|
1528
1720
|
/* Box children styles */
|
|
1529
|
-
flex-grow: ${({ grow }) => isNotNil2(grow) ? grow : null};
|
|
1530
|
-
flex-shrink: ${({ shrink }) => isNotNil2(shrink) ? shrink : null};
|
|
1531
|
-
flex-wrap: ${({ wrapItems }) => wrapItems ? "wrap" : "nowrap"};
|
|
1532
|
-
${({ gap }) => getGapStyle(gap)};
|
|
1533
|
-
justify-content: ${({ justifyContent }) => justifyContent};
|
|
1534
|
-
order: ${({ order }) => isNotNil2(order) ? order : null};
|
|
1721
|
+
flex-grow: ${({ $grow }) => isNotNil2($grow) ? $grow : null};
|
|
1722
|
+
flex-shrink: ${({ $shrink }) => isNotNil2($shrink) ? $shrink : null};
|
|
1723
|
+
flex-wrap: ${({ $wrapItems }) => $wrapItems ? "wrap" : "nowrap"};
|
|
1724
|
+
${({ $gap }) => getGapStyle($gap)};
|
|
1725
|
+
justify-content: ${({ $justifyContent }) => $justifyContent};
|
|
1726
|
+
order: ${({ $order }) => isNotNil2($order) ? $order : null};
|
|
1535
1727
|
`;
|
|
1536
1728
|
var wrapChildren = (children) => {
|
|
1537
1729
|
if (isNotNil2(children)) {
|
|
1538
1730
|
if (typeof children === "object" && isDev) {
|
|
1539
1731
|
return Children.map(children, (child) => {
|
|
1540
|
-
if (
|
|
1732
|
+
if (isNil5(child)) return null;
|
|
1541
1733
|
const elementParams = {};
|
|
1542
1734
|
if (child.type?.displayName === "Box" || child.type?.displayName === "Box_UI") {
|
|
1543
1735
|
elementParams.hasBoxParent = true;
|
|
@@ -1557,6 +1749,7 @@ var Box = ({
|
|
|
1557
1749
|
hasBoxParent = false,
|
|
1558
1750
|
fill = false,
|
|
1559
1751
|
fillViewport = false,
|
|
1752
|
+
gap,
|
|
1560
1753
|
inline = false,
|
|
1561
1754
|
justifyContent = "flex-start",
|
|
1562
1755
|
wrapItems = false,
|
|
@@ -1569,18 +1762,19 @@ var Box = ({
|
|
|
1569
1762
|
}
|
|
1570
1763
|
});
|
|
1571
1764
|
}
|
|
1572
|
-
return /* @__PURE__ */
|
|
1765
|
+
return /* @__PURE__ */ jsx6(
|
|
1573
1766
|
BoxComponent,
|
|
1574
1767
|
{
|
|
1575
|
-
alignContent,
|
|
1576
|
-
alignItems,
|
|
1768
|
+
$alignContent: alignContent,
|
|
1769
|
+
$alignItems: alignItems,
|
|
1770
|
+
$fillBox: fill,
|
|
1771
|
+
$fillViewport: fillViewport,
|
|
1772
|
+
$flexDirection: direction,
|
|
1773
|
+
$gap: gap,
|
|
1774
|
+
$inline: inline,
|
|
1775
|
+
$justifyContent: justifyContent,
|
|
1776
|
+
$wrapItems: wrapItems,
|
|
1577
1777
|
as: "div",
|
|
1578
|
-
fillBox: fill,
|
|
1579
|
-
fillViewport,
|
|
1580
|
-
flexDirection: direction,
|
|
1581
|
-
inline,
|
|
1582
|
-
justifyContent,
|
|
1583
|
-
wrapItems,
|
|
1584
1778
|
...otherProps,
|
|
1585
1779
|
children: wrapChildren(children)
|
|
1586
1780
|
}
|
|
@@ -1590,8 +1784,8 @@ Box.displayName = "Box";
|
|
|
1590
1784
|
|
|
1591
1785
|
// src/components/Button/Button.tsx
|
|
1592
1786
|
import { forwardRef as forwardRef3 } from "react";
|
|
1787
|
+
import styled7 from "styled-components";
|
|
1593
1788
|
import { isNotNil as isNotNil4, isNotUndefined as isNotUndefined3 } from "@wistia/type-guards";
|
|
1594
|
-
import styled5 from "styled-components";
|
|
1595
1789
|
|
|
1596
1790
|
// src/css/buttonResetCss.tsx
|
|
1597
1791
|
import { css as css10 } from "styled-components";
|
|
@@ -1674,7 +1868,7 @@ var buttonLargeStyles = css11`
|
|
|
1674
1868
|
--button-icon-size: 24px;
|
|
1675
1869
|
--button-label-gap: 8px;
|
|
1676
1870
|
`;
|
|
1677
|
-
var
|
|
1871
|
+
var buttonExtraLargeStyles = css11`
|
|
1678
1872
|
--button-padding-vertical: var(--space-03);
|
|
1679
1873
|
--button-padding-horizontal: var(--space-03);
|
|
1680
1874
|
--button-label-padding-horizontal: var(--space-02);
|
|
@@ -1789,25 +1983,25 @@ var buttonVariantsStyles = {
|
|
|
1789
1983
|
solid: solidButtonVariant
|
|
1790
1984
|
};
|
|
1791
1985
|
var buttonSizeStyles = {
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1986
|
+
sm: buttonSmallStyles,
|
|
1987
|
+
md: buttonMediumStyles,
|
|
1988
|
+
lg: buttonLargeStyles,
|
|
1989
|
+
xl: buttonExtraLargeStyles
|
|
1796
1990
|
};
|
|
1797
1991
|
|
|
1798
1992
|
// src/components/Icon/Icon.tsx
|
|
1799
|
-
import { isNil as
|
|
1800
|
-
import
|
|
1993
|
+
import { isNil as isNil6 } from "@wistia/type-guards";
|
|
1994
|
+
import styled5 from "styled-components";
|
|
1801
1995
|
|
|
1802
1996
|
// src/components/Icon/icons/AbTestIcon.tsx
|
|
1803
|
-
import { jsx as
|
|
1804
|
-
var AbTestIcon = (props) => /* @__PURE__ */
|
|
1997
|
+
import { jsx as jsx7 } from "react/jsx-runtime";
|
|
1998
|
+
var AbTestIcon = (props) => /* @__PURE__ */ jsx7(
|
|
1805
1999
|
"svg",
|
|
1806
2000
|
{
|
|
1807
2001
|
...props,
|
|
1808
2002
|
viewBox: "0 0 24 24",
|
|
1809
2003
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1810
|
-
children: /* @__PURE__ */
|
|
2004
|
+
children: /* @__PURE__ */ jsx7(
|
|
1811
2005
|
"path",
|
|
1812
2006
|
{
|
|
1813
2007
|
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",
|
|
@@ -1818,14 +2012,14 @@ var AbTestIcon = (props) => /* @__PURE__ */ jsx5(
|
|
|
1818
2012
|
);
|
|
1819
2013
|
|
|
1820
2014
|
// src/components/Icon/icons/AccessibilityIcon.tsx
|
|
1821
|
-
import { jsx as
|
|
1822
|
-
var AccessibilityIcon = (props) => /* @__PURE__ */
|
|
2015
|
+
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
2016
|
+
var AccessibilityIcon = (props) => /* @__PURE__ */ jsx8(
|
|
1823
2017
|
"svg",
|
|
1824
2018
|
{
|
|
1825
2019
|
...props,
|
|
1826
2020
|
viewBox: "0 0 24 24",
|
|
1827
2021
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1828
|
-
children: /* @__PURE__ */
|
|
2022
|
+
children: /* @__PURE__ */ jsx8(
|
|
1829
2023
|
"path",
|
|
1830
2024
|
{
|
|
1831
2025
|
clipRule: "evenodd",
|
|
@@ -1838,14 +2032,14 @@ var AccessibilityIcon = (props) => /* @__PURE__ */ jsx6(
|
|
|
1838
2032
|
);
|
|
1839
2033
|
|
|
1840
2034
|
// src/components/Icon/icons/ActivityIcon.tsx
|
|
1841
|
-
import { jsx as
|
|
1842
|
-
var ActivityIcon = (props) => /* @__PURE__ */
|
|
2035
|
+
import { jsx as jsx9 } from "react/jsx-runtime";
|
|
2036
|
+
var ActivityIcon = (props) => /* @__PURE__ */ jsx9(
|
|
1843
2037
|
"svg",
|
|
1844
2038
|
{
|
|
1845
2039
|
...props,
|
|
1846
2040
|
viewBox: "0 0 24 24",
|
|
1847
2041
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1848
|
-
children: /* @__PURE__ */
|
|
2042
|
+
children: /* @__PURE__ */ jsx9(
|
|
1849
2043
|
"path",
|
|
1850
2044
|
{
|
|
1851
2045
|
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",
|
|
@@ -1856,14 +2050,14 @@ var ActivityIcon = (props) => /* @__PURE__ */ jsx7(
|
|
|
1856
2050
|
);
|
|
1857
2051
|
|
|
1858
2052
|
// src/components/Icon/icons/AddMediaIcon.tsx
|
|
1859
|
-
import { jsx as
|
|
1860
|
-
var AddMediaIcon = (props) => /* @__PURE__ */
|
|
2053
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
2054
|
+
var AddMediaIcon = (props) => /* @__PURE__ */ jsx10(
|
|
1861
2055
|
"svg",
|
|
1862
2056
|
{
|
|
1863
2057
|
...props,
|
|
1864
2058
|
viewBox: "0 0 24 24",
|
|
1865
2059
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1866
|
-
children: /* @__PURE__ */
|
|
2060
|
+
children: /* @__PURE__ */ jsx10(
|
|
1867
2061
|
"path",
|
|
1868
2062
|
{
|
|
1869
2063
|
clipRule: "evenodd",
|
|
@@ -1876,14 +2070,14 @@ var AddMediaIcon = (props) => /* @__PURE__ */ jsx8(
|
|
|
1876
2070
|
);
|
|
1877
2071
|
|
|
1878
2072
|
// src/components/Icon/icons/AnnotationLinkIcon.tsx
|
|
1879
|
-
import { jsx as
|
|
1880
|
-
var AnnotationLinkIcon = (props) => /* @__PURE__ */
|
|
2073
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
2074
|
+
var AnnotationLinkIcon = (props) => /* @__PURE__ */ jsx11(
|
|
1881
2075
|
"svg",
|
|
1882
2076
|
{
|
|
1883
2077
|
...props,
|
|
1884
2078
|
viewBox: "0 0 24 24",
|
|
1885
2079
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1886
|
-
children: /* @__PURE__ */
|
|
2080
|
+
children: /* @__PURE__ */ jsx11(
|
|
1887
2081
|
"path",
|
|
1888
2082
|
{
|
|
1889
2083
|
clipRule: "evenodd",
|
|
@@ -1896,14 +2090,14 @@ var AnnotationLinkIcon = (props) => /* @__PURE__ */ jsx9(
|
|
|
1896
2090
|
);
|
|
1897
2091
|
|
|
1898
2092
|
// src/components/Icon/icons/AppearanceIcon.tsx
|
|
1899
|
-
import { jsx as
|
|
1900
|
-
var AppearanceIcon = (props) => /* @__PURE__ */
|
|
2093
|
+
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
2094
|
+
var AppearanceIcon = (props) => /* @__PURE__ */ jsx12(
|
|
1901
2095
|
"svg",
|
|
1902
2096
|
{
|
|
1903
2097
|
...props,
|
|
1904
2098
|
viewBox: "0 0 24 24",
|
|
1905
2099
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1906
|
-
children: /* @__PURE__ */
|
|
2100
|
+
children: /* @__PURE__ */ jsx12(
|
|
1907
2101
|
"path",
|
|
1908
2102
|
{
|
|
1909
2103
|
clipRule: "evenodd",
|
|
@@ -1916,14 +2110,14 @@ var AppearanceIcon = (props) => /* @__PURE__ */ jsx10(
|
|
|
1916
2110
|
);
|
|
1917
2111
|
|
|
1918
2112
|
// src/components/Icon/icons/ArchiveIcon.tsx
|
|
1919
|
-
import { jsx as
|
|
1920
|
-
var ArchiveIcon = (props) => /* @__PURE__ */
|
|
2113
|
+
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
2114
|
+
var ArchiveIcon = (props) => /* @__PURE__ */ jsx13(
|
|
1921
2115
|
"svg",
|
|
1922
2116
|
{
|
|
1923
2117
|
...props,
|
|
1924
2118
|
viewBox: "0 0 24 24",
|
|
1925
2119
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1926
|
-
children: /* @__PURE__ */
|
|
2120
|
+
children: /* @__PURE__ */ jsx13(
|
|
1927
2121
|
"path",
|
|
1928
2122
|
{
|
|
1929
2123
|
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",
|
|
@@ -1934,14 +2128,14 @@ var ArchiveIcon = (props) => /* @__PURE__ */ jsx11(
|
|
|
1934
2128
|
);
|
|
1935
2129
|
|
|
1936
2130
|
// src/components/Icon/icons/ArrowDownIcon.tsx
|
|
1937
|
-
import { jsx as
|
|
1938
|
-
var ArrowDownIcon = (props) => /* @__PURE__ */
|
|
2131
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
2132
|
+
var ArrowDownIcon = (props) => /* @__PURE__ */ jsx14(
|
|
1939
2133
|
"svg",
|
|
1940
2134
|
{
|
|
1941
2135
|
...props,
|
|
1942
2136
|
viewBox: "0 0 24 24",
|
|
1943
2137
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1944
|
-
children: /* @__PURE__ */
|
|
2138
|
+
children: /* @__PURE__ */ jsx14(
|
|
1945
2139
|
"path",
|
|
1946
2140
|
{
|
|
1947
2141
|
clipRule: "evenodd",
|
|
@@ -1954,14 +2148,14 @@ var ArrowDownIcon = (props) => /* @__PURE__ */ jsx12(
|
|
|
1954
2148
|
);
|
|
1955
2149
|
|
|
1956
2150
|
// src/components/Icon/icons/ArrowLeftIcon.tsx
|
|
1957
|
-
import { jsx as
|
|
1958
|
-
var ArrowLeftIcon = (props) => /* @__PURE__ */
|
|
2151
|
+
import { jsx as jsx15 } from "react/jsx-runtime";
|
|
2152
|
+
var ArrowLeftIcon = (props) => /* @__PURE__ */ jsx15(
|
|
1959
2153
|
"svg",
|
|
1960
2154
|
{
|
|
1961
2155
|
...props,
|
|
1962
2156
|
viewBox: "0 0 24 24",
|
|
1963
2157
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1964
|
-
children: /* @__PURE__ */
|
|
2158
|
+
children: /* @__PURE__ */ jsx15(
|
|
1965
2159
|
"path",
|
|
1966
2160
|
{
|
|
1967
2161
|
clipRule: "evenodd",
|
|
@@ -1974,14 +2168,14 @@ var ArrowLeftIcon = (props) => /* @__PURE__ */ jsx13(
|
|
|
1974
2168
|
);
|
|
1975
2169
|
|
|
1976
2170
|
// src/components/Icon/icons/ArrowRightIcon.tsx
|
|
1977
|
-
import { jsx as
|
|
1978
|
-
var ArrowRightIcon = (props) => /* @__PURE__ */
|
|
2171
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
2172
|
+
var ArrowRightIcon = (props) => /* @__PURE__ */ jsx16(
|
|
1979
2173
|
"svg",
|
|
1980
2174
|
{
|
|
1981
2175
|
...props,
|
|
1982
2176
|
viewBox: "0 0 24 24",
|
|
1983
2177
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1984
|
-
children: /* @__PURE__ */
|
|
2178
|
+
children: /* @__PURE__ */ jsx16(
|
|
1985
2179
|
"path",
|
|
1986
2180
|
{
|
|
1987
2181
|
clipRule: "evenodd",
|
|
@@ -1994,14 +2188,14 @@ var ArrowRightIcon = (props) => /* @__PURE__ */ jsx14(
|
|
|
1994
2188
|
);
|
|
1995
2189
|
|
|
1996
2190
|
// src/components/Icon/icons/ArrowUpIcon.tsx
|
|
1997
|
-
import { jsx as
|
|
1998
|
-
var ArrowUpIcon = (props) => /* @__PURE__ */
|
|
2191
|
+
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
2192
|
+
var ArrowUpIcon = (props) => /* @__PURE__ */ jsx17(
|
|
1999
2193
|
"svg",
|
|
2000
2194
|
{
|
|
2001
2195
|
...props,
|
|
2002
2196
|
viewBox: "0 0 24 24",
|
|
2003
2197
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2004
|
-
children: /* @__PURE__ */
|
|
2198
|
+
children: /* @__PURE__ */ jsx17(
|
|
2005
2199
|
"path",
|
|
2006
2200
|
{
|
|
2007
2201
|
clipRule: "evenodd",
|
|
@@ -2014,14 +2208,14 @@ var ArrowUpIcon = (props) => /* @__PURE__ */ jsx15(
|
|
|
2014
2208
|
);
|
|
2015
2209
|
|
|
2016
2210
|
// src/components/Icon/icons/ArrowUpRightIcon.tsx
|
|
2017
|
-
import { jsx as
|
|
2018
|
-
var ArrowUpRightIcon = (props) => /* @__PURE__ */
|
|
2211
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
2212
|
+
var ArrowUpRightIcon = (props) => /* @__PURE__ */ jsx18(
|
|
2019
2213
|
"svg",
|
|
2020
2214
|
{
|
|
2021
2215
|
...props,
|
|
2022
2216
|
viewBox: "0 0 24 24",
|
|
2023
2217
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2024
|
-
children: /* @__PURE__ */
|
|
2218
|
+
children: /* @__PURE__ */ jsx18(
|
|
2025
2219
|
"path",
|
|
2026
2220
|
{
|
|
2027
2221
|
clipRule: "evenodd",
|
|
@@ -2034,14 +2228,14 @@ var ArrowUpRightIcon = (props) => /* @__PURE__ */ jsx16(
|
|
|
2034
2228
|
);
|
|
2035
2229
|
|
|
2036
2230
|
// src/components/Icon/icons/AsteriskIcon.tsx
|
|
2037
|
-
import { jsx as
|
|
2038
|
-
var AsteriskIcon = (props) => /* @__PURE__ */
|
|
2231
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
2232
|
+
var AsteriskIcon = (props) => /* @__PURE__ */ jsx19(
|
|
2039
2233
|
"svg",
|
|
2040
2234
|
{
|
|
2041
2235
|
...props,
|
|
2042
2236
|
viewBox: "0 0 24 24",
|
|
2043
2237
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2044
|
-
children: /* @__PURE__ */
|
|
2238
|
+
children: /* @__PURE__ */ jsx19(
|
|
2045
2239
|
"path",
|
|
2046
2240
|
{
|
|
2047
2241
|
clipRule: "evenodd",
|
|
@@ -2054,14 +2248,14 @@ var AsteriskIcon = (props) => /* @__PURE__ */ jsx17(
|
|
|
2054
2248
|
);
|
|
2055
2249
|
|
|
2056
2250
|
// src/components/Icon/icons/AudioDescriptionIcon.tsx
|
|
2057
|
-
import { jsx as
|
|
2058
|
-
var AudioDescriptionIcon = (props) => /* @__PURE__ */
|
|
2251
|
+
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
2252
|
+
var AudioDescriptionIcon = (props) => /* @__PURE__ */ jsx20(
|
|
2059
2253
|
"svg",
|
|
2060
2254
|
{
|
|
2061
2255
|
...props,
|
|
2062
2256
|
viewBox: "0 0 24 24",
|
|
2063
2257
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2064
|
-
children: /* @__PURE__ */
|
|
2258
|
+
children: /* @__PURE__ */ jsx20(
|
|
2065
2259
|
"path",
|
|
2066
2260
|
{
|
|
2067
2261
|
clipRule: "evenodd",
|
|
@@ -2074,14 +2268,14 @@ var AudioDescriptionIcon = (props) => /* @__PURE__ */ jsx18(
|
|
|
2074
2268
|
);
|
|
2075
2269
|
|
|
2076
2270
|
// src/components/Icon/icons/AutoScrollIcon.tsx
|
|
2077
|
-
import { jsx as
|
|
2078
|
-
var AutoScrollIcon = (props) => /* @__PURE__ */
|
|
2271
|
+
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
2272
|
+
var AutoScrollIcon = (props) => /* @__PURE__ */ jsx21(
|
|
2079
2273
|
"svg",
|
|
2080
2274
|
{
|
|
2081
2275
|
...props,
|
|
2082
2276
|
viewBox: "0 0 24 24",
|
|
2083
2277
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2084
|
-
children: /* @__PURE__ */
|
|
2278
|
+
children: /* @__PURE__ */ jsx21(
|
|
2085
2279
|
"path",
|
|
2086
2280
|
{
|
|
2087
2281
|
clipRule: "evenodd",
|
|
@@ -2094,14 +2288,14 @@ var AutoScrollIcon = (props) => /* @__PURE__ */ jsx19(
|
|
|
2094
2288
|
);
|
|
2095
2289
|
|
|
2096
2290
|
// src/components/Icon/icons/BackgroundIcon.tsx
|
|
2097
|
-
import { jsx as
|
|
2098
|
-
var BackgroundIcon = (props) => /* @__PURE__ */
|
|
2291
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
2292
|
+
var BackgroundIcon = (props) => /* @__PURE__ */ jsx22(
|
|
2099
2293
|
"svg",
|
|
2100
2294
|
{
|
|
2101
2295
|
...props,
|
|
2102
2296
|
viewBox: "0 0 24 24",
|
|
2103
2297
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2104
|
-
children: /* @__PURE__ */
|
|
2298
|
+
children: /* @__PURE__ */ jsx22(
|
|
2105
2299
|
"path",
|
|
2106
2300
|
{
|
|
2107
2301
|
clipRule: "evenodd",
|
|
@@ -2114,14 +2308,14 @@ var BackgroundIcon = (props) => /* @__PURE__ */ jsx20(
|
|
|
2114
2308
|
);
|
|
2115
2309
|
|
|
2116
2310
|
// src/components/Icon/icons/BellIcon.tsx
|
|
2117
|
-
import { jsx as
|
|
2118
|
-
var BellIcon = (props) => /* @__PURE__ */
|
|
2311
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
2312
|
+
var BellIcon = (props) => /* @__PURE__ */ jsx23(
|
|
2119
2313
|
"svg",
|
|
2120
2314
|
{
|
|
2121
2315
|
...props,
|
|
2122
2316
|
viewBox: "0 0 24 24",
|
|
2123
2317
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2124
|
-
children: /* @__PURE__ */
|
|
2318
|
+
children: /* @__PURE__ */ jsx23(
|
|
2125
2319
|
"path",
|
|
2126
2320
|
{
|
|
2127
2321
|
clipRule: "evenodd",
|
|
@@ -2134,14 +2328,14 @@ var BellIcon = (props) => /* @__PURE__ */ jsx21(
|
|
|
2134
2328
|
);
|
|
2135
2329
|
|
|
2136
2330
|
// src/components/Icon/icons/BoltIcon.tsx
|
|
2137
|
-
import { jsx as
|
|
2138
|
-
var BoltIcon = (props) => /* @__PURE__ */
|
|
2331
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
2332
|
+
var BoltIcon = (props) => /* @__PURE__ */ jsx24(
|
|
2139
2333
|
"svg",
|
|
2140
2334
|
{
|
|
2141
2335
|
...props,
|
|
2142
2336
|
viewBox: "0 0 24 24",
|
|
2143
2337
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2144
|
-
children: /* @__PURE__ */
|
|
2338
|
+
children: /* @__PURE__ */ jsx24(
|
|
2145
2339
|
"path",
|
|
2146
2340
|
{
|
|
2147
2341
|
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",
|
|
@@ -2152,14 +2346,14 @@ var BoltIcon = (props) => /* @__PURE__ */ jsx22(
|
|
|
2152
2346
|
);
|
|
2153
2347
|
|
|
2154
2348
|
// src/components/Icon/icons/CalendarIcon.tsx
|
|
2155
|
-
import { jsx as
|
|
2156
|
-
var CalendarIcon = (props) => /* @__PURE__ */
|
|
2349
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
2350
|
+
var CalendarIcon = (props) => /* @__PURE__ */ jsx25(
|
|
2157
2351
|
"svg",
|
|
2158
2352
|
{
|
|
2159
2353
|
...props,
|
|
2160
2354
|
viewBox: "0 0 24 24",
|
|
2161
2355
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2162
|
-
children: /* @__PURE__ */
|
|
2356
|
+
children: /* @__PURE__ */ jsx25(
|
|
2163
2357
|
"path",
|
|
2164
2358
|
{
|
|
2165
2359
|
clipRule: "evenodd",
|
|
@@ -2172,14 +2366,14 @@ var CalendarIcon = (props) => /* @__PURE__ */ jsx23(
|
|
|
2172
2366
|
);
|
|
2173
2367
|
|
|
2174
2368
|
// src/components/Icon/icons/CallToActionIcon.tsx
|
|
2175
|
-
import { jsx as
|
|
2176
|
-
var CallToActionIcon = (props) => /* @__PURE__ */
|
|
2369
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
2370
|
+
var CallToActionIcon = (props) => /* @__PURE__ */ jsx26(
|
|
2177
2371
|
"svg",
|
|
2178
2372
|
{
|
|
2179
2373
|
...props,
|
|
2180
2374
|
viewBox: "0 0 24 24",
|
|
2181
2375
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2182
|
-
children: /* @__PURE__ */
|
|
2376
|
+
children: /* @__PURE__ */ jsx26(
|
|
2183
2377
|
"path",
|
|
2184
2378
|
{
|
|
2185
2379
|
clipRule: "evenodd",
|
|
@@ -2192,14 +2386,14 @@ var CallToActionIcon = (props) => /* @__PURE__ */ jsx24(
|
|
|
2192
2386
|
);
|
|
2193
2387
|
|
|
2194
2388
|
// src/components/Icon/icons/CameraIcon.tsx
|
|
2195
|
-
import { jsx as
|
|
2196
|
-
var CameraIcon = (props) => /* @__PURE__ */
|
|
2389
|
+
import { jsx as jsx27 } from "react/jsx-runtime";
|
|
2390
|
+
var CameraIcon = (props) => /* @__PURE__ */ jsx27(
|
|
2197
2391
|
"svg",
|
|
2198
2392
|
{
|
|
2199
2393
|
...props,
|
|
2200
2394
|
viewBox: "0 0 24 24",
|
|
2201
2395
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2202
|
-
children: /* @__PURE__ */
|
|
2396
|
+
children: /* @__PURE__ */ jsx27(
|
|
2203
2397
|
"path",
|
|
2204
2398
|
{
|
|
2205
2399
|
clipRule: "evenodd",
|
|
@@ -2212,14 +2406,14 @@ var CameraIcon = (props) => /* @__PURE__ */ jsx25(
|
|
|
2212
2406
|
);
|
|
2213
2407
|
|
|
2214
2408
|
// src/components/Icon/icons/CameraOffIcon.tsx
|
|
2215
|
-
import { jsx as
|
|
2216
|
-
var CameraOffIcon = (props) => /* @__PURE__ */
|
|
2409
|
+
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
2410
|
+
var CameraOffIcon = (props) => /* @__PURE__ */ jsx28(
|
|
2217
2411
|
"svg",
|
|
2218
2412
|
{
|
|
2219
2413
|
...props,
|
|
2220
2414
|
viewBox: "0 0 24 24",
|
|
2221
2415
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2222
|
-
children: /* @__PURE__ */
|
|
2416
|
+
children: /* @__PURE__ */ jsx28(
|
|
2223
2417
|
"path",
|
|
2224
2418
|
{
|
|
2225
2419
|
clipRule: "evenodd",
|
|
@@ -2232,14 +2426,14 @@ var CameraOffIcon = (props) => /* @__PURE__ */ jsx26(
|
|
|
2232
2426
|
);
|
|
2233
2427
|
|
|
2234
2428
|
// src/components/Icon/icons/CaretDownIcon.tsx
|
|
2235
|
-
import { jsx as
|
|
2236
|
-
var CaretDownIcon = (props) => /* @__PURE__ */
|
|
2429
|
+
import { jsx as jsx29 } from "react/jsx-runtime";
|
|
2430
|
+
var CaretDownIcon = (props) => /* @__PURE__ */ jsx29(
|
|
2237
2431
|
"svg",
|
|
2238
2432
|
{
|
|
2239
2433
|
...props,
|
|
2240
2434
|
viewBox: "0 0 24 24",
|
|
2241
2435
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2242
|
-
children: /* @__PURE__ */
|
|
2436
|
+
children: /* @__PURE__ */ jsx29(
|
|
2243
2437
|
"path",
|
|
2244
2438
|
{
|
|
2245
2439
|
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",
|
|
@@ -2250,14 +2444,14 @@ var CaretDownIcon = (props) => /* @__PURE__ */ jsx27(
|
|
|
2250
2444
|
);
|
|
2251
2445
|
|
|
2252
2446
|
// src/components/Icon/icons/CaretDownStrongIcon.tsx
|
|
2253
|
-
import { jsx as
|
|
2254
|
-
var CaretDownStrongIcon = (props) => /* @__PURE__ */
|
|
2447
|
+
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
2448
|
+
var CaretDownStrongIcon = (props) => /* @__PURE__ */ jsx30(
|
|
2255
2449
|
"svg",
|
|
2256
2450
|
{
|
|
2257
2451
|
...props,
|
|
2258
2452
|
viewBox: "0 0 24 24",
|
|
2259
2453
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2260
|
-
children: /* @__PURE__ */
|
|
2454
|
+
children: /* @__PURE__ */ jsx30(
|
|
2261
2455
|
"path",
|
|
2262
2456
|
{
|
|
2263
2457
|
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",
|
|
@@ -2268,14 +2462,14 @@ var CaretDownStrongIcon = (props) => /* @__PURE__ */ jsx28(
|
|
|
2268
2462
|
);
|
|
2269
2463
|
|
|
2270
2464
|
// src/components/Icon/icons/CaretLeftIcon.tsx
|
|
2271
|
-
import { jsx as
|
|
2272
|
-
var CaretLeftIcon = (props) => /* @__PURE__ */
|
|
2465
|
+
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
2466
|
+
var CaretLeftIcon = (props) => /* @__PURE__ */ jsx31(
|
|
2273
2467
|
"svg",
|
|
2274
2468
|
{
|
|
2275
2469
|
...props,
|
|
2276
2470
|
viewBox: "0 0 24 24",
|
|
2277
2471
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2278
|
-
children: /* @__PURE__ */
|
|
2472
|
+
children: /* @__PURE__ */ jsx31(
|
|
2279
2473
|
"path",
|
|
2280
2474
|
{
|
|
2281
2475
|
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",
|
|
@@ -2286,14 +2480,14 @@ var CaretLeftIcon = (props) => /* @__PURE__ */ jsx29(
|
|
|
2286
2480
|
);
|
|
2287
2481
|
|
|
2288
2482
|
// src/components/Icon/icons/CaretLeftStrongIcon.tsx
|
|
2289
|
-
import { jsx as
|
|
2290
|
-
var CaretLeftStrongIcon = (props) => /* @__PURE__ */
|
|
2483
|
+
import { jsx as jsx32 } from "react/jsx-runtime";
|
|
2484
|
+
var CaretLeftStrongIcon = (props) => /* @__PURE__ */ jsx32(
|
|
2291
2485
|
"svg",
|
|
2292
2486
|
{
|
|
2293
2487
|
...props,
|
|
2294
2488
|
viewBox: "0 0 24 24",
|
|
2295
2489
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2296
|
-
children: /* @__PURE__ */
|
|
2490
|
+
children: /* @__PURE__ */ jsx32(
|
|
2297
2491
|
"path",
|
|
2298
2492
|
{
|
|
2299
2493
|
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",
|
|
@@ -2304,14 +2498,14 @@ var CaretLeftStrongIcon = (props) => /* @__PURE__ */ jsx30(
|
|
|
2304
2498
|
);
|
|
2305
2499
|
|
|
2306
2500
|
// src/components/Icon/icons/CaretRightIcon.tsx
|
|
2307
|
-
import { jsx as
|
|
2308
|
-
var CaretRightIcon = (props) => /* @__PURE__ */
|
|
2501
|
+
import { jsx as jsx33 } from "react/jsx-runtime";
|
|
2502
|
+
var CaretRightIcon = (props) => /* @__PURE__ */ jsx33(
|
|
2309
2503
|
"svg",
|
|
2310
2504
|
{
|
|
2311
2505
|
...props,
|
|
2312
2506
|
viewBox: "0 0 24 24",
|
|
2313
2507
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2314
|
-
children: /* @__PURE__ */
|
|
2508
|
+
children: /* @__PURE__ */ jsx33(
|
|
2315
2509
|
"path",
|
|
2316
2510
|
{
|
|
2317
2511
|
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",
|
|
@@ -2322,14 +2516,14 @@ var CaretRightIcon = (props) => /* @__PURE__ */ jsx31(
|
|
|
2322
2516
|
);
|
|
2323
2517
|
|
|
2324
2518
|
// src/components/Icon/icons/CaretRightStrongIcon.tsx
|
|
2325
|
-
import { jsx as
|
|
2326
|
-
var CaretRightStrongIcon = (props) => /* @__PURE__ */
|
|
2519
|
+
import { jsx as jsx34 } from "react/jsx-runtime";
|
|
2520
|
+
var CaretRightStrongIcon = (props) => /* @__PURE__ */ jsx34(
|
|
2327
2521
|
"svg",
|
|
2328
2522
|
{
|
|
2329
2523
|
...props,
|
|
2330
2524
|
viewBox: "0 0 24 24",
|
|
2331
2525
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2332
|
-
children: /* @__PURE__ */
|
|
2526
|
+
children: /* @__PURE__ */ jsx34(
|
|
2333
2527
|
"path",
|
|
2334
2528
|
{
|
|
2335
2529
|
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",
|
|
@@ -2340,14 +2534,14 @@ var CaretRightStrongIcon = (props) => /* @__PURE__ */ jsx32(
|
|
|
2340
2534
|
);
|
|
2341
2535
|
|
|
2342
2536
|
// src/components/Icon/icons/CaretUpIcon.tsx
|
|
2343
|
-
import { jsx as
|
|
2344
|
-
var CaretUpIcon = (props) => /* @__PURE__ */
|
|
2537
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
2538
|
+
var CaretUpIcon = (props) => /* @__PURE__ */ jsx35(
|
|
2345
2539
|
"svg",
|
|
2346
2540
|
{
|
|
2347
2541
|
...props,
|
|
2348
2542
|
viewBox: "0 0 24 24",
|
|
2349
2543
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2350
|
-
children: /* @__PURE__ */
|
|
2544
|
+
children: /* @__PURE__ */ jsx35(
|
|
2351
2545
|
"path",
|
|
2352
2546
|
{
|
|
2353
2547
|
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",
|
|
@@ -2358,14 +2552,14 @@ var CaretUpIcon = (props) => /* @__PURE__ */ jsx33(
|
|
|
2358
2552
|
);
|
|
2359
2553
|
|
|
2360
2554
|
// src/components/Icon/icons/CaretUpStrongIcon.tsx
|
|
2361
|
-
import { jsx as
|
|
2362
|
-
var CaretUpStrongIcon = (props) => /* @__PURE__ */
|
|
2555
|
+
import { jsx as jsx36 } from "react/jsx-runtime";
|
|
2556
|
+
var CaretUpStrongIcon = (props) => /* @__PURE__ */ jsx36(
|
|
2363
2557
|
"svg",
|
|
2364
2558
|
{
|
|
2365
2559
|
...props,
|
|
2366
2560
|
viewBox: "0 0 24 24",
|
|
2367
2561
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2368
|
-
children: /* @__PURE__ */
|
|
2562
|
+
children: /* @__PURE__ */ jsx36(
|
|
2369
2563
|
"path",
|
|
2370
2564
|
{
|
|
2371
2565
|
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",
|
|
@@ -2376,14 +2570,14 @@ var CaretUpStrongIcon = (props) => /* @__PURE__ */ jsx34(
|
|
|
2376
2570
|
);
|
|
2377
2571
|
|
|
2378
2572
|
// src/components/Icon/icons/ChannelIcon.tsx
|
|
2379
|
-
import { jsx as
|
|
2380
|
-
var ChannelIcon = (props) => /* @__PURE__ */
|
|
2573
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
2574
|
+
var ChannelIcon = (props) => /* @__PURE__ */ jsx37(
|
|
2381
2575
|
"svg",
|
|
2382
2576
|
{
|
|
2383
2577
|
...props,
|
|
2384
2578
|
viewBox: "0 0 24 24",
|
|
2385
2579
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2386
|
-
children: /* @__PURE__ */
|
|
2580
|
+
children: /* @__PURE__ */ jsx37(
|
|
2387
2581
|
"path",
|
|
2388
2582
|
{
|
|
2389
2583
|
clipRule: "evenodd",
|
|
@@ -2396,14 +2590,14 @@ var ChannelIcon = (props) => /* @__PURE__ */ jsx35(
|
|
|
2396
2590
|
);
|
|
2397
2591
|
|
|
2398
2592
|
// src/components/Icon/icons/ChaptersIcon.tsx
|
|
2399
|
-
import { jsx as
|
|
2400
|
-
var ChaptersIcon = (props) => /* @__PURE__ */
|
|
2593
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
2594
|
+
var ChaptersIcon = (props) => /* @__PURE__ */ jsx38(
|
|
2401
2595
|
"svg",
|
|
2402
2596
|
{
|
|
2403
2597
|
...props,
|
|
2404
2598
|
viewBox: "0 0 24 24",
|
|
2405
2599
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2406
|
-
children: /* @__PURE__ */
|
|
2600
|
+
children: /* @__PURE__ */ jsx38(
|
|
2407
2601
|
"path",
|
|
2408
2602
|
{
|
|
2409
2603
|
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",
|
|
@@ -2414,14 +2608,14 @@ var ChaptersIcon = (props) => /* @__PURE__ */ jsx36(
|
|
|
2414
2608
|
);
|
|
2415
2609
|
|
|
2416
2610
|
// src/components/Icon/icons/CheckmarkCircleIcon.tsx
|
|
2417
|
-
import { jsx as
|
|
2418
|
-
var CheckmarkCircleIcon = (props) => /* @__PURE__ */
|
|
2611
|
+
import { jsx as jsx39 } from "react/jsx-runtime";
|
|
2612
|
+
var CheckmarkCircleIcon = (props) => /* @__PURE__ */ jsx39(
|
|
2419
2613
|
"svg",
|
|
2420
2614
|
{
|
|
2421
2615
|
...props,
|
|
2422
2616
|
viewBox: "0 0 24 24",
|
|
2423
2617
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2424
|
-
children: /* @__PURE__ */
|
|
2618
|
+
children: /* @__PURE__ */ jsx39(
|
|
2425
2619
|
"path",
|
|
2426
2620
|
{
|
|
2427
2621
|
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",
|
|
@@ -2432,14 +2626,14 @@ var CheckmarkCircleIcon = (props) => /* @__PURE__ */ jsx37(
|
|
|
2432
2626
|
);
|
|
2433
2627
|
|
|
2434
2628
|
// src/components/Icon/icons/CheckmarkCircleOutlineIcon.tsx
|
|
2435
|
-
import { jsx as
|
|
2436
|
-
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */
|
|
2629
|
+
import { jsx as jsx40 } from "react/jsx-runtime";
|
|
2630
|
+
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ jsx40(
|
|
2437
2631
|
"svg",
|
|
2438
2632
|
{
|
|
2439
2633
|
...props,
|
|
2440
2634
|
viewBox: "0 0 24 24",
|
|
2441
2635
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2442
|
-
children: /* @__PURE__ */
|
|
2636
|
+
children: /* @__PURE__ */ jsx40(
|
|
2443
2637
|
"path",
|
|
2444
2638
|
{
|
|
2445
2639
|
clipRule: "evenodd",
|
|
@@ -2452,14 +2646,14 @@ var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ jsx38(
|
|
|
2452
2646
|
);
|
|
2453
2647
|
|
|
2454
2648
|
// src/components/Icon/icons/CheckmarkIcon.tsx
|
|
2455
|
-
import { jsx as
|
|
2456
|
-
var CheckmarkIcon = (props) => /* @__PURE__ */
|
|
2649
|
+
import { jsx as jsx41 } from "react/jsx-runtime";
|
|
2650
|
+
var CheckmarkIcon = (props) => /* @__PURE__ */ jsx41(
|
|
2457
2651
|
"svg",
|
|
2458
2652
|
{
|
|
2459
2653
|
...props,
|
|
2460
2654
|
viewBox: "0 0 24 24",
|
|
2461
2655
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2462
|
-
children: /* @__PURE__ */
|
|
2656
|
+
children: /* @__PURE__ */ jsx41(
|
|
2463
2657
|
"path",
|
|
2464
2658
|
{
|
|
2465
2659
|
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",
|
|
@@ -2470,14 +2664,14 @@ var CheckmarkIcon = (props) => /* @__PURE__ */ jsx39(
|
|
|
2470
2664
|
);
|
|
2471
2665
|
|
|
2472
2666
|
// src/components/Icon/icons/CheckmarkThreeQuatersCircleIcon.tsx
|
|
2473
|
-
import { jsx as
|
|
2474
|
-
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */
|
|
2667
|
+
import { jsx as jsx42 } from "react/jsx-runtime";
|
|
2668
|
+
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ jsx42(
|
|
2475
2669
|
"svg",
|
|
2476
2670
|
{
|
|
2477
2671
|
...props,
|
|
2478
2672
|
viewBox: "0 0 24 24",
|
|
2479
2673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2480
|
-
children: /* @__PURE__ */
|
|
2674
|
+
children: /* @__PURE__ */ jsx42(
|
|
2481
2675
|
"path",
|
|
2482
2676
|
{
|
|
2483
2677
|
clipRule: "evenodd",
|
|
@@ -2490,14 +2684,14 @@ var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ jsx40(
|
|
|
2490
2684
|
);
|
|
2491
2685
|
|
|
2492
2686
|
// src/components/Icon/icons/CircleSlashedIcon.tsx
|
|
2493
|
-
import { jsx as
|
|
2494
|
-
var CircleSlashedIcon = (props) => /* @__PURE__ */
|
|
2687
|
+
import { jsx as jsx43 } from "react/jsx-runtime";
|
|
2688
|
+
var CircleSlashedIcon = (props) => /* @__PURE__ */ jsx43(
|
|
2495
2689
|
"svg",
|
|
2496
2690
|
{
|
|
2497
2691
|
...props,
|
|
2498
2692
|
viewBox: "0 0 24 24",
|
|
2499
2693
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2500
|
-
children: /* @__PURE__ */
|
|
2694
|
+
children: /* @__PURE__ */ jsx43(
|
|
2501
2695
|
"path",
|
|
2502
2696
|
{
|
|
2503
2697
|
clipRule: "evenodd",
|
|
@@ -2510,14 +2704,14 @@ var CircleSlashedIcon = (props) => /* @__PURE__ */ jsx41(
|
|
|
2510
2704
|
);
|
|
2511
2705
|
|
|
2512
2706
|
// src/components/Icon/icons/CloseIcon.tsx
|
|
2513
|
-
import { jsx as
|
|
2514
|
-
var CloseIcon = (props) => /* @__PURE__ */
|
|
2707
|
+
import { jsx as jsx44 } from "react/jsx-runtime";
|
|
2708
|
+
var CloseIcon = (props) => /* @__PURE__ */ jsx44(
|
|
2515
2709
|
"svg",
|
|
2516
2710
|
{
|
|
2517
2711
|
...props,
|
|
2518
2712
|
viewBox: "0 0 24 24",
|
|
2519
2713
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2520
|
-
children: /* @__PURE__ */
|
|
2714
|
+
children: /* @__PURE__ */ jsx44(
|
|
2521
2715
|
"path",
|
|
2522
2716
|
{
|
|
2523
2717
|
clipRule: "evenodd",
|
|
@@ -2530,14 +2724,14 @@ var CloseIcon = (props) => /* @__PURE__ */ jsx42(
|
|
|
2530
2724
|
);
|
|
2531
2725
|
|
|
2532
2726
|
// src/components/Icon/icons/CloseOctagonIcon.tsx
|
|
2533
|
-
import { jsx as
|
|
2534
|
-
var CloseOctagonIcon = (props) => /* @__PURE__ */
|
|
2727
|
+
import { jsx as jsx45 } from "react/jsx-runtime";
|
|
2728
|
+
var CloseOctagonIcon = (props) => /* @__PURE__ */ jsx45(
|
|
2535
2729
|
"svg",
|
|
2536
2730
|
{
|
|
2537
2731
|
...props,
|
|
2538
2732
|
viewBox: "0 0 24 24",
|
|
2539
2733
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2540
|
-
children: /* @__PURE__ */
|
|
2734
|
+
children: /* @__PURE__ */ jsx45(
|
|
2541
2735
|
"path",
|
|
2542
2736
|
{
|
|
2543
2737
|
clipRule: "evenodd",
|
|
@@ -2550,14 +2744,14 @@ var CloseOctagonIcon = (props) => /* @__PURE__ */ jsx43(
|
|
|
2550
2744
|
);
|
|
2551
2745
|
|
|
2552
2746
|
// src/components/Icon/icons/ClosedCaptionsIcon.tsx
|
|
2553
|
-
import { jsx as
|
|
2554
|
-
var ClosedCaptionsIcon = (props) => /* @__PURE__ */
|
|
2747
|
+
import { jsx as jsx46 } from "react/jsx-runtime";
|
|
2748
|
+
var ClosedCaptionsIcon = (props) => /* @__PURE__ */ jsx46(
|
|
2555
2749
|
"svg",
|
|
2556
2750
|
{
|
|
2557
2751
|
...props,
|
|
2558
2752
|
viewBox: "0 0 24 24",
|
|
2559
2753
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2560
|
-
children: /* @__PURE__ */
|
|
2754
|
+
children: /* @__PURE__ */ jsx46(
|
|
2561
2755
|
"path",
|
|
2562
2756
|
{
|
|
2563
2757
|
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",
|
|
@@ -2568,14 +2762,14 @@ var ClosedCaptionsIcon = (props) => /* @__PURE__ */ jsx44(
|
|
|
2568
2762
|
);
|
|
2569
2763
|
|
|
2570
2764
|
// src/components/Icon/icons/CollapseDiagonalIcon.tsx
|
|
2571
|
-
import { jsx as
|
|
2572
|
-
var CollapseDiagonalIcon = (props) => /* @__PURE__ */
|
|
2765
|
+
import { jsx as jsx47 } from "react/jsx-runtime";
|
|
2766
|
+
var CollapseDiagonalIcon = (props) => /* @__PURE__ */ jsx47(
|
|
2573
2767
|
"svg",
|
|
2574
2768
|
{
|
|
2575
2769
|
...props,
|
|
2576
2770
|
viewBox: "0 0 24 24",
|
|
2577
2771
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2578
|
-
children: /* @__PURE__ */
|
|
2772
|
+
children: /* @__PURE__ */ jsx47(
|
|
2579
2773
|
"path",
|
|
2580
2774
|
{
|
|
2581
2775
|
clipRule: "evenodd",
|
|
@@ -2588,14 +2782,14 @@ var CollapseDiagonalIcon = (props) => /* @__PURE__ */ jsx45(
|
|
|
2588
2782
|
);
|
|
2589
2783
|
|
|
2590
2784
|
// src/components/Icon/icons/CommentsIcon.tsx
|
|
2591
|
-
import { jsx as
|
|
2592
|
-
var CommentsIcon = (props) => /* @__PURE__ */
|
|
2785
|
+
import { jsx as jsx48 } from "react/jsx-runtime";
|
|
2786
|
+
var CommentsIcon = (props) => /* @__PURE__ */ jsx48(
|
|
2593
2787
|
"svg",
|
|
2594
2788
|
{
|
|
2595
2789
|
...props,
|
|
2596
2790
|
viewBox: "0 0 24 24",
|
|
2597
2791
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2598
|
-
children: /* @__PURE__ */
|
|
2792
|
+
children: /* @__PURE__ */ jsx48(
|
|
2599
2793
|
"path",
|
|
2600
2794
|
{
|
|
2601
2795
|
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",
|
|
@@ -2606,14 +2800,14 @@ var CommentsIcon = (props) => /* @__PURE__ */ jsx46(
|
|
|
2606
2800
|
);
|
|
2607
2801
|
|
|
2608
2802
|
// src/components/Icon/icons/CompanyIcon.tsx
|
|
2609
|
-
import { jsx as
|
|
2610
|
-
var CompanyIcon = (props) => /* @__PURE__ */
|
|
2803
|
+
import { jsx as jsx49 } from "react/jsx-runtime";
|
|
2804
|
+
var CompanyIcon = (props) => /* @__PURE__ */ jsx49(
|
|
2611
2805
|
"svg",
|
|
2612
2806
|
{
|
|
2613
2807
|
...props,
|
|
2614
2808
|
viewBox: "0 0 24 24",
|
|
2615
2809
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2616
|
-
children: /* @__PURE__ */
|
|
2810
|
+
children: /* @__PURE__ */ jsx49(
|
|
2617
2811
|
"path",
|
|
2618
2812
|
{
|
|
2619
2813
|
clipRule: "evenodd",
|
|
@@ -2626,14 +2820,14 @@ var CompanyIcon = (props) => /* @__PURE__ */ jsx47(
|
|
|
2626
2820
|
);
|
|
2627
2821
|
|
|
2628
2822
|
// src/components/Icon/icons/CompareIcon.tsx
|
|
2629
|
-
import { jsx as
|
|
2630
|
-
var CompareIcon = (props) => /* @__PURE__ */
|
|
2823
|
+
import { jsx as jsx50 } from "react/jsx-runtime";
|
|
2824
|
+
var CompareIcon = (props) => /* @__PURE__ */ jsx50(
|
|
2631
2825
|
"svg",
|
|
2632
2826
|
{
|
|
2633
2827
|
...props,
|
|
2634
2828
|
viewBox: "0 0 24 24",
|
|
2635
2829
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2636
|
-
children: /* @__PURE__ */
|
|
2830
|
+
children: /* @__PURE__ */ jsx50(
|
|
2637
2831
|
"path",
|
|
2638
2832
|
{
|
|
2639
2833
|
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",
|
|
@@ -2644,14 +2838,14 @@ var CompareIcon = (props) => /* @__PURE__ */ jsx48(
|
|
|
2644
2838
|
);
|
|
2645
2839
|
|
|
2646
2840
|
// src/components/Icon/icons/ContentLibraryIcon.tsx
|
|
2647
|
-
import { jsx as
|
|
2648
|
-
var ContentLibraryIcon = (props) => /* @__PURE__ */
|
|
2841
|
+
import { jsx as jsx51 } from "react/jsx-runtime";
|
|
2842
|
+
var ContentLibraryIcon = (props) => /* @__PURE__ */ jsx51(
|
|
2649
2843
|
"svg",
|
|
2650
2844
|
{
|
|
2651
2845
|
...props,
|
|
2652
2846
|
viewBox: "0 0 24 24",
|
|
2653
2847
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2654
|
-
children: /* @__PURE__ */
|
|
2848
|
+
children: /* @__PURE__ */ jsx51(
|
|
2655
2849
|
"path",
|
|
2656
2850
|
{
|
|
2657
2851
|
clipRule: "evenodd",
|
|
@@ -2664,14 +2858,14 @@ var ContentLibraryIcon = (props) => /* @__PURE__ */ jsx49(
|
|
|
2664
2858
|
);
|
|
2665
2859
|
|
|
2666
2860
|
// src/components/Icon/icons/ControlsIcon.tsx
|
|
2667
|
-
import { jsx as
|
|
2668
|
-
var ControlsIcon = (props) => /* @__PURE__ */
|
|
2861
|
+
import { jsx as jsx52 } from "react/jsx-runtime";
|
|
2862
|
+
var ControlsIcon = (props) => /* @__PURE__ */ jsx52(
|
|
2669
2863
|
"svg",
|
|
2670
2864
|
{
|
|
2671
2865
|
...props,
|
|
2672
2866
|
viewBox: "0 0 24 24",
|
|
2673
2867
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2674
|
-
children: /* @__PURE__ */
|
|
2868
|
+
children: /* @__PURE__ */ jsx52(
|
|
2675
2869
|
"path",
|
|
2676
2870
|
{
|
|
2677
2871
|
clipRule: "evenodd",
|
|
@@ -2684,14 +2878,14 @@ var ControlsIcon = (props) => /* @__PURE__ */ jsx50(
|
|
|
2684
2878
|
);
|
|
2685
2879
|
|
|
2686
2880
|
// src/components/Icon/icons/CursorClickIcon.tsx
|
|
2687
|
-
import { jsx as
|
|
2688
|
-
var CursorClickIcon = (props) => /* @__PURE__ */
|
|
2881
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
|
2882
|
+
var CursorClickIcon = (props) => /* @__PURE__ */ jsx53(
|
|
2689
2883
|
"svg",
|
|
2690
2884
|
{
|
|
2691
2885
|
...props,
|
|
2692
2886
|
viewBox: "0 0 24 24",
|
|
2693
2887
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2694
|
-
children: /* @__PURE__ */
|
|
2888
|
+
children: /* @__PURE__ */ jsx53(
|
|
2695
2889
|
"path",
|
|
2696
2890
|
{
|
|
2697
2891
|
clipRule: "evenodd",
|
|
@@ -2704,14 +2898,14 @@ var CursorClickIcon = (props) => /* @__PURE__ */ jsx51(
|
|
|
2704
2898
|
);
|
|
2705
2899
|
|
|
2706
2900
|
// src/components/Icon/icons/DeleteIcon.tsx
|
|
2707
|
-
import { jsx as
|
|
2708
|
-
var DeleteIcon = (props) => /* @__PURE__ */
|
|
2901
|
+
import { jsx as jsx54 } from "react/jsx-runtime";
|
|
2902
|
+
var DeleteIcon = (props) => /* @__PURE__ */ jsx54(
|
|
2709
2903
|
"svg",
|
|
2710
2904
|
{
|
|
2711
2905
|
...props,
|
|
2712
2906
|
viewBox: "0 0 24 24",
|
|
2713
2907
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2714
|
-
children: /* @__PURE__ */
|
|
2908
|
+
children: /* @__PURE__ */ jsx54(
|
|
2715
2909
|
"path",
|
|
2716
2910
|
{
|
|
2717
2911
|
clipRule: "evenodd",
|
|
@@ -2724,14 +2918,14 @@ var DeleteIcon = (props) => /* @__PURE__ */ jsx52(
|
|
|
2724
2918
|
);
|
|
2725
2919
|
|
|
2726
2920
|
// src/components/Icon/icons/DesktopIcon.tsx
|
|
2727
|
-
import { jsx as
|
|
2728
|
-
var DesktopIcon = (props) => /* @__PURE__ */
|
|
2921
|
+
import { jsx as jsx55 } from "react/jsx-runtime";
|
|
2922
|
+
var DesktopIcon = (props) => /* @__PURE__ */ jsx55(
|
|
2729
2923
|
"svg",
|
|
2730
2924
|
{
|
|
2731
2925
|
...props,
|
|
2732
2926
|
viewBox: "0 0 24 24",
|
|
2733
2927
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2734
|
-
children: /* @__PURE__ */
|
|
2928
|
+
children: /* @__PURE__ */ jsx55(
|
|
2735
2929
|
"path",
|
|
2736
2930
|
{
|
|
2737
2931
|
clipRule: "evenodd",
|
|
@@ -2744,14 +2938,14 @@ var DesktopIcon = (props) => /* @__PURE__ */ jsx53(
|
|
|
2744
2938
|
);
|
|
2745
2939
|
|
|
2746
2940
|
// src/components/Icon/icons/DotsHorizontalIcon.tsx
|
|
2747
|
-
import { jsx as
|
|
2748
|
-
var DotsHorizontalIcon = (props) => /* @__PURE__ */
|
|
2941
|
+
import { jsx as jsx56 } from "react/jsx-runtime";
|
|
2942
|
+
var DotsHorizontalIcon = (props) => /* @__PURE__ */ jsx56(
|
|
2749
2943
|
"svg",
|
|
2750
2944
|
{
|
|
2751
2945
|
...props,
|
|
2752
2946
|
viewBox: "0 0 24 24",
|
|
2753
2947
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2754
|
-
children: /* @__PURE__ */
|
|
2948
|
+
children: /* @__PURE__ */ jsx56(
|
|
2755
2949
|
"path",
|
|
2756
2950
|
{
|
|
2757
2951
|
clipRule: "evenodd",
|
|
@@ -2764,14 +2958,14 @@ var DotsHorizontalIcon = (props) => /* @__PURE__ */ jsx54(
|
|
|
2764
2958
|
);
|
|
2765
2959
|
|
|
2766
2960
|
// src/components/Icon/icons/DownloadIcon.tsx
|
|
2767
|
-
import { jsx as
|
|
2768
|
-
var DownloadIcon = (props) => /* @__PURE__ */
|
|
2961
|
+
import { jsx as jsx57 } from "react/jsx-runtime";
|
|
2962
|
+
var DownloadIcon = (props) => /* @__PURE__ */ jsx57(
|
|
2769
2963
|
"svg",
|
|
2770
2964
|
{
|
|
2771
2965
|
...props,
|
|
2772
2966
|
viewBox: "0 0 24 24",
|
|
2773
2967
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2774
|
-
children: /* @__PURE__ */
|
|
2968
|
+
children: /* @__PURE__ */ jsx57(
|
|
2775
2969
|
"path",
|
|
2776
2970
|
{
|
|
2777
2971
|
clipRule: "evenodd",
|
|
@@ -2784,14 +2978,14 @@ var DownloadIcon = (props) => /* @__PURE__ */ jsx55(
|
|
|
2784
2978
|
);
|
|
2785
2979
|
|
|
2786
2980
|
// src/components/Icon/icons/EditTranscriptIcon.tsx
|
|
2787
|
-
import { jsx as
|
|
2788
|
-
var EditTranscriptIcon = (props) => /* @__PURE__ */
|
|
2981
|
+
import { jsx as jsx58 } from "react/jsx-runtime";
|
|
2982
|
+
var EditTranscriptIcon = (props) => /* @__PURE__ */ jsx58(
|
|
2789
2983
|
"svg",
|
|
2790
2984
|
{
|
|
2791
2985
|
...props,
|
|
2792
2986
|
viewBox: "0 0 24 24",
|
|
2793
2987
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2794
|
-
children: /* @__PURE__ */
|
|
2988
|
+
children: /* @__PURE__ */ jsx58(
|
|
2795
2989
|
"path",
|
|
2796
2990
|
{
|
|
2797
2991
|
clipRule: "evenodd",
|
|
@@ -2804,14 +2998,14 @@ var EditTranscriptIcon = (props) => /* @__PURE__ */ jsx56(
|
|
|
2804
2998
|
);
|
|
2805
2999
|
|
|
2806
3000
|
// src/components/Icon/icons/EllipsesVerticalIcon.tsx
|
|
2807
|
-
import { jsx as
|
|
2808
|
-
var EllipsesVerticalIcon = (props) => /* @__PURE__ */
|
|
3001
|
+
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
3002
|
+
var EllipsesVerticalIcon = (props) => /* @__PURE__ */ jsx59(
|
|
2809
3003
|
"svg",
|
|
2810
3004
|
{
|
|
2811
3005
|
...props,
|
|
2812
3006
|
viewBox: "0 0 24 24",
|
|
2813
3007
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2814
|
-
children: /* @__PURE__ */
|
|
3008
|
+
children: /* @__PURE__ */ jsx59(
|
|
2815
3009
|
"path",
|
|
2816
3010
|
{
|
|
2817
3011
|
clipRule: "evenodd",
|
|
@@ -2824,14 +3018,14 @@ var EllipsesVerticalIcon = (props) => /* @__PURE__ */ jsx57(
|
|
|
2824
3018
|
);
|
|
2825
3019
|
|
|
2826
3020
|
// src/components/Icon/icons/EmbedIcon.tsx
|
|
2827
|
-
import { jsx as
|
|
2828
|
-
var EmbedIcon = (props) => /* @__PURE__ */
|
|
3021
|
+
import { jsx as jsx60 } from "react/jsx-runtime";
|
|
3022
|
+
var EmbedIcon = (props) => /* @__PURE__ */ jsx60(
|
|
2829
3023
|
"svg",
|
|
2830
3024
|
{
|
|
2831
3025
|
...props,
|
|
2832
3026
|
viewBox: "0 0 24 24",
|
|
2833
3027
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2834
|
-
children: /* @__PURE__ */
|
|
3028
|
+
children: /* @__PURE__ */ jsx60(
|
|
2835
3029
|
"path",
|
|
2836
3030
|
{
|
|
2837
3031
|
clipRule: "evenodd",
|
|
@@ -2844,14 +3038,14 @@ var EmbedIcon = (props) => /* @__PURE__ */ jsx58(
|
|
|
2844
3038
|
);
|
|
2845
3039
|
|
|
2846
3040
|
// src/components/Icon/icons/EnvelopeIcon.tsx
|
|
2847
|
-
import { jsx as
|
|
2848
|
-
var EnvelopeIcon = (props) => /* @__PURE__ */
|
|
3041
|
+
import { jsx as jsx61 } from "react/jsx-runtime";
|
|
3042
|
+
var EnvelopeIcon = (props) => /* @__PURE__ */ jsx61(
|
|
2849
3043
|
"svg",
|
|
2850
3044
|
{
|
|
2851
3045
|
...props,
|
|
2852
3046
|
viewBox: "0 0 24 24",
|
|
2853
3047
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2854
|
-
children: /* @__PURE__ */
|
|
3048
|
+
children: /* @__PURE__ */ jsx61(
|
|
2855
3049
|
"path",
|
|
2856
3050
|
{
|
|
2857
3051
|
clipRule: "evenodd",
|
|
@@ -2864,14 +3058,14 @@ var EnvelopeIcon = (props) => /* @__PURE__ */ jsx59(
|
|
|
2864
3058
|
);
|
|
2865
3059
|
|
|
2866
3060
|
// src/components/Icon/icons/ErrorIcon.tsx
|
|
2867
|
-
import { jsx as
|
|
2868
|
-
var ErrorIcon = (props) => /* @__PURE__ */
|
|
3061
|
+
import { jsx as jsx62 } from "react/jsx-runtime";
|
|
3062
|
+
var ErrorIcon = (props) => /* @__PURE__ */ jsx62(
|
|
2869
3063
|
"svg",
|
|
2870
3064
|
{
|
|
2871
3065
|
...props,
|
|
2872
3066
|
viewBox: "0 0 24 24",
|
|
2873
3067
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2874
|
-
children: /* @__PURE__ */
|
|
3068
|
+
children: /* @__PURE__ */ jsx62(
|
|
2875
3069
|
"path",
|
|
2876
3070
|
{
|
|
2877
3071
|
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",
|
|
@@ -2882,14 +3076,14 @@ var ErrorIcon = (props) => /* @__PURE__ */ jsx60(
|
|
|
2882
3076
|
);
|
|
2883
3077
|
|
|
2884
3078
|
// src/components/Icon/icons/ExpandDiagonalIcon.tsx
|
|
2885
|
-
import { jsx as
|
|
2886
|
-
var ExpandDiagonalIcon = (props) => /* @__PURE__ */
|
|
3079
|
+
import { jsx as jsx63 } from "react/jsx-runtime";
|
|
3080
|
+
var ExpandDiagonalIcon = (props) => /* @__PURE__ */ jsx63(
|
|
2887
3081
|
"svg",
|
|
2888
3082
|
{
|
|
2889
3083
|
...props,
|
|
2890
3084
|
viewBox: "0 0 24 24",
|
|
2891
3085
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2892
|
-
children: /* @__PURE__ */
|
|
3086
|
+
children: /* @__PURE__ */ jsx63(
|
|
2893
3087
|
"path",
|
|
2894
3088
|
{
|
|
2895
3089
|
clipRule: "evenodd",
|
|
@@ -2902,14 +3096,14 @@ var ExpandDiagonalIcon = (props) => /* @__PURE__ */ jsx61(
|
|
|
2902
3096
|
);
|
|
2903
3097
|
|
|
2904
3098
|
// src/components/Icon/icons/ExpandIcon.tsx
|
|
2905
|
-
import { jsx as
|
|
2906
|
-
var ExpandIcon = (props) => /* @__PURE__ */
|
|
3099
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
3100
|
+
var ExpandIcon = (props) => /* @__PURE__ */ jsx64(
|
|
2907
3101
|
"svg",
|
|
2908
3102
|
{
|
|
2909
3103
|
...props,
|
|
2910
3104
|
viewBox: "0 0 24 24",
|
|
2911
3105
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2912
|
-
children: /* @__PURE__ */
|
|
3106
|
+
children: /* @__PURE__ */ jsx64(
|
|
2913
3107
|
"path",
|
|
2914
3108
|
{
|
|
2915
3109
|
clipRule: "evenodd",
|
|
@@ -2922,14 +3116,14 @@ var ExpandIcon = (props) => /* @__PURE__ */ jsx62(
|
|
|
2922
3116
|
);
|
|
2923
3117
|
|
|
2924
3118
|
// src/components/Icon/icons/FavoriteIcon.tsx
|
|
2925
|
-
import { jsx as
|
|
2926
|
-
var FavoriteIcon = (props) => /* @__PURE__ */
|
|
3119
|
+
import { jsx as jsx65 } from "react/jsx-runtime";
|
|
3120
|
+
var FavoriteIcon = (props) => /* @__PURE__ */ jsx65(
|
|
2927
3121
|
"svg",
|
|
2928
3122
|
{
|
|
2929
3123
|
...props,
|
|
2930
3124
|
viewBox: "0 0 24 24",
|
|
2931
3125
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2932
|
-
children: /* @__PURE__ */
|
|
3126
|
+
children: /* @__PURE__ */ jsx65(
|
|
2933
3127
|
"path",
|
|
2934
3128
|
{
|
|
2935
3129
|
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",
|
|
@@ -2940,14 +3134,14 @@ var FavoriteIcon = (props) => /* @__PURE__ */ jsx63(
|
|
|
2940
3134
|
);
|
|
2941
3135
|
|
|
2942
3136
|
// src/components/Icon/icons/FavoriteOutlineIcon.tsx
|
|
2943
|
-
import { jsx as
|
|
2944
|
-
var FavoriteOutlineIcon = (props) => /* @__PURE__ */
|
|
3137
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
3138
|
+
var FavoriteOutlineIcon = (props) => /* @__PURE__ */ jsx66(
|
|
2945
3139
|
"svg",
|
|
2946
3140
|
{
|
|
2947
3141
|
...props,
|
|
2948
3142
|
viewBox: "0 0 24 24",
|
|
2949
3143
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2950
|
-
children: /* @__PURE__ */
|
|
3144
|
+
children: /* @__PURE__ */ jsx66(
|
|
2951
3145
|
"path",
|
|
2952
3146
|
{
|
|
2953
3147
|
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",
|
|
@@ -2961,14 +3155,14 @@ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ jsx64(
|
|
|
2961
3155
|
);
|
|
2962
3156
|
|
|
2963
3157
|
// src/components/Icon/icons/FileTreeIcon.tsx
|
|
2964
|
-
import { jsx as
|
|
2965
|
-
var FileTreeIcon = (props) => /* @__PURE__ */
|
|
3158
|
+
import { jsx as jsx67 } from "react/jsx-runtime";
|
|
3159
|
+
var FileTreeIcon = (props) => /* @__PURE__ */ jsx67(
|
|
2966
3160
|
"svg",
|
|
2967
3161
|
{
|
|
2968
3162
|
...props,
|
|
2969
3163
|
viewBox: "0 0 24 24",
|
|
2970
3164
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2971
|
-
children: /* @__PURE__ */
|
|
3165
|
+
children: /* @__PURE__ */ jsx67(
|
|
2972
3166
|
"path",
|
|
2973
3167
|
{
|
|
2974
3168
|
clipRule: "evenodd",
|
|
@@ -2981,14 +3175,14 @@ var FileTreeIcon = (props) => /* @__PURE__ */ jsx65(
|
|
|
2981
3175
|
);
|
|
2982
3176
|
|
|
2983
3177
|
// src/components/Icon/icons/FilterIcon.tsx
|
|
2984
|
-
import { jsx as
|
|
2985
|
-
var FilterIcon = (props) => /* @__PURE__ */
|
|
3178
|
+
import { jsx as jsx68 } from "react/jsx-runtime";
|
|
3179
|
+
var FilterIcon = (props) => /* @__PURE__ */ jsx68(
|
|
2986
3180
|
"svg",
|
|
2987
3181
|
{
|
|
2988
3182
|
...props,
|
|
2989
3183
|
viewBox: "0 0 24 24",
|
|
2990
3184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2991
|
-
children: /* @__PURE__ */
|
|
3185
|
+
children: /* @__PURE__ */ jsx68(
|
|
2992
3186
|
"path",
|
|
2993
3187
|
{
|
|
2994
3188
|
clipRule: "evenodd",
|
|
@@ -3001,14 +3195,14 @@ var FilterIcon = (props) => /* @__PURE__ */ jsx66(
|
|
|
3001
3195
|
);
|
|
3002
3196
|
|
|
3003
3197
|
// src/components/Icon/icons/FontsIcon.tsx
|
|
3004
|
-
import { jsx as
|
|
3005
|
-
var FontsIcon = (props) => /* @__PURE__ */
|
|
3198
|
+
import { jsx as jsx69 } from "react/jsx-runtime";
|
|
3199
|
+
var FontsIcon = (props) => /* @__PURE__ */ jsx69(
|
|
3006
3200
|
"svg",
|
|
3007
3201
|
{
|
|
3008
3202
|
...props,
|
|
3009
3203
|
viewBox: "0 0 24 24",
|
|
3010
3204
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3011
|
-
children: /* @__PURE__ */
|
|
3205
|
+
children: /* @__PURE__ */ jsx69(
|
|
3012
3206
|
"path",
|
|
3013
3207
|
{
|
|
3014
3208
|
clipRule: "evenodd",
|
|
@@ -3021,14 +3215,14 @@ var FontsIcon = (props) => /* @__PURE__ */ jsx67(
|
|
|
3021
3215
|
);
|
|
3022
3216
|
|
|
3023
3217
|
// src/components/Icon/icons/FullScreenIcon.tsx
|
|
3024
|
-
import { jsx as
|
|
3025
|
-
var FullScreenIcon = (props) => /* @__PURE__ */
|
|
3218
|
+
import { jsx as jsx70 } from "react/jsx-runtime";
|
|
3219
|
+
var FullScreenIcon = (props) => /* @__PURE__ */ jsx70(
|
|
3026
3220
|
"svg",
|
|
3027
3221
|
{
|
|
3028
3222
|
...props,
|
|
3029
3223
|
viewBox: "0 0 24 24",
|
|
3030
3224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3031
|
-
children: /* @__PURE__ */
|
|
3225
|
+
children: /* @__PURE__ */ jsx70(
|
|
3032
3226
|
"path",
|
|
3033
3227
|
{
|
|
3034
3228
|
clipRule: "evenodd",
|
|
@@ -3041,14 +3235,14 @@ var FullScreenIcon = (props) => /* @__PURE__ */ jsx68(
|
|
|
3041
3235
|
);
|
|
3042
3236
|
|
|
3043
3237
|
// src/components/Icon/icons/GearIcon.tsx
|
|
3044
|
-
import { jsx as
|
|
3045
|
-
var GearIcon = (props) => /* @__PURE__ */
|
|
3238
|
+
import { jsx as jsx71 } from "react/jsx-runtime";
|
|
3239
|
+
var GearIcon = (props) => /* @__PURE__ */ jsx71(
|
|
3046
3240
|
"svg",
|
|
3047
3241
|
{
|
|
3048
3242
|
...props,
|
|
3049
3243
|
viewBox: "0 0 24 24",
|
|
3050
3244
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3051
|
-
children: /* @__PURE__ */
|
|
3245
|
+
children: /* @__PURE__ */ jsx71(
|
|
3052
3246
|
"path",
|
|
3053
3247
|
{
|
|
3054
3248
|
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",
|
|
@@ -3059,14 +3253,14 @@ var GearIcon = (props) => /* @__PURE__ */ jsx69(
|
|
|
3059
3253
|
);
|
|
3060
3254
|
|
|
3061
3255
|
// src/components/Icon/icons/GettingStartedIcon.tsx
|
|
3062
|
-
import { jsx as
|
|
3063
|
-
var GettingStartedIcon = (props) => /* @__PURE__ */
|
|
3256
|
+
import { jsx as jsx72 } from "react/jsx-runtime";
|
|
3257
|
+
var GettingStartedIcon = (props) => /* @__PURE__ */ jsx72(
|
|
3064
3258
|
"svg",
|
|
3065
3259
|
{
|
|
3066
3260
|
...props,
|
|
3067
3261
|
viewBox: "0 0 24 24",
|
|
3068
3262
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3069
|
-
children: /* @__PURE__ */
|
|
3263
|
+
children: /* @__PURE__ */ jsx72(
|
|
3070
3264
|
"path",
|
|
3071
3265
|
{
|
|
3072
3266
|
clipRule: "evenodd",
|
|
@@ -3079,14 +3273,14 @@ var GettingStartedIcon = (props) => /* @__PURE__ */ jsx70(
|
|
|
3079
3273
|
);
|
|
3080
3274
|
|
|
3081
3275
|
// src/components/Icon/icons/GridIcon.tsx
|
|
3082
|
-
import { jsx as
|
|
3083
|
-
var GridIcon = (props) => /* @__PURE__ */
|
|
3276
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3277
|
+
var GridIcon = (props) => /* @__PURE__ */ jsx73(
|
|
3084
3278
|
"svg",
|
|
3085
3279
|
{
|
|
3086
3280
|
...props,
|
|
3087
3281
|
viewBox: "0 0 24 24",
|
|
3088
3282
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3089
|
-
children: /* @__PURE__ */
|
|
3283
|
+
children: /* @__PURE__ */ jsx73(
|
|
3090
3284
|
"path",
|
|
3091
3285
|
{
|
|
3092
3286
|
clipRule: "evenodd",
|
|
@@ -3099,14 +3293,14 @@ var GridIcon = (props) => /* @__PURE__ */ jsx71(
|
|
|
3099
3293
|
);
|
|
3100
3294
|
|
|
3101
3295
|
// src/components/Icon/icons/GripDotsVerticalIcon.tsx
|
|
3102
|
-
import { jsx as
|
|
3103
|
-
var GripDotsVerticalIcon = (props) => /* @__PURE__ */
|
|
3296
|
+
import { jsx as jsx74 } from "react/jsx-runtime";
|
|
3297
|
+
var GripDotsVerticalIcon = (props) => /* @__PURE__ */ jsx74(
|
|
3104
3298
|
"svg",
|
|
3105
3299
|
{
|
|
3106
3300
|
...props,
|
|
3107
3301
|
viewBox: "0 0 24 24",
|
|
3108
3302
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3109
|
-
children: /* @__PURE__ */
|
|
3303
|
+
children: /* @__PURE__ */ jsx74(
|
|
3110
3304
|
"path",
|
|
3111
3305
|
{
|
|
3112
3306
|
clipRule: "evenodd",
|
|
@@ -3119,14 +3313,14 @@ var GripDotsVerticalIcon = (props) => /* @__PURE__ */ jsx72(
|
|
|
3119
3313
|
);
|
|
3120
3314
|
|
|
3121
3315
|
// src/components/Icon/icons/HelpCenterIcon.tsx
|
|
3122
|
-
import { jsx as
|
|
3123
|
-
var HelpCenterIcon = (props) => /* @__PURE__ */
|
|
3316
|
+
import { jsx as jsx75 } from "react/jsx-runtime";
|
|
3317
|
+
var HelpCenterIcon = (props) => /* @__PURE__ */ jsx75(
|
|
3124
3318
|
"svg",
|
|
3125
3319
|
{
|
|
3126
3320
|
...props,
|
|
3127
3321
|
viewBox: "0 0 24 24",
|
|
3128
3322
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3129
|
-
children: /* @__PURE__ */
|
|
3323
|
+
children: /* @__PURE__ */ jsx75(
|
|
3130
3324
|
"path",
|
|
3131
3325
|
{
|
|
3132
3326
|
clipRule: "evenodd",
|
|
@@ -3139,14 +3333,14 @@ var HelpCenterIcon = (props) => /* @__PURE__ */ jsx73(
|
|
|
3139
3333
|
);
|
|
3140
3334
|
|
|
3141
3335
|
// src/components/Icon/icons/HideIcon.tsx
|
|
3142
|
-
import { jsx as
|
|
3143
|
-
var HideIcon = (props) => /* @__PURE__ */
|
|
3336
|
+
import { jsx as jsx76 } from "react/jsx-runtime";
|
|
3337
|
+
var HideIcon = (props) => /* @__PURE__ */ jsx76(
|
|
3144
3338
|
"svg",
|
|
3145
3339
|
{
|
|
3146
3340
|
...props,
|
|
3147
3341
|
viewBox: "0 0 24 24",
|
|
3148
3342
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3149
|
-
children: /* @__PURE__ */
|
|
3343
|
+
children: /* @__PURE__ */ jsx76(
|
|
3150
3344
|
"path",
|
|
3151
3345
|
{
|
|
3152
3346
|
clipRule: "evenodd",
|
|
@@ -3159,14 +3353,14 @@ var HideIcon = (props) => /* @__PURE__ */ jsx74(
|
|
|
3159
3353
|
);
|
|
3160
3354
|
|
|
3161
3355
|
// src/components/Icon/icons/HomeIcon.tsx
|
|
3162
|
-
import { jsx as
|
|
3163
|
-
var HomeIcon = (props) => /* @__PURE__ */
|
|
3356
|
+
import { jsx as jsx77 } from "react/jsx-runtime";
|
|
3357
|
+
var HomeIcon = (props) => /* @__PURE__ */ jsx77(
|
|
3164
3358
|
"svg",
|
|
3165
3359
|
{
|
|
3166
3360
|
...props,
|
|
3167
3361
|
viewBox: "0 0 24 24",
|
|
3168
3362
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3169
|
-
children: /* @__PURE__ */
|
|
3363
|
+
children: /* @__PURE__ */ jsx77(
|
|
3170
3364
|
"path",
|
|
3171
3365
|
{
|
|
3172
3366
|
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",
|
|
@@ -3177,14 +3371,14 @@ var HomeIcon = (props) => /* @__PURE__ */ jsx75(
|
|
|
3177
3371
|
);
|
|
3178
3372
|
|
|
3179
3373
|
// src/components/Icon/icons/HourglassIcon.tsx
|
|
3180
|
-
import { jsx as
|
|
3181
|
-
var HourglassIcon = (props) => /* @__PURE__ */
|
|
3374
|
+
import { jsx as jsx78 } from "react/jsx-runtime";
|
|
3375
|
+
var HourglassIcon = (props) => /* @__PURE__ */ jsx78(
|
|
3182
3376
|
"svg",
|
|
3183
3377
|
{
|
|
3184
3378
|
...props,
|
|
3185
3379
|
viewBox: "0 0 24 24",
|
|
3186
3380
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3187
|
-
children: /* @__PURE__ */
|
|
3381
|
+
children: /* @__PURE__ */ jsx78(
|
|
3188
3382
|
"path",
|
|
3189
3383
|
{
|
|
3190
3384
|
clipRule: "evenodd",
|
|
@@ -3197,14 +3391,14 @@ var HourglassIcon = (props) => /* @__PURE__ */ jsx76(
|
|
|
3197
3391
|
);
|
|
3198
3392
|
|
|
3199
3393
|
// src/components/Icon/icons/InfoIcon.tsx
|
|
3200
|
-
import { jsx as
|
|
3201
|
-
var InfoIcon = (props) => /* @__PURE__ */
|
|
3394
|
+
import { jsx as jsx79 } from "react/jsx-runtime";
|
|
3395
|
+
var InfoIcon = (props) => /* @__PURE__ */ jsx79(
|
|
3202
3396
|
"svg",
|
|
3203
3397
|
{
|
|
3204
3398
|
...props,
|
|
3205
3399
|
viewBox: "0 0 24 24",
|
|
3206
3400
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3207
|
-
children: /* @__PURE__ */
|
|
3401
|
+
children: /* @__PURE__ */ jsx79(
|
|
3208
3402
|
"path",
|
|
3209
3403
|
{
|
|
3210
3404
|
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",
|
|
@@ -3215,14 +3409,14 @@ var InfoIcon = (props) => /* @__PURE__ */ jsx77(
|
|
|
3215
3409
|
);
|
|
3216
3410
|
|
|
3217
3411
|
// src/components/Icon/icons/IntegrationsIcon.tsx
|
|
3218
|
-
import { jsx as
|
|
3219
|
-
var IntegrationsIcon = (props) => /* @__PURE__ */
|
|
3412
|
+
import { jsx as jsx80 } from "react/jsx-runtime";
|
|
3413
|
+
var IntegrationsIcon = (props) => /* @__PURE__ */ jsx80(
|
|
3220
3414
|
"svg",
|
|
3221
3415
|
{
|
|
3222
3416
|
...props,
|
|
3223
3417
|
viewBox: "0 0 24 24",
|
|
3224
3418
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3225
|
-
children: /* @__PURE__ */
|
|
3419
|
+
children: /* @__PURE__ */ jsx80(
|
|
3226
3420
|
"path",
|
|
3227
3421
|
{
|
|
3228
3422
|
clipRule: "evenodd",
|
|
@@ -3235,14 +3429,14 @@ var IntegrationsIcon = (props) => /* @__PURE__ */ jsx78(
|
|
|
3235
3429
|
);
|
|
3236
3430
|
|
|
3237
3431
|
// src/components/Icon/icons/LeaveIcon.tsx
|
|
3238
|
-
import { jsx as
|
|
3239
|
-
var LeaveIcon = (props) => /* @__PURE__ */
|
|
3432
|
+
import { jsx as jsx81 } from "react/jsx-runtime";
|
|
3433
|
+
var LeaveIcon = (props) => /* @__PURE__ */ jsx81(
|
|
3240
3434
|
"svg",
|
|
3241
3435
|
{
|
|
3242
3436
|
...props,
|
|
3243
3437
|
viewBox: "0 0 24 24",
|
|
3244
3438
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3245
|
-
children: /* @__PURE__ */
|
|
3439
|
+
children: /* @__PURE__ */ jsx81(
|
|
3246
3440
|
"path",
|
|
3247
3441
|
{
|
|
3248
3442
|
clipRule: "evenodd",
|
|
@@ -3255,14 +3449,14 @@ var LeaveIcon = (props) => /* @__PURE__ */ jsx79(
|
|
|
3255
3449
|
);
|
|
3256
3450
|
|
|
3257
3451
|
// src/components/Icon/icons/LinkIcon.tsx
|
|
3258
|
-
import { jsx as
|
|
3259
|
-
var LinkIcon = (props) => /* @__PURE__ */
|
|
3452
|
+
import { jsx as jsx82 } from "react/jsx-runtime";
|
|
3453
|
+
var LinkIcon = (props) => /* @__PURE__ */ jsx82(
|
|
3260
3454
|
"svg",
|
|
3261
3455
|
{
|
|
3262
3456
|
...props,
|
|
3263
3457
|
viewBox: "0 0 24 24",
|
|
3264
3458
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3265
|
-
children: /* @__PURE__ */
|
|
3459
|
+
children: /* @__PURE__ */ jsx82(
|
|
3266
3460
|
"path",
|
|
3267
3461
|
{
|
|
3268
3462
|
clipRule: "evenodd",
|
|
@@ -3275,14 +3469,14 @@ var LinkIcon = (props) => /* @__PURE__ */ jsx80(
|
|
|
3275
3469
|
);
|
|
3276
3470
|
|
|
3277
3471
|
// src/components/Icon/icons/ListIcon.tsx
|
|
3278
|
-
import { jsx as
|
|
3279
|
-
var ListIcon = (props) => /* @__PURE__ */
|
|
3472
|
+
import { jsx as jsx83 } from "react/jsx-runtime";
|
|
3473
|
+
var ListIcon = (props) => /* @__PURE__ */ jsx83(
|
|
3280
3474
|
"svg",
|
|
3281
3475
|
{
|
|
3282
3476
|
...props,
|
|
3283
3477
|
viewBox: "0 0 24 24",
|
|
3284
3478
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3285
|
-
children: /* @__PURE__ */
|
|
3479
|
+
children: /* @__PURE__ */ jsx83(
|
|
3286
3480
|
"path",
|
|
3287
3481
|
{
|
|
3288
3482
|
clipRule: "evenodd",
|
|
@@ -3295,14 +3489,14 @@ var ListIcon = (props) => /* @__PURE__ */ jsx81(
|
|
|
3295
3489
|
);
|
|
3296
3490
|
|
|
3297
3491
|
// src/components/Icon/icons/LiveIcon.tsx
|
|
3298
|
-
import { jsx as
|
|
3299
|
-
var LiveIcon = (props) => /* @__PURE__ */
|
|
3492
|
+
import { jsx as jsx84 } from "react/jsx-runtime";
|
|
3493
|
+
var LiveIcon = (props) => /* @__PURE__ */ jsx84(
|
|
3300
3494
|
"svg",
|
|
3301
3495
|
{
|
|
3302
3496
|
...props,
|
|
3303
3497
|
viewBox: "0 0 24 24",
|
|
3304
3498
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3305
|
-
children: /* @__PURE__ */
|
|
3499
|
+
children: /* @__PURE__ */ jsx84(
|
|
3306
3500
|
"path",
|
|
3307
3501
|
{
|
|
3308
3502
|
clipRule: "evenodd",
|
|
@@ -3315,14 +3509,14 @@ var LiveIcon = (props) => /* @__PURE__ */ jsx82(
|
|
|
3315
3509
|
);
|
|
3316
3510
|
|
|
3317
3511
|
// src/components/Icon/icons/LockIcon.tsx
|
|
3318
|
-
import { jsx as
|
|
3319
|
-
var LockIcon = (props) => /* @__PURE__ */
|
|
3512
|
+
import { jsx as jsx85 } from "react/jsx-runtime";
|
|
3513
|
+
var LockIcon = (props) => /* @__PURE__ */ jsx85(
|
|
3320
3514
|
"svg",
|
|
3321
3515
|
{
|
|
3322
3516
|
...props,
|
|
3323
3517
|
viewBox: "0 0 24 24",
|
|
3324
3518
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3325
|
-
children: /* @__PURE__ */
|
|
3519
|
+
children: /* @__PURE__ */ jsx85(
|
|
3326
3520
|
"path",
|
|
3327
3521
|
{
|
|
3328
3522
|
clipRule: "evenodd",
|
|
@@ -3335,14 +3529,14 @@ var LockIcon = (props) => /* @__PURE__ */ jsx83(
|
|
|
3335
3529
|
);
|
|
3336
3530
|
|
|
3337
3531
|
// src/components/Icon/icons/LogoutIcon.tsx
|
|
3338
|
-
import { jsx as
|
|
3339
|
-
var LogoutIcon = (props) => /* @__PURE__ */
|
|
3532
|
+
import { jsx as jsx86 } from "react/jsx-runtime";
|
|
3533
|
+
var LogoutIcon = (props) => /* @__PURE__ */ jsx86(
|
|
3340
3534
|
"svg",
|
|
3341
3535
|
{
|
|
3342
3536
|
...props,
|
|
3343
3537
|
viewBox: "0 0 24 24",
|
|
3344
3538
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3345
|
-
children: /* @__PURE__ */
|
|
3539
|
+
children: /* @__PURE__ */ jsx86(
|
|
3346
3540
|
"path",
|
|
3347
3541
|
{
|
|
3348
3542
|
clipRule: "evenodd",
|
|
@@ -3355,14 +3549,14 @@ var LogoutIcon = (props) => /* @__PURE__ */ jsx84(
|
|
|
3355
3549
|
);
|
|
3356
3550
|
|
|
3357
3551
|
// src/components/Icon/icons/MaximizeIcon.tsx
|
|
3358
|
-
import { jsx as
|
|
3359
|
-
var MaximizeIcon = (props) => /* @__PURE__ */
|
|
3552
|
+
import { jsx as jsx87 } from "react/jsx-runtime";
|
|
3553
|
+
var MaximizeIcon = (props) => /* @__PURE__ */ jsx87(
|
|
3360
3554
|
"svg",
|
|
3361
3555
|
{
|
|
3362
3556
|
...props,
|
|
3363
3557
|
viewBox: "0 0 24 24",
|
|
3364
3558
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3365
|
-
children: /* @__PURE__ */
|
|
3559
|
+
children: /* @__PURE__ */ jsx87(
|
|
3366
3560
|
"path",
|
|
3367
3561
|
{
|
|
3368
3562
|
clipRule: "evenodd",
|
|
@@ -3375,14 +3569,14 @@ var MaximizeIcon = (props) => /* @__PURE__ */ jsx85(
|
|
|
3375
3569
|
);
|
|
3376
3570
|
|
|
3377
3571
|
// src/components/Icon/icons/MediaIcon.tsx
|
|
3378
|
-
import { jsx as
|
|
3379
|
-
var MediaIcon = (props) => /* @__PURE__ */
|
|
3572
|
+
import { jsx as jsx88 } from "react/jsx-runtime";
|
|
3573
|
+
var MediaIcon = (props) => /* @__PURE__ */ jsx88(
|
|
3380
3574
|
"svg",
|
|
3381
3575
|
{
|
|
3382
3576
|
...props,
|
|
3383
3577
|
viewBox: "0 0 24 24",
|
|
3384
3578
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3385
|
-
children: /* @__PURE__ */
|
|
3579
|
+
children: /* @__PURE__ */ jsx88(
|
|
3386
3580
|
"path",
|
|
3387
3581
|
{
|
|
3388
3582
|
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",
|
|
@@ -3393,14 +3587,14 @@ var MediaIcon = (props) => /* @__PURE__ */ jsx86(
|
|
|
3393
3587
|
);
|
|
3394
3588
|
|
|
3395
3589
|
// src/components/Icon/icons/MenuIcon.tsx
|
|
3396
|
-
import { jsx as
|
|
3397
|
-
var MenuIcon = (props) => /* @__PURE__ */
|
|
3590
|
+
import { jsx as jsx89 } from "react/jsx-runtime";
|
|
3591
|
+
var MenuIcon = (props) => /* @__PURE__ */ jsx89(
|
|
3398
3592
|
"svg",
|
|
3399
3593
|
{
|
|
3400
3594
|
...props,
|
|
3401
3595
|
viewBox: "0 0 24 24",
|
|
3402
3596
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3403
|
-
children: /* @__PURE__ */
|
|
3597
|
+
children: /* @__PURE__ */ jsx89(
|
|
3404
3598
|
"path",
|
|
3405
3599
|
{
|
|
3406
3600
|
clipRule: "evenodd",
|
|
@@ -3413,14 +3607,14 @@ var MenuIcon = (props) => /* @__PURE__ */ jsx87(
|
|
|
3413
3607
|
);
|
|
3414
3608
|
|
|
3415
3609
|
// src/components/Icon/icons/MicIcon.tsx
|
|
3416
|
-
import { jsx as
|
|
3417
|
-
var MicIcon = (props) => /* @__PURE__ */
|
|
3610
|
+
import { jsx as jsx90 } from "react/jsx-runtime";
|
|
3611
|
+
var MicIcon = (props) => /* @__PURE__ */ jsx90(
|
|
3418
3612
|
"svg",
|
|
3419
3613
|
{
|
|
3420
3614
|
...props,
|
|
3421
3615
|
viewBox: "0 0 24 24",
|
|
3422
3616
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3423
|
-
children: /* @__PURE__ */
|
|
3617
|
+
children: /* @__PURE__ */ jsx90(
|
|
3424
3618
|
"path",
|
|
3425
3619
|
{
|
|
3426
3620
|
clipRule: "evenodd",
|
|
@@ -3433,14 +3627,14 @@ var MicIcon = (props) => /* @__PURE__ */ jsx88(
|
|
|
3433
3627
|
);
|
|
3434
3628
|
|
|
3435
3629
|
// src/components/Icon/icons/MicOffIcon.tsx
|
|
3436
|
-
import { jsx as
|
|
3437
|
-
var MicOffIcon = (props) => /* @__PURE__ */
|
|
3630
|
+
import { jsx as jsx91 } from "react/jsx-runtime";
|
|
3631
|
+
var MicOffIcon = (props) => /* @__PURE__ */ jsx91(
|
|
3438
3632
|
"svg",
|
|
3439
3633
|
{
|
|
3440
3634
|
...props,
|
|
3441
3635
|
viewBox: "0 0 24 24",
|
|
3442
3636
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3443
|
-
children: /* @__PURE__ */
|
|
3637
|
+
children: /* @__PURE__ */ jsx91(
|
|
3444
3638
|
"path",
|
|
3445
3639
|
{
|
|
3446
3640
|
clipRule: "evenodd",
|
|
@@ -3453,14 +3647,14 @@ var MicOffIcon = (props) => /* @__PURE__ */ jsx89(
|
|
|
3453
3647
|
);
|
|
3454
3648
|
|
|
3455
3649
|
// src/components/Icon/icons/MinimizeIcon.tsx
|
|
3456
|
-
import { jsx as
|
|
3457
|
-
var MinimizeIcon = (props) => /* @__PURE__ */
|
|
3650
|
+
import { jsx as jsx92 } from "react/jsx-runtime";
|
|
3651
|
+
var MinimizeIcon = (props) => /* @__PURE__ */ jsx92(
|
|
3458
3652
|
"svg",
|
|
3459
3653
|
{
|
|
3460
3654
|
...props,
|
|
3461
3655
|
viewBox: "0 0 24 24",
|
|
3462
3656
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3463
|
-
children: /* @__PURE__ */
|
|
3657
|
+
children: /* @__PURE__ */ jsx92(
|
|
3464
3658
|
"path",
|
|
3465
3659
|
{
|
|
3466
3660
|
clipRule: "evenodd",
|
|
@@ -3473,14 +3667,14 @@ var MinimizeIcon = (props) => /* @__PURE__ */ jsx90(
|
|
|
3473
3667
|
);
|
|
3474
3668
|
|
|
3475
3669
|
// src/components/Icon/icons/MinusCircleIcon.tsx
|
|
3476
|
-
import { jsx as
|
|
3477
|
-
var MinusCircleIcon = (props) => /* @__PURE__ */
|
|
3670
|
+
import { jsx as jsx93 } from "react/jsx-runtime";
|
|
3671
|
+
var MinusCircleIcon = (props) => /* @__PURE__ */ jsx93(
|
|
3478
3672
|
"svg",
|
|
3479
3673
|
{
|
|
3480
3674
|
...props,
|
|
3481
3675
|
viewBox: "0 0 24 24",
|
|
3482
3676
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3483
|
-
children: /* @__PURE__ */
|
|
3677
|
+
children: /* @__PURE__ */ jsx93(
|
|
3484
3678
|
"path",
|
|
3485
3679
|
{
|
|
3486
3680
|
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",
|
|
@@ -3491,14 +3685,14 @@ var MinusCircleIcon = (props) => /* @__PURE__ */ jsx91(
|
|
|
3491
3685
|
);
|
|
3492
3686
|
|
|
3493
3687
|
// src/components/Icon/icons/MobileIcon.tsx
|
|
3494
|
-
import { jsx as
|
|
3495
|
-
var MobileIcon = (props) => /* @__PURE__ */
|
|
3688
|
+
import { jsx as jsx94 } from "react/jsx-runtime";
|
|
3689
|
+
var MobileIcon = (props) => /* @__PURE__ */ jsx94(
|
|
3496
3690
|
"svg",
|
|
3497
3691
|
{
|
|
3498
3692
|
...props,
|
|
3499
3693
|
viewBox: "0 0 24 24",
|
|
3500
3694
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3501
|
-
children: /* @__PURE__ */
|
|
3695
|
+
children: /* @__PURE__ */ jsx94(
|
|
3502
3696
|
"path",
|
|
3503
3697
|
{
|
|
3504
3698
|
clipRule: "evenodd",
|
|
@@ -3511,14 +3705,14 @@ var MobileIcon = (props) => /* @__PURE__ */ jsx92(
|
|
|
3511
3705
|
);
|
|
3512
3706
|
|
|
3513
3707
|
// src/components/Icon/icons/MoreOptionsIcon.tsx
|
|
3514
|
-
import { jsx as
|
|
3515
|
-
var MoreOptionsIcon = (props) => /* @__PURE__ */
|
|
3708
|
+
import { jsx as jsx95 } from "react/jsx-runtime";
|
|
3709
|
+
var MoreOptionsIcon = (props) => /* @__PURE__ */ jsx95(
|
|
3516
3710
|
"svg",
|
|
3517
3711
|
{
|
|
3518
3712
|
...props,
|
|
3519
3713
|
viewBox: "0 0 24 24",
|
|
3520
3714
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3521
|
-
children: /* @__PURE__ */
|
|
3715
|
+
children: /* @__PURE__ */ jsx95(
|
|
3522
3716
|
"path",
|
|
3523
3717
|
{
|
|
3524
3718
|
clipRule: "evenodd",
|
|
@@ -3531,14 +3725,14 @@ var MoreOptionsIcon = (props) => /* @__PURE__ */ jsx93(
|
|
|
3531
3725
|
);
|
|
3532
3726
|
|
|
3533
3727
|
// src/components/Icon/icons/MoveLeftIcon.tsx
|
|
3534
|
-
import { jsx as
|
|
3535
|
-
var MoveLeftIcon = (props) => /* @__PURE__ */
|
|
3728
|
+
import { jsx as jsx96 } from "react/jsx-runtime";
|
|
3729
|
+
var MoveLeftIcon = (props) => /* @__PURE__ */ jsx96(
|
|
3536
3730
|
"svg",
|
|
3537
3731
|
{
|
|
3538
3732
|
...props,
|
|
3539
3733
|
viewBox: "0 0 24 24",
|
|
3540
3734
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3541
|
-
children: /* @__PURE__ */
|
|
3735
|
+
children: /* @__PURE__ */ jsx96(
|
|
3542
3736
|
"path",
|
|
3543
3737
|
{
|
|
3544
3738
|
clipRule: "evenodd",
|
|
@@ -3551,14 +3745,14 @@ var MoveLeftIcon = (props) => /* @__PURE__ */ jsx94(
|
|
|
3551
3745
|
);
|
|
3552
3746
|
|
|
3553
3747
|
// src/components/Icon/icons/MoveRightIcon.tsx
|
|
3554
|
-
import { jsx as
|
|
3555
|
-
var MoveRightIcon = (props) => /* @__PURE__ */
|
|
3748
|
+
import { jsx as jsx97 } from "react/jsx-runtime";
|
|
3749
|
+
var MoveRightIcon = (props) => /* @__PURE__ */ jsx97(
|
|
3556
3750
|
"svg",
|
|
3557
3751
|
{
|
|
3558
3752
|
...props,
|
|
3559
3753
|
viewBox: "0 0 24 24",
|
|
3560
3754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3561
|
-
children: /* @__PURE__ */
|
|
3755
|
+
children: /* @__PURE__ */ jsx97(
|
|
3562
3756
|
"path",
|
|
3563
3757
|
{
|
|
3564
3758
|
clipRule: "evenodd",
|
|
@@ -3571,14 +3765,14 @@ var MoveRightIcon = (props) => /* @__PURE__ */ jsx95(
|
|
|
3571
3765
|
);
|
|
3572
3766
|
|
|
3573
3767
|
// src/components/Icon/icons/MusicIcon.tsx
|
|
3574
|
-
import { jsx as
|
|
3575
|
-
var MusicIcon = (props) => /* @__PURE__ */
|
|
3768
|
+
import { jsx as jsx98 } from "react/jsx-runtime";
|
|
3769
|
+
var MusicIcon = (props) => /* @__PURE__ */ jsx98(
|
|
3576
3770
|
"svg",
|
|
3577
3771
|
{
|
|
3578
3772
|
...props,
|
|
3579
3773
|
viewBox: "0 0 24 24",
|
|
3580
3774
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3581
|
-
children: /* @__PURE__ */
|
|
3775
|
+
children: /* @__PURE__ */ jsx98(
|
|
3582
3776
|
"path",
|
|
3583
3777
|
{
|
|
3584
3778
|
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",
|
|
@@ -3589,14 +3783,14 @@ var MusicIcon = (props) => /* @__PURE__ */ jsx96(
|
|
|
3589
3783
|
);
|
|
3590
3784
|
|
|
3591
3785
|
// src/components/Icon/icons/OpenNewIcon.tsx
|
|
3592
|
-
import { jsx as
|
|
3593
|
-
var OpenNewIcon = (props) => /* @__PURE__ */
|
|
3786
|
+
import { jsx as jsx99 } from "react/jsx-runtime";
|
|
3787
|
+
var OpenNewIcon = (props) => /* @__PURE__ */ jsx99(
|
|
3594
3788
|
"svg",
|
|
3595
3789
|
{
|
|
3596
3790
|
...props,
|
|
3597
3791
|
viewBox: "0 0 24 24",
|
|
3598
3792
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3599
|
-
children: /* @__PURE__ */
|
|
3793
|
+
children: /* @__PURE__ */ jsx99(
|
|
3600
3794
|
"path",
|
|
3601
3795
|
{
|
|
3602
3796
|
clipRule: "evenodd",
|
|
@@ -3609,14 +3803,14 @@ var OpenNewIcon = (props) => /* @__PURE__ */ jsx97(
|
|
|
3609
3803
|
);
|
|
3610
3804
|
|
|
3611
3805
|
// src/components/Icon/icons/OverviewIcon.tsx
|
|
3612
|
-
import { jsx as
|
|
3613
|
-
var OverviewIcon = (props) => /* @__PURE__ */
|
|
3806
|
+
import { jsx as jsx100 } from "react/jsx-runtime";
|
|
3807
|
+
var OverviewIcon = (props) => /* @__PURE__ */ jsx100(
|
|
3614
3808
|
"svg",
|
|
3615
3809
|
{
|
|
3616
3810
|
...props,
|
|
3617
3811
|
viewBox: "0 0 24 24",
|
|
3618
3812
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3619
|
-
children: /* @__PURE__ */
|
|
3813
|
+
children: /* @__PURE__ */ jsx100(
|
|
3620
3814
|
"path",
|
|
3621
3815
|
{
|
|
3622
3816
|
clipRule: "evenodd",
|
|
@@ -3629,14 +3823,14 @@ var OverviewIcon = (props) => /* @__PURE__ */ jsx98(
|
|
|
3629
3823
|
);
|
|
3630
3824
|
|
|
3631
3825
|
// src/components/Icon/icons/PageIcon.tsx
|
|
3632
|
-
import { jsx as
|
|
3633
|
-
var PageIcon = (props) => /* @__PURE__ */
|
|
3826
|
+
import { jsx as jsx101 } from "react/jsx-runtime";
|
|
3827
|
+
var PageIcon = (props) => /* @__PURE__ */ jsx101(
|
|
3634
3828
|
"svg",
|
|
3635
3829
|
{
|
|
3636
3830
|
...props,
|
|
3637
3831
|
viewBox: "0 0 24 24",
|
|
3638
3832
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3639
|
-
children: /* @__PURE__ */
|
|
3833
|
+
children: /* @__PURE__ */ jsx101(
|
|
3640
3834
|
"path",
|
|
3641
3835
|
{
|
|
3642
3836
|
clipRule: "evenodd",
|
|
@@ -3649,14 +3843,14 @@ var PageIcon = (props) => /* @__PURE__ */ jsx99(
|
|
|
3649
3843
|
);
|
|
3650
3844
|
|
|
3651
3845
|
// src/components/Icon/icons/PanelLeftIcon.tsx
|
|
3652
|
-
import { jsx as
|
|
3653
|
-
var PanelLeftIcon = (props) => /* @__PURE__ */
|
|
3846
|
+
import { jsx as jsx102 } from "react/jsx-runtime";
|
|
3847
|
+
var PanelLeftIcon = (props) => /* @__PURE__ */ jsx102(
|
|
3654
3848
|
"svg",
|
|
3655
3849
|
{
|
|
3656
3850
|
...props,
|
|
3657
3851
|
viewBox: "0 0 24 24",
|
|
3658
3852
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3659
|
-
children: /* @__PURE__ */
|
|
3853
|
+
children: /* @__PURE__ */ jsx102(
|
|
3660
3854
|
"path",
|
|
3661
3855
|
{
|
|
3662
3856
|
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",
|
|
@@ -3667,14 +3861,14 @@ var PanelLeftIcon = (props) => /* @__PURE__ */ jsx100(
|
|
|
3667
3861
|
);
|
|
3668
3862
|
|
|
3669
3863
|
// src/components/Icon/icons/PanelRightIcon.tsx
|
|
3670
|
-
import { jsx as
|
|
3671
|
-
var PanelRightIcon = (props) => /* @__PURE__ */
|
|
3864
|
+
import { jsx as jsx103 } from "react/jsx-runtime";
|
|
3865
|
+
var PanelRightIcon = (props) => /* @__PURE__ */ jsx103(
|
|
3672
3866
|
"svg",
|
|
3673
3867
|
{
|
|
3674
3868
|
...props,
|
|
3675
3869
|
viewBox: "0 0 24 24",
|
|
3676
3870
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3677
|
-
children: /* @__PURE__ */
|
|
3871
|
+
children: /* @__PURE__ */ jsx103(
|
|
3678
3872
|
"path",
|
|
3679
3873
|
{
|
|
3680
3874
|
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",
|
|
@@ -3685,14 +3879,14 @@ var PanelRightIcon = (props) => /* @__PURE__ */ jsx101(
|
|
|
3685
3879
|
);
|
|
3686
3880
|
|
|
3687
3881
|
// src/components/Icon/icons/PanelUpIcon.tsx
|
|
3688
|
-
import { jsx as
|
|
3689
|
-
var PanelUpIcon = (props) => /* @__PURE__ */
|
|
3882
|
+
import { jsx as jsx104 } from "react/jsx-runtime";
|
|
3883
|
+
var PanelUpIcon = (props) => /* @__PURE__ */ jsx104(
|
|
3690
3884
|
"svg",
|
|
3691
3885
|
{
|
|
3692
3886
|
...props,
|
|
3693
3887
|
viewBox: "0 0 24 24",
|
|
3694
3888
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3695
|
-
children: /* @__PURE__ */
|
|
3889
|
+
children: /* @__PURE__ */ jsx104(
|
|
3696
3890
|
"path",
|
|
3697
3891
|
{
|
|
3698
3892
|
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",
|
|
@@ -3703,14 +3897,14 @@ var PanelUpIcon = (props) => /* @__PURE__ */ jsx102(
|
|
|
3703
3897
|
);
|
|
3704
3898
|
|
|
3705
3899
|
// src/components/Icon/icons/PasswordIcon.tsx
|
|
3706
|
-
import { jsx as
|
|
3707
|
-
var PasswordIcon = (props) => /* @__PURE__ */
|
|
3900
|
+
import { jsx as jsx105 } from "react/jsx-runtime";
|
|
3901
|
+
var PasswordIcon = (props) => /* @__PURE__ */ jsx105(
|
|
3708
3902
|
"svg",
|
|
3709
3903
|
{
|
|
3710
3904
|
...props,
|
|
3711
3905
|
viewBox: "0 0 24 24",
|
|
3712
3906
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3713
|
-
children: /* @__PURE__ */
|
|
3907
|
+
children: /* @__PURE__ */ jsx105(
|
|
3714
3908
|
"path",
|
|
3715
3909
|
{
|
|
3716
3910
|
clipRule: "evenodd",
|
|
@@ -3723,14 +3917,14 @@ var PasswordIcon = (props) => /* @__PURE__ */ jsx103(
|
|
|
3723
3917
|
);
|
|
3724
3918
|
|
|
3725
3919
|
// src/components/Icon/icons/PencilIcon.tsx
|
|
3726
|
-
import { jsx as
|
|
3727
|
-
var PencilIcon = (props) => /* @__PURE__ */
|
|
3920
|
+
import { jsx as jsx106 } from "react/jsx-runtime";
|
|
3921
|
+
var PencilIcon = (props) => /* @__PURE__ */ jsx106(
|
|
3728
3922
|
"svg",
|
|
3729
3923
|
{
|
|
3730
3924
|
...props,
|
|
3731
3925
|
viewBox: "0 0 24 24",
|
|
3732
3926
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3733
|
-
children: /* @__PURE__ */
|
|
3927
|
+
children: /* @__PURE__ */ jsx106(
|
|
3734
3928
|
"path",
|
|
3735
3929
|
{
|
|
3736
3930
|
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",
|
|
@@ -3741,14 +3935,14 @@ var PencilIcon = (props) => /* @__PURE__ */ jsx104(
|
|
|
3741
3935
|
);
|
|
3742
3936
|
|
|
3743
3937
|
// src/components/Icon/icons/PeopleIcon.tsx
|
|
3744
|
-
import { jsx as
|
|
3745
|
-
var PeopleIcon = (props) => /* @__PURE__ */
|
|
3938
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
3939
|
+
var PeopleIcon = (props) => /* @__PURE__ */ jsx107(
|
|
3746
3940
|
"svg",
|
|
3747
3941
|
{
|
|
3748
3942
|
...props,
|
|
3749
3943
|
viewBox: "0 0 24 24",
|
|
3750
3944
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3751
|
-
children: /* @__PURE__ */
|
|
3945
|
+
children: /* @__PURE__ */ jsx107(
|
|
3752
3946
|
"path",
|
|
3753
3947
|
{
|
|
3754
3948
|
clipRule: "evenodd",
|
|
@@ -3761,14 +3955,14 @@ var PeopleIcon = (props) => /* @__PURE__ */ jsx105(
|
|
|
3761
3955
|
);
|
|
3762
3956
|
|
|
3763
3957
|
// src/components/Icon/icons/PinIcon.tsx
|
|
3764
|
-
import { jsx as
|
|
3765
|
-
var PinIcon = (props) => /* @__PURE__ */
|
|
3958
|
+
import { jsx as jsx108 } from "react/jsx-runtime";
|
|
3959
|
+
var PinIcon = (props) => /* @__PURE__ */ jsx108(
|
|
3766
3960
|
"svg",
|
|
3767
3961
|
{
|
|
3768
3962
|
...props,
|
|
3769
3963
|
viewBox: "0 0 24 24",
|
|
3770
3964
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3771
|
-
children: /* @__PURE__ */
|
|
3965
|
+
children: /* @__PURE__ */ jsx108(
|
|
3772
3966
|
"path",
|
|
3773
3967
|
{
|
|
3774
3968
|
clipRule: "evenodd",
|
|
@@ -3781,14 +3975,14 @@ var PinIcon = (props) => /* @__PURE__ */ jsx106(
|
|
|
3781
3975
|
);
|
|
3782
3976
|
|
|
3783
3977
|
// src/components/Icon/icons/PinSlashIcon.tsx
|
|
3784
|
-
import { jsx as
|
|
3785
|
-
var PinSlashIcon = (props) => /* @__PURE__ */
|
|
3978
|
+
import { jsx as jsx109 } from "react/jsx-runtime";
|
|
3979
|
+
var PinSlashIcon = (props) => /* @__PURE__ */ jsx109(
|
|
3786
3980
|
"svg",
|
|
3787
3981
|
{
|
|
3788
3982
|
...props,
|
|
3789
3983
|
viewBox: "0 0 24 24",
|
|
3790
3984
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3791
|
-
children: /* @__PURE__ */
|
|
3985
|
+
children: /* @__PURE__ */ jsx109(
|
|
3792
3986
|
"path",
|
|
3793
3987
|
{
|
|
3794
3988
|
clipRule: "evenodd",
|
|
@@ -3801,14 +3995,14 @@ var PinSlashIcon = (props) => /* @__PURE__ */ jsx107(
|
|
|
3801
3995
|
);
|
|
3802
3996
|
|
|
3803
3997
|
// src/components/Icon/icons/PlayIcon.tsx
|
|
3804
|
-
import { jsx as
|
|
3805
|
-
var PlayIcon = (props) => /* @__PURE__ */
|
|
3998
|
+
import { jsx as jsx110 } from "react/jsx-runtime";
|
|
3999
|
+
var PlayIcon = (props) => /* @__PURE__ */ jsx110(
|
|
3806
4000
|
"svg",
|
|
3807
4001
|
{
|
|
3808
4002
|
...props,
|
|
3809
4003
|
viewBox: "0 0 24 24",
|
|
3810
4004
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3811
|
-
children: /* @__PURE__ */
|
|
4005
|
+
children: /* @__PURE__ */ jsx110(
|
|
3812
4006
|
"path",
|
|
3813
4007
|
{
|
|
3814
4008
|
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",
|
|
@@ -3819,14 +4013,14 @@ var PlayIcon = (props) => /* @__PURE__ */ jsx108(
|
|
|
3819
4013
|
);
|
|
3820
4014
|
|
|
3821
4015
|
// src/components/Icon/icons/PlayerIcon.tsx
|
|
3822
|
-
import { jsx as
|
|
3823
|
-
var PlayerIcon = (props) => /* @__PURE__ */
|
|
4016
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
4017
|
+
var PlayerIcon = (props) => /* @__PURE__ */ jsx111(
|
|
3824
4018
|
"svg",
|
|
3825
4019
|
{
|
|
3826
4020
|
...props,
|
|
3827
4021
|
viewBox: "0 0 24 24",
|
|
3828
4022
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3829
|
-
children: /* @__PURE__ */
|
|
4023
|
+
children: /* @__PURE__ */ jsx111(
|
|
3830
4024
|
"path",
|
|
3831
4025
|
{
|
|
3832
4026
|
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",
|
|
@@ -3837,14 +4031,14 @@ var PlayerIcon = (props) => /* @__PURE__ */ jsx109(
|
|
|
3837
4031
|
);
|
|
3838
4032
|
|
|
3839
4033
|
// src/components/Icon/icons/PlusIcon.tsx
|
|
3840
|
-
import { jsx as
|
|
3841
|
-
var PlusIcon = (props) => /* @__PURE__ */
|
|
4034
|
+
import { jsx as jsx112 } from "react/jsx-runtime";
|
|
4035
|
+
var PlusIcon = (props) => /* @__PURE__ */ jsx112(
|
|
3842
4036
|
"svg",
|
|
3843
4037
|
{
|
|
3844
4038
|
...props,
|
|
3845
4039
|
viewBox: "0 0 24 24",
|
|
3846
4040
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3847
|
-
children: /* @__PURE__ */
|
|
4041
|
+
children: /* @__PURE__ */ jsx112(
|
|
3848
4042
|
"path",
|
|
3849
4043
|
{
|
|
3850
4044
|
clipRule: "evenodd",
|
|
@@ -3857,14 +4051,14 @@ var PlusIcon = (props) => /* @__PURE__ */ jsx110(
|
|
|
3857
4051
|
);
|
|
3858
4052
|
|
|
3859
4053
|
// src/components/Icon/icons/PodcastIcon.tsx
|
|
3860
|
-
import { jsx as
|
|
3861
|
-
var PodcastIcon = (props) => /* @__PURE__ */
|
|
4054
|
+
import { jsx as jsx113 } from "react/jsx-runtime";
|
|
4055
|
+
var PodcastIcon = (props) => /* @__PURE__ */ jsx113(
|
|
3862
4056
|
"svg",
|
|
3863
4057
|
{
|
|
3864
4058
|
...props,
|
|
3865
4059
|
viewBox: "0 0 24 24",
|
|
3866
4060
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3867
|
-
children: /* @__PURE__ */
|
|
4061
|
+
children: /* @__PURE__ */ jsx113(
|
|
3868
4062
|
"path",
|
|
3869
4063
|
{
|
|
3870
4064
|
clipRule: "evenodd",
|
|
@@ -3877,14 +4071,14 @@ var PodcastIcon = (props) => /* @__PURE__ */ jsx111(
|
|
|
3877
4071
|
);
|
|
3878
4072
|
|
|
3879
4073
|
// src/components/Icon/icons/PreviewIcon.tsx
|
|
3880
|
-
import { jsx as
|
|
3881
|
-
var PreviewIcon = (props) => /* @__PURE__ */
|
|
4074
|
+
import { jsx as jsx114 } from "react/jsx-runtime";
|
|
4075
|
+
var PreviewIcon = (props) => /* @__PURE__ */ jsx114(
|
|
3882
4076
|
"svg",
|
|
3883
4077
|
{
|
|
3884
4078
|
...props,
|
|
3885
4079
|
viewBox: "0 0 24 24",
|
|
3886
4080
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3887
|
-
children: /* @__PURE__ */
|
|
4081
|
+
children: /* @__PURE__ */ jsx114(
|
|
3888
4082
|
"path",
|
|
3889
4083
|
{
|
|
3890
4084
|
clipRule: "evenodd",
|
|
@@ -3897,14 +4091,14 @@ var PreviewIcon = (props) => /* @__PURE__ */ jsx112(
|
|
|
3897
4091
|
);
|
|
3898
4092
|
|
|
3899
4093
|
// src/components/Icon/icons/PrivateUserSessionsIcon.tsx
|
|
3900
|
-
import { jsx as
|
|
3901
|
-
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */
|
|
4094
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
4095
|
+
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ jsx115(
|
|
3902
4096
|
"svg",
|
|
3903
4097
|
{
|
|
3904
4098
|
...props,
|
|
3905
4099
|
viewBox: "0 0 24 24",
|
|
3906
4100
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3907
|
-
children: /* @__PURE__ */
|
|
4101
|
+
children: /* @__PURE__ */ jsx115(
|
|
3908
4102
|
"path",
|
|
3909
4103
|
{
|
|
3910
4104
|
clipRule: "evenodd",
|
|
@@ -3917,7 +4111,7 @@ var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ jsx113(
|
|
|
3917
4111
|
);
|
|
3918
4112
|
|
|
3919
4113
|
// src/components/Icon/icons/ProjectIcon.tsx
|
|
3920
|
-
import { jsx as
|
|
4114
|
+
import { jsx as jsx116, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
3921
4115
|
var ProjectIcon = (props) => /* @__PURE__ */ jsxs3(
|
|
3922
4116
|
"svg",
|
|
3923
4117
|
{
|
|
@@ -3925,7 +4119,7 @@ var ProjectIcon = (props) => /* @__PURE__ */ jsxs3(
|
|
|
3925
4119
|
viewBox: "0 0 24 24",
|
|
3926
4120
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3927
4121
|
children: [
|
|
3928
|
-
/* @__PURE__ */
|
|
4122
|
+
/* @__PURE__ */ jsx116(
|
|
3929
4123
|
"path",
|
|
3930
4124
|
{
|
|
3931
4125
|
clipRule: "evenodd",
|
|
@@ -3934,7 +4128,7 @@ var ProjectIcon = (props) => /* @__PURE__ */ jsxs3(
|
|
|
3934
4128
|
fillRule: "evenodd"
|
|
3935
4129
|
}
|
|
3936
4130
|
),
|
|
3937
|
-
/* @__PURE__ */
|
|
4131
|
+
/* @__PURE__ */ jsx116(
|
|
3938
4132
|
"path",
|
|
3939
4133
|
{
|
|
3940
4134
|
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",
|
|
@@ -3946,14 +4140,14 @@ var ProjectIcon = (props) => /* @__PURE__ */ jsxs3(
|
|
|
3946
4140
|
);
|
|
3947
4141
|
|
|
3948
4142
|
// src/components/Icon/icons/PropertiesIcon.tsx
|
|
3949
|
-
import { jsx as
|
|
3950
|
-
var PropertiesIcon = (props) => /* @__PURE__ */
|
|
4143
|
+
import { jsx as jsx117 } from "react/jsx-runtime";
|
|
4144
|
+
var PropertiesIcon = (props) => /* @__PURE__ */ jsx117(
|
|
3951
4145
|
"svg",
|
|
3952
4146
|
{
|
|
3953
4147
|
...props,
|
|
3954
4148
|
viewBox: "0 0 24 24",
|
|
3955
4149
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3956
|
-
children: /* @__PURE__ */
|
|
4150
|
+
children: /* @__PURE__ */ jsx117(
|
|
3957
4151
|
"path",
|
|
3958
4152
|
{
|
|
3959
4153
|
clipRule: "evenodd",
|
|
@@ -3966,14 +4160,14 @@ var PropertiesIcon = (props) => /* @__PURE__ */ jsx115(
|
|
|
3966
4160
|
);
|
|
3967
4161
|
|
|
3968
4162
|
// src/components/Icon/icons/QuestionMarkIcon.tsx
|
|
3969
|
-
import { jsx as
|
|
3970
|
-
var QuestionMarkIcon = (props) => /* @__PURE__ */
|
|
4163
|
+
import { jsx as jsx118 } from "react/jsx-runtime";
|
|
4164
|
+
var QuestionMarkIcon = (props) => /* @__PURE__ */ jsx118(
|
|
3971
4165
|
"svg",
|
|
3972
4166
|
{
|
|
3973
4167
|
...props,
|
|
3974
4168
|
viewBox: "0 0 24 24",
|
|
3975
4169
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3976
|
-
children: /* @__PURE__ */
|
|
4170
|
+
children: /* @__PURE__ */ jsx118(
|
|
3977
4171
|
"path",
|
|
3978
4172
|
{
|
|
3979
4173
|
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",
|
|
@@ -3984,14 +4178,14 @@ var QuestionMarkIcon = (props) => /* @__PURE__ */ jsx116(
|
|
|
3984
4178
|
);
|
|
3985
4179
|
|
|
3986
4180
|
// src/components/Icon/icons/ReactIcon.tsx
|
|
3987
|
-
import { jsx as
|
|
3988
|
-
var ReactIcon = (props) => /* @__PURE__ */
|
|
4181
|
+
import { jsx as jsx119 } from "react/jsx-runtime";
|
|
4182
|
+
var ReactIcon = (props) => /* @__PURE__ */ jsx119(
|
|
3989
4183
|
"svg",
|
|
3990
4184
|
{
|
|
3991
4185
|
...props,
|
|
3992
4186
|
viewBox: "0 0 24 24",
|
|
3993
4187
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3994
|
-
children: /* @__PURE__ */
|
|
4188
|
+
children: /* @__PURE__ */ jsx119(
|
|
3995
4189
|
"path",
|
|
3996
4190
|
{
|
|
3997
4191
|
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",
|
|
@@ -4002,14 +4196,14 @@ var ReactIcon = (props) => /* @__PURE__ */ jsx117(
|
|
|
4002
4196
|
);
|
|
4003
4197
|
|
|
4004
4198
|
// src/components/Icon/icons/RecordIcon.tsx
|
|
4005
|
-
import { jsx as
|
|
4006
|
-
var RecordIcon = (props) => /* @__PURE__ */
|
|
4199
|
+
import { jsx as jsx120 } from "react/jsx-runtime";
|
|
4200
|
+
var RecordIcon = (props) => /* @__PURE__ */ jsx120(
|
|
4007
4201
|
"svg",
|
|
4008
4202
|
{
|
|
4009
4203
|
...props,
|
|
4010
4204
|
viewBox: "0 0 24 24",
|
|
4011
4205
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4012
|
-
children: /* @__PURE__ */
|
|
4206
|
+
children: /* @__PURE__ */ jsx120(
|
|
4013
4207
|
"path",
|
|
4014
4208
|
{
|
|
4015
4209
|
clipRule: "evenodd",
|
|
@@ -4022,14 +4216,14 @@ var RecordIcon = (props) => /* @__PURE__ */ jsx118(
|
|
|
4022
4216
|
);
|
|
4023
4217
|
|
|
4024
4218
|
// src/components/Icon/icons/RedoIcon.tsx
|
|
4025
|
-
import { jsx as
|
|
4026
|
-
var RedoIcon = (props) => /* @__PURE__ */
|
|
4219
|
+
import { jsx as jsx121 } from "react/jsx-runtime";
|
|
4220
|
+
var RedoIcon = (props) => /* @__PURE__ */ jsx121(
|
|
4027
4221
|
"svg",
|
|
4028
4222
|
{
|
|
4029
4223
|
...props,
|
|
4030
4224
|
viewBox: "0 0 24 24",
|
|
4031
4225
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4032
|
-
children: /* @__PURE__ */
|
|
4226
|
+
children: /* @__PURE__ */ jsx121(
|
|
4033
4227
|
"path",
|
|
4034
4228
|
{
|
|
4035
4229
|
clipRule: "evenodd",
|
|
@@ -4042,14 +4236,14 @@ var RedoIcon = (props) => /* @__PURE__ */ jsx119(
|
|
|
4042
4236
|
);
|
|
4043
4237
|
|
|
4044
4238
|
// src/components/Icon/icons/ReplaceIcon.tsx
|
|
4045
|
-
import { jsx as
|
|
4046
|
-
var ReplaceIcon = (props) => /* @__PURE__ */
|
|
4239
|
+
import { jsx as jsx122 } from "react/jsx-runtime";
|
|
4240
|
+
var ReplaceIcon = (props) => /* @__PURE__ */ jsx122(
|
|
4047
4241
|
"svg",
|
|
4048
4242
|
{
|
|
4049
4243
|
...props,
|
|
4050
4244
|
viewBox: "0 0 24 24",
|
|
4051
4245
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4052
|
-
children: /* @__PURE__ */
|
|
4246
|
+
children: /* @__PURE__ */ jsx122(
|
|
4053
4247
|
"path",
|
|
4054
4248
|
{
|
|
4055
4249
|
clipRule: "evenodd",
|
|
@@ -4062,14 +4256,14 @@ var ReplaceIcon = (props) => /* @__PURE__ */ jsx120(
|
|
|
4062
4256
|
);
|
|
4063
4257
|
|
|
4064
4258
|
// src/components/Icon/icons/ReplyIcon.tsx
|
|
4065
|
-
import { jsx as
|
|
4066
|
-
var ReplyIcon = (props) => /* @__PURE__ */
|
|
4259
|
+
import { jsx as jsx123 } from "react/jsx-runtime";
|
|
4260
|
+
var ReplyIcon = (props) => /* @__PURE__ */ jsx123(
|
|
4067
4261
|
"svg",
|
|
4068
4262
|
{
|
|
4069
4263
|
...props,
|
|
4070
4264
|
viewBox: "0 0 24 24",
|
|
4071
4265
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4072
|
-
children: /* @__PURE__ */
|
|
4266
|
+
children: /* @__PURE__ */ jsx123(
|
|
4073
4267
|
"path",
|
|
4074
4268
|
{
|
|
4075
4269
|
clipRule: "evenodd",
|
|
@@ -4082,14 +4276,14 @@ var ReplyIcon = (props) => /* @__PURE__ */ jsx121(
|
|
|
4082
4276
|
);
|
|
4083
4277
|
|
|
4084
4278
|
// src/components/Icon/icons/SaveAsCopyIcon.tsx
|
|
4085
|
-
import { jsx as
|
|
4086
|
-
var SaveAsCopyIcon = (props) => /* @__PURE__ */
|
|
4279
|
+
import { jsx as jsx124 } from "react/jsx-runtime";
|
|
4280
|
+
var SaveAsCopyIcon = (props) => /* @__PURE__ */ jsx124(
|
|
4087
4281
|
"svg",
|
|
4088
4282
|
{
|
|
4089
4283
|
...props,
|
|
4090
4284
|
viewBox: "0 0 24 24",
|
|
4091
4285
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4092
|
-
children: /* @__PURE__ */
|
|
4286
|
+
children: /* @__PURE__ */ jsx124(
|
|
4093
4287
|
"path",
|
|
4094
4288
|
{
|
|
4095
4289
|
clipRule: "evenodd",
|
|
@@ -4102,14 +4296,14 @@ var SaveAsCopyIcon = (props) => /* @__PURE__ */ jsx122(
|
|
|
4102
4296
|
);
|
|
4103
4297
|
|
|
4104
4298
|
// src/components/Icon/icons/SaveIcon.tsx
|
|
4105
|
-
import { jsx as
|
|
4106
|
-
var SaveIcon = (props) => /* @__PURE__ */
|
|
4299
|
+
import { jsx as jsx125 } from "react/jsx-runtime";
|
|
4300
|
+
var SaveIcon = (props) => /* @__PURE__ */ jsx125(
|
|
4107
4301
|
"svg",
|
|
4108
4302
|
{
|
|
4109
4303
|
...props,
|
|
4110
4304
|
viewBox: "0 0 24 24",
|
|
4111
4305
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4112
|
-
children: /* @__PURE__ */
|
|
4306
|
+
children: /* @__PURE__ */ jsx125(
|
|
4113
4307
|
"path",
|
|
4114
4308
|
{
|
|
4115
4309
|
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",
|
|
@@ -4120,14 +4314,14 @@ var SaveIcon = (props) => /* @__PURE__ */ jsx123(
|
|
|
4120
4314
|
);
|
|
4121
4315
|
|
|
4122
4316
|
// src/components/Icon/icons/ScissorsIcon.tsx
|
|
4123
|
-
import { jsx as
|
|
4124
|
-
var ScissorsIcon = (props) => /* @__PURE__ */
|
|
4317
|
+
import { jsx as jsx126 } from "react/jsx-runtime";
|
|
4318
|
+
var ScissorsIcon = (props) => /* @__PURE__ */ jsx126(
|
|
4125
4319
|
"svg",
|
|
4126
4320
|
{
|
|
4127
4321
|
...props,
|
|
4128
4322
|
viewBox: "0 0 24 24",
|
|
4129
4323
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4130
|
-
children: /* @__PURE__ */
|
|
4324
|
+
children: /* @__PURE__ */ jsx126(
|
|
4131
4325
|
"path",
|
|
4132
4326
|
{
|
|
4133
4327
|
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",
|
|
@@ -4138,14 +4332,14 @@ var ScissorsIcon = (props) => /* @__PURE__ */ jsx124(
|
|
|
4138
4332
|
);
|
|
4139
4333
|
|
|
4140
4334
|
// src/components/Icon/icons/ScreenshareOffIcon.tsx
|
|
4141
|
-
import { jsx as
|
|
4142
|
-
var ScreenshareOffIcon = (props) => /* @__PURE__ */
|
|
4335
|
+
import { jsx as jsx127 } from "react/jsx-runtime";
|
|
4336
|
+
var ScreenshareOffIcon = (props) => /* @__PURE__ */ jsx127(
|
|
4143
4337
|
"svg",
|
|
4144
4338
|
{
|
|
4145
4339
|
...props,
|
|
4146
4340
|
viewBox: "0 0 24 24",
|
|
4147
4341
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4148
|
-
children: /* @__PURE__ */
|
|
4342
|
+
children: /* @__PURE__ */ jsx127(
|
|
4149
4343
|
"path",
|
|
4150
4344
|
{
|
|
4151
4345
|
clipRule: "evenodd",
|
|
@@ -4158,14 +4352,14 @@ var ScreenshareOffIcon = (props) => /* @__PURE__ */ jsx125(
|
|
|
4158
4352
|
);
|
|
4159
4353
|
|
|
4160
4354
|
// src/components/Icon/icons/ScreenshareOnIcon.tsx
|
|
4161
|
-
import { jsx as
|
|
4162
|
-
var ScreenshareOnIcon = (props) => /* @__PURE__ */
|
|
4355
|
+
import { jsx as jsx128 } from "react/jsx-runtime";
|
|
4356
|
+
var ScreenshareOnIcon = (props) => /* @__PURE__ */ jsx128(
|
|
4163
4357
|
"svg",
|
|
4164
4358
|
{
|
|
4165
4359
|
...props,
|
|
4166
4360
|
viewBox: "0 0 24 24",
|
|
4167
4361
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4168
|
-
children: /* @__PURE__ */
|
|
4362
|
+
children: /* @__PURE__ */ jsx128(
|
|
4169
4363
|
"path",
|
|
4170
4364
|
{
|
|
4171
4365
|
clipRule: "evenodd",
|
|
@@ -4178,14 +4372,14 @@ var ScreenshareOnIcon = (props) => /* @__PURE__ */ jsx126(
|
|
|
4178
4372
|
);
|
|
4179
4373
|
|
|
4180
4374
|
// src/components/Icon/icons/SearchIcon.tsx
|
|
4181
|
-
import { jsx as
|
|
4182
|
-
var SearchIcon = (props) => /* @__PURE__ */
|
|
4375
|
+
import { jsx as jsx129 } from "react/jsx-runtime";
|
|
4376
|
+
var SearchIcon = (props) => /* @__PURE__ */ jsx129(
|
|
4183
4377
|
"svg",
|
|
4184
4378
|
{
|
|
4185
4379
|
...props,
|
|
4186
4380
|
viewBox: "0 0 24 24",
|
|
4187
4381
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4188
|
-
children: /* @__PURE__ */
|
|
4382
|
+
children: /* @__PURE__ */ jsx129(
|
|
4189
4383
|
"path",
|
|
4190
4384
|
{
|
|
4191
4385
|
clipRule: "evenodd",
|
|
@@ -4198,14 +4392,14 @@ var SearchIcon = (props) => /* @__PURE__ */ jsx127(
|
|
|
4198
4392
|
);
|
|
4199
4393
|
|
|
4200
4394
|
// src/components/Icon/icons/SendIcon.tsx
|
|
4201
|
-
import { jsx as
|
|
4202
|
-
var SendIcon = (props) => /* @__PURE__ */
|
|
4395
|
+
import { jsx as jsx130 } from "react/jsx-runtime";
|
|
4396
|
+
var SendIcon = (props) => /* @__PURE__ */ jsx130(
|
|
4203
4397
|
"svg",
|
|
4204
4398
|
{
|
|
4205
4399
|
...props,
|
|
4206
4400
|
viewBox: "0 0 24 24",
|
|
4207
4401
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4208
|
-
children: /* @__PURE__ */
|
|
4402
|
+
children: /* @__PURE__ */ jsx130(
|
|
4209
4403
|
"path",
|
|
4210
4404
|
{
|
|
4211
4405
|
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",
|
|
@@ -4216,14 +4410,14 @@ var SendIcon = (props) => /* @__PURE__ */ jsx128(
|
|
|
4216
4410
|
);
|
|
4217
4411
|
|
|
4218
4412
|
// src/components/Icon/icons/ShapesIcon.tsx
|
|
4219
|
-
import { jsx as
|
|
4220
|
-
var ShapesIcon = (props) => /* @__PURE__ */
|
|
4413
|
+
import { jsx as jsx131 } from "react/jsx-runtime";
|
|
4414
|
+
var ShapesIcon = (props) => /* @__PURE__ */ jsx131(
|
|
4221
4415
|
"svg",
|
|
4222
4416
|
{
|
|
4223
4417
|
...props,
|
|
4224
4418
|
viewBox: "0 0 24 24",
|
|
4225
4419
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4226
|
-
children: /* @__PURE__ */
|
|
4420
|
+
children: /* @__PURE__ */ jsx131(
|
|
4227
4421
|
"path",
|
|
4228
4422
|
{
|
|
4229
4423
|
clipRule: "evenodd",
|
|
@@ -4236,14 +4430,14 @@ var ShapesIcon = (props) => /* @__PURE__ */ jsx129(
|
|
|
4236
4430
|
);
|
|
4237
4431
|
|
|
4238
4432
|
// src/components/Icon/icons/ShareIcon.tsx
|
|
4239
|
-
import { jsx as
|
|
4240
|
-
var ShareIcon = (props) => /* @__PURE__ */
|
|
4433
|
+
import { jsx as jsx132 } from "react/jsx-runtime";
|
|
4434
|
+
var ShareIcon = (props) => /* @__PURE__ */ jsx132(
|
|
4241
4435
|
"svg",
|
|
4242
4436
|
{
|
|
4243
4437
|
...props,
|
|
4244
4438
|
viewBox: "0 0 24 24",
|
|
4245
4439
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4246
|
-
children: /* @__PURE__ */
|
|
4440
|
+
children: /* @__PURE__ */ jsx132(
|
|
4247
4441
|
"path",
|
|
4248
4442
|
{
|
|
4249
4443
|
clipRule: "evenodd",
|
|
@@ -4256,14 +4450,14 @@ var ShareIcon = (props) => /* @__PURE__ */ jsx130(
|
|
|
4256
4450
|
);
|
|
4257
4451
|
|
|
4258
4452
|
// src/components/Icon/icons/SharingPermissionsIcon.tsx
|
|
4259
|
-
import { jsx as
|
|
4260
|
-
var SharingPermissionsIcon = (props) => /* @__PURE__ */
|
|
4453
|
+
import { jsx as jsx133 } from "react/jsx-runtime";
|
|
4454
|
+
var SharingPermissionsIcon = (props) => /* @__PURE__ */ jsx133(
|
|
4261
4455
|
"svg",
|
|
4262
4456
|
{
|
|
4263
4457
|
...props,
|
|
4264
4458
|
viewBox: "0 0 24 24",
|
|
4265
4459
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4266
|
-
children: /* @__PURE__ */
|
|
4460
|
+
children: /* @__PURE__ */ jsx133(
|
|
4267
4461
|
"path",
|
|
4268
4462
|
{
|
|
4269
4463
|
clipRule: "evenodd",
|
|
@@ -4276,14 +4470,14 @@ var SharingPermissionsIcon = (props) => /* @__PURE__ */ jsx131(
|
|
|
4276
4470
|
);
|
|
4277
4471
|
|
|
4278
4472
|
// src/components/Icon/icons/SimulcastIcon.tsx
|
|
4279
|
-
import { jsx as
|
|
4280
|
-
var SimulcastIcon = (props) => /* @__PURE__ */
|
|
4473
|
+
import { jsx as jsx134 } from "react/jsx-runtime";
|
|
4474
|
+
var SimulcastIcon = (props) => /* @__PURE__ */ jsx134(
|
|
4281
4475
|
"svg",
|
|
4282
4476
|
{
|
|
4283
4477
|
...props,
|
|
4284
4478
|
viewBox: "0 0 24 24",
|
|
4285
4479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4286
|
-
children: /* @__PURE__ */
|
|
4480
|
+
children: /* @__PURE__ */ jsx134(
|
|
4287
4481
|
"path",
|
|
4288
4482
|
{
|
|
4289
4483
|
clipRule: "evenodd",
|
|
@@ -4296,14 +4490,14 @@ var SimulcastIcon = (props) => /* @__PURE__ */ jsx132(
|
|
|
4296
4490
|
);
|
|
4297
4491
|
|
|
4298
4492
|
// src/components/Icon/icons/SortIcon.tsx
|
|
4299
|
-
import { jsx as
|
|
4300
|
-
var SortIcon = (props) => /* @__PURE__ */
|
|
4493
|
+
import { jsx as jsx135 } from "react/jsx-runtime";
|
|
4494
|
+
var SortIcon = (props) => /* @__PURE__ */ jsx135(
|
|
4301
4495
|
"svg",
|
|
4302
4496
|
{
|
|
4303
4497
|
...props,
|
|
4304
4498
|
viewBox: "0 0 24 24",
|
|
4305
4499
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4306
|
-
children: /* @__PURE__ */
|
|
4500
|
+
children: /* @__PURE__ */ jsx135(
|
|
4307
4501
|
"path",
|
|
4308
4502
|
{
|
|
4309
4503
|
clipRule: "evenodd",
|
|
@@ -4316,14 +4510,14 @@ var SortIcon = (props) => /* @__PURE__ */ jsx133(
|
|
|
4316
4510
|
);
|
|
4317
4511
|
|
|
4318
4512
|
// src/components/Icon/icons/SparkleIcon.tsx
|
|
4319
|
-
import { jsx as
|
|
4320
|
-
var SparkleIcon = (props) => /* @__PURE__ */
|
|
4513
|
+
import { jsx as jsx136 } from "react/jsx-runtime";
|
|
4514
|
+
var SparkleIcon = (props) => /* @__PURE__ */ jsx136(
|
|
4321
4515
|
"svg",
|
|
4322
4516
|
{
|
|
4323
4517
|
...props,
|
|
4324
4518
|
viewBox: "0 0 24 24",
|
|
4325
4519
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4326
|
-
children: /* @__PURE__ */
|
|
4520
|
+
children: /* @__PURE__ */ jsx136(
|
|
4327
4521
|
"path",
|
|
4328
4522
|
{
|
|
4329
4523
|
clipRule: "evenodd",
|
|
@@ -4336,34 +4530,47 @@ var SparkleIcon = (props) => /* @__PURE__ */ jsx134(
|
|
|
4336
4530
|
);
|
|
4337
4531
|
|
|
4338
4532
|
// src/components/Icon/icons/SpinnerIcon.tsx
|
|
4339
|
-
import { jsx as
|
|
4340
|
-
var SpinnerIcon = (props) => /* @__PURE__ */
|
|
4533
|
+
import { jsx as jsx137, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
4534
|
+
var SpinnerIcon = (props) => /* @__PURE__ */ jsxs4(
|
|
4341
4535
|
"svg",
|
|
4342
4536
|
{
|
|
4343
4537
|
...props,
|
|
4344
4538
|
viewBox: "0 0 24 24",
|
|
4345
4539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4346
|
-
children:
|
|
4347
|
-
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4540
|
+
children: [
|
|
4541
|
+
/* @__PURE__ */ jsx137(
|
|
4542
|
+
"path",
|
|
4543
|
+
{
|
|
4544
|
+
clipRule: "evenodd",
|
|
4545
|
+
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",
|
|
4546
|
+
fill: "currentColor",
|
|
4547
|
+
fillRule: "evenodd"
|
|
4548
|
+
}
|
|
4549
|
+
),
|
|
4550
|
+
/* @__PURE__ */ jsx137(
|
|
4551
|
+
"animateTransform",
|
|
4552
|
+
{
|
|
4553
|
+
attributeName: "transform",
|
|
4554
|
+
dur: "1.5s",
|
|
4555
|
+
keyTimes: "0;1",
|
|
4556
|
+
repeatCount: "indefinite",
|
|
4557
|
+
type: "rotate",
|
|
4558
|
+
values: "0 0 0;360 0 0"
|
|
4559
|
+
}
|
|
4560
|
+
)
|
|
4561
|
+
]
|
|
4355
4562
|
}
|
|
4356
4563
|
);
|
|
4357
4564
|
|
|
4358
4565
|
// src/components/Icon/icons/StatsIcon.tsx
|
|
4359
|
-
import { jsx as
|
|
4360
|
-
var StatsIcon = (props) => /* @__PURE__ */
|
|
4566
|
+
import { jsx as jsx138 } from "react/jsx-runtime";
|
|
4567
|
+
var StatsIcon = (props) => /* @__PURE__ */ jsx138(
|
|
4361
4568
|
"svg",
|
|
4362
4569
|
{
|
|
4363
4570
|
...props,
|
|
4364
4571
|
viewBox: "0 0 24 24",
|
|
4365
4572
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4366
|
-
children: /* @__PURE__ */
|
|
4573
|
+
children: /* @__PURE__ */ jsx138(
|
|
4367
4574
|
"path",
|
|
4368
4575
|
{
|
|
4369
4576
|
clipRule: "evenodd",
|
|
@@ -4376,14 +4583,14 @@ var StatsIcon = (props) => /* @__PURE__ */ jsx136(
|
|
|
4376
4583
|
);
|
|
4377
4584
|
|
|
4378
4585
|
// src/components/Icon/icons/SwitchAccountsIcon.tsx
|
|
4379
|
-
import { jsx as
|
|
4380
|
-
var SwitchAccountsIcon = (props) => /* @__PURE__ */
|
|
4586
|
+
import { jsx as jsx139 } from "react/jsx-runtime";
|
|
4587
|
+
var SwitchAccountsIcon = (props) => /* @__PURE__ */ jsx139(
|
|
4381
4588
|
"svg",
|
|
4382
4589
|
{
|
|
4383
4590
|
...props,
|
|
4384
4591
|
viewBox: "0 0 24 24",
|
|
4385
4592
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4386
|
-
children: /* @__PURE__ */
|
|
4593
|
+
children: /* @__PURE__ */ jsx139(
|
|
4387
4594
|
"path",
|
|
4388
4595
|
{
|
|
4389
4596
|
clipRule: "evenodd",
|
|
@@ -4396,14 +4603,14 @@ var SwitchAccountsIcon = (props) => /* @__PURE__ */ jsx137(
|
|
|
4396
4603
|
);
|
|
4397
4604
|
|
|
4398
4605
|
// src/components/Icon/icons/TagIcon.tsx
|
|
4399
|
-
import { jsx as
|
|
4400
|
-
var TagIcon = (props) => /* @__PURE__ */
|
|
4606
|
+
import { jsx as jsx140 } from "react/jsx-runtime";
|
|
4607
|
+
var TagIcon = (props) => /* @__PURE__ */ jsx140(
|
|
4401
4608
|
"svg",
|
|
4402
4609
|
{
|
|
4403
4610
|
...props,
|
|
4404
4611
|
viewBox: "0 0 24 24",
|
|
4405
4612
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4406
|
-
children: /* @__PURE__ */
|
|
4613
|
+
children: /* @__PURE__ */ jsx140(
|
|
4407
4614
|
"path",
|
|
4408
4615
|
{
|
|
4409
4616
|
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",
|
|
@@ -4414,14 +4621,14 @@ var TagIcon = (props) => /* @__PURE__ */ jsx138(
|
|
|
4414
4621
|
);
|
|
4415
4622
|
|
|
4416
4623
|
// src/components/Icon/icons/ThumbnailIcon.tsx
|
|
4417
|
-
import { jsx as
|
|
4418
|
-
var ThumbnailIcon = (props) => /* @__PURE__ */
|
|
4624
|
+
import { jsx as jsx141 } from "react/jsx-runtime";
|
|
4625
|
+
var ThumbnailIcon = (props) => /* @__PURE__ */ jsx141(
|
|
4419
4626
|
"svg",
|
|
4420
4627
|
{
|
|
4421
4628
|
...props,
|
|
4422
4629
|
viewBox: "0 0 24 24",
|
|
4423
4630
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4424
|
-
children: /* @__PURE__ */
|
|
4631
|
+
children: /* @__PURE__ */ jsx141(
|
|
4425
4632
|
"path",
|
|
4426
4633
|
{
|
|
4427
4634
|
clipRule: "evenodd",
|
|
@@ -4434,14 +4641,14 @@ var ThumbnailIcon = (props) => /* @__PURE__ */ jsx139(
|
|
|
4434
4641
|
);
|
|
4435
4642
|
|
|
4436
4643
|
// src/components/Icon/icons/ThumbsDownIcon.tsx
|
|
4437
|
-
import { jsx as
|
|
4438
|
-
var ThumbsDownIcon = (props) => /* @__PURE__ */
|
|
4644
|
+
import { jsx as jsx142 } from "react/jsx-runtime";
|
|
4645
|
+
var ThumbsDownIcon = (props) => /* @__PURE__ */ jsx142(
|
|
4439
4646
|
"svg",
|
|
4440
4647
|
{
|
|
4441
4648
|
...props,
|
|
4442
4649
|
viewBox: "0 0 24 24",
|
|
4443
4650
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4444
|
-
children: /* @__PURE__ */
|
|
4651
|
+
children: /* @__PURE__ */ jsx142(
|
|
4445
4652
|
"path",
|
|
4446
4653
|
{
|
|
4447
4654
|
clipRule: "evenodd",
|
|
@@ -4454,14 +4661,14 @@ var ThumbsDownIcon = (props) => /* @__PURE__ */ jsx140(
|
|
|
4454
4661
|
);
|
|
4455
4662
|
|
|
4456
4663
|
// src/components/Icon/icons/ThumbsUpIcon.tsx
|
|
4457
|
-
import { jsx as
|
|
4458
|
-
var ThumbsUpIcon = (props) => /* @__PURE__ */
|
|
4664
|
+
import { jsx as jsx143 } from "react/jsx-runtime";
|
|
4665
|
+
var ThumbsUpIcon = (props) => /* @__PURE__ */ jsx143(
|
|
4459
4666
|
"svg",
|
|
4460
4667
|
{
|
|
4461
4668
|
...props,
|
|
4462
4669
|
viewBox: "0 0 24 24",
|
|
4463
4670
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4464
|
-
children: /* @__PURE__ */
|
|
4671
|
+
children: /* @__PURE__ */ jsx143(
|
|
4465
4672
|
"path",
|
|
4466
4673
|
{
|
|
4467
4674
|
clipRule: "evenodd",
|
|
@@ -4474,14 +4681,14 @@ var ThumbsUpIcon = (props) => /* @__PURE__ */ jsx141(
|
|
|
4474
4681
|
);
|
|
4475
4682
|
|
|
4476
4683
|
// src/components/Icon/icons/TransitionsIcon.tsx
|
|
4477
|
-
import { jsx as
|
|
4478
|
-
var TransitionsIcon = (props) => /* @__PURE__ */
|
|
4684
|
+
import { jsx as jsx144 } from "react/jsx-runtime";
|
|
4685
|
+
var TransitionsIcon = (props) => /* @__PURE__ */ jsx144(
|
|
4479
4686
|
"svg",
|
|
4480
4687
|
{
|
|
4481
4688
|
...props,
|
|
4482
4689
|
viewBox: "0 0 24 24",
|
|
4483
4690
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4484
|
-
children: /* @__PURE__ */
|
|
4691
|
+
children: /* @__PURE__ */ jsx144(
|
|
4485
4692
|
"path",
|
|
4486
4693
|
{
|
|
4487
4694
|
clipRule: "evenodd",
|
|
@@ -4494,14 +4701,14 @@ var TransitionsIcon = (props) => /* @__PURE__ */ jsx142(
|
|
|
4494
4701
|
);
|
|
4495
4702
|
|
|
4496
4703
|
// src/components/Icon/icons/TrimIcon.tsx
|
|
4497
|
-
import { jsx as
|
|
4498
|
-
var TrimIcon = (props) => /* @__PURE__ */
|
|
4704
|
+
import { jsx as jsx145 } from "react/jsx-runtime";
|
|
4705
|
+
var TrimIcon = (props) => /* @__PURE__ */ jsx145(
|
|
4499
4706
|
"svg",
|
|
4500
4707
|
{
|
|
4501
4708
|
...props,
|
|
4502
4709
|
viewBox: "0 0 24 24",
|
|
4503
4710
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4504
|
-
children: /* @__PURE__ */
|
|
4711
|
+
children: /* @__PURE__ */ jsx145(
|
|
4505
4712
|
"path",
|
|
4506
4713
|
{
|
|
4507
4714
|
clipRule: "evenodd",
|
|
@@ -4514,14 +4721,14 @@ var TrimIcon = (props) => /* @__PURE__ */ jsx143(
|
|
|
4514
4721
|
);
|
|
4515
4722
|
|
|
4516
4723
|
// src/components/Icon/icons/TurnstileIcon.tsx
|
|
4517
|
-
import { jsx as
|
|
4518
|
-
var TurnstileIcon = (props) => /* @__PURE__ */
|
|
4724
|
+
import { jsx as jsx146 } from "react/jsx-runtime";
|
|
4725
|
+
var TurnstileIcon = (props) => /* @__PURE__ */ jsx146(
|
|
4519
4726
|
"svg",
|
|
4520
4727
|
{
|
|
4521
4728
|
...props,
|
|
4522
4729
|
viewBox: "0 0 24 24",
|
|
4523
4730
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4524
|
-
children: /* @__PURE__ */
|
|
4731
|
+
children: /* @__PURE__ */ jsx146(
|
|
4525
4732
|
"path",
|
|
4526
4733
|
{
|
|
4527
4734
|
clipRule: "evenodd",
|
|
@@ -4534,14 +4741,14 @@ var TurnstileIcon = (props) => /* @__PURE__ */ jsx144(
|
|
|
4534
4741
|
);
|
|
4535
4742
|
|
|
4536
4743
|
// src/components/Icon/icons/UndoIcon.tsx
|
|
4537
|
-
import { jsx as
|
|
4538
|
-
var UndoIcon = (props) => /* @__PURE__ */
|
|
4744
|
+
import { jsx as jsx147 } from "react/jsx-runtime";
|
|
4745
|
+
var UndoIcon = (props) => /* @__PURE__ */ jsx147(
|
|
4539
4746
|
"svg",
|
|
4540
4747
|
{
|
|
4541
4748
|
...props,
|
|
4542
4749
|
viewBox: "0 0 24 24",
|
|
4543
4750
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4544
|
-
children: /* @__PURE__ */
|
|
4751
|
+
children: /* @__PURE__ */ jsx147(
|
|
4545
4752
|
"path",
|
|
4546
4753
|
{
|
|
4547
4754
|
clipRule: "evenodd",
|
|
@@ -4554,14 +4761,14 @@ var UndoIcon = (props) => /* @__PURE__ */ jsx145(
|
|
|
4554
4761
|
);
|
|
4555
4762
|
|
|
4556
4763
|
// src/components/Icon/icons/UnlockIcon.tsx
|
|
4557
|
-
import { jsx as
|
|
4558
|
-
var UnlockIcon = (props) => /* @__PURE__ */
|
|
4764
|
+
import { jsx as jsx148 } from "react/jsx-runtime";
|
|
4765
|
+
var UnlockIcon = (props) => /* @__PURE__ */ jsx148(
|
|
4559
4766
|
"svg",
|
|
4560
4767
|
{
|
|
4561
4768
|
...props,
|
|
4562
4769
|
viewBox: "0 0 24 24",
|
|
4563
4770
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4564
|
-
children: /* @__PURE__ */
|
|
4771
|
+
children: /* @__PURE__ */ jsx148(
|
|
4565
4772
|
"path",
|
|
4566
4773
|
{
|
|
4567
4774
|
clipRule: "evenodd",
|
|
@@ -4574,14 +4781,14 @@ var UnlockIcon = (props) => /* @__PURE__ */ jsx146(
|
|
|
4574
4781
|
);
|
|
4575
4782
|
|
|
4576
4783
|
// src/components/Icon/icons/UploadIcon.tsx
|
|
4577
|
-
import { jsx as
|
|
4578
|
-
var UploadIcon = (props) => /* @__PURE__ */
|
|
4784
|
+
import { jsx as jsx149 } from "react/jsx-runtime";
|
|
4785
|
+
var UploadIcon = (props) => /* @__PURE__ */ jsx149(
|
|
4579
4786
|
"svg",
|
|
4580
4787
|
{
|
|
4581
4788
|
...props,
|
|
4582
4789
|
viewBox: "0 0 24 24",
|
|
4583
4790
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4584
|
-
children: /* @__PURE__ */
|
|
4791
|
+
children: /* @__PURE__ */ jsx149(
|
|
4585
4792
|
"path",
|
|
4586
4793
|
{
|
|
4587
4794
|
clipRule: "evenodd",
|
|
@@ -4594,14 +4801,14 @@ var UploadIcon = (props) => /* @__PURE__ */ jsx147(
|
|
|
4594
4801
|
);
|
|
4595
4802
|
|
|
4596
4803
|
// src/components/Icon/icons/UsersPermissionsIcon.tsx
|
|
4597
|
-
import { jsx as
|
|
4598
|
-
var UsersPermissionsIcon = (props) => /* @__PURE__ */
|
|
4804
|
+
import { jsx as jsx150 } from "react/jsx-runtime";
|
|
4805
|
+
var UsersPermissionsIcon = (props) => /* @__PURE__ */ jsx150(
|
|
4599
4806
|
"svg",
|
|
4600
4807
|
{
|
|
4601
4808
|
...props,
|
|
4602
4809
|
viewBox: "0 0 24 24",
|
|
4603
4810
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4604
|
-
children: /* @__PURE__ */
|
|
4811
|
+
children: /* @__PURE__ */ jsx150(
|
|
4605
4812
|
"path",
|
|
4606
4813
|
{
|
|
4607
4814
|
clipRule: "evenodd",
|
|
@@ -4614,14 +4821,14 @@ var UsersPermissionsIcon = (props) => /* @__PURE__ */ jsx148(
|
|
|
4614
4821
|
);
|
|
4615
4822
|
|
|
4616
4823
|
// src/components/Icon/icons/ViewStreamIcon.tsx
|
|
4617
|
-
import { jsx as
|
|
4618
|
-
var ViewStreamIcon = (props) => /* @__PURE__ */
|
|
4824
|
+
import { jsx as jsx151 } from "react/jsx-runtime";
|
|
4825
|
+
var ViewStreamIcon = (props) => /* @__PURE__ */ jsx151(
|
|
4619
4826
|
"svg",
|
|
4620
4827
|
{
|
|
4621
4828
|
...props,
|
|
4622
4829
|
viewBox: "0 0 24 24",
|
|
4623
4830
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4624
|
-
children: /* @__PURE__ */
|
|
4831
|
+
children: /* @__PURE__ */ jsx151(
|
|
4625
4832
|
"path",
|
|
4626
4833
|
{
|
|
4627
4834
|
clipRule: "evenodd",
|
|
@@ -4634,14 +4841,14 @@ var ViewStreamIcon = (props) => /* @__PURE__ */ jsx149(
|
|
|
4634
4841
|
);
|
|
4635
4842
|
|
|
4636
4843
|
// src/components/Icon/icons/VolumeIcon.tsx
|
|
4637
|
-
import { jsx as
|
|
4638
|
-
var VolumeIcon = (props) => /* @__PURE__ */
|
|
4844
|
+
import { jsx as jsx152 } from "react/jsx-runtime";
|
|
4845
|
+
var VolumeIcon = (props) => /* @__PURE__ */ jsx152(
|
|
4639
4846
|
"svg",
|
|
4640
4847
|
{
|
|
4641
4848
|
...props,
|
|
4642
4849
|
viewBox: "0 0 24 24",
|
|
4643
4850
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4644
|
-
children: /* @__PURE__ */
|
|
4851
|
+
children: /* @__PURE__ */ jsx152(
|
|
4645
4852
|
"path",
|
|
4646
4853
|
{
|
|
4647
4854
|
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",
|
|
@@ -4652,14 +4859,14 @@ var VolumeIcon = (props) => /* @__PURE__ */ jsx150(
|
|
|
4652
4859
|
);
|
|
4653
4860
|
|
|
4654
4861
|
// src/components/Icon/icons/VolumeOffIcon.tsx
|
|
4655
|
-
import { jsx as
|
|
4656
|
-
var VolumeOffIcon = (props) => /* @__PURE__ */
|
|
4862
|
+
import { jsx as jsx153 } from "react/jsx-runtime";
|
|
4863
|
+
var VolumeOffIcon = (props) => /* @__PURE__ */ jsx153(
|
|
4657
4864
|
"svg",
|
|
4658
4865
|
{
|
|
4659
4866
|
...props,
|
|
4660
4867
|
viewBox: "0 0 24 24",
|
|
4661
4868
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4662
|
-
children: /* @__PURE__ */
|
|
4869
|
+
children: /* @__PURE__ */ jsx153(
|
|
4663
4870
|
"path",
|
|
4664
4871
|
{
|
|
4665
4872
|
clipRule: "evenodd",
|
|
@@ -4672,14 +4879,14 @@ var VolumeOffIcon = (props) => /* @__PURE__ */ jsx151(
|
|
|
4672
4879
|
);
|
|
4673
4880
|
|
|
4674
4881
|
// src/components/Icon/icons/VolumeUpIcon.tsx
|
|
4675
|
-
import { jsx as
|
|
4676
|
-
var VolumeUpIcon = (props) => /* @__PURE__ */
|
|
4882
|
+
import { jsx as jsx154 } from "react/jsx-runtime";
|
|
4883
|
+
var VolumeUpIcon = (props) => /* @__PURE__ */ jsx154(
|
|
4677
4884
|
"svg",
|
|
4678
4885
|
{
|
|
4679
4886
|
...props,
|
|
4680
4887
|
viewBox: "0 0 24 24",
|
|
4681
4888
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4682
|
-
children: /* @__PURE__ */
|
|
4889
|
+
children: /* @__PURE__ */ jsx154(
|
|
4683
4890
|
"path",
|
|
4684
4891
|
{
|
|
4685
4892
|
clipRule: "evenodd",
|
|
@@ -4692,14 +4899,14 @@ var VolumeUpIcon = (props) => /* @__PURE__ */ jsx152(
|
|
|
4692
4899
|
);
|
|
4693
4900
|
|
|
4694
4901
|
// src/components/Icon/icons/VolumeXIcon.tsx
|
|
4695
|
-
import { jsx as
|
|
4696
|
-
var VolumeXIcon = (props) => /* @__PURE__ */
|
|
4902
|
+
import { jsx as jsx155 } from "react/jsx-runtime";
|
|
4903
|
+
var VolumeXIcon = (props) => /* @__PURE__ */ jsx155(
|
|
4697
4904
|
"svg",
|
|
4698
4905
|
{
|
|
4699
4906
|
...props,
|
|
4700
4907
|
viewBox: "0 0 24 24",
|
|
4701
4908
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4702
|
-
children: /* @__PURE__ */
|
|
4909
|
+
children: /* @__PURE__ */ jsx155(
|
|
4703
4910
|
"path",
|
|
4704
4911
|
{
|
|
4705
4912
|
clipRule: "evenodd",
|
|
@@ -4712,14 +4919,14 @@ var VolumeXIcon = (props) => /* @__PURE__ */ jsx153(
|
|
|
4712
4919
|
);
|
|
4713
4920
|
|
|
4714
4921
|
// src/components/Icon/icons/WandIcon.tsx
|
|
4715
|
-
import { jsx as
|
|
4716
|
-
var WandIcon = (props) => /* @__PURE__ */
|
|
4922
|
+
import { jsx as jsx156 } from "react/jsx-runtime";
|
|
4923
|
+
var WandIcon = (props) => /* @__PURE__ */ jsx156(
|
|
4717
4924
|
"svg",
|
|
4718
4925
|
{
|
|
4719
4926
|
...props,
|
|
4720
4927
|
viewBox: "0 0 24 24",
|
|
4721
4928
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4722
|
-
children: /* @__PURE__ */
|
|
4929
|
+
children: /* @__PURE__ */ jsx156(
|
|
4723
4930
|
"path",
|
|
4724
4931
|
{
|
|
4725
4932
|
clipRule: "evenodd",
|
|
@@ -4732,14 +4939,14 @@ var WandIcon = (props) => /* @__PURE__ */ jsx154(
|
|
|
4732
4939
|
);
|
|
4733
4940
|
|
|
4734
4941
|
// src/components/Icon/icons/ZoomInIcon.tsx
|
|
4735
|
-
import { jsx as
|
|
4736
|
-
var ZoomInIcon = (props) => /* @__PURE__ */
|
|
4942
|
+
import { jsx as jsx157 } from "react/jsx-runtime";
|
|
4943
|
+
var ZoomInIcon = (props) => /* @__PURE__ */ jsx157(
|
|
4737
4944
|
"svg",
|
|
4738
4945
|
{
|
|
4739
4946
|
...props,
|
|
4740
4947
|
viewBox: "0 0 24 24",
|
|
4741
4948
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4742
|
-
children: /* @__PURE__ */
|
|
4949
|
+
children: /* @__PURE__ */ jsx157(
|
|
4743
4950
|
"path",
|
|
4744
4951
|
{
|
|
4745
4952
|
clipRule: "evenodd",
|
|
@@ -4752,14 +4959,14 @@ var ZoomInIcon = (props) => /* @__PURE__ */ jsx155(
|
|
|
4752
4959
|
);
|
|
4753
4960
|
|
|
4754
4961
|
// src/components/Icon/icons/ZoomOutIcon.tsx
|
|
4755
|
-
import { jsx as
|
|
4756
|
-
var ZoomOutIcon = (props) => /* @__PURE__ */
|
|
4962
|
+
import { jsx as jsx158 } from "react/jsx-runtime";
|
|
4963
|
+
var ZoomOutIcon = (props) => /* @__PURE__ */ jsx158(
|
|
4757
4964
|
"svg",
|
|
4758
4965
|
{
|
|
4759
4966
|
...props,
|
|
4760
4967
|
viewBox: "0 0 24 24",
|
|
4761
4968
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4762
|
-
children: /* @__PURE__ */
|
|
4969
|
+
children: /* @__PURE__ */ jsx158(
|
|
4763
4970
|
"path",
|
|
4764
4971
|
{
|
|
4765
4972
|
clipRule: "evenodd",
|
|
@@ -4929,13 +5136,13 @@ var iconMap = {
|
|
|
4929
5136
|
|
|
4930
5137
|
// src/private/hooks/useResponsiveProp/useResponsiveProp.ts
|
|
4931
5138
|
import { isNotUndefined, isRecord as isRecord2, isUndefined } from "@wistia/type-guards";
|
|
4932
|
-
import { useMemo as
|
|
5139
|
+
import { useMemo as useMemo3 } from "react";
|
|
4933
5140
|
var isResponsiveObject = (values) => {
|
|
4934
5141
|
return typeof values === "object" && values !== null && !Array.isArray(values) && "base" in values;
|
|
4935
5142
|
};
|
|
4936
5143
|
var useResponsiveProp = (values) => {
|
|
4937
5144
|
const activeMediaQueries = useActiveMq();
|
|
4938
|
-
return
|
|
5145
|
+
return useMemo3(() => {
|
|
4939
5146
|
if (isRecord2(values) && isResponsiveObject(values)) {
|
|
4940
5147
|
const mq2 = activeMediaQueries.find((key) => key in values);
|
|
4941
5148
|
return isNotUndefined(mq2) && isNotUndefined(values[mq2]) ? values[mq2] : values.base;
|
|
@@ -4945,7 +5152,7 @@ var useResponsiveProp = (values) => {
|
|
|
4945
5152
|
};
|
|
4946
5153
|
|
|
4947
5154
|
// src/components/Icon/Icon.tsx
|
|
4948
|
-
import { jsx as
|
|
5155
|
+
import { jsx as jsx159 } from "react/jsx-runtime";
|
|
4949
5156
|
var iconSizeMap = {
|
|
4950
5157
|
sm: "12",
|
|
4951
5158
|
md: "16",
|
|
@@ -4953,7 +5160,7 @@ var iconSizeMap = {
|
|
|
4953
5160
|
xl: "32",
|
|
4954
5161
|
xxl: "48"
|
|
4955
5162
|
};
|
|
4956
|
-
var StyledIcon =
|
|
5163
|
+
var StyledIcon = styled5.svg`
|
|
4957
5164
|
${({ $colorScheme }) => getColorScheme($colorScheme ?? "inherit")}
|
|
4958
5165
|
`;
|
|
4959
5166
|
var Icon = ({
|
|
@@ -4965,13 +5172,13 @@ var Icon = ({
|
|
|
4965
5172
|
...otherProps
|
|
4966
5173
|
}) => {
|
|
4967
5174
|
const responsiveSize = useResponsiveProp(size);
|
|
4968
|
-
if (
|
|
5175
|
+
if (isNil6(type)) {
|
|
4969
5176
|
throw new Error("An Icon component requires a `type` prop to be provided");
|
|
4970
5177
|
}
|
|
4971
|
-
if (
|
|
5178
|
+
if (isNil6(iconMap[type])) {
|
|
4972
5179
|
throw new Error(`Type "${type}" does not exist, please update type prop in Icon component.`);
|
|
4973
5180
|
}
|
|
4974
|
-
if (
|
|
5181
|
+
if (isNil6(iconSizeMap[responsiveSize])) {
|
|
4975
5182
|
throw new Error(
|
|
4976
5183
|
`Size "${responsiveSize}" does not exist, please update size prop in Icon component.`
|
|
4977
5184
|
);
|
|
@@ -4982,7 +5189,7 @@ var Icon = ({
|
|
|
4982
5189
|
...style
|
|
4983
5190
|
};
|
|
4984
5191
|
const iconColor = invertColor ? "var(--color-icon-on-fill)" : "var(--color-icon)";
|
|
4985
|
-
return /* @__PURE__ */
|
|
5192
|
+
return /* @__PURE__ */ jsx159(
|
|
4986
5193
|
StyledIcon,
|
|
4987
5194
|
{
|
|
4988
5195
|
$colorScheme: colorScheme,
|
|
@@ -5003,12 +5210,12 @@ Icon.displayName = "Icon";
|
|
|
5003
5210
|
|
|
5004
5211
|
// src/components/Link/Link.tsx
|
|
5005
5212
|
import { forwardRef as forwardRef2 } from "react";
|
|
5006
|
-
import { isNil as
|
|
5007
|
-
import
|
|
5213
|
+
import { isNil as isNil7, isNotNil as isNotNil3, isNotUndefined as isNotUndefined2, isUndefined as isUndefined2 } from "@wistia/type-guards";
|
|
5214
|
+
import styled6 from "styled-components";
|
|
5008
5215
|
import { Link as RouterLink, useInRouterContext } from "react-router-dom";
|
|
5009
|
-
import { jsx as
|
|
5216
|
+
import { jsx as jsx160 } from "react/jsx-runtime";
|
|
5010
5217
|
var generateHref = (href, type, disabled) => {
|
|
5011
|
-
if (disabled ||
|
|
5218
|
+
if (disabled || isNil7(href)) {
|
|
5012
5219
|
return void 0;
|
|
5013
5220
|
}
|
|
5014
5221
|
let to = href;
|
|
@@ -5022,8 +5229,8 @@ var generateHref = (href, type, disabled) => {
|
|
|
5022
5229
|
};
|
|
5023
5230
|
var isButton = (props) => isUndefined2(props.href);
|
|
5024
5231
|
var isLink = (props) => isNotUndefined2(props.href);
|
|
5025
|
-
var StyledLink =
|
|
5026
|
-
${({ href }) =>
|
|
5232
|
+
var StyledLink = styled6.a`
|
|
5233
|
+
${({ href }) => isNil7(href) && buttonResetCss};
|
|
5027
5234
|
${({ $colorScheme }) => getColorScheme($colorScheme)}
|
|
5028
5235
|
cursor: pointer;
|
|
5029
5236
|
font-family: var(--typography-family-default);
|
|
@@ -5068,7 +5275,7 @@ var Link = forwardRef2(
|
|
|
5068
5275
|
onClick: handleClick
|
|
5069
5276
|
};
|
|
5070
5277
|
if (isButton(props)) {
|
|
5071
|
-
return /* @__PURE__ */
|
|
5278
|
+
return /* @__PURE__ */ jsx160(
|
|
5072
5279
|
StyledLink,
|
|
5073
5280
|
{
|
|
5074
5281
|
ref,
|
|
@@ -5088,7 +5295,7 @@ var Link = forwardRef2(
|
|
|
5088
5295
|
...commonProps,
|
|
5089
5296
|
...externalLinkProps
|
|
5090
5297
|
};
|
|
5091
|
-
return inRouterContext && type !== "external" ? /* @__PURE__ */
|
|
5298
|
+
return inRouterContext && type !== "external" ? /* @__PURE__ */ jsx160(
|
|
5092
5299
|
StyledLink,
|
|
5093
5300
|
{
|
|
5094
5301
|
as: RouterLink,
|
|
@@ -5096,7 +5303,7 @@ var Link = forwardRef2(
|
|
|
5096
5303
|
to: to ?? "",
|
|
5097
5304
|
children
|
|
5098
5305
|
}
|
|
5099
|
-
) : /* @__PURE__ */
|
|
5306
|
+
) : /* @__PURE__ */ jsx160(
|
|
5100
5307
|
StyledLink,
|
|
5101
5308
|
{
|
|
5102
5309
|
as: "a",
|
|
@@ -5112,18 +5319,18 @@ var Link = forwardRef2(
|
|
|
5112
5319
|
Link.displayName = "Link";
|
|
5113
5320
|
|
|
5114
5321
|
// src/components/Button/Button.tsx
|
|
5115
|
-
import { Fragment, jsx as
|
|
5322
|
+
import { Fragment, jsx as jsx161, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
5116
5323
|
var isLink2 = (props) => isNotUndefined3(props.href);
|
|
5117
|
-
var StyledButton =
|
|
5324
|
+
var StyledButton = styled7.button`
|
|
5118
5325
|
${buttonResetCss}
|
|
5119
|
-
${({ colorScheme }) => getColorScheme(colorScheme)}
|
|
5120
|
-
${({ size }) => buttonSizeStyles[size]}
|
|
5121
|
-
${({ variant }) => buttonVariantsStyles[variant]}
|
|
5122
|
-
${({ unstyled }) =>
|
|
5123
|
-
${({ fullWidth }) => fullWidth && "width: 100%;"}
|
|
5326
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)}
|
|
5327
|
+
${({ $size }) => buttonSizeStyles[$size]}
|
|
5328
|
+
${({ $variant }) => buttonVariantsStyles[$variant]}
|
|
5329
|
+
${({ $unstyled }) => !$unstyled && buttonBaseStyles}
|
|
5330
|
+
${({ $fullWidth }) => $fullWidth && "width: 100%;"}
|
|
5124
5331
|
position: relative;
|
|
5125
5332
|
`;
|
|
5126
|
-
var StyledButtonContent =
|
|
5333
|
+
var StyledButtonContent = styled7.div`
|
|
5127
5334
|
align-items: center;
|
|
5128
5335
|
display: inline-flex;
|
|
5129
5336
|
flex-grow: 1;
|
|
@@ -5135,11 +5342,11 @@ var StyledButtonContent = styled5.div`
|
|
|
5135
5342
|
${({ $hasLeftIcon }) => $hasLeftIcon && "padding-left: 0;"}
|
|
5136
5343
|
${({ $hasRightIcon }) => $hasRightIcon && "padding-right: 0;"}
|
|
5137
5344
|
`;
|
|
5138
|
-
var StyledButtonContentLabel =
|
|
5345
|
+
var StyledButtonContentLabel = styled7.span`
|
|
5139
5346
|
flex: 1;
|
|
5140
5347
|
text-align: center;
|
|
5141
5348
|
`;
|
|
5142
|
-
var StyledButtonLoading =
|
|
5349
|
+
var StyledButtonLoading = styled7.div`
|
|
5143
5350
|
position: absolute;
|
|
5144
5351
|
display: flex;
|
|
5145
5352
|
`;
|
|
@@ -5149,9 +5356,9 @@ var ButtonContent = ({
|
|
|
5149
5356
|
rightIcon,
|
|
5150
5357
|
children
|
|
5151
5358
|
}) => {
|
|
5152
|
-
return /* @__PURE__ */
|
|
5153
|
-
isLoading ? /* @__PURE__ */
|
|
5154
|
-
/* @__PURE__ */
|
|
5359
|
+
return /* @__PURE__ */ jsxs5(Fragment, { children: [
|
|
5360
|
+
isLoading ? /* @__PURE__ */ jsx161(StyledButtonLoading, { children: /* @__PURE__ */ jsx161(Icon, { type: "spinner" }) }) : null,
|
|
5361
|
+
/* @__PURE__ */ jsxs5(
|
|
5155
5362
|
StyledButtonContent,
|
|
5156
5363
|
{
|
|
5157
5364
|
$hasLeftIcon: isNotNil4(leftIcon),
|
|
@@ -5159,7 +5366,7 @@ var ButtonContent = ({
|
|
|
5159
5366
|
$isLoading: isLoading,
|
|
5160
5367
|
children: [
|
|
5161
5368
|
leftIcon ?? null,
|
|
5162
|
-
/* @__PURE__ */
|
|
5369
|
+
/* @__PURE__ */ jsx161(StyledButtonContentLabel, { children }),
|
|
5163
5370
|
rightIcon ?? null
|
|
5164
5371
|
]
|
|
5165
5372
|
}
|
|
@@ -5179,7 +5386,7 @@ var Button = forwardRef3(
|
|
|
5179
5386
|
unstyled = false,
|
|
5180
5387
|
onClick,
|
|
5181
5388
|
fullWidth = false,
|
|
5182
|
-
size = "
|
|
5389
|
+
size = "md",
|
|
5183
5390
|
variant = "solid",
|
|
5184
5391
|
...props
|
|
5185
5392
|
}, ref) => {
|
|
@@ -5188,27 +5395,27 @@ var Button = forwardRef3(
|
|
|
5188
5395
|
const isAriaDisabled = () => isLoading || disabled;
|
|
5189
5396
|
const commonProps = {
|
|
5190
5397
|
"aria-disabled": isAriaDisabled() || void 0,
|
|
5191
|
-
colorScheme,
|
|
5192
|
-
|
|
5193
|
-
|
|
5194
|
-
unstyled,
|
|
5398
|
+
$colorScheme: colorScheme,
|
|
5399
|
+
$fullWidth: responsiveFullWidth,
|
|
5400
|
+
$size: responsiveSize,
|
|
5401
|
+
$unstyled: unstyled,
|
|
5402
|
+
$variant: variant,
|
|
5195
5403
|
className,
|
|
5196
|
-
|
|
5197
|
-
|
|
5198
|
-
fullWidth: responsiveFullWidth
|
|
5404
|
+
forceState,
|
|
5405
|
+
isLoading
|
|
5199
5406
|
};
|
|
5200
5407
|
if (forceState) {
|
|
5201
5408
|
commonProps.className = `${className ?? ""} force-state-${forceState}`;
|
|
5202
5409
|
}
|
|
5203
5410
|
if (isLink2(props)) {
|
|
5204
|
-
return /* @__PURE__ */
|
|
5411
|
+
return /* @__PURE__ */ jsx161(
|
|
5205
5412
|
StyledButton,
|
|
5206
5413
|
{
|
|
5207
5414
|
ref,
|
|
5208
5415
|
as: Link,
|
|
5209
5416
|
...props,
|
|
5210
5417
|
...commonProps,
|
|
5211
|
-
children: /* @__PURE__ */
|
|
5418
|
+
children: /* @__PURE__ */ jsx161(
|
|
5212
5419
|
ButtonContent,
|
|
5213
5420
|
{
|
|
5214
5421
|
isLoading,
|
|
@@ -5229,7 +5436,7 @@ var Button = forwardRef3(
|
|
|
5229
5436
|
onClick(event);
|
|
5230
5437
|
}
|
|
5231
5438
|
};
|
|
5232
|
-
return /* @__PURE__ */
|
|
5439
|
+
return /* @__PURE__ */ jsx161(
|
|
5233
5440
|
StyledButton,
|
|
5234
5441
|
{
|
|
5235
5442
|
ref,
|
|
@@ -5237,7 +5444,7 @@ var Button = forwardRef3(
|
|
|
5237
5444
|
type: "button",
|
|
5238
5445
|
...props,
|
|
5239
5446
|
...commonProps,
|
|
5240
|
-
children: /* @__PURE__ */
|
|
5447
|
+
children: /* @__PURE__ */ jsx161(
|
|
5241
5448
|
ButtonContent,
|
|
5242
5449
|
{
|
|
5243
5450
|
isLoading,
|
|
@@ -5253,9 +5460,9 @@ var Button = forwardRef3(
|
|
|
5253
5460
|
Button.displayName = "Button";
|
|
5254
5461
|
|
|
5255
5462
|
// src/components/ButtonGroup/ButtonGroup.tsx
|
|
5256
|
-
import
|
|
5257
|
-
import { isNil as
|
|
5258
|
-
import { jsx as
|
|
5463
|
+
import styled8 from "styled-components";
|
|
5464
|
+
import { isNil as isNil8 } from "@wistia/type-guards";
|
|
5465
|
+
import { jsx as jsx162 } from "react/jsx-runtime";
|
|
5259
5466
|
var getAlignment = (align) => {
|
|
5260
5467
|
if (align === "center") {
|
|
5261
5468
|
return "center";
|
|
@@ -5268,15 +5475,15 @@ var getAlignment = (align) => {
|
|
|
5268
5475
|
}
|
|
5269
5476
|
return void 0;
|
|
5270
5477
|
};
|
|
5271
|
-
var ButtonGroupComponent =
|
|
5478
|
+
var ButtonGroupComponent = styled8.div`
|
|
5272
5479
|
display: flex;
|
|
5273
5480
|
|
|
5274
5481
|
/* this helps ensure that primary buttons appear at the top of the column */
|
|
5275
|
-
flex-direction: ${({ align }) => align === "right" ? "column-reverse" : "column"};
|
|
5482
|
+
flex-direction: ${({ $align }) => $align === "right" ? "column-reverse" : "column"};
|
|
5276
5483
|
gap: var(--space-04);
|
|
5277
5484
|
align-items: center;
|
|
5278
|
-
justify-content: ${({ align }) => getAlignment(align)};
|
|
5279
|
-
width: ${({ fullWidth }) => fullWidth ? "100%" : "auto"};
|
|
5485
|
+
justify-content: ${({ $align }) => getAlignment($align)};
|
|
5486
|
+
width: ${({ $fullWidth }) => $fullWidth ? "100%" : "auto"};
|
|
5280
5487
|
|
|
5281
5488
|
${mq.smAndUp} {
|
|
5282
5489
|
flex-direction: row;
|
|
@@ -5294,14 +5501,14 @@ var ButtonGroup = ({
|
|
|
5294
5501
|
fullWidth = false,
|
|
5295
5502
|
...otherProps
|
|
5296
5503
|
}) => {
|
|
5297
|
-
if (
|
|
5504
|
+
if (isNil8(children)) {
|
|
5298
5505
|
return null;
|
|
5299
5506
|
}
|
|
5300
|
-
return /* @__PURE__ */
|
|
5507
|
+
return /* @__PURE__ */ jsx162(
|
|
5301
5508
|
ButtonGroupComponent,
|
|
5302
5509
|
{
|
|
5303
|
-
align,
|
|
5304
|
-
fullWidth,
|
|
5510
|
+
$align: align,
|
|
5511
|
+
$fullWidth: fullWidth,
|
|
5305
5512
|
...otherProps,
|
|
5306
5513
|
children
|
|
5307
5514
|
}
|
|
@@ -5310,20 +5517,20 @@ var ButtonGroup = ({
|
|
|
5310
5517
|
ButtonGroup.displayName = "ButtonGroup";
|
|
5311
5518
|
|
|
5312
5519
|
// src/components/Divider/Divider.tsx
|
|
5313
|
-
import
|
|
5314
|
-
import { jsx as
|
|
5520
|
+
import styled9 from "styled-components";
|
|
5521
|
+
import { jsx as jsx163 } from "react/jsx-runtime";
|
|
5315
5522
|
var sizeToPixelMap = {
|
|
5316
5523
|
lg: 4,
|
|
5317
5524
|
sm: 1
|
|
5318
5525
|
};
|
|
5319
|
-
var DividerComponent =
|
|
5526
|
+
var DividerComponent = styled9.hr`
|
|
5320
5527
|
background: none;
|
|
5321
5528
|
border-bottom: none;
|
|
5322
5529
|
border-left: none;
|
|
5323
5530
|
border-right: none;
|
|
5324
5531
|
border-top-color: var(--color-border);
|
|
5325
5532
|
border-top-style: solid;
|
|
5326
|
-
border-top-width: ${({ borderHeight }) => `${borderHeight}px`};
|
|
5533
|
+
border-top-width: ${({ $borderHeight }) => `${$borderHeight}px`};
|
|
5327
5534
|
clear: both;
|
|
5328
5535
|
height: 0;
|
|
5329
5536
|
line-height: 0;
|
|
@@ -5331,10 +5538,10 @@ var DividerComponent = styled7.hr`
|
|
|
5331
5538
|
`;
|
|
5332
5539
|
var Divider = ({ size = "sm", ...otherProps }) => {
|
|
5333
5540
|
const responsiveSize = useResponsiveProp(size);
|
|
5334
|
-
return /* @__PURE__ */
|
|
5541
|
+
return /* @__PURE__ */ jsx163(
|
|
5335
5542
|
DividerComponent,
|
|
5336
5543
|
{
|
|
5337
|
-
borderHeight: sizeToPixelMap[responsiveSize],
|
|
5544
|
+
$borderHeight: sizeToPixelMap[responsiveSize],
|
|
5338
5545
|
...otherProps
|
|
5339
5546
|
}
|
|
5340
5547
|
);
|
|
@@ -5343,8 +5550,8 @@ Divider.displayName = "Divider";
|
|
|
5343
5550
|
|
|
5344
5551
|
// src/components/Ellipsis/Ellipsis.tsx
|
|
5345
5552
|
import { isNotNil as isNotNil5 } from "@wistia/type-guards";
|
|
5346
|
-
import
|
|
5347
|
-
import { jsx as
|
|
5553
|
+
import styled10, { css as css12 } from "styled-components";
|
|
5554
|
+
import { jsx as jsx164 } from "react/jsx-runtime";
|
|
5348
5555
|
var ellipsisStyle = css12`
|
|
5349
5556
|
overflow: hidden;
|
|
5350
5557
|
text-overflow: ellipsis;
|
|
@@ -5371,13 +5578,13 @@ var ellipsisStyle = css12`
|
|
|
5371
5578
|
var ellipsisFlexParentStyle = css12`
|
|
5372
5579
|
min-width: 0;
|
|
5373
5580
|
`;
|
|
5374
|
-
var EllipsisComponent =
|
|
5581
|
+
var EllipsisComponent = styled10.div`
|
|
5375
5582
|
${ellipsisStyle};
|
|
5376
|
-
${({ lines }) => {
|
|
5377
|
-
if (isNotNil5(lines)) {
|
|
5583
|
+
${({ $lines }) => {
|
|
5584
|
+
if (isNotNil5($lines)) {
|
|
5378
5585
|
return css12`
|
|
5379
5586
|
-webkit-box-orient: vertical;
|
|
5380
|
-
-webkit-line-clamp: ${lines};
|
|
5587
|
+
-webkit-line-clamp: ${$lines};
|
|
5381
5588
|
display: -webkit-box;
|
|
5382
5589
|
white-space: initial;
|
|
5383
5590
|
`;
|
|
@@ -5385,10 +5592,10 @@ var EllipsisComponent = styled8.div`
|
|
|
5385
5592
|
return void 0;
|
|
5386
5593
|
}}
|
|
5387
5594
|
`;
|
|
5388
|
-
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */
|
|
5595
|
+
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ jsx164(
|
|
5389
5596
|
EllipsisComponent,
|
|
5390
5597
|
{
|
|
5391
|
-
lines,
|
|
5598
|
+
$lines: lines,
|
|
5392
5599
|
...otherProps,
|
|
5393
5600
|
children
|
|
5394
5601
|
}
|
|
@@ -5397,7 +5604,7 @@ Ellipsis.displayName = "Ellipsis";
|
|
|
5397
5604
|
|
|
5398
5605
|
// src/components/Heading/Heading.tsx
|
|
5399
5606
|
import { forwardRef as forwardRef4 } from "react";
|
|
5400
|
-
import
|
|
5607
|
+
import styled11, { css as css13 } from "styled-components";
|
|
5401
5608
|
|
|
5402
5609
|
// src/private/helpers/makePolymorphic/makePolymorphic.tsx
|
|
5403
5610
|
var makePolymorphic = (component) => {
|
|
@@ -5405,7 +5612,7 @@ var makePolymorphic = (component) => {
|
|
|
5405
5612
|
};
|
|
5406
5613
|
|
|
5407
5614
|
// src/components/Heading/Heading.tsx
|
|
5408
|
-
import { jsx as
|
|
5615
|
+
import { jsx as jsx165 } from "react/jsx-runtime";
|
|
5409
5616
|
var heroStyle = css13`
|
|
5410
5617
|
--font-family: var(--typography-heading-hero-family);
|
|
5411
5618
|
--font-size: var(--typography-heading-hero-size);
|
|
@@ -5458,26 +5665,26 @@ var variantStyleMap = {
|
|
|
5458
5665
|
heading6: heading6TextStyle
|
|
5459
5666
|
};
|
|
5460
5667
|
var DEFAULT_ELEMENT = "h1";
|
|
5461
|
-
var StyledHeading =
|
|
5462
|
-
${({ colorScheme }) => getColorScheme(colorScheme)};
|
|
5668
|
+
var StyledHeading = styled11.div`
|
|
5669
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
5463
5670
|
font-family: var(--font-family);
|
|
5464
5671
|
font-size: var(--font-size);
|
|
5465
5672
|
font-weight: var(--font-weight);
|
|
5466
5673
|
line-height: var(--line-height);
|
|
5467
5674
|
color: var(--color-text);
|
|
5468
|
-
${({ variant }) => variantStyleMap[variant]}
|
|
5469
|
-
${({ ellipsis }) => ellipsis && ellipsisStyle};
|
|
5470
|
-
${({ inline }) => inline && css13`
|
|
5675
|
+
${({ $variant }) => variantStyleMap[$variant]}
|
|
5676
|
+
${({ $ellipsis }) => $ellipsis && ellipsisStyle};
|
|
5677
|
+
${({ $inline }) => $inline && css13`
|
|
5471
5678
|
display: inline-block;
|
|
5472
5679
|
`}
|
|
5473
|
-
${({ disabled }) => disabled && css13`
|
|
5680
|
+
${({ $disabled }) => $disabled && css13`
|
|
5474
5681
|
color: var(--color-text-disabled);
|
|
5475
5682
|
`}
|
|
5476
|
-
${({ preventUserSelect }) => preventUserSelect && css13`
|
|
5683
|
+
${({ $preventUserSelect }) => $preventUserSelect && css13`
|
|
5477
5684
|
user-select: none;
|
|
5478
5685
|
`}
|
|
5479
|
-
${({ align }) => css13`
|
|
5480
|
-
text-align: ${align};
|
|
5686
|
+
${({ $align }) => css13`
|
|
5687
|
+
text-align: ${$align};
|
|
5481
5688
|
`}
|
|
5482
5689
|
margin: 0;
|
|
5483
5690
|
`;
|
|
@@ -5501,18 +5708,18 @@ var HeadingComponent = forwardRef4(
|
|
|
5501
5708
|
variant = "heading1",
|
|
5502
5709
|
renderAs,
|
|
5503
5710
|
...otherProps
|
|
5504
|
-
}, ref) => /* @__PURE__ */
|
|
5711
|
+
}, ref) => /* @__PURE__ */ jsx165(
|
|
5505
5712
|
StyledHeading,
|
|
5506
5713
|
{
|
|
5507
5714
|
ref,
|
|
5508
|
-
align,
|
|
5715
|
+
$align: align,
|
|
5716
|
+
$colorScheme: colorScheme,
|
|
5717
|
+
$disabled: disabled,
|
|
5718
|
+
$ellipsis: ellipsis,
|
|
5719
|
+
$inline: inline,
|
|
5720
|
+
$preventUserSelect: preventUserSelect,
|
|
5721
|
+
$variant: variant,
|
|
5509
5722
|
as: renderAs ?? variantElementMap[variant],
|
|
5510
|
-
colorScheme,
|
|
5511
|
-
disabled,
|
|
5512
|
-
ellipsis,
|
|
5513
|
-
inline,
|
|
5514
|
-
preventUserSelect,
|
|
5515
|
-
variant,
|
|
5516
5723
|
...otherProps
|
|
5517
5724
|
}
|
|
5518
5725
|
)
|
|
@@ -5522,7 +5729,7 @@ var Heading = makePolymorphic(HeadingComponent);
|
|
|
5522
5729
|
|
|
5523
5730
|
// src/components/IconButton/IconButton.tsx
|
|
5524
5731
|
import { Children as Children2, cloneElement as cloneElement2, forwardRef as forwardRef5 } from "react";
|
|
5525
|
-
import
|
|
5732
|
+
import styled13 from "styled-components";
|
|
5526
5733
|
|
|
5527
5734
|
// src/components/Tooltip/Tooltip.tsx
|
|
5528
5735
|
import {
|
|
@@ -5532,8 +5739,8 @@ import {
|
|
|
5532
5739
|
Portal,
|
|
5533
5740
|
Arrow
|
|
5534
5741
|
} from "@radix-ui/react-tooltip";
|
|
5535
|
-
import
|
|
5536
|
-
import { jsx as
|
|
5742
|
+
import styled12, { css as css14 } from "styled-components";
|
|
5743
|
+
import { jsx as jsx166, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
5537
5744
|
var CompactTooltipStyles = css14`
|
|
5538
5745
|
--tooltip-font-size: var(--typography-label-4-size);
|
|
5539
5746
|
--tooltip-line-height: var(--typography-label-4-line-height);
|
|
@@ -5541,7 +5748,7 @@ var CompactTooltipStyles = css14`
|
|
|
5541
5748
|
--tooltip-horizontal-padding: var(--space-02);
|
|
5542
5749
|
--tooltip-vertical-padding: var(--space-03);
|
|
5543
5750
|
`;
|
|
5544
|
-
var StyledContent =
|
|
5751
|
+
var StyledContent = styled12(Content)`
|
|
5545
5752
|
--tooltip-font-family: var(--typography-family-default);
|
|
5546
5753
|
--tooltip-border-radius: var(--border-radius-05);
|
|
5547
5754
|
--tooltip-bg: var(--color-bg-tooltip);
|
|
@@ -5599,14 +5806,14 @@ var Tooltip = ({
|
|
|
5599
5806
|
if (forceOpen === true) {
|
|
5600
5807
|
rootProps.open = true;
|
|
5601
5808
|
}
|
|
5602
|
-
return /* @__PURE__ */
|
|
5809
|
+
return /* @__PURE__ */ jsxs6(
|
|
5603
5810
|
Root,
|
|
5604
5811
|
{
|
|
5605
5812
|
delayDuration: delay,
|
|
5606
5813
|
...rootProps,
|
|
5607
5814
|
children: [
|
|
5608
|
-
/* @__PURE__ */
|
|
5609
|
-
/* @__PURE__ */
|
|
5815
|
+
/* @__PURE__ */ jsx166(Trigger, { asChild: true, children }),
|
|
5816
|
+
/* @__PURE__ */ jsx166(Portal, { children: /* @__PURE__ */ jsxs6(
|
|
5610
5817
|
StyledContent,
|
|
5611
5818
|
{
|
|
5612
5819
|
$compact: compact,
|
|
@@ -5614,7 +5821,7 @@ var Tooltip = ({
|
|
|
5614
5821
|
sideOffset: hideArrow ? VISUAL_OFFSET : VISUAL_OFFSET - 2,
|
|
5615
5822
|
children: [
|
|
5616
5823
|
content,
|
|
5617
|
-
!hideArrow ? /* @__PURE__ */
|
|
5824
|
+
!hideArrow ? /* @__PURE__ */ jsx166(Arrow, { asChild: true, children: /* @__PURE__ */ jsx166(
|
|
5618
5825
|
"svg",
|
|
5619
5826
|
{
|
|
5620
5827
|
fill: "var(--tooltip-bg)",
|
|
@@ -5623,7 +5830,7 @@ var Tooltip = ({
|
|
|
5623
5830
|
viewBox: "0 0 12 8",
|
|
5624
5831
|
width: "12",
|
|
5625
5832
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5626
|
-
children: /* @__PURE__ */
|
|
5833
|
+
children: /* @__PURE__ */ jsx166("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" })
|
|
5627
5834
|
}
|
|
5628
5835
|
) }) : null
|
|
5629
5836
|
]
|
|
@@ -5636,18 +5843,12 @@ var Tooltip = ({
|
|
|
5636
5843
|
Tooltip.displayName = "Tooltip";
|
|
5637
5844
|
|
|
5638
5845
|
// src/components/IconButton/IconButton.tsx
|
|
5639
|
-
import { jsx as
|
|
5640
|
-
var
|
|
5641
|
-
|
|
5642
|
-
|
|
5643
|
-
|
|
5644
|
-
|
|
5645
|
-
};
|
|
5646
|
-
var StyledButton2 = styled11(Button)`
|
|
5647
|
-
--icon-button-size-small: 24px;
|
|
5648
|
-
--icon-button-size-medium: 32px;
|
|
5649
|
-
--icon-button-size-large: 40px;
|
|
5650
|
-
--icon-button-size-hero: 48px;
|
|
5846
|
+
import { jsx as jsx167 } from "react/jsx-runtime";
|
|
5847
|
+
var StyledButton2 = styled13(Button)`
|
|
5848
|
+
--icon-button-size-sm: 24px;
|
|
5849
|
+
--icon-button-size-md: 32px;
|
|
5850
|
+
--icon-button-size-lg: 40px;
|
|
5851
|
+
--icon-button-size-xl: 48px;
|
|
5651
5852
|
|
|
5652
5853
|
border-radius: 50%;
|
|
5653
5854
|
height: ${({ size }) => `var(--icon-button-size-${size})`};
|
|
@@ -5658,9 +5859,9 @@ var StyledButton2 = styled11(Button)`
|
|
|
5658
5859
|
line-height: 1;
|
|
5659
5860
|
`;
|
|
5660
5861
|
var IconButton = forwardRef5(
|
|
5661
|
-
({ children, label, disableTooltip = false, size = "
|
|
5862
|
+
({ children, label, disableTooltip = false, size = "md", ...props }, ref) => {
|
|
5662
5863
|
const responsiveSize = useResponsiveProp(size);
|
|
5663
|
-
const button = /* @__PURE__ */
|
|
5864
|
+
const button = /* @__PURE__ */ jsx167(
|
|
5664
5865
|
StyledButton2,
|
|
5665
5866
|
{
|
|
5666
5867
|
...props,
|
|
@@ -5669,24 +5870,82 @@ var IconButton = forwardRef5(
|
|
|
5669
5870
|
"data-wistia-ui-icon-button": true,
|
|
5670
5871
|
size: responsiveSize,
|
|
5671
5872
|
children: cloneElement2(Children2.only(children), {
|
|
5672
|
-
size:
|
|
5873
|
+
size: responsiveSize
|
|
5673
5874
|
})
|
|
5674
5875
|
}
|
|
5675
5876
|
);
|
|
5676
5877
|
if (disableTooltip) {
|
|
5677
5878
|
return button;
|
|
5678
5879
|
}
|
|
5679
|
-
return /* @__PURE__ */
|
|
5880
|
+
return /* @__PURE__ */ jsx167(Tooltip, { content: label, children: button });
|
|
5680
5881
|
}
|
|
5681
5882
|
);
|
|
5682
5883
|
IconButton.displayName = "IconButton";
|
|
5683
5884
|
|
|
5885
|
+
// src/components/Label/Label.tsx
|
|
5886
|
+
import styled14, { css as css15 } from "styled-components";
|
|
5887
|
+
import { jsx as jsx168 } from "react/jsx-runtime";
|
|
5888
|
+
var requiredStyle = css15`
|
|
5889
|
+
&::after {
|
|
5890
|
+
color: red; /* TODO need a color for this */
|
|
5891
|
+
display: inline;
|
|
5892
|
+
padding-left: var(--space-01);
|
|
5893
|
+
content: '*';
|
|
5894
|
+
}
|
|
5895
|
+
`;
|
|
5896
|
+
var disabledStyle = css15`
|
|
5897
|
+
color: var(--color-text-disabled);
|
|
5898
|
+
`;
|
|
5899
|
+
var SPACE_BETWEEN_LABEL_AND_INPUT = "var(--space-02)";
|
|
5900
|
+
var StyledLabel = styled14.label`
|
|
5901
|
+
display: block;
|
|
5902
|
+
font-size: var(--typography-label-1-size);
|
|
5903
|
+
font-weight: var(--typography-label-1-weight);
|
|
5904
|
+
line-height: var(--typography-label-1-line-height);
|
|
5905
|
+
margin-bottom: ${SPACE_BETWEEN_LABEL_AND_INPUT};
|
|
5906
|
+
width: 100%;
|
|
5907
|
+
|
|
5908
|
+
/* if label is wrapping an input this ensures it appears beneath the label with a nice margin */
|
|
5909
|
+
> input,
|
|
5910
|
+
> textarea,
|
|
5911
|
+
> select {
|
|
5912
|
+
display: block;
|
|
5913
|
+
margin-top: ${SPACE_BETWEEN_LABEL_AND_INPUT};
|
|
5914
|
+
}
|
|
5915
|
+
|
|
5916
|
+
> label {
|
|
5917
|
+
font-weight: normal;
|
|
5918
|
+
}
|
|
5919
|
+
|
|
5920
|
+
${({ screenReaderOnly }) => screenReaderOnly && visuallyHiddenStyle}
|
|
5921
|
+
${({ disabled }) => disabled && disabledStyle}
|
|
5922
|
+
${({ required }) => required && requiredStyle}
|
|
5923
|
+
`;
|
|
5924
|
+
var Label = ({
|
|
5925
|
+
children,
|
|
5926
|
+
disabled = false,
|
|
5927
|
+
htmlFor,
|
|
5928
|
+
required = false,
|
|
5929
|
+
screenReaderOnly = false,
|
|
5930
|
+
...otherProps
|
|
5931
|
+
}) => /* @__PURE__ */ jsx168(
|
|
5932
|
+
StyledLabel,
|
|
5933
|
+
{
|
|
5934
|
+
disabled,
|
|
5935
|
+
required,
|
|
5936
|
+
screenReaderOnly,
|
|
5937
|
+
...otherProps,
|
|
5938
|
+
children
|
|
5939
|
+
}
|
|
5940
|
+
);
|
|
5941
|
+
Label.displayName = "Label";
|
|
5942
|
+
|
|
5684
5943
|
// src/components/ScreenReaderOnly/ScreenReaderOnly.tsx
|
|
5685
|
-
import
|
|
5944
|
+
import styled15 from "styled-components";
|
|
5686
5945
|
import { isNotNil as isNotNil6 } from "@wistia/type-guards";
|
|
5687
|
-
import { jsx as
|
|
5688
|
-
var VisuallyHidden =
|
|
5689
|
-
var VisuallyHiddenButFocusable =
|
|
5946
|
+
import { jsx as jsx169 } from "react/jsx-runtime";
|
|
5947
|
+
var VisuallyHidden = styled15.div({ ...visuallyHiddenStyle });
|
|
5948
|
+
var VisuallyHiddenButFocusable = styled15.div({
|
|
5690
5949
|
"&:not(:focus-within)": visuallyHiddenStyle
|
|
5691
5950
|
});
|
|
5692
5951
|
var ScreenReaderOnly = ({
|
|
@@ -5697,21 +5956,21 @@ var ScreenReaderOnly = ({
|
|
|
5697
5956
|
}) => {
|
|
5698
5957
|
const accessibleText = isNotNil6(text) ? text : children;
|
|
5699
5958
|
if (focusable) {
|
|
5700
|
-
return /* @__PURE__ */
|
|
5959
|
+
return /* @__PURE__ */ jsx169(VisuallyHiddenButFocusable, { ...otherProps, children: accessibleText });
|
|
5701
5960
|
}
|
|
5702
|
-
return /* @__PURE__ */
|
|
5961
|
+
return /* @__PURE__ */ jsx169(VisuallyHidden, { ...otherProps, children: accessibleText });
|
|
5703
5962
|
};
|
|
5704
5963
|
ScreenReaderOnly.displayName = "ScreenReaderOnly";
|
|
5705
5964
|
|
|
5706
5965
|
// src/components/Stack/Stack.tsx
|
|
5707
5966
|
import { forwardRef as forwardRef6 } from "react";
|
|
5708
|
-
import
|
|
5709
|
-
import { jsx as
|
|
5967
|
+
import styled16 from "styled-components";
|
|
5968
|
+
import { jsx as jsx170 } from "react/jsx-runtime";
|
|
5710
5969
|
var DEFAULT_ELEMENT2 = "div";
|
|
5711
|
-
var StyledStack =
|
|
5970
|
+
var StyledStack = styled16.div`
|
|
5712
5971
|
display: flex;
|
|
5713
5972
|
flex-direction: ${({ $direction }) => $direction === "horizontal" ? "row" : "column"};
|
|
5714
|
-
gap: ${({ gap }) => `var(--${gap})`};
|
|
5973
|
+
gap: ${({ $gap }) => `var(--${$gap})`};
|
|
5715
5974
|
|
|
5716
5975
|
> * {
|
|
5717
5976
|
flex: 1;
|
|
@@ -5721,13 +5980,13 @@ var StackComponent = forwardRef6(
|
|
|
5721
5980
|
({ renderAs, direction = "vertical", gap = "space-02", ...props }, ref) => {
|
|
5722
5981
|
const responsiveGap = useResponsiveProp(gap);
|
|
5723
5982
|
const responsiveDirection = useResponsiveProp(direction);
|
|
5724
|
-
return /* @__PURE__ */
|
|
5983
|
+
return /* @__PURE__ */ jsx170(
|
|
5725
5984
|
StyledStack,
|
|
5726
5985
|
{
|
|
5727
5986
|
ref,
|
|
5728
5987
|
$direction: responsiveDirection,
|
|
5988
|
+
$gap: responsiveGap,
|
|
5729
5989
|
as: renderAs ?? DEFAULT_ELEMENT2,
|
|
5730
|
-
gap: responsiveGap,
|
|
5731
5990
|
...props
|
|
5732
5991
|
}
|
|
5733
5992
|
);
|
|
@@ -5738,89 +5997,89 @@ var Stack = makePolymorphic(StackComponent);
|
|
|
5738
5997
|
|
|
5739
5998
|
// src/components/Text/Text.tsx
|
|
5740
5999
|
import { forwardRef as forwardRef7 } from "react";
|
|
5741
|
-
import
|
|
5742
|
-
import { jsx as
|
|
5743
|
-
var bodyBoldStyles =
|
|
6000
|
+
import styled17, { css as css16 } from "styled-components";
|
|
6001
|
+
import { jsx as jsx171 } from "react/jsx-runtime";
|
|
6002
|
+
var bodyBoldStyles = css16`
|
|
5744
6003
|
> strong,
|
|
5745
6004
|
b {
|
|
5746
6005
|
font-weight: var(--typography-weight-body-bold);
|
|
5747
6006
|
}
|
|
5748
6007
|
`;
|
|
5749
|
-
var labelBoldStyles =
|
|
6008
|
+
var labelBoldStyles = css16`
|
|
5750
6009
|
> strong,
|
|
5751
6010
|
b {
|
|
5752
6011
|
font-weight: var(--typography-weight-label-bold);
|
|
5753
6012
|
}
|
|
5754
6013
|
`;
|
|
5755
|
-
var body1TextStyle =
|
|
6014
|
+
var body1TextStyle = css16`
|
|
5756
6015
|
--font-family: var(--typography-body-1-family);
|
|
5757
6016
|
--font-size: var(--typography-body-1-size);
|
|
5758
6017
|
--font-weight: var(--typography-body-1-weight);
|
|
5759
6018
|
--line-height: var(--typography-body-1-line-height);
|
|
5760
6019
|
${bodyBoldStyles}
|
|
5761
6020
|
`;
|
|
5762
|
-
var body2TextStyle =
|
|
6021
|
+
var body2TextStyle = css16`
|
|
5763
6022
|
--font-family: var(--typography-body-2-family);
|
|
5764
6023
|
--font-size: var(--typography-body-2-size);
|
|
5765
6024
|
--font-weight: var(--typography-body-2-weight);
|
|
5766
6025
|
--line-height: var(--typography-body-2-line-height);
|
|
5767
6026
|
${bodyBoldStyles}
|
|
5768
6027
|
`;
|
|
5769
|
-
var body3TextStyle =
|
|
6028
|
+
var body3TextStyle = css16`
|
|
5770
6029
|
--font-family: var(--typography-body-3-family);
|
|
5771
6030
|
--font-size: var(--typography-body-3-size);
|
|
5772
6031
|
--font-weight: var(--typography-body-3-weight);
|
|
5773
6032
|
--line-height: var(--typography-body-3-line-height);
|
|
5774
6033
|
${bodyBoldStyles}
|
|
5775
6034
|
`;
|
|
5776
|
-
var body4TextStyle =
|
|
6035
|
+
var body4TextStyle = css16`
|
|
5777
6036
|
--font-family: var(--typography-body-4-family);
|
|
5778
6037
|
--font-size: var(--typography-body-4-size);
|
|
5779
6038
|
--font-weight: var(--typography-body-4-weight);
|
|
5780
6039
|
--line-height: var(--typography-body-4-line-height);
|
|
5781
6040
|
${bodyBoldStyles}
|
|
5782
6041
|
`;
|
|
5783
|
-
var label1TextStyle =
|
|
6042
|
+
var label1TextStyle = css16`
|
|
5784
6043
|
--font-family: var(--typography-label-1-family);
|
|
5785
6044
|
--font-size: var(--typography-label-1-size);
|
|
5786
6045
|
--font-weight: var(--typography-label-1-weight);
|
|
5787
6046
|
--line-height: var(--typography-label-1-line-height);
|
|
5788
6047
|
${labelBoldStyles}
|
|
5789
6048
|
`;
|
|
5790
|
-
var label2TextStyle =
|
|
6049
|
+
var label2TextStyle = css16`
|
|
5791
6050
|
--font-family: var(--typography-label-2-family);
|
|
5792
6051
|
--font-size: var(--typography-label-2-size);
|
|
5793
6052
|
--font-weight: var(--typography-label-2-weight);
|
|
5794
6053
|
--line-height: var(--typography-label-2-line-height);
|
|
5795
6054
|
${labelBoldStyles}
|
|
5796
6055
|
`;
|
|
5797
|
-
var label3TextStyle =
|
|
6056
|
+
var label3TextStyle = css16`
|
|
5798
6057
|
--font-family: var(--typography-label-3-family);
|
|
5799
6058
|
--font-size: var(--typography-label-3-size);
|
|
5800
6059
|
--font-weight: var(--typography-label-3-weight);
|
|
5801
6060
|
--line-height: var(--typography-label-3-line-height);
|
|
5802
6061
|
${labelBoldStyles}
|
|
5803
6062
|
`;
|
|
5804
|
-
var label4TextStyle =
|
|
6063
|
+
var label4TextStyle = css16`
|
|
5805
6064
|
--font-family: var(--typography-label-4-family);
|
|
5806
6065
|
--font-size: var(--typography-label-4-size);
|
|
5807
6066
|
--font-weight: var(--typography-label-4-weight);
|
|
5808
6067
|
--line-height: var(--typography-label-4-line-height);
|
|
5809
6068
|
${labelBoldStyles}
|
|
5810
6069
|
`;
|
|
5811
|
-
var body1MonoTextStyle =
|
|
6070
|
+
var body1MonoTextStyle = css16`
|
|
5812
6071
|
${body1TextStyle};
|
|
5813
6072
|
--font-family: var(--typography-family-mono);
|
|
5814
6073
|
`;
|
|
5815
|
-
var body2MonoTextStyle =
|
|
6074
|
+
var body2MonoTextStyle = css16`
|
|
5816
6075
|
${body2TextStyle};
|
|
5817
6076
|
--font-family: var(--typography-family-mono);
|
|
5818
6077
|
`;
|
|
5819
|
-
var body3MonoTextStyle =
|
|
6078
|
+
var body3MonoTextStyle = css16`
|
|
5820
6079
|
${body3TextStyle};
|
|
5821
6080
|
--font-family: var(--typography-family-mono);
|
|
5822
6081
|
`;
|
|
5823
|
-
var body4MonoTextStyle =
|
|
6082
|
+
var body4MonoTextStyle = css16`
|
|
5824
6083
|
${body4TextStyle};
|
|
5825
6084
|
--font-family: var(--typography-family-mono);
|
|
5826
6085
|
`;
|
|
@@ -5838,13 +6097,13 @@ var variantStyleMap2 = {
|
|
|
5838
6097
|
label3: label3TextStyle,
|
|
5839
6098
|
label4: label4TextStyle
|
|
5840
6099
|
};
|
|
5841
|
-
var highContrastProminenceStyle =
|
|
6100
|
+
var highContrastProminenceStyle = css16`
|
|
5842
6101
|
--text-color: var(--color-text-high-contrast);
|
|
5843
6102
|
`;
|
|
5844
|
-
var vibrantProminenceStyle =
|
|
6103
|
+
var vibrantProminenceStyle = css16`
|
|
5845
6104
|
--text-color: var(--color-text);
|
|
5846
6105
|
`;
|
|
5847
|
-
var secondaryProminenceStyle =
|
|
6106
|
+
var secondaryProminenceStyle = css16`
|
|
5848
6107
|
--text-color: var(--color-text-secondary);
|
|
5849
6108
|
`;
|
|
5850
6109
|
var prominenceMap = {
|
|
@@ -5852,8 +6111,8 @@ var prominenceMap = {
|
|
|
5852
6111
|
vibrant: vibrantProminenceStyle,
|
|
5853
6112
|
secondary: secondaryProminenceStyle
|
|
5854
6113
|
};
|
|
5855
|
-
var StyledText =
|
|
5856
|
-
${({ colorScheme }) => getColorScheme(colorScheme)};
|
|
6114
|
+
var StyledText = styled17.div`
|
|
6115
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
5857
6116
|
font-family: var(--font-family);
|
|
5858
6117
|
font-size: var(--font-size);
|
|
5859
6118
|
font-weight: var(--font-weight);
|
|
@@ -5861,22 +6120,22 @@ var StyledText = styled14.div`
|
|
|
5861
6120
|
color: var(--text-color);
|
|
5862
6121
|
font-style: normal;
|
|
5863
6122
|
margin: 0;
|
|
5864
|
-
${({ variant }) => variantStyleMap2[variant]}
|
|
5865
|
-
${({ prominence }) => prominenceMap[prominence]}
|
|
5866
|
-
${({ ellipsis }) => ellipsis && ellipsisStyle};
|
|
5867
|
-
${({ inline }) => inline &&
|
|
6123
|
+
${({ $variant }) => variantStyleMap2[$variant]}
|
|
6124
|
+
${({ $prominence }) => prominenceMap[$prominence]}
|
|
6125
|
+
${({ $ellipsis }) => $ellipsis && ellipsisStyle};
|
|
6126
|
+
${({ $inline }) => $inline && css16`
|
|
5868
6127
|
display: inline-block;
|
|
5869
6128
|
`}
|
|
5870
|
-
${({ disabled }) => disabled &&
|
|
6129
|
+
${({ $disabled }) => $disabled && css16`
|
|
5871
6130
|
--text-color: var(--color-text-disabled);
|
|
5872
6131
|
`}
|
|
5873
|
-
${({ preventUserSelect }) => preventUserSelect &&
|
|
6132
|
+
${({ $preventUserSelect }) => $preventUserSelect && css16`
|
|
5874
6133
|
user-select: none;
|
|
5875
6134
|
`}
|
|
5876
|
-
${({ align }) =>
|
|
5877
|
-
text-align: ${align};
|
|
6135
|
+
${({ $align }) => css16`
|
|
6136
|
+
text-align: ${$align};
|
|
5878
6137
|
`}
|
|
5879
|
-
${({ as }) => as === "p" &&
|
|
6138
|
+
${({ as }) => as === "p" && css16`
|
|
5880
6139
|
display: block;
|
|
5881
6140
|
`}
|
|
5882
6141
|
`;
|
|
@@ -5894,19 +6153,19 @@ var TextComponent = forwardRef7(
|
|
|
5894
6153
|
renderAs,
|
|
5895
6154
|
...otherProps
|
|
5896
6155
|
}, ref) => {
|
|
5897
|
-
return /* @__PURE__ */
|
|
6156
|
+
return /* @__PURE__ */ jsx171(
|
|
5898
6157
|
StyledText,
|
|
5899
6158
|
{
|
|
5900
6159
|
ref,
|
|
5901
|
-
align,
|
|
6160
|
+
$align: align,
|
|
6161
|
+
$colorScheme: colorScheme,
|
|
6162
|
+
$disabled: disabled,
|
|
6163
|
+
$ellipsis: ellipsis,
|
|
6164
|
+
$inline: inline,
|
|
6165
|
+
$preventUserSelect: preventUserSelect,
|
|
6166
|
+
$prominence: prominence,
|
|
6167
|
+
$variant: variant,
|
|
5902
6168
|
as: renderAs ?? DEFAULT_ELEMENT3,
|
|
5903
|
-
colorScheme,
|
|
5904
|
-
disabled,
|
|
5905
|
-
ellipsis,
|
|
5906
|
-
inline,
|
|
5907
|
-
preventUserSelect,
|
|
5908
|
-
prominence,
|
|
5909
|
-
variant,
|
|
5910
6169
|
...otherProps
|
|
5911
6170
|
}
|
|
5912
6171
|
);
|
|
@@ -5916,20 +6175,20 @@ TextComponent.displayName = "Text";
|
|
|
5916
6175
|
var Text = makePolymorphic(TextComponent);
|
|
5917
6176
|
|
|
5918
6177
|
// src/components/WistiaLogo/WistiaLogo.tsx
|
|
5919
|
-
import
|
|
6178
|
+
import styled18 from "styled-components";
|
|
5920
6179
|
import { isNotNil as isNotNil7 } from "@wistia/type-guards";
|
|
5921
|
-
import { jsx as
|
|
6180
|
+
import { jsx as jsx172, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
5922
6181
|
var renderBrandmark = (brandmarkColor, iconOnly) => {
|
|
5923
6182
|
if (iconOnly) {
|
|
5924
|
-
return /* @__PURE__ */
|
|
6183
|
+
return /* @__PURE__ */ jsx172("g", { fill: brandmarkColor, children: /* @__PURE__ */ jsx172("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" }) });
|
|
5925
6184
|
}
|
|
5926
|
-
return /* @__PURE__ */
|
|
6185
|
+
return /* @__PURE__ */ jsx172("g", { fill: brandmarkColor, children: /* @__PURE__ */ jsx172("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" }) });
|
|
5927
6186
|
};
|
|
5928
6187
|
var renderLogotype = (logotypeColor, iconOnly) => {
|
|
5929
6188
|
if (iconOnly) {
|
|
5930
6189
|
return null;
|
|
5931
6190
|
}
|
|
5932
|
-
return /* @__PURE__ */
|
|
6191
|
+
return /* @__PURE__ */ jsx172("g", { fill: logotypeColor, children: /* @__PURE__ */ jsx172("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" }) });
|
|
5933
6192
|
};
|
|
5934
6193
|
var computedViewBox = (iconOnly) => {
|
|
5935
6194
|
if (iconOnly) {
|
|
@@ -5937,7 +6196,7 @@ var computedViewBox = (iconOnly) => {
|
|
|
5937
6196
|
}
|
|
5938
6197
|
return "0 0 144 31.47";
|
|
5939
6198
|
};
|
|
5940
|
-
var WistiaLogoComponent =
|
|
6199
|
+
var WistiaLogoComponent = styled18.svg`
|
|
5941
6200
|
height: ${({ height }) => `${height}px`};
|
|
5942
6201
|
|
|
5943
6202
|
/* ensure it will always fit on mobile */
|
|
@@ -5946,7 +6205,7 @@ var WistiaLogoComponent = styled15.svg`
|
|
|
5946
6205
|
|
|
5947
6206
|
&:hover {
|
|
5948
6207
|
path {
|
|
5949
|
-
${({ hoverColor }) => hoverColor !== void 0 ? `fill: ${hoverColor}` : null};
|
|
6208
|
+
${({ $hoverColor }) => $hoverColor !== void 0 ? `fill: ${$hoverColor}` : null};
|
|
5950
6209
|
}
|
|
5951
6210
|
}
|
|
5952
6211
|
`;
|
|
@@ -5979,47 +6238,28 @@ var WistiaLogo = ({
|
|
|
5979
6238
|
};
|
|
5980
6239
|
const brandmarkColor = VARIANT_COLORS[variant].brandmark;
|
|
5981
6240
|
const logotypeColor = VARIANT_COLORS[variant].logotype;
|
|
5982
|
-
const Logo = /* @__PURE__ */
|
|
6241
|
+
const Logo = /* @__PURE__ */ jsxs7(
|
|
5983
6242
|
WistiaLogoComponent,
|
|
5984
6243
|
{
|
|
6244
|
+
$hoverColor: hoverColor,
|
|
5985
6245
|
height,
|
|
5986
|
-
hoverColor,
|
|
5987
6246
|
role: "img",
|
|
5988
6247
|
viewBox: computedViewBox(iconOnly),
|
|
5989
6248
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5990
6249
|
...otherProps,
|
|
5991
6250
|
children: [
|
|
5992
|
-
/* @__PURE__ */
|
|
5993
|
-
isNotNil7(description) ? /* @__PURE__ */
|
|
6251
|
+
/* @__PURE__ */ jsx172("title", { children: title }),
|
|
6252
|
+
isNotNil7(description) ? /* @__PURE__ */ jsx172("desc", { children: description }) : null,
|
|
5994
6253
|
renderBrandmark(brandmarkColor, iconOnly),
|
|
5995
6254
|
renderLogotype(logotypeColor, iconOnly)
|
|
5996
6255
|
]
|
|
5997
6256
|
}
|
|
5998
6257
|
);
|
|
5999
|
-
return href !== void 0 ? /* @__PURE__ */
|
|
6258
|
+
return href !== void 0 ? /* @__PURE__ */ jsx172("a", { href, children: Logo }) : Logo;
|
|
6000
6259
|
};
|
|
6001
6260
|
WistiaLogo.displayName = "WistiaLogo";
|
|
6002
|
-
|
|
6003
|
-
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
6004
|
-
import styled16 from "styled-components";
|
|
6005
|
-
import { jsx as jsx170 } from "react/jsx-runtime";
|
|
6006
|
-
var StyledColorSchemeWrapper = styled16.div`
|
|
6007
|
-
${({ colorScheme }) => getColorScheme(colorScheme)};
|
|
6008
|
-
`;
|
|
6009
|
-
var ColorSchemeWrapper = ({
|
|
6010
|
-
colorScheme,
|
|
6011
|
-
children,
|
|
6012
|
-
...otherProps
|
|
6013
|
-
}) => /* @__PURE__ */ jsx170(
|
|
6014
|
-
StyledColorSchemeWrapper,
|
|
6015
|
-
{
|
|
6016
|
-
colorScheme,
|
|
6017
|
-
...otherProps,
|
|
6018
|
-
children
|
|
6019
|
-
}
|
|
6020
|
-
);
|
|
6021
|
-
ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
|
|
6022
6261
|
export {
|
|
6262
|
+
Avatar,
|
|
6023
6263
|
Badge,
|
|
6024
6264
|
Box,
|
|
6025
6265
|
Button,
|
|
@@ -6030,6 +6270,7 @@ export {
|
|
|
6030
6270
|
Heading,
|
|
6031
6271
|
Icon,
|
|
6032
6272
|
IconButton,
|
|
6273
|
+
Label,
|
|
6033
6274
|
Link,
|
|
6034
6275
|
ScreenReaderOnly,
|
|
6035
6276
|
Stack,
|
|
@@ -6037,6 +6278,7 @@ export {
|
|
|
6037
6278
|
Tooltip,
|
|
6038
6279
|
UIProvider,
|
|
6039
6280
|
WistiaLogo,
|
|
6281
|
+
colorSchemeOptions,
|
|
6040
6282
|
copyToClipboard,
|
|
6041
6283
|
ellipsisFlexParentStyle,
|
|
6042
6284
|
ellipsisStyle,
|