@wistia/ui 0.0.10 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +896 -695
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +43 -1
- package/dist/index.d.ts +43 -1
- package/dist/index.mjs +795 -595
- package/dist/index.mjs.map +1 -1
- package/package.json +16 -16
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.0.
|
|
3
|
+
* @license @wistia/ui v0.0.12
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2024, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -748,7 +748,11 @@ 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);
|
|
753
|
+
--color-border-secondary: var(--gray-8);
|
|
754
|
+
--color-border-secondary-hover: var(--gray-10);
|
|
755
|
+
--color-border-secondary-active: var(--gray-11);
|
|
752
756
|
--color-icon: var(--gray-11);
|
|
753
757
|
--color-icon-on-fill: var(--gray-contrast);
|
|
754
758
|
--color-text: var(--gray-12);
|
|
@@ -771,6 +775,11 @@ var colorAliasTokens = css4`
|
|
|
771
775
|
--color-bg-surface-secondary-hover-error: var(--error-4);
|
|
772
776
|
--color-bg-surface-tertiary-error: var(--error-5);
|
|
773
777
|
--color-border-error: var(--error-6);
|
|
778
|
+
--color-border-hover-errror: var(--error-8);
|
|
779
|
+
--color-border-active-error: var(--error-9);
|
|
780
|
+
--color-border-secondary-error: var(--error-8);
|
|
781
|
+
--color-border-secondary-hover-error: var(--error-10);
|
|
782
|
+
--color-border-secondary-active-error: var(--error-11);
|
|
774
783
|
--color-icon-error: var(--error-11);
|
|
775
784
|
--color-icon-on-fill-error: var(--error-contrast);
|
|
776
785
|
--color-text-error: var(--error-11);
|
|
@@ -791,6 +800,11 @@ var colorAliasTokens = css4`
|
|
|
791
800
|
--color-bg-surface-secondary-info: var(--blue-3);
|
|
792
801
|
--color-bg-surface-tertiary-info: var(--blue-6);
|
|
793
802
|
--color-border-info: var(--blue-6);
|
|
803
|
+
--color-border-hover-info: var(--blue-8);
|
|
804
|
+
--color-border-active-info: var(--blue-9);
|
|
805
|
+
--color-border-secondary-info: var(--blue-8);
|
|
806
|
+
--color-border-secondary-hover-info: var(--blue-10);
|
|
807
|
+
--color-border-secondary-active-info: var(--blue-11);
|
|
794
808
|
--color-icon-info: var(--blue-11);
|
|
795
809
|
--color-icon-on-fill-info: var(--blue-contrast);
|
|
796
810
|
--color-text-high-contrast-info: var(--blue-12);
|
|
@@ -811,6 +825,11 @@ var colorAliasTokens = css4`
|
|
|
811
825
|
--color-bg-surface-success: var(--success-surface);
|
|
812
826
|
--color-bg-surface-tertiary-success: var(--success-5);
|
|
813
827
|
--color-border-success: var(--success-6);
|
|
828
|
+
--color-border-hover-success: var(--success-8);
|
|
829
|
+
--color-border-active-success: var(--success-9);
|
|
830
|
+
--color-border-secondary-success: var(--success-8);
|
|
831
|
+
--color-border-secondary-hover-success: var(--success-10);
|
|
832
|
+
--color-border-secondary-active-success: var(--success-11);
|
|
814
833
|
--color-icon-on-fill-success: var(--success-contrast);
|
|
815
834
|
--color-icon-success: var(--success-11);
|
|
816
835
|
--color-text-high-contrast-success: var(--success-12);
|
|
@@ -831,6 +850,11 @@ var colorAliasTokens = css4`
|
|
|
831
850
|
--color-bg-surface-tertiary-warning: var(--warning-5);
|
|
832
851
|
--color-bg-surface-warning: var(--warning-surface);
|
|
833
852
|
--color-border-warning: var(--warning-6);
|
|
853
|
+
--color-border-hover-warning: var(--warning-8);
|
|
854
|
+
--color-border-active-warning: var(--warning-9);
|
|
855
|
+
--color-border-secondary-warning: var(--warning-8);
|
|
856
|
+
--color-border-secondary-hover-warning: var(--warning-10);
|
|
857
|
+
--color-border-secondary-active-warning: var(--warning-11);
|
|
834
858
|
--color-icon-on-fill-warning: var(--warning-contrast);
|
|
835
859
|
--color-icon-warning: var(--warning-11);
|
|
836
860
|
--color-text-high-contrast-warning: var(--warning-12);
|
|
@@ -853,6 +877,11 @@ var colorAliasTokens = css4`
|
|
|
853
877
|
--color-bg-surface-secondary-hover-blue: var(--blue-4);
|
|
854
878
|
--color-bg-surface-tertiary-blue: var(--blue-5);
|
|
855
879
|
--color-border-blue: var(--blue-6);
|
|
880
|
+
--color-border-hover-blue: var(--blue-8);
|
|
881
|
+
--color-border-active-blue: var(--blue-9);
|
|
882
|
+
--color-border-secondary-blue: var(--blue-8);
|
|
883
|
+
--color-border-secondary-hover-blue: var(--blue-10);
|
|
884
|
+
--color-border-secondary-active-blue: var(--blue-11);
|
|
856
885
|
--color-icon-blue: var(--blue-11);
|
|
857
886
|
--color-icon-on-fill-blue: var(--blue-contrast);
|
|
858
887
|
--color-text-blue: var(--blue-11);
|
|
@@ -873,6 +902,11 @@ var colorAliasTokens = css4`
|
|
|
873
902
|
--color-bg-surface-secondary-hover-green: var(--green-4);
|
|
874
903
|
--color-bg-surface-tertiary-green: var(--green-5);
|
|
875
904
|
--color-border-green: var(--green-6);
|
|
905
|
+
--color-border-hover-green: var(--green-8);
|
|
906
|
+
--color-border-active-green: var(--green-9);
|
|
907
|
+
--color-border-secondary-green: var(--green-8);
|
|
908
|
+
--color-border-secondary-hover-green: var(--green-10);
|
|
909
|
+
--color-border-secondary-active-green: var(--green-11);
|
|
876
910
|
--color-icon-green: var(--green-11);
|
|
877
911
|
--color-icon-on-fill-green: var(--green-contrast);
|
|
878
912
|
--color-text-green: var(--green-11);
|
|
@@ -893,6 +927,11 @@ var colorAliasTokens = css4`
|
|
|
893
927
|
--color-bg-surface-secondary-orange: var(--orange-3);
|
|
894
928
|
--color-bg-surface-tertiary-orange: var(--orange-5);
|
|
895
929
|
--color-border-orange: var(--orange-6);
|
|
930
|
+
--color-border-hover-orange: var(--orange-8);
|
|
931
|
+
--color-border-active-orange: var(--orange-9);
|
|
932
|
+
--color-border-secondary-orange: var(--orange-8);
|
|
933
|
+
--color-border-secondary-hover-orange: var(--orange-10);
|
|
934
|
+
--color-border-secondary-active-orange: var(--orange-11);
|
|
896
935
|
--color-icon-on-fill-orange: var(--orange-contrast);
|
|
897
936
|
--color-icon-orange: var(--orange-11);
|
|
898
937
|
--color-text-high-contrast-orange: var(--orange-12);
|
|
@@ -913,6 +952,11 @@ var colorAliasTokens = css4`
|
|
|
913
952
|
--color-bg-surface-secondary-pink: var(--pink-3);
|
|
914
953
|
--color-bg-surface-tertiary-pink: var(--pink-5);
|
|
915
954
|
--color-border-pink: var(--pink-6);
|
|
955
|
+
--color-border-hover-pink: var(--pink-8);
|
|
956
|
+
--color-border-active-pink: var(--pink-9);
|
|
957
|
+
--color-border-secondary-pink: var(--pink-8);
|
|
958
|
+
--color-border-secondary-hover-pink: var(--pink-10);
|
|
959
|
+
--color-border-secondary-active-pink: var(--pink-11);
|
|
916
960
|
--color-icon-on-fill-pink: var(--pink-contrast);
|
|
917
961
|
--color-icon-pink: var(--pink-11);
|
|
918
962
|
--color-text-high-contrast-pink: var(--pink-12);
|
|
@@ -933,6 +977,11 @@ var colorAliasTokens = css4`
|
|
|
933
977
|
--color-bg-surface-secondary-purple: var(--purple-3);
|
|
934
978
|
--color-bg-surface-tertiary-purple: var(--purple-5);
|
|
935
979
|
--color-border-purple: var(--purple-6);
|
|
980
|
+
--color-border-hover-purple: var(--purple-8);
|
|
981
|
+
--color-border-active-purple: var(--purple-9);
|
|
982
|
+
--color-border-secondary-purple: var(--purple-8);
|
|
983
|
+
--color-border-secondary-hover-purple: var(--purple-10);
|
|
984
|
+
--color-border-secondary-active-purple: var(--purple-11);
|
|
936
985
|
--color-icon-on-fill-purple: var(--purple-contrast);
|
|
937
986
|
--color-icon-purple: var(--purple-11);
|
|
938
987
|
--color-text-high-contrast-purple: var(--purple-12);
|
|
@@ -953,6 +1002,11 @@ var colorAliasTokens = css4`
|
|
|
953
1002
|
--color-bg-surface-tertiary-yellow: var(--yellow-5);
|
|
954
1003
|
--color-bg-surface-yellow: var(--yellow-surface);
|
|
955
1004
|
--color-border-yellow: var(--yellow-6);
|
|
1005
|
+
--color-border-hover-yellow: var(--yellow-8);
|
|
1006
|
+
--color-border-active-yellow: var(--yellow-9);
|
|
1007
|
+
--color-border-secondary-yellow: var(--yellow-8);
|
|
1008
|
+
--color-border-secondary-hover-yellow: var(--yellow-10);
|
|
1009
|
+
--color-border-secondary-active-yellow: var(--yellow-11);
|
|
956
1010
|
--color-icon-on-fill-yellow: var(--yellow-contrast);
|
|
957
1011
|
--color-icon-yellow: var(--yellow-11);
|
|
958
1012
|
--color-text-high-contrast-yellow: var(--yellow-12);
|
|
@@ -984,6 +1038,9 @@ var colorAliasTokens = css4`
|
|
|
984
1038
|
--color-bg-surface-selected-hover: var(--blue-4);
|
|
985
1039
|
--color-icon-selected: var(--blue-9);
|
|
986
1040
|
--color-text-selected: var(--blue-9);
|
|
1041
|
+
--color-border-selected: var(--blue-6);
|
|
1042
|
+
--color-border-hover-selected: var(--blue-8);
|
|
1043
|
+
--color-border-active-selected: var(--blue-9);
|
|
987
1044
|
`;
|
|
988
1045
|
|
|
989
1046
|
// src/css/designTokens/borderRadius.tsx
|
|
@@ -1367,10 +1424,13 @@ var useAriaLive = () => {
|
|
|
1367
1424
|
return context;
|
|
1368
1425
|
};
|
|
1369
1426
|
|
|
1370
|
-
// src/components/
|
|
1371
|
-
import {
|
|
1427
|
+
// src/components/Avatar/Avatar.tsx
|
|
1428
|
+
import { useState as useState3, useMemo as useMemo2 } from "react";
|
|
1429
|
+
import { isNil as isNil4 } from "@wistia/type-guards";
|
|
1430
|
+
import styled2 from "styled-components";
|
|
1431
|
+
|
|
1432
|
+
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
1372
1433
|
import styled from "styled-components";
|
|
1373
|
-
import { isNotNil } from "@wistia/type-guards";
|
|
1374
1434
|
|
|
1375
1435
|
// src/private/helpers/getColorScheme/getColorScheme.ts
|
|
1376
1436
|
import { css as css9 } from "styled-components";
|
|
@@ -1391,6 +1451,11 @@ var colorSchemeSchema = [
|
|
|
1391
1451
|
{ token: "text-secondary", step: "11" },
|
|
1392
1452
|
{ token: "text-on-fill", step: "contrast" },
|
|
1393
1453
|
{ token: "border", step: "6" },
|
|
1454
|
+
{ token: "border-hover", step: "8" },
|
|
1455
|
+
{ token: "border-active", step: "9" },
|
|
1456
|
+
{ token: "border-secondary", step: "8" },
|
|
1457
|
+
{ token: "border-secondary-hover", step: "10" },
|
|
1458
|
+
{ token: "border-secondary-active", step: "11" },
|
|
1394
1459
|
{ token: "icon", step: "11" },
|
|
1395
1460
|
{ token: "icon-on-fill", step: "contrast" }
|
|
1396
1461
|
];
|
|
@@ -1410,6 +1475,11 @@ var defaultScheme = css9`
|
|
|
1410
1475
|
--color-text-secondary: var(--gray-11);
|
|
1411
1476
|
--color-text-on-fill: var(--gray-contrast);
|
|
1412
1477
|
--color-border: var(--gray-6);
|
|
1478
|
+
--color-border-hover: var(--gray-8);
|
|
1479
|
+
--color-border-active: var(--gray-9);
|
|
1480
|
+
--color-border-secondary: var(--gray-8);
|
|
1481
|
+
--color-border-secondary-hover: var(--gray-10);
|
|
1482
|
+
--color-border-secondary-active: var(--gray-11);
|
|
1413
1483
|
--color-icon: var(--gray-11);
|
|
1414
1484
|
--color-icon-on-fill: var(--gray-contrast);
|
|
1415
1485
|
`;
|
|
@@ -1427,9 +1497,172 @@ var getColorScheme = (colorScheme) => {
|
|
|
1427
1497
|
`;
|
|
1428
1498
|
};
|
|
1429
1499
|
|
|
1500
|
+
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
1501
|
+
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
1502
|
+
var colorSchemeOptions = [
|
|
1503
|
+
"inherit",
|
|
1504
|
+
"default",
|
|
1505
|
+
"info",
|
|
1506
|
+
"success",
|
|
1507
|
+
"warning",
|
|
1508
|
+
"error",
|
|
1509
|
+
"blue",
|
|
1510
|
+
"green",
|
|
1511
|
+
"orange",
|
|
1512
|
+
"pink",
|
|
1513
|
+
"purple",
|
|
1514
|
+
"yellow"
|
|
1515
|
+
];
|
|
1516
|
+
var StyledColorSchemeWrapper = styled.div`
|
|
1517
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1518
|
+
`;
|
|
1519
|
+
var ColorSchemeWrapper = ({
|
|
1520
|
+
colorScheme,
|
|
1521
|
+
children,
|
|
1522
|
+
...otherProps
|
|
1523
|
+
}) => /* @__PURE__ */ jsx3(
|
|
1524
|
+
StyledColorSchemeWrapper,
|
|
1525
|
+
{
|
|
1526
|
+
$colorScheme: colorScheme,
|
|
1527
|
+
...otherProps,
|
|
1528
|
+
children
|
|
1529
|
+
}
|
|
1530
|
+
);
|
|
1531
|
+
ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
|
|
1532
|
+
|
|
1533
|
+
// src/components/Avatar/formatNameForDisplay.tsx
|
|
1534
|
+
import { isNil as isNil3, isString, isEmptyString } from "@wistia/type-guards";
|
|
1535
|
+
var containsEmojiCharacter = (char) => {
|
|
1536
|
+
const emojiRegex = /<a?:.+?:\d{18}>|\p{Extended_Pictographic}/gu;
|
|
1537
|
+
return emojiRegex.test(char);
|
|
1538
|
+
};
|
|
1539
|
+
var formatNameForDisplay = (name) => {
|
|
1540
|
+
if (isNil3(name) || !isString(name) || isEmptyString(name) || containsEmojiCharacter(name)) {
|
|
1541
|
+
return "U";
|
|
1542
|
+
}
|
|
1543
|
+
const firstChar = name.trim().substring(0, 1);
|
|
1544
|
+
return firstChar.toUpperCase();
|
|
1545
|
+
};
|
|
1546
|
+
|
|
1547
|
+
// src/components/Avatar/Avatar.tsx
|
|
1548
|
+
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
1549
|
+
var AvatarImage = styled2.img`
|
|
1550
|
+
align-items: center;
|
|
1551
|
+
background-color: white;
|
|
1552
|
+
border-radius: 50%;
|
|
1553
|
+
display: flex;
|
|
1554
|
+
height: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1555
|
+
justify-content: center;
|
|
1556
|
+
object-fit: cover;
|
|
1557
|
+
overflow: hidden;
|
|
1558
|
+
pointer-events: none;
|
|
1559
|
+
user-select: none;
|
|
1560
|
+
width: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1561
|
+
|
|
1562
|
+
a:hover & {
|
|
1563
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 25%);
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
a:active & {
|
|
1567
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 50%);
|
|
1568
|
+
}
|
|
1569
|
+
`;
|
|
1570
|
+
var avatarSizeMap = {
|
|
1571
|
+
sm: 16,
|
|
1572
|
+
md: 24,
|
|
1573
|
+
lg: 32
|
|
1574
|
+
};
|
|
1575
|
+
var fontSizeScaleMultiplier = 0.55;
|
|
1576
|
+
var InitialsContainer = styled2.div`
|
|
1577
|
+
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1578
|
+
align-items: center;
|
|
1579
|
+
background-color: var(--color-bg-fill);
|
|
1580
|
+
border: 1px solid var(--color-border);
|
|
1581
|
+
border-radius: 50%;
|
|
1582
|
+
color: var(--color-text-on-fill);
|
|
1583
|
+
display: flex;
|
|
1584
|
+
font-size: ${({ $heightAndWidth }) => $heightAndWidth * fontSizeScaleMultiplier}px;
|
|
1585
|
+
height: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1586
|
+
justify-content: center;
|
|
1587
|
+
overflow: hidden;
|
|
1588
|
+
width: ${({ $heightAndWidth }) => $heightAndWidth}px;
|
|
1589
|
+
|
|
1590
|
+
a:hover & {
|
|
1591
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 25%);
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
a:active & {
|
|
1595
|
+
box-shadow: inset 0 0 0 2px rgb(0 0 0 / 50%);
|
|
1596
|
+
}
|
|
1597
|
+
`;
|
|
1598
|
+
var AvatarWrapper = styled2.div`
|
|
1599
|
+
max-height: ${({ $maxHeight }) => $maxHeight}px;
|
|
1600
|
+
`;
|
|
1601
|
+
var chooseColorScheme = (name) => {
|
|
1602
|
+
if (isNil4(name) || name === "Anonymous") {
|
|
1603
|
+
return "default";
|
|
1604
|
+
}
|
|
1605
|
+
const filteredColors = colorSchemeOptions.filter(
|
|
1606
|
+
(color) => color !== "inherit" && color !== "default"
|
|
1607
|
+
);
|
|
1608
|
+
const multiplier = 31;
|
|
1609
|
+
const hashCode = (str) => Array.from(str).reduce((sum, char) => Math.imul(multiplier, sum) + char.charCodeAt(0) | 0, 0);
|
|
1610
|
+
const index = Math.abs(hashCode(name)) % filteredColors.length;
|
|
1611
|
+
return filteredColors[index] ?? "default";
|
|
1612
|
+
};
|
|
1613
|
+
var Avatar = ({
|
|
1614
|
+
imageUrl,
|
|
1615
|
+
heightAndWidth,
|
|
1616
|
+
name,
|
|
1617
|
+
size = "md",
|
|
1618
|
+
onImageLoad,
|
|
1619
|
+
...otherProps
|
|
1620
|
+
}) => {
|
|
1621
|
+
const [imageLoadState, setImageLoadState] = useState3(null);
|
|
1622
|
+
const handleImageLoad = () => {
|
|
1623
|
+
setImageLoadState("loaded");
|
|
1624
|
+
onImageLoad?.("image");
|
|
1625
|
+
};
|
|
1626
|
+
const handleImageLoadError = () => {
|
|
1627
|
+
setImageLoadState("error");
|
|
1628
|
+
onImageLoad?.("initials");
|
|
1629
|
+
};
|
|
1630
|
+
const avatarSize = heightAndWidth ?? avatarSizeMap[size];
|
|
1631
|
+
const avatarColor = useMemo2(() => chooseColorScheme(name), [name]);
|
|
1632
|
+
const showInitials = isNil4(imageUrl) || imageLoadState === "error";
|
|
1633
|
+
return /* @__PURE__ */ jsx4(
|
|
1634
|
+
AvatarWrapper,
|
|
1635
|
+
{
|
|
1636
|
+
...otherProps,
|
|
1637
|
+
$maxHeight: avatarSize,
|
|
1638
|
+
children: showInitials ? /* @__PURE__ */ jsx4(
|
|
1639
|
+
InitialsContainer,
|
|
1640
|
+
{
|
|
1641
|
+
$colorScheme: avatarColor,
|
|
1642
|
+
$heightAndWidth: avatarSize,
|
|
1643
|
+
children: formatNameForDisplay(name)
|
|
1644
|
+
}
|
|
1645
|
+
) : /* @__PURE__ */ jsx4(
|
|
1646
|
+
AvatarImage,
|
|
1647
|
+
{
|
|
1648
|
+
$heightAndWidth: avatarSize,
|
|
1649
|
+
alt: name ?? "Unavailable",
|
|
1650
|
+
onError: handleImageLoadError,
|
|
1651
|
+
onLoad: handleImageLoad,
|
|
1652
|
+
src: imageUrl
|
|
1653
|
+
}
|
|
1654
|
+
)
|
|
1655
|
+
}
|
|
1656
|
+
);
|
|
1657
|
+
};
|
|
1658
|
+
Avatar.displayName = "Avatar";
|
|
1659
|
+
|
|
1430
1660
|
// src/components/Badge/Badge.tsx
|
|
1431
|
-
import {
|
|
1432
|
-
|
|
1661
|
+
import { forwardRef } from "react";
|
|
1662
|
+
import styled3 from "styled-components";
|
|
1663
|
+
import { isNotNil } from "@wistia/type-guards";
|
|
1664
|
+
import { jsx as jsx5, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
1665
|
+
var StyledBadge = styled3.div`
|
|
1433
1666
|
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
1434
1667
|
align-items: center;
|
|
1435
1668
|
background-color: var(--color-bg-surface-secondary);
|
|
@@ -1461,7 +1694,7 @@ var Badge = forwardRef(
|
|
|
1461
1694
|
$hasIcon: hasIcon,
|
|
1462
1695
|
children: [
|
|
1463
1696
|
hasIcon ? icon : null,
|
|
1464
|
-
/* @__PURE__ */
|
|
1697
|
+
/* @__PURE__ */ jsx5("span", { children: label })
|
|
1465
1698
|
]
|
|
1466
1699
|
}
|
|
1467
1700
|
);
|
|
@@ -1471,9 +1704,9 @@ Badge.displayName = "Badge";
|
|
|
1471
1704
|
|
|
1472
1705
|
// src/components/Box/Box.tsx
|
|
1473
1706
|
import { Children, cloneElement } from "react";
|
|
1474
|
-
import
|
|
1475
|
-
import { isNotNil as isNotNil2, isNil as
|
|
1476
|
-
import { jsx as
|
|
1707
|
+
import styled4 from "styled-components";
|
|
1708
|
+
import { isNotNil as isNotNil2, isNil as isNil5, isRecord } from "@wistia/type-guards";
|
|
1709
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
1477
1710
|
var isDev = process.env["NODE_ENV"] === "development";
|
|
1478
1711
|
var PROPS_FOR_FLEX_CHILDREN = /* @__PURE__ */ new Set(["alignSelf", "basis", "grow", "order", "shrink"]);
|
|
1479
1712
|
var getGapStyle = (gap) => {
|
|
@@ -1515,7 +1748,7 @@ var getFillViewportStyle = (fillViewport) => {
|
|
|
1515
1748
|
}
|
|
1516
1749
|
return void 0;
|
|
1517
1750
|
};
|
|
1518
|
-
var BoxComponent =
|
|
1751
|
+
var BoxComponent = styled4.div`
|
|
1519
1752
|
align-content: ${({ $alignContent }) => $alignContent};
|
|
1520
1753
|
align-items: ${({ $alignItems }) => $alignItems};
|
|
1521
1754
|
align-self: ${({ $alignSelf }) => $alignSelf ?? null};
|
|
@@ -1537,7 +1770,7 @@ var wrapChildren = (children) => {
|
|
|
1537
1770
|
if (isNotNil2(children)) {
|
|
1538
1771
|
if (typeof children === "object" && isDev) {
|
|
1539
1772
|
return Children.map(children, (child) => {
|
|
1540
|
-
if (
|
|
1773
|
+
if (isNil5(child)) return null;
|
|
1541
1774
|
const elementParams = {};
|
|
1542
1775
|
if (child.type?.displayName === "Box" || child.type?.displayName === "Box_UI") {
|
|
1543
1776
|
elementParams.hasBoxParent = true;
|
|
@@ -1570,7 +1803,7 @@ var Box = ({
|
|
|
1570
1803
|
}
|
|
1571
1804
|
});
|
|
1572
1805
|
}
|
|
1573
|
-
return /* @__PURE__ */
|
|
1806
|
+
return /* @__PURE__ */ jsx6(
|
|
1574
1807
|
BoxComponent,
|
|
1575
1808
|
{
|
|
1576
1809
|
$alignContent: alignContent,
|
|
@@ -1592,7 +1825,7 @@ Box.displayName = "Box";
|
|
|
1592
1825
|
|
|
1593
1826
|
// src/components/Button/Button.tsx
|
|
1594
1827
|
import { forwardRef as forwardRef3 } from "react";
|
|
1595
|
-
import
|
|
1828
|
+
import styled7 from "styled-components";
|
|
1596
1829
|
import { isNotNil as isNotNil4, isNotUndefined as isNotUndefined3 } from "@wistia/type-guards";
|
|
1597
1830
|
|
|
1598
1831
|
// src/css/buttonResetCss.tsx
|
|
@@ -1798,18 +2031,18 @@ var buttonSizeStyles = {
|
|
|
1798
2031
|
};
|
|
1799
2032
|
|
|
1800
2033
|
// src/components/Icon/Icon.tsx
|
|
1801
|
-
import { isNil as
|
|
1802
|
-
import
|
|
2034
|
+
import { isNil as isNil6 } from "@wistia/type-guards";
|
|
2035
|
+
import styled5 from "styled-components";
|
|
1803
2036
|
|
|
1804
2037
|
// src/components/Icon/icons/AbTestIcon.tsx
|
|
1805
|
-
import { jsx as
|
|
1806
|
-
var AbTestIcon = (props) => /* @__PURE__ */
|
|
2038
|
+
import { jsx as jsx7 } from "react/jsx-runtime";
|
|
2039
|
+
var AbTestIcon = (props) => /* @__PURE__ */ jsx7(
|
|
1807
2040
|
"svg",
|
|
1808
2041
|
{
|
|
1809
2042
|
...props,
|
|
1810
2043
|
viewBox: "0 0 24 24",
|
|
1811
2044
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1812
|
-
children: /* @__PURE__ */
|
|
2045
|
+
children: /* @__PURE__ */ jsx7(
|
|
1813
2046
|
"path",
|
|
1814
2047
|
{
|
|
1815
2048
|
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",
|
|
@@ -1820,14 +2053,14 @@ var AbTestIcon = (props) => /* @__PURE__ */ jsx5(
|
|
|
1820
2053
|
);
|
|
1821
2054
|
|
|
1822
2055
|
// src/components/Icon/icons/AccessibilityIcon.tsx
|
|
1823
|
-
import { jsx as
|
|
1824
|
-
var AccessibilityIcon = (props) => /* @__PURE__ */
|
|
2056
|
+
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
2057
|
+
var AccessibilityIcon = (props) => /* @__PURE__ */ jsx8(
|
|
1825
2058
|
"svg",
|
|
1826
2059
|
{
|
|
1827
2060
|
...props,
|
|
1828
2061
|
viewBox: "0 0 24 24",
|
|
1829
2062
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1830
|
-
children: /* @__PURE__ */
|
|
2063
|
+
children: /* @__PURE__ */ jsx8(
|
|
1831
2064
|
"path",
|
|
1832
2065
|
{
|
|
1833
2066
|
clipRule: "evenodd",
|
|
@@ -1840,14 +2073,14 @@ var AccessibilityIcon = (props) => /* @__PURE__ */ jsx6(
|
|
|
1840
2073
|
);
|
|
1841
2074
|
|
|
1842
2075
|
// src/components/Icon/icons/ActivityIcon.tsx
|
|
1843
|
-
import { jsx as
|
|
1844
|
-
var ActivityIcon = (props) => /* @__PURE__ */
|
|
2076
|
+
import { jsx as jsx9 } from "react/jsx-runtime";
|
|
2077
|
+
var ActivityIcon = (props) => /* @__PURE__ */ jsx9(
|
|
1845
2078
|
"svg",
|
|
1846
2079
|
{
|
|
1847
2080
|
...props,
|
|
1848
2081
|
viewBox: "0 0 24 24",
|
|
1849
2082
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1850
|
-
children: /* @__PURE__ */
|
|
2083
|
+
children: /* @__PURE__ */ jsx9(
|
|
1851
2084
|
"path",
|
|
1852
2085
|
{
|
|
1853
2086
|
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",
|
|
@@ -1858,14 +2091,14 @@ var ActivityIcon = (props) => /* @__PURE__ */ jsx7(
|
|
|
1858
2091
|
);
|
|
1859
2092
|
|
|
1860
2093
|
// src/components/Icon/icons/AddMediaIcon.tsx
|
|
1861
|
-
import { jsx as
|
|
1862
|
-
var AddMediaIcon = (props) => /* @__PURE__ */
|
|
2094
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
2095
|
+
var AddMediaIcon = (props) => /* @__PURE__ */ jsx10(
|
|
1863
2096
|
"svg",
|
|
1864
2097
|
{
|
|
1865
2098
|
...props,
|
|
1866
2099
|
viewBox: "0 0 24 24",
|
|
1867
2100
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1868
|
-
children: /* @__PURE__ */
|
|
2101
|
+
children: /* @__PURE__ */ jsx10(
|
|
1869
2102
|
"path",
|
|
1870
2103
|
{
|
|
1871
2104
|
clipRule: "evenodd",
|
|
@@ -1878,14 +2111,14 @@ var AddMediaIcon = (props) => /* @__PURE__ */ jsx8(
|
|
|
1878
2111
|
);
|
|
1879
2112
|
|
|
1880
2113
|
// src/components/Icon/icons/AnnotationLinkIcon.tsx
|
|
1881
|
-
import { jsx as
|
|
1882
|
-
var AnnotationLinkIcon = (props) => /* @__PURE__ */
|
|
2114
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
2115
|
+
var AnnotationLinkIcon = (props) => /* @__PURE__ */ jsx11(
|
|
1883
2116
|
"svg",
|
|
1884
2117
|
{
|
|
1885
2118
|
...props,
|
|
1886
2119
|
viewBox: "0 0 24 24",
|
|
1887
2120
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1888
|
-
children: /* @__PURE__ */
|
|
2121
|
+
children: /* @__PURE__ */ jsx11(
|
|
1889
2122
|
"path",
|
|
1890
2123
|
{
|
|
1891
2124
|
clipRule: "evenodd",
|
|
@@ -1898,14 +2131,14 @@ var AnnotationLinkIcon = (props) => /* @__PURE__ */ jsx9(
|
|
|
1898
2131
|
);
|
|
1899
2132
|
|
|
1900
2133
|
// src/components/Icon/icons/AppearanceIcon.tsx
|
|
1901
|
-
import { jsx as
|
|
1902
|
-
var AppearanceIcon = (props) => /* @__PURE__ */
|
|
2134
|
+
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
2135
|
+
var AppearanceIcon = (props) => /* @__PURE__ */ jsx12(
|
|
1903
2136
|
"svg",
|
|
1904
2137
|
{
|
|
1905
2138
|
...props,
|
|
1906
2139
|
viewBox: "0 0 24 24",
|
|
1907
2140
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1908
|
-
children: /* @__PURE__ */
|
|
2141
|
+
children: /* @__PURE__ */ jsx12(
|
|
1909
2142
|
"path",
|
|
1910
2143
|
{
|
|
1911
2144
|
clipRule: "evenodd",
|
|
@@ -1918,14 +2151,14 @@ var AppearanceIcon = (props) => /* @__PURE__ */ jsx10(
|
|
|
1918
2151
|
);
|
|
1919
2152
|
|
|
1920
2153
|
// src/components/Icon/icons/ArchiveIcon.tsx
|
|
1921
|
-
import { jsx as
|
|
1922
|
-
var ArchiveIcon = (props) => /* @__PURE__ */
|
|
2154
|
+
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
2155
|
+
var ArchiveIcon = (props) => /* @__PURE__ */ jsx13(
|
|
1923
2156
|
"svg",
|
|
1924
2157
|
{
|
|
1925
2158
|
...props,
|
|
1926
2159
|
viewBox: "0 0 24 24",
|
|
1927
2160
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1928
|
-
children: /* @__PURE__ */
|
|
2161
|
+
children: /* @__PURE__ */ jsx13(
|
|
1929
2162
|
"path",
|
|
1930
2163
|
{
|
|
1931
2164
|
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",
|
|
@@ -1936,14 +2169,14 @@ var ArchiveIcon = (props) => /* @__PURE__ */ jsx11(
|
|
|
1936
2169
|
);
|
|
1937
2170
|
|
|
1938
2171
|
// src/components/Icon/icons/ArrowDownIcon.tsx
|
|
1939
|
-
import { jsx as
|
|
1940
|
-
var ArrowDownIcon = (props) => /* @__PURE__ */
|
|
2172
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
2173
|
+
var ArrowDownIcon = (props) => /* @__PURE__ */ jsx14(
|
|
1941
2174
|
"svg",
|
|
1942
2175
|
{
|
|
1943
2176
|
...props,
|
|
1944
2177
|
viewBox: "0 0 24 24",
|
|
1945
2178
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1946
|
-
children: /* @__PURE__ */
|
|
2179
|
+
children: /* @__PURE__ */ jsx14(
|
|
1947
2180
|
"path",
|
|
1948
2181
|
{
|
|
1949
2182
|
clipRule: "evenodd",
|
|
@@ -1956,14 +2189,14 @@ var ArrowDownIcon = (props) => /* @__PURE__ */ jsx12(
|
|
|
1956
2189
|
);
|
|
1957
2190
|
|
|
1958
2191
|
// src/components/Icon/icons/ArrowLeftIcon.tsx
|
|
1959
|
-
import { jsx as
|
|
1960
|
-
var ArrowLeftIcon = (props) => /* @__PURE__ */
|
|
2192
|
+
import { jsx as jsx15 } from "react/jsx-runtime";
|
|
2193
|
+
var ArrowLeftIcon = (props) => /* @__PURE__ */ jsx15(
|
|
1961
2194
|
"svg",
|
|
1962
2195
|
{
|
|
1963
2196
|
...props,
|
|
1964
2197
|
viewBox: "0 0 24 24",
|
|
1965
2198
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1966
|
-
children: /* @__PURE__ */
|
|
2199
|
+
children: /* @__PURE__ */ jsx15(
|
|
1967
2200
|
"path",
|
|
1968
2201
|
{
|
|
1969
2202
|
clipRule: "evenodd",
|
|
@@ -1976,14 +2209,14 @@ var ArrowLeftIcon = (props) => /* @__PURE__ */ jsx13(
|
|
|
1976
2209
|
);
|
|
1977
2210
|
|
|
1978
2211
|
// src/components/Icon/icons/ArrowRightIcon.tsx
|
|
1979
|
-
import { jsx as
|
|
1980
|
-
var ArrowRightIcon = (props) => /* @__PURE__ */
|
|
2212
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
2213
|
+
var ArrowRightIcon = (props) => /* @__PURE__ */ jsx16(
|
|
1981
2214
|
"svg",
|
|
1982
2215
|
{
|
|
1983
2216
|
...props,
|
|
1984
2217
|
viewBox: "0 0 24 24",
|
|
1985
2218
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1986
|
-
children: /* @__PURE__ */
|
|
2219
|
+
children: /* @__PURE__ */ jsx16(
|
|
1987
2220
|
"path",
|
|
1988
2221
|
{
|
|
1989
2222
|
clipRule: "evenodd",
|
|
@@ -1996,14 +2229,14 @@ var ArrowRightIcon = (props) => /* @__PURE__ */ jsx14(
|
|
|
1996
2229
|
);
|
|
1997
2230
|
|
|
1998
2231
|
// src/components/Icon/icons/ArrowUpIcon.tsx
|
|
1999
|
-
import { jsx as
|
|
2000
|
-
var ArrowUpIcon = (props) => /* @__PURE__ */
|
|
2232
|
+
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
2233
|
+
var ArrowUpIcon = (props) => /* @__PURE__ */ jsx17(
|
|
2001
2234
|
"svg",
|
|
2002
2235
|
{
|
|
2003
2236
|
...props,
|
|
2004
2237
|
viewBox: "0 0 24 24",
|
|
2005
2238
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2006
|
-
children: /* @__PURE__ */
|
|
2239
|
+
children: /* @__PURE__ */ jsx17(
|
|
2007
2240
|
"path",
|
|
2008
2241
|
{
|
|
2009
2242
|
clipRule: "evenodd",
|
|
@@ -2016,14 +2249,14 @@ var ArrowUpIcon = (props) => /* @__PURE__ */ jsx15(
|
|
|
2016
2249
|
);
|
|
2017
2250
|
|
|
2018
2251
|
// src/components/Icon/icons/ArrowUpRightIcon.tsx
|
|
2019
|
-
import { jsx as
|
|
2020
|
-
var ArrowUpRightIcon = (props) => /* @__PURE__ */
|
|
2252
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
2253
|
+
var ArrowUpRightIcon = (props) => /* @__PURE__ */ jsx18(
|
|
2021
2254
|
"svg",
|
|
2022
2255
|
{
|
|
2023
2256
|
...props,
|
|
2024
2257
|
viewBox: "0 0 24 24",
|
|
2025
2258
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2026
|
-
children: /* @__PURE__ */
|
|
2259
|
+
children: /* @__PURE__ */ jsx18(
|
|
2027
2260
|
"path",
|
|
2028
2261
|
{
|
|
2029
2262
|
clipRule: "evenodd",
|
|
@@ -2036,14 +2269,14 @@ var ArrowUpRightIcon = (props) => /* @__PURE__ */ jsx16(
|
|
|
2036
2269
|
);
|
|
2037
2270
|
|
|
2038
2271
|
// src/components/Icon/icons/AsteriskIcon.tsx
|
|
2039
|
-
import { jsx as
|
|
2040
|
-
var AsteriskIcon = (props) => /* @__PURE__ */
|
|
2272
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
2273
|
+
var AsteriskIcon = (props) => /* @__PURE__ */ jsx19(
|
|
2041
2274
|
"svg",
|
|
2042
2275
|
{
|
|
2043
2276
|
...props,
|
|
2044
2277
|
viewBox: "0 0 24 24",
|
|
2045
2278
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2046
|
-
children: /* @__PURE__ */
|
|
2279
|
+
children: /* @__PURE__ */ jsx19(
|
|
2047
2280
|
"path",
|
|
2048
2281
|
{
|
|
2049
2282
|
clipRule: "evenodd",
|
|
@@ -2056,14 +2289,14 @@ var AsteriskIcon = (props) => /* @__PURE__ */ jsx17(
|
|
|
2056
2289
|
);
|
|
2057
2290
|
|
|
2058
2291
|
// src/components/Icon/icons/AudioDescriptionIcon.tsx
|
|
2059
|
-
import { jsx as
|
|
2060
|
-
var AudioDescriptionIcon = (props) => /* @__PURE__ */
|
|
2292
|
+
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
2293
|
+
var AudioDescriptionIcon = (props) => /* @__PURE__ */ jsx20(
|
|
2061
2294
|
"svg",
|
|
2062
2295
|
{
|
|
2063
2296
|
...props,
|
|
2064
2297
|
viewBox: "0 0 24 24",
|
|
2065
2298
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2066
|
-
children: /* @__PURE__ */
|
|
2299
|
+
children: /* @__PURE__ */ jsx20(
|
|
2067
2300
|
"path",
|
|
2068
2301
|
{
|
|
2069
2302
|
clipRule: "evenodd",
|
|
@@ -2076,14 +2309,14 @@ var AudioDescriptionIcon = (props) => /* @__PURE__ */ jsx18(
|
|
|
2076
2309
|
);
|
|
2077
2310
|
|
|
2078
2311
|
// src/components/Icon/icons/AutoScrollIcon.tsx
|
|
2079
|
-
import { jsx as
|
|
2080
|
-
var AutoScrollIcon = (props) => /* @__PURE__ */
|
|
2312
|
+
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
2313
|
+
var AutoScrollIcon = (props) => /* @__PURE__ */ jsx21(
|
|
2081
2314
|
"svg",
|
|
2082
2315
|
{
|
|
2083
2316
|
...props,
|
|
2084
2317
|
viewBox: "0 0 24 24",
|
|
2085
2318
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2086
|
-
children: /* @__PURE__ */
|
|
2319
|
+
children: /* @__PURE__ */ jsx21(
|
|
2087
2320
|
"path",
|
|
2088
2321
|
{
|
|
2089
2322
|
clipRule: "evenodd",
|
|
@@ -2096,14 +2329,14 @@ var AutoScrollIcon = (props) => /* @__PURE__ */ jsx19(
|
|
|
2096
2329
|
);
|
|
2097
2330
|
|
|
2098
2331
|
// src/components/Icon/icons/BackgroundIcon.tsx
|
|
2099
|
-
import { jsx as
|
|
2100
|
-
var BackgroundIcon = (props) => /* @__PURE__ */
|
|
2332
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
2333
|
+
var BackgroundIcon = (props) => /* @__PURE__ */ jsx22(
|
|
2101
2334
|
"svg",
|
|
2102
2335
|
{
|
|
2103
2336
|
...props,
|
|
2104
2337
|
viewBox: "0 0 24 24",
|
|
2105
2338
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2106
|
-
children: /* @__PURE__ */
|
|
2339
|
+
children: /* @__PURE__ */ jsx22(
|
|
2107
2340
|
"path",
|
|
2108
2341
|
{
|
|
2109
2342
|
clipRule: "evenodd",
|
|
@@ -2116,14 +2349,14 @@ var BackgroundIcon = (props) => /* @__PURE__ */ jsx20(
|
|
|
2116
2349
|
);
|
|
2117
2350
|
|
|
2118
2351
|
// src/components/Icon/icons/BellIcon.tsx
|
|
2119
|
-
import { jsx as
|
|
2120
|
-
var BellIcon = (props) => /* @__PURE__ */
|
|
2352
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
2353
|
+
var BellIcon = (props) => /* @__PURE__ */ jsx23(
|
|
2121
2354
|
"svg",
|
|
2122
2355
|
{
|
|
2123
2356
|
...props,
|
|
2124
2357
|
viewBox: "0 0 24 24",
|
|
2125
2358
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2126
|
-
children: /* @__PURE__ */
|
|
2359
|
+
children: /* @__PURE__ */ jsx23(
|
|
2127
2360
|
"path",
|
|
2128
2361
|
{
|
|
2129
2362
|
clipRule: "evenodd",
|
|
@@ -2136,14 +2369,14 @@ var BellIcon = (props) => /* @__PURE__ */ jsx21(
|
|
|
2136
2369
|
);
|
|
2137
2370
|
|
|
2138
2371
|
// src/components/Icon/icons/BoltIcon.tsx
|
|
2139
|
-
import { jsx as
|
|
2140
|
-
var BoltIcon = (props) => /* @__PURE__ */
|
|
2372
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
2373
|
+
var BoltIcon = (props) => /* @__PURE__ */ jsx24(
|
|
2141
2374
|
"svg",
|
|
2142
2375
|
{
|
|
2143
2376
|
...props,
|
|
2144
2377
|
viewBox: "0 0 24 24",
|
|
2145
2378
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2146
|
-
children: /* @__PURE__ */
|
|
2379
|
+
children: /* @__PURE__ */ jsx24(
|
|
2147
2380
|
"path",
|
|
2148
2381
|
{
|
|
2149
2382
|
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",
|
|
@@ -2154,14 +2387,14 @@ var BoltIcon = (props) => /* @__PURE__ */ jsx22(
|
|
|
2154
2387
|
);
|
|
2155
2388
|
|
|
2156
2389
|
// src/components/Icon/icons/CalendarIcon.tsx
|
|
2157
|
-
import { jsx as
|
|
2158
|
-
var CalendarIcon = (props) => /* @__PURE__ */
|
|
2390
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
2391
|
+
var CalendarIcon = (props) => /* @__PURE__ */ jsx25(
|
|
2159
2392
|
"svg",
|
|
2160
2393
|
{
|
|
2161
2394
|
...props,
|
|
2162
2395
|
viewBox: "0 0 24 24",
|
|
2163
2396
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2164
|
-
children: /* @__PURE__ */
|
|
2397
|
+
children: /* @__PURE__ */ jsx25(
|
|
2165
2398
|
"path",
|
|
2166
2399
|
{
|
|
2167
2400
|
clipRule: "evenodd",
|
|
@@ -2174,14 +2407,14 @@ var CalendarIcon = (props) => /* @__PURE__ */ jsx23(
|
|
|
2174
2407
|
);
|
|
2175
2408
|
|
|
2176
2409
|
// src/components/Icon/icons/CallToActionIcon.tsx
|
|
2177
|
-
import { jsx as
|
|
2178
|
-
var CallToActionIcon = (props) => /* @__PURE__ */
|
|
2410
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
2411
|
+
var CallToActionIcon = (props) => /* @__PURE__ */ jsx26(
|
|
2179
2412
|
"svg",
|
|
2180
2413
|
{
|
|
2181
2414
|
...props,
|
|
2182
2415
|
viewBox: "0 0 24 24",
|
|
2183
2416
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2184
|
-
children: /* @__PURE__ */
|
|
2417
|
+
children: /* @__PURE__ */ jsx26(
|
|
2185
2418
|
"path",
|
|
2186
2419
|
{
|
|
2187
2420
|
clipRule: "evenodd",
|
|
@@ -2194,14 +2427,14 @@ var CallToActionIcon = (props) => /* @__PURE__ */ jsx24(
|
|
|
2194
2427
|
);
|
|
2195
2428
|
|
|
2196
2429
|
// src/components/Icon/icons/CameraIcon.tsx
|
|
2197
|
-
import { jsx as
|
|
2198
|
-
var CameraIcon = (props) => /* @__PURE__ */
|
|
2430
|
+
import { jsx as jsx27 } from "react/jsx-runtime";
|
|
2431
|
+
var CameraIcon = (props) => /* @__PURE__ */ jsx27(
|
|
2199
2432
|
"svg",
|
|
2200
2433
|
{
|
|
2201
2434
|
...props,
|
|
2202
2435
|
viewBox: "0 0 24 24",
|
|
2203
2436
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2204
|
-
children: /* @__PURE__ */
|
|
2437
|
+
children: /* @__PURE__ */ jsx27(
|
|
2205
2438
|
"path",
|
|
2206
2439
|
{
|
|
2207
2440
|
clipRule: "evenodd",
|
|
@@ -2214,14 +2447,14 @@ var CameraIcon = (props) => /* @__PURE__ */ jsx25(
|
|
|
2214
2447
|
);
|
|
2215
2448
|
|
|
2216
2449
|
// src/components/Icon/icons/CameraOffIcon.tsx
|
|
2217
|
-
import { jsx as
|
|
2218
|
-
var CameraOffIcon = (props) => /* @__PURE__ */
|
|
2450
|
+
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
2451
|
+
var CameraOffIcon = (props) => /* @__PURE__ */ jsx28(
|
|
2219
2452
|
"svg",
|
|
2220
2453
|
{
|
|
2221
2454
|
...props,
|
|
2222
2455
|
viewBox: "0 0 24 24",
|
|
2223
2456
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2224
|
-
children: /* @__PURE__ */
|
|
2457
|
+
children: /* @__PURE__ */ jsx28(
|
|
2225
2458
|
"path",
|
|
2226
2459
|
{
|
|
2227
2460
|
clipRule: "evenodd",
|
|
@@ -2234,14 +2467,14 @@ var CameraOffIcon = (props) => /* @__PURE__ */ jsx26(
|
|
|
2234
2467
|
);
|
|
2235
2468
|
|
|
2236
2469
|
// src/components/Icon/icons/CaretDownIcon.tsx
|
|
2237
|
-
import { jsx as
|
|
2238
|
-
var CaretDownIcon = (props) => /* @__PURE__ */
|
|
2470
|
+
import { jsx as jsx29 } from "react/jsx-runtime";
|
|
2471
|
+
var CaretDownIcon = (props) => /* @__PURE__ */ jsx29(
|
|
2239
2472
|
"svg",
|
|
2240
2473
|
{
|
|
2241
2474
|
...props,
|
|
2242
2475
|
viewBox: "0 0 24 24",
|
|
2243
2476
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2244
|
-
children: /* @__PURE__ */
|
|
2477
|
+
children: /* @__PURE__ */ jsx29(
|
|
2245
2478
|
"path",
|
|
2246
2479
|
{
|
|
2247
2480
|
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",
|
|
@@ -2252,14 +2485,14 @@ var CaretDownIcon = (props) => /* @__PURE__ */ jsx27(
|
|
|
2252
2485
|
);
|
|
2253
2486
|
|
|
2254
2487
|
// src/components/Icon/icons/CaretDownStrongIcon.tsx
|
|
2255
|
-
import { jsx as
|
|
2256
|
-
var CaretDownStrongIcon = (props) => /* @__PURE__ */
|
|
2488
|
+
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
2489
|
+
var CaretDownStrongIcon = (props) => /* @__PURE__ */ jsx30(
|
|
2257
2490
|
"svg",
|
|
2258
2491
|
{
|
|
2259
2492
|
...props,
|
|
2260
2493
|
viewBox: "0 0 24 24",
|
|
2261
2494
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2262
|
-
children: /* @__PURE__ */
|
|
2495
|
+
children: /* @__PURE__ */ jsx30(
|
|
2263
2496
|
"path",
|
|
2264
2497
|
{
|
|
2265
2498
|
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",
|
|
@@ -2270,14 +2503,14 @@ var CaretDownStrongIcon = (props) => /* @__PURE__ */ jsx28(
|
|
|
2270
2503
|
);
|
|
2271
2504
|
|
|
2272
2505
|
// src/components/Icon/icons/CaretLeftIcon.tsx
|
|
2273
|
-
import { jsx as
|
|
2274
|
-
var CaretLeftIcon = (props) => /* @__PURE__ */
|
|
2506
|
+
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
2507
|
+
var CaretLeftIcon = (props) => /* @__PURE__ */ jsx31(
|
|
2275
2508
|
"svg",
|
|
2276
2509
|
{
|
|
2277
2510
|
...props,
|
|
2278
2511
|
viewBox: "0 0 24 24",
|
|
2279
2512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2280
|
-
children: /* @__PURE__ */
|
|
2513
|
+
children: /* @__PURE__ */ jsx31(
|
|
2281
2514
|
"path",
|
|
2282
2515
|
{
|
|
2283
2516
|
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",
|
|
@@ -2288,14 +2521,14 @@ var CaretLeftIcon = (props) => /* @__PURE__ */ jsx29(
|
|
|
2288
2521
|
);
|
|
2289
2522
|
|
|
2290
2523
|
// src/components/Icon/icons/CaretLeftStrongIcon.tsx
|
|
2291
|
-
import { jsx as
|
|
2292
|
-
var CaretLeftStrongIcon = (props) => /* @__PURE__ */
|
|
2524
|
+
import { jsx as jsx32 } from "react/jsx-runtime";
|
|
2525
|
+
var CaretLeftStrongIcon = (props) => /* @__PURE__ */ jsx32(
|
|
2293
2526
|
"svg",
|
|
2294
2527
|
{
|
|
2295
2528
|
...props,
|
|
2296
2529
|
viewBox: "0 0 24 24",
|
|
2297
2530
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2298
|
-
children: /* @__PURE__ */
|
|
2531
|
+
children: /* @__PURE__ */ jsx32(
|
|
2299
2532
|
"path",
|
|
2300
2533
|
{
|
|
2301
2534
|
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",
|
|
@@ -2306,14 +2539,14 @@ var CaretLeftStrongIcon = (props) => /* @__PURE__ */ jsx30(
|
|
|
2306
2539
|
);
|
|
2307
2540
|
|
|
2308
2541
|
// src/components/Icon/icons/CaretRightIcon.tsx
|
|
2309
|
-
import { jsx as
|
|
2310
|
-
var CaretRightIcon = (props) => /* @__PURE__ */
|
|
2542
|
+
import { jsx as jsx33 } from "react/jsx-runtime";
|
|
2543
|
+
var CaretRightIcon = (props) => /* @__PURE__ */ jsx33(
|
|
2311
2544
|
"svg",
|
|
2312
2545
|
{
|
|
2313
2546
|
...props,
|
|
2314
2547
|
viewBox: "0 0 24 24",
|
|
2315
2548
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2316
|
-
children: /* @__PURE__ */
|
|
2549
|
+
children: /* @__PURE__ */ jsx33(
|
|
2317
2550
|
"path",
|
|
2318
2551
|
{
|
|
2319
2552
|
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",
|
|
@@ -2324,14 +2557,14 @@ var CaretRightIcon = (props) => /* @__PURE__ */ jsx31(
|
|
|
2324
2557
|
);
|
|
2325
2558
|
|
|
2326
2559
|
// src/components/Icon/icons/CaretRightStrongIcon.tsx
|
|
2327
|
-
import { jsx as
|
|
2328
|
-
var CaretRightStrongIcon = (props) => /* @__PURE__ */
|
|
2560
|
+
import { jsx as jsx34 } from "react/jsx-runtime";
|
|
2561
|
+
var CaretRightStrongIcon = (props) => /* @__PURE__ */ jsx34(
|
|
2329
2562
|
"svg",
|
|
2330
2563
|
{
|
|
2331
2564
|
...props,
|
|
2332
2565
|
viewBox: "0 0 24 24",
|
|
2333
2566
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2334
|
-
children: /* @__PURE__ */
|
|
2567
|
+
children: /* @__PURE__ */ jsx34(
|
|
2335
2568
|
"path",
|
|
2336
2569
|
{
|
|
2337
2570
|
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",
|
|
@@ -2342,14 +2575,14 @@ var CaretRightStrongIcon = (props) => /* @__PURE__ */ jsx32(
|
|
|
2342
2575
|
);
|
|
2343
2576
|
|
|
2344
2577
|
// src/components/Icon/icons/CaretUpIcon.tsx
|
|
2345
|
-
import { jsx as
|
|
2346
|
-
var CaretUpIcon = (props) => /* @__PURE__ */
|
|
2578
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
2579
|
+
var CaretUpIcon = (props) => /* @__PURE__ */ jsx35(
|
|
2347
2580
|
"svg",
|
|
2348
2581
|
{
|
|
2349
2582
|
...props,
|
|
2350
2583
|
viewBox: "0 0 24 24",
|
|
2351
2584
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2352
|
-
children: /* @__PURE__ */
|
|
2585
|
+
children: /* @__PURE__ */ jsx35(
|
|
2353
2586
|
"path",
|
|
2354
2587
|
{
|
|
2355
2588
|
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",
|
|
@@ -2360,14 +2593,14 @@ var CaretUpIcon = (props) => /* @__PURE__ */ jsx33(
|
|
|
2360
2593
|
);
|
|
2361
2594
|
|
|
2362
2595
|
// src/components/Icon/icons/CaretUpStrongIcon.tsx
|
|
2363
|
-
import { jsx as
|
|
2364
|
-
var CaretUpStrongIcon = (props) => /* @__PURE__ */
|
|
2596
|
+
import { jsx as jsx36 } from "react/jsx-runtime";
|
|
2597
|
+
var CaretUpStrongIcon = (props) => /* @__PURE__ */ jsx36(
|
|
2365
2598
|
"svg",
|
|
2366
2599
|
{
|
|
2367
2600
|
...props,
|
|
2368
2601
|
viewBox: "0 0 24 24",
|
|
2369
2602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2370
|
-
children: /* @__PURE__ */
|
|
2603
|
+
children: /* @__PURE__ */ jsx36(
|
|
2371
2604
|
"path",
|
|
2372
2605
|
{
|
|
2373
2606
|
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",
|
|
@@ -2378,14 +2611,14 @@ var CaretUpStrongIcon = (props) => /* @__PURE__ */ jsx34(
|
|
|
2378
2611
|
);
|
|
2379
2612
|
|
|
2380
2613
|
// src/components/Icon/icons/ChannelIcon.tsx
|
|
2381
|
-
import { jsx as
|
|
2382
|
-
var ChannelIcon = (props) => /* @__PURE__ */
|
|
2614
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
2615
|
+
var ChannelIcon = (props) => /* @__PURE__ */ jsx37(
|
|
2383
2616
|
"svg",
|
|
2384
2617
|
{
|
|
2385
2618
|
...props,
|
|
2386
2619
|
viewBox: "0 0 24 24",
|
|
2387
2620
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2388
|
-
children: /* @__PURE__ */
|
|
2621
|
+
children: /* @__PURE__ */ jsx37(
|
|
2389
2622
|
"path",
|
|
2390
2623
|
{
|
|
2391
2624
|
clipRule: "evenodd",
|
|
@@ -2398,14 +2631,14 @@ var ChannelIcon = (props) => /* @__PURE__ */ jsx35(
|
|
|
2398
2631
|
);
|
|
2399
2632
|
|
|
2400
2633
|
// src/components/Icon/icons/ChaptersIcon.tsx
|
|
2401
|
-
import { jsx as
|
|
2402
|
-
var ChaptersIcon = (props) => /* @__PURE__ */
|
|
2634
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
2635
|
+
var ChaptersIcon = (props) => /* @__PURE__ */ jsx38(
|
|
2403
2636
|
"svg",
|
|
2404
2637
|
{
|
|
2405
2638
|
...props,
|
|
2406
2639
|
viewBox: "0 0 24 24",
|
|
2407
2640
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2408
|
-
children: /* @__PURE__ */
|
|
2641
|
+
children: /* @__PURE__ */ jsx38(
|
|
2409
2642
|
"path",
|
|
2410
2643
|
{
|
|
2411
2644
|
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",
|
|
@@ -2416,14 +2649,14 @@ var ChaptersIcon = (props) => /* @__PURE__ */ jsx36(
|
|
|
2416
2649
|
);
|
|
2417
2650
|
|
|
2418
2651
|
// src/components/Icon/icons/CheckmarkCircleIcon.tsx
|
|
2419
|
-
import { jsx as
|
|
2420
|
-
var CheckmarkCircleIcon = (props) => /* @__PURE__ */
|
|
2652
|
+
import { jsx as jsx39 } from "react/jsx-runtime";
|
|
2653
|
+
var CheckmarkCircleIcon = (props) => /* @__PURE__ */ jsx39(
|
|
2421
2654
|
"svg",
|
|
2422
2655
|
{
|
|
2423
2656
|
...props,
|
|
2424
2657
|
viewBox: "0 0 24 24",
|
|
2425
2658
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2426
|
-
children: /* @__PURE__ */
|
|
2659
|
+
children: /* @__PURE__ */ jsx39(
|
|
2427
2660
|
"path",
|
|
2428
2661
|
{
|
|
2429
2662
|
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",
|
|
@@ -2434,14 +2667,14 @@ var CheckmarkCircleIcon = (props) => /* @__PURE__ */ jsx37(
|
|
|
2434
2667
|
);
|
|
2435
2668
|
|
|
2436
2669
|
// src/components/Icon/icons/CheckmarkCircleOutlineIcon.tsx
|
|
2437
|
-
import { jsx as
|
|
2438
|
-
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */
|
|
2670
|
+
import { jsx as jsx40 } from "react/jsx-runtime";
|
|
2671
|
+
var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ jsx40(
|
|
2439
2672
|
"svg",
|
|
2440
2673
|
{
|
|
2441
2674
|
...props,
|
|
2442
2675
|
viewBox: "0 0 24 24",
|
|
2443
2676
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2444
|
-
children: /* @__PURE__ */
|
|
2677
|
+
children: /* @__PURE__ */ jsx40(
|
|
2445
2678
|
"path",
|
|
2446
2679
|
{
|
|
2447
2680
|
clipRule: "evenodd",
|
|
@@ -2454,14 +2687,14 @@ var CheckmarkCircleOutlineIcon = (props) => /* @__PURE__ */ jsx38(
|
|
|
2454
2687
|
);
|
|
2455
2688
|
|
|
2456
2689
|
// src/components/Icon/icons/CheckmarkIcon.tsx
|
|
2457
|
-
import { jsx as
|
|
2458
|
-
var CheckmarkIcon = (props) => /* @__PURE__ */
|
|
2690
|
+
import { jsx as jsx41 } from "react/jsx-runtime";
|
|
2691
|
+
var CheckmarkIcon = (props) => /* @__PURE__ */ jsx41(
|
|
2459
2692
|
"svg",
|
|
2460
2693
|
{
|
|
2461
2694
|
...props,
|
|
2462
2695
|
viewBox: "0 0 24 24",
|
|
2463
2696
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2464
|
-
children: /* @__PURE__ */
|
|
2697
|
+
children: /* @__PURE__ */ jsx41(
|
|
2465
2698
|
"path",
|
|
2466
2699
|
{
|
|
2467
2700
|
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",
|
|
@@ -2472,14 +2705,14 @@ var CheckmarkIcon = (props) => /* @__PURE__ */ jsx39(
|
|
|
2472
2705
|
);
|
|
2473
2706
|
|
|
2474
2707
|
// src/components/Icon/icons/CheckmarkThreeQuatersCircleIcon.tsx
|
|
2475
|
-
import { jsx as
|
|
2476
|
-
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */
|
|
2708
|
+
import { jsx as jsx42 } from "react/jsx-runtime";
|
|
2709
|
+
var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ jsx42(
|
|
2477
2710
|
"svg",
|
|
2478
2711
|
{
|
|
2479
2712
|
...props,
|
|
2480
2713
|
viewBox: "0 0 24 24",
|
|
2481
2714
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2482
|
-
children: /* @__PURE__ */
|
|
2715
|
+
children: /* @__PURE__ */ jsx42(
|
|
2483
2716
|
"path",
|
|
2484
2717
|
{
|
|
2485
2718
|
clipRule: "evenodd",
|
|
@@ -2492,14 +2725,14 @@ var CheckmarkThreeQuatersCircleIcon = (props) => /* @__PURE__ */ jsx40(
|
|
|
2492
2725
|
);
|
|
2493
2726
|
|
|
2494
2727
|
// src/components/Icon/icons/CircleSlashedIcon.tsx
|
|
2495
|
-
import { jsx as
|
|
2496
|
-
var CircleSlashedIcon = (props) => /* @__PURE__ */
|
|
2728
|
+
import { jsx as jsx43 } from "react/jsx-runtime";
|
|
2729
|
+
var CircleSlashedIcon = (props) => /* @__PURE__ */ jsx43(
|
|
2497
2730
|
"svg",
|
|
2498
2731
|
{
|
|
2499
2732
|
...props,
|
|
2500
2733
|
viewBox: "0 0 24 24",
|
|
2501
2734
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2502
|
-
children: /* @__PURE__ */
|
|
2735
|
+
children: /* @__PURE__ */ jsx43(
|
|
2503
2736
|
"path",
|
|
2504
2737
|
{
|
|
2505
2738
|
clipRule: "evenodd",
|
|
@@ -2512,14 +2745,14 @@ var CircleSlashedIcon = (props) => /* @__PURE__ */ jsx41(
|
|
|
2512
2745
|
);
|
|
2513
2746
|
|
|
2514
2747
|
// src/components/Icon/icons/CloseIcon.tsx
|
|
2515
|
-
import { jsx as
|
|
2516
|
-
var CloseIcon = (props) => /* @__PURE__ */
|
|
2748
|
+
import { jsx as jsx44 } from "react/jsx-runtime";
|
|
2749
|
+
var CloseIcon = (props) => /* @__PURE__ */ jsx44(
|
|
2517
2750
|
"svg",
|
|
2518
2751
|
{
|
|
2519
2752
|
...props,
|
|
2520
2753
|
viewBox: "0 0 24 24",
|
|
2521
2754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2522
|
-
children: /* @__PURE__ */
|
|
2755
|
+
children: /* @__PURE__ */ jsx44(
|
|
2523
2756
|
"path",
|
|
2524
2757
|
{
|
|
2525
2758
|
clipRule: "evenodd",
|
|
@@ -2532,14 +2765,14 @@ var CloseIcon = (props) => /* @__PURE__ */ jsx42(
|
|
|
2532
2765
|
);
|
|
2533
2766
|
|
|
2534
2767
|
// src/components/Icon/icons/CloseOctagonIcon.tsx
|
|
2535
|
-
import { jsx as
|
|
2536
|
-
var CloseOctagonIcon = (props) => /* @__PURE__ */
|
|
2768
|
+
import { jsx as jsx45 } from "react/jsx-runtime";
|
|
2769
|
+
var CloseOctagonIcon = (props) => /* @__PURE__ */ jsx45(
|
|
2537
2770
|
"svg",
|
|
2538
2771
|
{
|
|
2539
2772
|
...props,
|
|
2540
2773
|
viewBox: "0 0 24 24",
|
|
2541
2774
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2542
|
-
children: /* @__PURE__ */
|
|
2775
|
+
children: /* @__PURE__ */ jsx45(
|
|
2543
2776
|
"path",
|
|
2544
2777
|
{
|
|
2545
2778
|
clipRule: "evenodd",
|
|
@@ -2552,14 +2785,14 @@ var CloseOctagonIcon = (props) => /* @__PURE__ */ jsx43(
|
|
|
2552
2785
|
);
|
|
2553
2786
|
|
|
2554
2787
|
// src/components/Icon/icons/ClosedCaptionsIcon.tsx
|
|
2555
|
-
import { jsx as
|
|
2556
|
-
var ClosedCaptionsIcon = (props) => /* @__PURE__ */
|
|
2788
|
+
import { jsx as jsx46 } from "react/jsx-runtime";
|
|
2789
|
+
var ClosedCaptionsIcon = (props) => /* @__PURE__ */ jsx46(
|
|
2557
2790
|
"svg",
|
|
2558
2791
|
{
|
|
2559
2792
|
...props,
|
|
2560
2793
|
viewBox: "0 0 24 24",
|
|
2561
2794
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2562
|
-
children: /* @__PURE__ */
|
|
2795
|
+
children: /* @__PURE__ */ jsx46(
|
|
2563
2796
|
"path",
|
|
2564
2797
|
{
|
|
2565
2798
|
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",
|
|
@@ -2570,14 +2803,14 @@ var ClosedCaptionsIcon = (props) => /* @__PURE__ */ jsx44(
|
|
|
2570
2803
|
);
|
|
2571
2804
|
|
|
2572
2805
|
// src/components/Icon/icons/CollapseDiagonalIcon.tsx
|
|
2573
|
-
import { jsx as
|
|
2574
|
-
var CollapseDiagonalIcon = (props) => /* @__PURE__ */
|
|
2806
|
+
import { jsx as jsx47 } from "react/jsx-runtime";
|
|
2807
|
+
var CollapseDiagonalIcon = (props) => /* @__PURE__ */ jsx47(
|
|
2575
2808
|
"svg",
|
|
2576
2809
|
{
|
|
2577
2810
|
...props,
|
|
2578
2811
|
viewBox: "0 0 24 24",
|
|
2579
2812
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2580
|
-
children: /* @__PURE__ */
|
|
2813
|
+
children: /* @__PURE__ */ jsx47(
|
|
2581
2814
|
"path",
|
|
2582
2815
|
{
|
|
2583
2816
|
clipRule: "evenodd",
|
|
@@ -2590,14 +2823,14 @@ var CollapseDiagonalIcon = (props) => /* @__PURE__ */ jsx45(
|
|
|
2590
2823
|
);
|
|
2591
2824
|
|
|
2592
2825
|
// src/components/Icon/icons/CommentsIcon.tsx
|
|
2593
|
-
import { jsx as
|
|
2594
|
-
var CommentsIcon = (props) => /* @__PURE__ */
|
|
2826
|
+
import { jsx as jsx48 } from "react/jsx-runtime";
|
|
2827
|
+
var CommentsIcon = (props) => /* @__PURE__ */ jsx48(
|
|
2595
2828
|
"svg",
|
|
2596
2829
|
{
|
|
2597
2830
|
...props,
|
|
2598
2831
|
viewBox: "0 0 24 24",
|
|
2599
2832
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2600
|
-
children: /* @__PURE__ */
|
|
2833
|
+
children: /* @__PURE__ */ jsx48(
|
|
2601
2834
|
"path",
|
|
2602
2835
|
{
|
|
2603
2836
|
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",
|
|
@@ -2608,14 +2841,14 @@ var CommentsIcon = (props) => /* @__PURE__ */ jsx46(
|
|
|
2608
2841
|
);
|
|
2609
2842
|
|
|
2610
2843
|
// src/components/Icon/icons/CompanyIcon.tsx
|
|
2611
|
-
import { jsx as
|
|
2612
|
-
var CompanyIcon = (props) => /* @__PURE__ */
|
|
2844
|
+
import { jsx as jsx49 } from "react/jsx-runtime";
|
|
2845
|
+
var CompanyIcon = (props) => /* @__PURE__ */ jsx49(
|
|
2613
2846
|
"svg",
|
|
2614
2847
|
{
|
|
2615
2848
|
...props,
|
|
2616
2849
|
viewBox: "0 0 24 24",
|
|
2617
2850
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2618
|
-
children: /* @__PURE__ */
|
|
2851
|
+
children: /* @__PURE__ */ jsx49(
|
|
2619
2852
|
"path",
|
|
2620
2853
|
{
|
|
2621
2854
|
clipRule: "evenodd",
|
|
@@ -2628,14 +2861,14 @@ var CompanyIcon = (props) => /* @__PURE__ */ jsx47(
|
|
|
2628
2861
|
);
|
|
2629
2862
|
|
|
2630
2863
|
// src/components/Icon/icons/CompareIcon.tsx
|
|
2631
|
-
import { jsx as
|
|
2632
|
-
var CompareIcon = (props) => /* @__PURE__ */
|
|
2864
|
+
import { jsx as jsx50 } from "react/jsx-runtime";
|
|
2865
|
+
var CompareIcon = (props) => /* @__PURE__ */ jsx50(
|
|
2633
2866
|
"svg",
|
|
2634
2867
|
{
|
|
2635
2868
|
...props,
|
|
2636
2869
|
viewBox: "0 0 24 24",
|
|
2637
2870
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2638
|
-
children: /* @__PURE__ */
|
|
2871
|
+
children: /* @__PURE__ */ jsx50(
|
|
2639
2872
|
"path",
|
|
2640
2873
|
{
|
|
2641
2874
|
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",
|
|
@@ -2646,14 +2879,14 @@ var CompareIcon = (props) => /* @__PURE__ */ jsx48(
|
|
|
2646
2879
|
);
|
|
2647
2880
|
|
|
2648
2881
|
// src/components/Icon/icons/ContentLibraryIcon.tsx
|
|
2649
|
-
import { jsx as
|
|
2650
|
-
var ContentLibraryIcon = (props) => /* @__PURE__ */
|
|
2882
|
+
import { jsx as jsx51 } from "react/jsx-runtime";
|
|
2883
|
+
var ContentLibraryIcon = (props) => /* @__PURE__ */ jsx51(
|
|
2651
2884
|
"svg",
|
|
2652
2885
|
{
|
|
2653
2886
|
...props,
|
|
2654
2887
|
viewBox: "0 0 24 24",
|
|
2655
2888
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2656
|
-
children: /* @__PURE__ */
|
|
2889
|
+
children: /* @__PURE__ */ jsx51(
|
|
2657
2890
|
"path",
|
|
2658
2891
|
{
|
|
2659
2892
|
clipRule: "evenodd",
|
|
@@ -2666,14 +2899,14 @@ var ContentLibraryIcon = (props) => /* @__PURE__ */ jsx49(
|
|
|
2666
2899
|
);
|
|
2667
2900
|
|
|
2668
2901
|
// src/components/Icon/icons/ControlsIcon.tsx
|
|
2669
|
-
import { jsx as
|
|
2670
|
-
var ControlsIcon = (props) => /* @__PURE__ */
|
|
2902
|
+
import { jsx as jsx52 } from "react/jsx-runtime";
|
|
2903
|
+
var ControlsIcon = (props) => /* @__PURE__ */ jsx52(
|
|
2671
2904
|
"svg",
|
|
2672
2905
|
{
|
|
2673
2906
|
...props,
|
|
2674
2907
|
viewBox: "0 0 24 24",
|
|
2675
2908
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2676
|
-
children: /* @__PURE__ */
|
|
2909
|
+
children: /* @__PURE__ */ jsx52(
|
|
2677
2910
|
"path",
|
|
2678
2911
|
{
|
|
2679
2912
|
clipRule: "evenodd",
|
|
@@ -2686,14 +2919,14 @@ var ControlsIcon = (props) => /* @__PURE__ */ jsx50(
|
|
|
2686
2919
|
);
|
|
2687
2920
|
|
|
2688
2921
|
// src/components/Icon/icons/CursorClickIcon.tsx
|
|
2689
|
-
import { jsx as
|
|
2690
|
-
var CursorClickIcon = (props) => /* @__PURE__ */
|
|
2922
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
|
2923
|
+
var CursorClickIcon = (props) => /* @__PURE__ */ jsx53(
|
|
2691
2924
|
"svg",
|
|
2692
2925
|
{
|
|
2693
2926
|
...props,
|
|
2694
2927
|
viewBox: "0 0 24 24",
|
|
2695
2928
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2696
|
-
children: /* @__PURE__ */
|
|
2929
|
+
children: /* @__PURE__ */ jsx53(
|
|
2697
2930
|
"path",
|
|
2698
2931
|
{
|
|
2699
2932
|
clipRule: "evenodd",
|
|
@@ -2706,14 +2939,14 @@ var CursorClickIcon = (props) => /* @__PURE__ */ jsx51(
|
|
|
2706
2939
|
);
|
|
2707
2940
|
|
|
2708
2941
|
// src/components/Icon/icons/DeleteIcon.tsx
|
|
2709
|
-
import { jsx as
|
|
2710
|
-
var DeleteIcon = (props) => /* @__PURE__ */
|
|
2942
|
+
import { jsx as jsx54 } from "react/jsx-runtime";
|
|
2943
|
+
var DeleteIcon = (props) => /* @__PURE__ */ jsx54(
|
|
2711
2944
|
"svg",
|
|
2712
2945
|
{
|
|
2713
2946
|
...props,
|
|
2714
2947
|
viewBox: "0 0 24 24",
|
|
2715
2948
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2716
|
-
children: /* @__PURE__ */
|
|
2949
|
+
children: /* @__PURE__ */ jsx54(
|
|
2717
2950
|
"path",
|
|
2718
2951
|
{
|
|
2719
2952
|
clipRule: "evenodd",
|
|
@@ -2726,14 +2959,14 @@ var DeleteIcon = (props) => /* @__PURE__ */ jsx52(
|
|
|
2726
2959
|
);
|
|
2727
2960
|
|
|
2728
2961
|
// src/components/Icon/icons/DesktopIcon.tsx
|
|
2729
|
-
import { jsx as
|
|
2730
|
-
var DesktopIcon = (props) => /* @__PURE__ */
|
|
2962
|
+
import { jsx as jsx55 } from "react/jsx-runtime";
|
|
2963
|
+
var DesktopIcon = (props) => /* @__PURE__ */ jsx55(
|
|
2731
2964
|
"svg",
|
|
2732
2965
|
{
|
|
2733
2966
|
...props,
|
|
2734
2967
|
viewBox: "0 0 24 24",
|
|
2735
2968
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2736
|
-
children: /* @__PURE__ */
|
|
2969
|
+
children: /* @__PURE__ */ jsx55(
|
|
2737
2970
|
"path",
|
|
2738
2971
|
{
|
|
2739
2972
|
clipRule: "evenodd",
|
|
@@ -2746,14 +2979,14 @@ var DesktopIcon = (props) => /* @__PURE__ */ jsx53(
|
|
|
2746
2979
|
);
|
|
2747
2980
|
|
|
2748
2981
|
// src/components/Icon/icons/DotsHorizontalIcon.tsx
|
|
2749
|
-
import { jsx as
|
|
2750
|
-
var DotsHorizontalIcon = (props) => /* @__PURE__ */
|
|
2982
|
+
import { jsx as jsx56 } from "react/jsx-runtime";
|
|
2983
|
+
var DotsHorizontalIcon = (props) => /* @__PURE__ */ jsx56(
|
|
2751
2984
|
"svg",
|
|
2752
2985
|
{
|
|
2753
2986
|
...props,
|
|
2754
2987
|
viewBox: "0 0 24 24",
|
|
2755
2988
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2756
|
-
children: /* @__PURE__ */
|
|
2989
|
+
children: /* @__PURE__ */ jsx56(
|
|
2757
2990
|
"path",
|
|
2758
2991
|
{
|
|
2759
2992
|
clipRule: "evenodd",
|
|
@@ -2766,14 +2999,14 @@ var DotsHorizontalIcon = (props) => /* @__PURE__ */ jsx54(
|
|
|
2766
2999
|
);
|
|
2767
3000
|
|
|
2768
3001
|
// src/components/Icon/icons/DownloadIcon.tsx
|
|
2769
|
-
import { jsx as
|
|
2770
|
-
var DownloadIcon = (props) => /* @__PURE__ */
|
|
3002
|
+
import { jsx as jsx57 } from "react/jsx-runtime";
|
|
3003
|
+
var DownloadIcon = (props) => /* @__PURE__ */ jsx57(
|
|
2771
3004
|
"svg",
|
|
2772
3005
|
{
|
|
2773
3006
|
...props,
|
|
2774
3007
|
viewBox: "0 0 24 24",
|
|
2775
3008
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2776
|
-
children: /* @__PURE__ */
|
|
3009
|
+
children: /* @__PURE__ */ jsx57(
|
|
2777
3010
|
"path",
|
|
2778
3011
|
{
|
|
2779
3012
|
clipRule: "evenodd",
|
|
@@ -2786,14 +3019,14 @@ var DownloadIcon = (props) => /* @__PURE__ */ jsx55(
|
|
|
2786
3019
|
);
|
|
2787
3020
|
|
|
2788
3021
|
// src/components/Icon/icons/EditTranscriptIcon.tsx
|
|
2789
|
-
import { jsx as
|
|
2790
|
-
var EditTranscriptIcon = (props) => /* @__PURE__ */
|
|
3022
|
+
import { jsx as jsx58 } from "react/jsx-runtime";
|
|
3023
|
+
var EditTranscriptIcon = (props) => /* @__PURE__ */ jsx58(
|
|
2791
3024
|
"svg",
|
|
2792
3025
|
{
|
|
2793
3026
|
...props,
|
|
2794
3027
|
viewBox: "0 0 24 24",
|
|
2795
3028
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2796
|
-
children: /* @__PURE__ */
|
|
3029
|
+
children: /* @__PURE__ */ jsx58(
|
|
2797
3030
|
"path",
|
|
2798
3031
|
{
|
|
2799
3032
|
clipRule: "evenodd",
|
|
@@ -2806,14 +3039,14 @@ var EditTranscriptIcon = (props) => /* @__PURE__ */ jsx56(
|
|
|
2806
3039
|
);
|
|
2807
3040
|
|
|
2808
3041
|
// src/components/Icon/icons/EllipsesVerticalIcon.tsx
|
|
2809
|
-
import { jsx as
|
|
2810
|
-
var EllipsesVerticalIcon = (props) => /* @__PURE__ */
|
|
3042
|
+
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
3043
|
+
var EllipsesVerticalIcon = (props) => /* @__PURE__ */ jsx59(
|
|
2811
3044
|
"svg",
|
|
2812
3045
|
{
|
|
2813
3046
|
...props,
|
|
2814
3047
|
viewBox: "0 0 24 24",
|
|
2815
3048
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2816
|
-
children: /* @__PURE__ */
|
|
3049
|
+
children: /* @__PURE__ */ jsx59(
|
|
2817
3050
|
"path",
|
|
2818
3051
|
{
|
|
2819
3052
|
clipRule: "evenodd",
|
|
@@ -2826,14 +3059,14 @@ var EllipsesVerticalIcon = (props) => /* @__PURE__ */ jsx57(
|
|
|
2826
3059
|
);
|
|
2827
3060
|
|
|
2828
3061
|
// src/components/Icon/icons/EmbedIcon.tsx
|
|
2829
|
-
import { jsx as
|
|
2830
|
-
var EmbedIcon = (props) => /* @__PURE__ */
|
|
3062
|
+
import { jsx as jsx60 } from "react/jsx-runtime";
|
|
3063
|
+
var EmbedIcon = (props) => /* @__PURE__ */ jsx60(
|
|
2831
3064
|
"svg",
|
|
2832
3065
|
{
|
|
2833
3066
|
...props,
|
|
2834
3067
|
viewBox: "0 0 24 24",
|
|
2835
3068
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2836
|
-
children: /* @__PURE__ */
|
|
3069
|
+
children: /* @__PURE__ */ jsx60(
|
|
2837
3070
|
"path",
|
|
2838
3071
|
{
|
|
2839
3072
|
clipRule: "evenodd",
|
|
@@ -2846,14 +3079,14 @@ var EmbedIcon = (props) => /* @__PURE__ */ jsx58(
|
|
|
2846
3079
|
);
|
|
2847
3080
|
|
|
2848
3081
|
// src/components/Icon/icons/EnvelopeIcon.tsx
|
|
2849
|
-
import { jsx as
|
|
2850
|
-
var EnvelopeIcon = (props) => /* @__PURE__ */
|
|
3082
|
+
import { jsx as jsx61 } from "react/jsx-runtime";
|
|
3083
|
+
var EnvelopeIcon = (props) => /* @__PURE__ */ jsx61(
|
|
2851
3084
|
"svg",
|
|
2852
3085
|
{
|
|
2853
3086
|
...props,
|
|
2854
3087
|
viewBox: "0 0 24 24",
|
|
2855
3088
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2856
|
-
children: /* @__PURE__ */
|
|
3089
|
+
children: /* @__PURE__ */ jsx61(
|
|
2857
3090
|
"path",
|
|
2858
3091
|
{
|
|
2859
3092
|
clipRule: "evenodd",
|
|
@@ -2866,14 +3099,14 @@ var EnvelopeIcon = (props) => /* @__PURE__ */ jsx59(
|
|
|
2866
3099
|
);
|
|
2867
3100
|
|
|
2868
3101
|
// src/components/Icon/icons/ErrorIcon.tsx
|
|
2869
|
-
import { jsx as
|
|
2870
|
-
var ErrorIcon = (props) => /* @__PURE__ */
|
|
3102
|
+
import { jsx as jsx62 } from "react/jsx-runtime";
|
|
3103
|
+
var ErrorIcon = (props) => /* @__PURE__ */ jsx62(
|
|
2871
3104
|
"svg",
|
|
2872
3105
|
{
|
|
2873
3106
|
...props,
|
|
2874
3107
|
viewBox: "0 0 24 24",
|
|
2875
3108
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2876
|
-
children: /* @__PURE__ */
|
|
3109
|
+
children: /* @__PURE__ */ jsx62(
|
|
2877
3110
|
"path",
|
|
2878
3111
|
{
|
|
2879
3112
|
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",
|
|
@@ -2884,14 +3117,14 @@ var ErrorIcon = (props) => /* @__PURE__ */ jsx60(
|
|
|
2884
3117
|
);
|
|
2885
3118
|
|
|
2886
3119
|
// src/components/Icon/icons/ExpandDiagonalIcon.tsx
|
|
2887
|
-
import { jsx as
|
|
2888
|
-
var ExpandDiagonalIcon = (props) => /* @__PURE__ */
|
|
3120
|
+
import { jsx as jsx63 } from "react/jsx-runtime";
|
|
3121
|
+
var ExpandDiagonalIcon = (props) => /* @__PURE__ */ jsx63(
|
|
2889
3122
|
"svg",
|
|
2890
3123
|
{
|
|
2891
3124
|
...props,
|
|
2892
3125
|
viewBox: "0 0 24 24",
|
|
2893
3126
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2894
|
-
children: /* @__PURE__ */
|
|
3127
|
+
children: /* @__PURE__ */ jsx63(
|
|
2895
3128
|
"path",
|
|
2896
3129
|
{
|
|
2897
3130
|
clipRule: "evenodd",
|
|
@@ -2904,14 +3137,14 @@ var ExpandDiagonalIcon = (props) => /* @__PURE__ */ jsx61(
|
|
|
2904
3137
|
);
|
|
2905
3138
|
|
|
2906
3139
|
// src/components/Icon/icons/ExpandIcon.tsx
|
|
2907
|
-
import { jsx as
|
|
2908
|
-
var ExpandIcon = (props) => /* @__PURE__ */
|
|
3140
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
3141
|
+
var ExpandIcon = (props) => /* @__PURE__ */ jsx64(
|
|
2909
3142
|
"svg",
|
|
2910
3143
|
{
|
|
2911
3144
|
...props,
|
|
2912
3145
|
viewBox: "0 0 24 24",
|
|
2913
3146
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2914
|
-
children: /* @__PURE__ */
|
|
3147
|
+
children: /* @__PURE__ */ jsx64(
|
|
2915
3148
|
"path",
|
|
2916
3149
|
{
|
|
2917
3150
|
clipRule: "evenodd",
|
|
@@ -2924,14 +3157,14 @@ var ExpandIcon = (props) => /* @__PURE__ */ jsx62(
|
|
|
2924
3157
|
);
|
|
2925
3158
|
|
|
2926
3159
|
// src/components/Icon/icons/FavoriteIcon.tsx
|
|
2927
|
-
import { jsx as
|
|
2928
|
-
var FavoriteIcon = (props) => /* @__PURE__ */
|
|
3160
|
+
import { jsx as jsx65 } from "react/jsx-runtime";
|
|
3161
|
+
var FavoriteIcon = (props) => /* @__PURE__ */ jsx65(
|
|
2929
3162
|
"svg",
|
|
2930
3163
|
{
|
|
2931
3164
|
...props,
|
|
2932
3165
|
viewBox: "0 0 24 24",
|
|
2933
3166
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2934
|
-
children: /* @__PURE__ */
|
|
3167
|
+
children: /* @__PURE__ */ jsx65(
|
|
2935
3168
|
"path",
|
|
2936
3169
|
{
|
|
2937
3170
|
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",
|
|
@@ -2942,14 +3175,14 @@ var FavoriteIcon = (props) => /* @__PURE__ */ jsx63(
|
|
|
2942
3175
|
);
|
|
2943
3176
|
|
|
2944
3177
|
// src/components/Icon/icons/FavoriteOutlineIcon.tsx
|
|
2945
|
-
import { jsx as
|
|
2946
|
-
var FavoriteOutlineIcon = (props) => /* @__PURE__ */
|
|
3178
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
3179
|
+
var FavoriteOutlineIcon = (props) => /* @__PURE__ */ jsx66(
|
|
2947
3180
|
"svg",
|
|
2948
3181
|
{
|
|
2949
3182
|
...props,
|
|
2950
3183
|
viewBox: "0 0 24 24",
|
|
2951
3184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2952
|
-
children: /* @__PURE__ */
|
|
3185
|
+
children: /* @__PURE__ */ jsx66(
|
|
2953
3186
|
"path",
|
|
2954
3187
|
{
|
|
2955
3188
|
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",
|
|
@@ -2963,14 +3196,14 @@ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ jsx64(
|
|
|
2963
3196
|
);
|
|
2964
3197
|
|
|
2965
3198
|
// src/components/Icon/icons/FileTreeIcon.tsx
|
|
2966
|
-
import { jsx as
|
|
2967
|
-
var FileTreeIcon = (props) => /* @__PURE__ */
|
|
3199
|
+
import { jsx as jsx67 } from "react/jsx-runtime";
|
|
3200
|
+
var FileTreeIcon = (props) => /* @__PURE__ */ jsx67(
|
|
2968
3201
|
"svg",
|
|
2969
3202
|
{
|
|
2970
3203
|
...props,
|
|
2971
3204
|
viewBox: "0 0 24 24",
|
|
2972
3205
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2973
|
-
children: /* @__PURE__ */
|
|
3206
|
+
children: /* @__PURE__ */ jsx67(
|
|
2974
3207
|
"path",
|
|
2975
3208
|
{
|
|
2976
3209
|
clipRule: "evenodd",
|
|
@@ -2983,14 +3216,14 @@ var FileTreeIcon = (props) => /* @__PURE__ */ jsx65(
|
|
|
2983
3216
|
);
|
|
2984
3217
|
|
|
2985
3218
|
// src/components/Icon/icons/FilterIcon.tsx
|
|
2986
|
-
import { jsx as
|
|
2987
|
-
var FilterIcon = (props) => /* @__PURE__ */
|
|
3219
|
+
import { jsx as jsx68 } from "react/jsx-runtime";
|
|
3220
|
+
var FilterIcon = (props) => /* @__PURE__ */ jsx68(
|
|
2988
3221
|
"svg",
|
|
2989
3222
|
{
|
|
2990
3223
|
...props,
|
|
2991
3224
|
viewBox: "0 0 24 24",
|
|
2992
3225
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2993
|
-
children: /* @__PURE__ */
|
|
3226
|
+
children: /* @__PURE__ */ jsx68(
|
|
2994
3227
|
"path",
|
|
2995
3228
|
{
|
|
2996
3229
|
clipRule: "evenodd",
|
|
@@ -3003,14 +3236,14 @@ var FilterIcon = (props) => /* @__PURE__ */ jsx66(
|
|
|
3003
3236
|
);
|
|
3004
3237
|
|
|
3005
3238
|
// src/components/Icon/icons/FontsIcon.tsx
|
|
3006
|
-
import { jsx as
|
|
3007
|
-
var FontsIcon = (props) => /* @__PURE__ */
|
|
3239
|
+
import { jsx as jsx69 } from "react/jsx-runtime";
|
|
3240
|
+
var FontsIcon = (props) => /* @__PURE__ */ jsx69(
|
|
3008
3241
|
"svg",
|
|
3009
3242
|
{
|
|
3010
3243
|
...props,
|
|
3011
3244
|
viewBox: "0 0 24 24",
|
|
3012
3245
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3013
|
-
children: /* @__PURE__ */
|
|
3246
|
+
children: /* @__PURE__ */ jsx69(
|
|
3014
3247
|
"path",
|
|
3015
3248
|
{
|
|
3016
3249
|
clipRule: "evenodd",
|
|
@@ -3023,14 +3256,14 @@ var FontsIcon = (props) => /* @__PURE__ */ jsx67(
|
|
|
3023
3256
|
);
|
|
3024
3257
|
|
|
3025
3258
|
// src/components/Icon/icons/FullScreenIcon.tsx
|
|
3026
|
-
import { jsx as
|
|
3027
|
-
var FullScreenIcon = (props) => /* @__PURE__ */
|
|
3259
|
+
import { jsx as jsx70 } from "react/jsx-runtime";
|
|
3260
|
+
var FullScreenIcon = (props) => /* @__PURE__ */ jsx70(
|
|
3028
3261
|
"svg",
|
|
3029
3262
|
{
|
|
3030
3263
|
...props,
|
|
3031
3264
|
viewBox: "0 0 24 24",
|
|
3032
3265
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3033
|
-
children: /* @__PURE__ */
|
|
3266
|
+
children: /* @__PURE__ */ jsx70(
|
|
3034
3267
|
"path",
|
|
3035
3268
|
{
|
|
3036
3269
|
clipRule: "evenodd",
|
|
@@ -3043,14 +3276,14 @@ var FullScreenIcon = (props) => /* @__PURE__ */ jsx68(
|
|
|
3043
3276
|
);
|
|
3044
3277
|
|
|
3045
3278
|
// src/components/Icon/icons/GearIcon.tsx
|
|
3046
|
-
import { jsx as
|
|
3047
|
-
var GearIcon = (props) => /* @__PURE__ */
|
|
3279
|
+
import { jsx as jsx71 } from "react/jsx-runtime";
|
|
3280
|
+
var GearIcon = (props) => /* @__PURE__ */ jsx71(
|
|
3048
3281
|
"svg",
|
|
3049
3282
|
{
|
|
3050
3283
|
...props,
|
|
3051
3284
|
viewBox: "0 0 24 24",
|
|
3052
3285
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3053
|
-
children: /* @__PURE__ */
|
|
3286
|
+
children: /* @__PURE__ */ jsx71(
|
|
3054
3287
|
"path",
|
|
3055
3288
|
{
|
|
3056
3289
|
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",
|
|
@@ -3061,14 +3294,14 @@ var GearIcon = (props) => /* @__PURE__ */ jsx69(
|
|
|
3061
3294
|
);
|
|
3062
3295
|
|
|
3063
3296
|
// src/components/Icon/icons/GettingStartedIcon.tsx
|
|
3064
|
-
import { jsx as
|
|
3065
|
-
var GettingStartedIcon = (props) => /* @__PURE__ */
|
|
3297
|
+
import { jsx as jsx72 } from "react/jsx-runtime";
|
|
3298
|
+
var GettingStartedIcon = (props) => /* @__PURE__ */ jsx72(
|
|
3066
3299
|
"svg",
|
|
3067
3300
|
{
|
|
3068
3301
|
...props,
|
|
3069
3302
|
viewBox: "0 0 24 24",
|
|
3070
3303
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3071
|
-
children: /* @__PURE__ */
|
|
3304
|
+
children: /* @__PURE__ */ jsx72(
|
|
3072
3305
|
"path",
|
|
3073
3306
|
{
|
|
3074
3307
|
clipRule: "evenodd",
|
|
@@ -3081,14 +3314,14 @@ var GettingStartedIcon = (props) => /* @__PURE__ */ jsx70(
|
|
|
3081
3314
|
);
|
|
3082
3315
|
|
|
3083
3316
|
// src/components/Icon/icons/GridIcon.tsx
|
|
3084
|
-
import { jsx as
|
|
3085
|
-
var GridIcon = (props) => /* @__PURE__ */
|
|
3317
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3318
|
+
var GridIcon = (props) => /* @__PURE__ */ jsx73(
|
|
3086
3319
|
"svg",
|
|
3087
3320
|
{
|
|
3088
3321
|
...props,
|
|
3089
3322
|
viewBox: "0 0 24 24",
|
|
3090
3323
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3091
|
-
children: /* @__PURE__ */
|
|
3324
|
+
children: /* @__PURE__ */ jsx73(
|
|
3092
3325
|
"path",
|
|
3093
3326
|
{
|
|
3094
3327
|
clipRule: "evenodd",
|
|
@@ -3101,14 +3334,14 @@ var GridIcon = (props) => /* @__PURE__ */ jsx71(
|
|
|
3101
3334
|
);
|
|
3102
3335
|
|
|
3103
3336
|
// src/components/Icon/icons/GripDotsVerticalIcon.tsx
|
|
3104
|
-
import { jsx as
|
|
3105
|
-
var GripDotsVerticalIcon = (props) => /* @__PURE__ */
|
|
3337
|
+
import { jsx as jsx74 } from "react/jsx-runtime";
|
|
3338
|
+
var GripDotsVerticalIcon = (props) => /* @__PURE__ */ jsx74(
|
|
3106
3339
|
"svg",
|
|
3107
3340
|
{
|
|
3108
3341
|
...props,
|
|
3109
3342
|
viewBox: "0 0 24 24",
|
|
3110
3343
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3111
|
-
children: /* @__PURE__ */
|
|
3344
|
+
children: /* @__PURE__ */ jsx74(
|
|
3112
3345
|
"path",
|
|
3113
3346
|
{
|
|
3114
3347
|
clipRule: "evenodd",
|
|
@@ -3121,14 +3354,14 @@ var GripDotsVerticalIcon = (props) => /* @__PURE__ */ jsx72(
|
|
|
3121
3354
|
);
|
|
3122
3355
|
|
|
3123
3356
|
// src/components/Icon/icons/HelpCenterIcon.tsx
|
|
3124
|
-
import { jsx as
|
|
3125
|
-
var HelpCenterIcon = (props) => /* @__PURE__ */
|
|
3357
|
+
import { jsx as jsx75 } from "react/jsx-runtime";
|
|
3358
|
+
var HelpCenterIcon = (props) => /* @__PURE__ */ jsx75(
|
|
3126
3359
|
"svg",
|
|
3127
3360
|
{
|
|
3128
3361
|
...props,
|
|
3129
3362
|
viewBox: "0 0 24 24",
|
|
3130
3363
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3131
|
-
children: /* @__PURE__ */
|
|
3364
|
+
children: /* @__PURE__ */ jsx75(
|
|
3132
3365
|
"path",
|
|
3133
3366
|
{
|
|
3134
3367
|
clipRule: "evenodd",
|
|
@@ -3141,14 +3374,14 @@ var HelpCenterIcon = (props) => /* @__PURE__ */ jsx73(
|
|
|
3141
3374
|
);
|
|
3142
3375
|
|
|
3143
3376
|
// src/components/Icon/icons/HideIcon.tsx
|
|
3144
|
-
import { jsx as
|
|
3145
|
-
var HideIcon = (props) => /* @__PURE__ */
|
|
3377
|
+
import { jsx as jsx76 } from "react/jsx-runtime";
|
|
3378
|
+
var HideIcon = (props) => /* @__PURE__ */ jsx76(
|
|
3146
3379
|
"svg",
|
|
3147
3380
|
{
|
|
3148
3381
|
...props,
|
|
3149
3382
|
viewBox: "0 0 24 24",
|
|
3150
3383
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3151
|
-
children: /* @__PURE__ */
|
|
3384
|
+
children: /* @__PURE__ */ jsx76(
|
|
3152
3385
|
"path",
|
|
3153
3386
|
{
|
|
3154
3387
|
clipRule: "evenodd",
|
|
@@ -3161,14 +3394,14 @@ var HideIcon = (props) => /* @__PURE__ */ jsx74(
|
|
|
3161
3394
|
);
|
|
3162
3395
|
|
|
3163
3396
|
// src/components/Icon/icons/HomeIcon.tsx
|
|
3164
|
-
import { jsx as
|
|
3165
|
-
var HomeIcon = (props) => /* @__PURE__ */
|
|
3397
|
+
import { jsx as jsx77 } from "react/jsx-runtime";
|
|
3398
|
+
var HomeIcon = (props) => /* @__PURE__ */ jsx77(
|
|
3166
3399
|
"svg",
|
|
3167
3400
|
{
|
|
3168
3401
|
...props,
|
|
3169
3402
|
viewBox: "0 0 24 24",
|
|
3170
3403
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3171
|
-
children: /* @__PURE__ */
|
|
3404
|
+
children: /* @__PURE__ */ jsx77(
|
|
3172
3405
|
"path",
|
|
3173
3406
|
{
|
|
3174
3407
|
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",
|
|
@@ -3179,14 +3412,14 @@ var HomeIcon = (props) => /* @__PURE__ */ jsx75(
|
|
|
3179
3412
|
);
|
|
3180
3413
|
|
|
3181
3414
|
// src/components/Icon/icons/HourglassIcon.tsx
|
|
3182
|
-
import { jsx as
|
|
3183
|
-
var HourglassIcon = (props) => /* @__PURE__ */
|
|
3415
|
+
import { jsx as jsx78 } from "react/jsx-runtime";
|
|
3416
|
+
var HourglassIcon = (props) => /* @__PURE__ */ jsx78(
|
|
3184
3417
|
"svg",
|
|
3185
3418
|
{
|
|
3186
3419
|
...props,
|
|
3187
3420
|
viewBox: "0 0 24 24",
|
|
3188
3421
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3189
|
-
children: /* @__PURE__ */
|
|
3422
|
+
children: /* @__PURE__ */ jsx78(
|
|
3190
3423
|
"path",
|
|
3191
3424
|
{
|
|
3192
3425
|
clipRule: "evenodd",
|
|
@@ -3199,14 +3432,14 @@ var HourglassIcon = (props) => /* @__PURE__ */ jsx76(
|
|
|
3199
3432
|
);
|
|
3200
3433
|
|
|
3201
3434
|
// src/components/Icon/icons/InfoIcon.tsx
|
|
3202
|
-
import { jsx as
|
|
3203
|
-
var InfoIcon = (props) => /* @__PURE__ */
|
|
3435
|
+
import { jsx as jsx79 } from "react/jsx-runtime";
|
|
3436
|
+
var InfoIcon = (props) => /* @__PURE__ */ jsx79(
|
|
3204
3437
|
"svg",
|
|
3205
3438
|
{
|
|
3206
3439
|
...props,
|
|
3207
3440
|
viewBox: "0 0 24 24",
|
|
3208
3441
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3209
|
-
children: /* @__PURE__ */
|
|
3442
|
+
children: /* @__PURE__ */ jsx79(
|
|
3210
3443
|
"path",
|
|
3211
3444
|
{
|
|
3212
3445
|
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",
|
|
@@ -3217,14 +3450,14 @@ var InfoIcon = (props) => /* @__PURE__ */ jsx77(
|
|
|
3217
3450
|
);
|
|
3218
3451
|
|
|
3219
3452
|
// src/components/Icon/icons/IntegrationsIcon.tsx
|
|
3220
|
-
import { jsx as
|
|
3221
|
-
var IntegrationsIcon = (props) => /* @__PURE__ */
|
|
3453
|
+
import { jsx as jsx80 } from "react/jsx-runtime";
|
|
3454
|
+
var IntegrationsIcon = (props) => /* @__PURE__ */ jsx80(
|
|
3222
3455
|
"svg",
|
|
3223
3456
|
{
|
|
3224
3457
|
...props,
|
|
3225
3458
|
viewBox: "0 0 24 24",
|
|
3226
3459
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3227
|
-
children: /* @__PURE__ */
|
|
3460
|
+
children: /* @__PURE__ */ jsx80(
|
|
3228
3461
|
"path",
|
|
3229
3462
|
{
|
|
3230
3463
|
clipRule: "evenodd",
|
|
@@ -3237,14 +3470,14 @@ var IntegrationsIcon = (props) => /* @__PURE__ */ jsx78(
|
|
|
3237
3470
|
);
|
|
3238
3471
|
|
|
3239
3472
|
// src/components/Icon/icons/LeaveIcon.tsx
|
|
3240
|
-
import { jsx as
|
|
3241
|
-
var LeaveIcon = (props) => /* @__PURE__ */
|
|
3473
|
+
import { jsx as jsx81 } from "react/jsx-runtime";
|
|
3474
|
+
var LeaveIcon = (props) => /* @__PURE__ */ jsx81(
|
|
3242
3475
|
"svg",
|
|
3243
3476
|
{
|
|
3244
3477
|
...props,
|
|
3245
3478
|
viewBox: "0 0 24 24",
|
|
3246
3479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3247
|
-
children: /* @__PURE__ */
|
|
3480
|
+
children: /* @__PURE__ */ jsx81(
|
|
3248
3481
|
"path",
|
|
3249
3482
|
{
|
|
3250
3483
|
clipRule: "evenodd",
|
|
@@ -3257,14 +3490,14 @@ var LeaveIcon = (props) => /* @__PURE__ */ jsx79(
|
|
|
3257
3490
|
);
|
|
3258
3491
|
|
|
3259
3492
|
// src/components/Icon/icons/LinkIcon.tsx
|
|
3260
|
-
import { jsx as
|
|
3261
|
-
var LinkIcon = (props) => /* @__PURE__ */
|
|
3493
|
+
import { jsx as jsx82 } from "react/jsx-runtime";
|
|
3494
|
+
var LinkIcon = (props) => /* @__PURE__ */ jsx82(
|
|
3262
3495
|
"svg",
|
|
3263
3496
|
{
|
|
3264
3497
|
...props,
|
|
3265
3498
|
viewBox: "0 0 24 24",
|
|
3266
3499
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3267
|
-
children: /* @__PURE__ */
|
|
3500
|
+
children: /* @__PURE__ */ jsx82(
|
|
3268
3501
|
"path",
|
|
3269
3502
|
{
|
|
3270
3503
|
clipRule: "evenodd",
|
|
@@ -3277,14 +3510,14 @@ var LinkIcon = (props) => /* @__PURE__ */ jsx80(
|
|
|
3277
3510
|
);
|
|
3278
3511
|
|
|
3279
3512
|
// src/components/Icon/icons/ListIcon.tsx
|
|
3280
|
-
import { jsx as
|
|
3281
|
-
var ListIcon = (props) => /* @__PURE__ */
|
|
3513
|
+
import { jsx as jsx83 } from "react/jsx-runtime";
|
|
3514
|
+
var ListIcon = (props) => /* @__PURE__ */ jsx83(
|
|
3282
3515
|
"svg",
|
|
3283
3516
|
{
|
|
3284
3517
|
...props,
|
|
3285
3518
|
viewBox: "0 0 24 24",
|
|
3286
3519
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3287
|
-
children: /* @__PURE__ */
|
|
3520
|
+
children: /* @__PURE__ */ jsx83(
|
|
3288
3521
|
"path",
|
|
3289
3522
|
{
|
|
3290
3523
|
clipRule: "evenodd",
|
|
@@ -3297,14 +3530,14 @@ var ListIcon = (props) => /* @__PURE__ */ jsx81(
|
|
|
3297
3530
|
);
|
|
3298
3531
|
|
|
3299
3532
|
// src/components/Icon/icons/LiveIcon.tsx
|
|
3300
|
-
import { jsx as
|
|
3301
|
-
var LiveIcon = (props) => /* @__PURE__ */
|
|
3533
|
+
import { jsx as jsx84 } from "react/jsx-runtime";
|
|
3534
|
+
var LiveIcon = (props) => /* @__PURE__ */ jsx84(
|
|
3302
3535
|
"svg",
|
|
3303
3536
|
{
|
|
3304
3537
|
...props,
|
|
3305
3538
|
viewBox: "0 0 24 24",
|
|
3306
3539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3307
|
-
children: /* @__PURE__ */
|
|
3540
|
+
children: /* @__PURE__ */ jsx84(
|
|
3308
3541
|
"path",
|
|
3309
3542
|
{
|
|
3310
3543
|
clipRule: "evenodd",
|
|
@@ -3317,14 +3550,14 @@ var LiveIcon = (props) => /* @__PURE__ */ jsx82(
|
|
|
3317
3550
|
);
|
|
3318
3551
|
|
|
3319
3552
|
// src/components/Icon/icons/LockIcon.tsx
|
|
3320
|
-
import { jsx as
|
|
3321
|
-
var LockIcon = (props) => /* @__PURE__ */
|
|
3553
|
+
import { jsx as jsx85 } from "react/jsx-runtime";
|
|
3554
|
+
var LockIcon = (props) => /* @__PURE__ */ jsx85(
|
|
3322
3555
|
"svg",
|
|
3323
3556
|
{
|
|
3324
3557
|
...props,
|
|
3325
3558
|
viewBox: "0 0 24 24",
|
|
3326
3559
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3327
|
-
children: /* @__PURE__ */
|
|
3560
|
+
children: /* @__PURE__ */ jsx85(
|
|
3328
3561
|
"path",
|
|
3329
3562
|
{
|
|
3330
3563
|
clipRule: "evenodd",
|
|
@@ -3337,14 +3570,14 @@ var LockIcon = (props) => /* @__PURE__ */ jsx83(
|
|
|
3337
3570
|
);
|
|
3338
3571
|
|
|
3339
3572
|
// src/components/Icon/icons/LogoutIcon.tsx
|
|
3340
|
-
import { jsx as
|
|
3341
|
-
var LogoutIcon = (props) => /* @__PURE__ */
|
|
3573
|
+
import { jsx as jsx86 } from "react/jsx-runtime";
|
|
3574
|
+
var LogoutIcon = (props) => /* @__PURE__ */ jsx86(
|
|
3342
3575
|
"svg",
|
|
3343
3576
|
{
|
|
3344
3577
|
...props,
|
|
3345
3578
|
viewBox: "0 0 24 24",
|
|
3346
3579
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3347
|
-
children: /* @__PURE__ */
|
|
3580
|
+
children: /* @__PURE__ */ jsx86(
|
|
3348
3581
|
"path",
|
|
3349
3582
|
{
|
|
3350
3583
|
clipRule: "evenodd",
|
|
@@ -3357,14 +3590,14 @@ var LogoutIcon = (props) => /* @__PURE__ */ jsx84(
|
|
|
3357
3590
|
);
|
|
3358
3591
|
|
|
3359
3592
|
// src/components/Icon/icons/MaximizeIcon.tsx
|
|
3360
|
-
import { jsx as
|
|
3361
|
-
var MaximizeIcon = (props) => /* @__PURE__ */
|
|
3593
|
+
import { jsx as jsx87 } from "react/jsx-runtime";
|
|
3594
|
+
var MaximizeIcon = (props) => /* @__PURE__ */ jsx87(
|
|
3362
3595
|
"svg",
|
|
3363
3596
|
{
|
|
3364
3597
|
...props,
|
|
3365
3598
|
viewBox: "0 0 24 24",
|
|
3366
3599
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3367
|
-
children: /* @__PURE__ */
|
|
3600
|
+
children: /* @__PURE__ */ jsx87(
|
|
3368
3601
|
"path",
|
|
3369
3602
|
{
|
|
3370
3603
|
clipRule: "evenodd",
|
|
@@ -3377,14 +3610,14 @@ var MaximizeIcon = (props) => /* @__PURE__ */ jsx85(
|
|
|
3377
3610
|
);
|
|
3378
3611
|
|
|
3379
3612
|
// src/components/Icon/icons/MediaIcon.tsx
|
|
3380
|
-
import { jsx as
|
|
3381
|
-
var MediaIcon = (props) => /* @__PURE__ */
|
|
3613
|
+
import { jsx as jsx88 } from "react/jsx-runtime";
|
|
3614
|
+
var MediaIcon = (props) => /* @__PURE__ */ jsx88(
|
|
3382
3615
|
"svg",
|
|
3383
3616
|
{
|
|
3384
3617
|
...props,
|
|
3385
3618
|
viewBox: "0 0 24 24",
|
|
3386
3619
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3387
|
-
children: /* @__PURE__ */
|
|
3620
|
+
children: /* @__PURE__ */ jsx88(
|
|
3388
3621
|
"path",
|
|
3389
3622
|
{
|
|
3390
3623
|
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",
|
|
@@ -3395,14 +3628,14 @@ var MediaIcon = (props) => /* @__PURE__ */ jsx86(
|
|
|
3395
3628
|
);
|
|
3396
3629
|
|
|
3397
3630
|
// src/components/Icon/icons/MenuIcon.tsx
|
|
3398
|
-
import { jsx as
|
|
3399
|
-
var MenuIcon = (props) => /* @__PURE__ */
|
|
3631
|
+
import { jsx as jsx89 } from "react/jsx-runtime";
|
|
3632
|
+
var MenuIcon = (props) => /* @__PURE__ */ jsx89(
|
|
3400
3633
|
"svg",
|
|
3401
3634
|
{
|
|
3402
3635
|
...props,
|
|
3403
3636
|
viewBox: "0 0 24 24",
|
|
3404
3637
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3405
|
-
children: /* @__PURE__ */
|
|
3638
|
+
children: /* @__PURE__ */ jsx89(
|
|
3406
3639
|
"path",
|
|
3407
3640
|
{
|
|
3408
3641
|
clipRule: "evenodd",
|
|
@@ -3415,14 +3648,14 @@ var MenuIcon = (props) => /* @__PURE__ */ jsx87(
|
|
|
3415
3648
|
);
|
|
3416
3649
|
|
|
3417
3650
|
// src/components/Icon/icons/MicIcon.tsx
|
|
3418
|
-
import { jsx as
|
|
3419
|
-
var MicIcon = (props) => /* @__PURE__ */
|
|
3651
|
+
import { jsx as jsx90 } from "react/jsx-runtime";
|
|
3652
|
+
var MicIcon = (props) => /* @__PURE__ */ jsx90(
|
|
3420
3653
|
"svg",
|
|
3421
3654
|
{
|
|
3422
3655
|
...props,
|
|
3423
3656
|
viewBox: "0 0 24 24",
|
|
3424
3657
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3425
|
-
children: /* @__PURE__ */
|
|
3658
|
+
children: /* @__PURE__ */ jsx90(
|
|
3426
3659
|
"path",
|
|
3427
3660
|
{
|
|
3428
3661
|
clipRule: "evenodd",
|
|
@@ -3435,14 +3668,14 @@ var MicIcon = (props) => /* @__PURE__ */ jsx88(
|
|
|
3435
3668
|
);
|
|
3436
3669
|
|
|
3437
3670
|
// src/components/Icon/icons/MicOffIcon.tsx
|
|
3438
|
-
import { jsx as
|
|
3439
|
-
var MicOffIcon = (props) => /* @__PURE__ */
|
|
3671
|
+
import { jsx as jsx91 } from "react/jsx-runtime";
|
|
3672
|
+
var MicOffIcon = (props) => /* @__PURE__ */ jsx91(
|
|
3440
3673
|
"svg",
|
|
3441
3674
|
{
|
|
3442
3675
|
...props,
|
|
3443
3676
|
viewBox: "0 0 24 24",
|
|
3444
3677
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3445
|
-
children: /* @__PURE__ */
|
|
3678
|
+
children: /* @__PURE__ */ jsx91(
|
|
3446
3679
|
"path",
|
|
3447
3680
|
{
|
|
3448
3681
|
clipRule: "evenodd",
|
|
@@ -3455,14 +3688,14 @@ var MicOffIcon = (props) => /* @__PURE__ */ jsx89(
|
|
|
3455
3688
|
);
|
|
3456
3689
|
|
|
3457
3690
|
// src/components/Icon/icons/MinimizeIcon.tsx
|
|
3458
|
-
import { jsx as
|
|
3459
|
-
var MinimizeIcon = (props) => /* @__PURE__ */
|
|
3691
|
+
import { jsx as jsx92 } from "react/jsx-runtime";
|
|
3692
|
+
var MinimizeIcon = (props) => /* @__PURE__ */ jsx92(
|
|
3460
3693
|
"svg",
|
|
3461
3694
|
{
|
|
3462
3695
|
...props,
|
|
3463
3696
|
viewBox: "0 0 24 24",
|
|
3464
3697
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3465
|
-
children: /* @__PURE__ */
|
|
3698
|
+
children: /* @__PURE__ */ jsx92(
|
|
3466
3699
|
"path",
|
|
3467
3700
|
{
|
|
3468
3701
|
clipRule: "evenodd",
|
|
@@ -3475,14 +3708,14 @@ var MinimizeIcon = (props) => /* @__PURE__ */ jsx90(
|
|
|
3475
3708
|
);
|
|
3476
3709
|
|
|
3477
3710
|
// src/components/Icon/icons/MinusCircleIcon.tsx
|
|
3478
|
-
import { jsx as
|
|
3479
|
-
var MinusCircleIcon = (props) => /* @__PURE__ */
|
|
3711
|
+
import { jsx as jsx93 } from "react/jsx-runtime";
|
|
3712
|
+
var MinusCircleIcon = (props) => /* @__PURE__ */ jsx93(
|
|
3480
3713
|
"svg",
|
|
3481
3714
|
{
|
|
3482
3715
|
...props,
|
|
3483
3716
|
viewBox: "0 0 24 24",
|
|
3484
3717
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3485
|
-
children: /* @__PURE__ */
|
|
3718
|
+
children: /* @__PURE__ */ jsx93(
|
|
3486
3719
|
"path",
|
|
3487
3720
|
{
|
|
3488
3721
|
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",
|
|
@@ -3493,14 +3726,14 @@ var MinusCircleIcon = (props) => /* @__PURE__ */ jsx91(
|
|
|
3493
3726
|
);
|
|
3494
3727
|
|
|
3495
3728
|
// src/components/Icon/icons/MobileIcon.tsx
|
|
3496
|
-
import { jsx as
|
|
3497
|
-
var MobileIcon = (props) => /* @__PURE__ */
|
|
3729
|
+
import { jsx as jsx94 } from "react/jsx-runtime";
|
|
3730
|
+
var MobileIcon = (props) => /* @__PURE__ */ jsx94(
|
|
3498
3731
|
"svg",
|
|
3499
3732
|
{
|
|
3500
3733
|
...props,
|
|
3501
3734
|
viewBox: "0 0 24 24",
|
|
3502
3735
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3503
|
-
children: /* @__PURE__ */
|
|
3736
|
+
children: /* @__PURE__ */ jsx94(
|
|
3504
3737
|
"path",
|
|
3505
3738
|
{
|
|
3506
3739
|
clipRule: "evenodd",
|
|
@@ -3513,14 +3746,14 @@ var MobileIcon = (props) => /* @__PURE__ */ jsx92(
|
|
|
3513
3746
|
);
|
|
3514
3747
|
|
|
3515
3748
|
// src/components/Icon/icons/MoreOptionsIcon.tsx
|
|
3516
|
-
import { jsx as
|
|
3517
|
-
var MoreOptionsIcon = (props) => /* @__PURE__ */
|
|
3749
|
+
import { jsx as jsx95 } from "react/jsx-runtime";
|
|
3750
|
+
var MoreOptionsIcon = (props) => /* @__PURE__ */ jsx95(
|
|
3518
3751
|
"svg",
|
|
3519
3752
|
{
|
|
3520
3753
|
...props,
|
|
3521
3754
|
viewBox: "0 0 24 24",
|
|
3522
3755
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3523
|
-
children: /* @__PURE__ */
|
|
3756
|
+
children: /* @__PURE__ */ jsx95(
|
|
3524
3757
|
"path",
|
|
3525
3758
|
{
|
|
3526
3759
|
clipRule: "evenodd",
|
|
@@ -3533,14 +3766,14 @@ var MoreOptionsIcon = (props) => /* @__PURE__ */ jsx93(
|
|
|
3533
3766
|
);
|
|
3534
3767
|
|
|
3535
3768
|
// src/components/Icon/icons/MoveLeftIcon.tsx
|
|
3536
|
-
import { jsx as
|
|
3537
|
-
var MoveLeftIcon = (props) => /* @__PURE__ */
|
|
3769
|
+
import { jsx as jsx96 } from "react/jsx-runtime";
|
|
3770
|
+
var MoveLeftIcon = (props) => /* @__PURE__ */ jsx96(
|
|
3538
3771
|
"svg",
|
|
3539
3772
|
{
|
|
3540
3773
|
...props,
|
|
3541
3774
|
viewBox: "0 0 24 24",
|
|
3542
3775
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3543
|
-
children: /* @__PURE__ */
|
|
3776
|
+
children: /* @__PURE__ */ jsx96(
|
|
3544
3777
|
"path",
|
|
3545
3778
|
{
|
|
3546
3779
|
clipRule: "evenodd",
|
|
@@ -3553,14 +3786,14 @@ var MoveLeftIcon = (props) => /* @__PURE__ */ jsx94(
|
|
|
3553
3786
|
);
|
|
3554
3787
|
|
|
3555
3788
|
// src/components/Icon/icons/MoveRightIcon.tsx
|
|
3556
|
-
import { jsx as
|
|
3557
|
-
var MoveRightIcon = (props) => /* @__PURE__ */
|
|
3789
|
+
import { jsx as jsx97 } from "react/jsx-runtime";
|
|
3790
|
+
var MoveRightIcon = (props) => /* @__PURE__ */ jsx97(
|
|
3558
3791
|
"svg",
|
|
3559
3792
|
{
|
|
3560
3793
|
...props,
|
|
3561
3794
|
viewBox: "0 0 24 24",
|
|
3562
3795
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3563
|
-
children: /* @__PURE__ */
|
|
3796
|
+
children: /* @__PURE__ */ jsx97(
|
|
3564
3797
|
"path",
|
|
3565
3798
|
{
|
|
3566
3799
|
clipRule: "evenodd",
|
|
@@ -3573,14 +3806,14 @@ var MoveRightIcon = (props) => /* @__PURE__ */ jsx95(
|
|
|
3573
3806
|
);
|
|
3574
3807
|
|
|
3575
3808
|
// src/components/Icon/icons/MusicIcon.tsx
|
|
3576
|
-
import { jsx as
|
|
3577
|
-
var MusicIcon = (props) => /* @__PURE__ */
|
|
3809
|
+
import { jsx as jsx98 } from "react/jsx-runtime";
|
|
3810
|
+
var MusicIcon = (props) => /* @__PURE__ */ jsx98(
|
|
3578
3811
|
"svg",
|
|
3579
3812
|
{
|
|
3580
3813
|
...props,
|
|
3581
3814
|
viewBox: "0 0 24 24",
|
|
3582
3815
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3583
|
-
children: /* @__PURE__ */
|
|
3816
|
+
children: /* @__PURE__ */ jsx98(
|
|
3584
3817
|
"path",
|
|
3585
3818
|
{
|
|
3586
3819
|
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",
|
|
@@ -3591,14 +3824,14 @@ var MusicIcon = (props) => /* @__PURE__ */ jsx96(
|
|
|
3591
3824
|
);
|
|
3592
3825
|
|
|
3593
3826
|
// src/components/Icon/icons/OpenNewIcon.tsx
|
|
3594
|
-
import { jsx as
|
|
3595
|
-
var OpenNewIcon = (props) => /* @__PURE__ */
|
|
3827
|
+
import { jsx as jsx99 } from "react/jsx-runtime";
|
|
3828
|
+
var OpenNewIcon = (props) => /* @__PURE__ */ jsx99(
|
|
3596
3829
|
"svg",
|
|
3597
3830
|
{
|
|
3598
3831
|
...props,
|
|
3599
3832
|
viewBox: "0 0 24 24",
|
|
3600
3833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3601
|
-
children: /* @__PURE__ */
|
|
3834
|
+
children: /* @__PURE__ */ jsx99(
|
|
3602
3835
|
"path",
|
|
3603
3836
|
{
|
|
3604
3837
|
clipRule: "evenodd",
|
|
@@ -3611,14 +3844,14 @@ var OpenNewIcon = (props) => /* @__PURE__ */ jsx97(
|
|
|
3611
3844
|
);
|
|
3612
3845
|
|
|
3613
3846
|
// src/components/Icon/icons/OverviewIcon.tsx
|
|
3614
|
-
import { jsx as
|
|
3615
|
-
var OverviewIcon = (props) => /* @__PURE__ */
|
|
3847
|
+
import { jsx as jsx100 } from "react/jsx-runtime";
|
|
3848
|
+
var OverviewIcon = (props) => /* @__PURE__ */ jsx100(
|
|
3616
3849
|
"svg",
|
|
3617
3850
|
{
|
|
3618
3851
|
...props,
|
|
3619
3852
|
viewBox: "0 0 24 24",
|
|
3620
3853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3621
|
-
children: /* @__PURE__ */
|
|
3854
|
+
children: /* @__PURE__ */ jsx100(
|
|
3622
3855
|
"path",
|
|
3623
3856
|
{
|
|
3624
3857
|
clipRule: "evenodd",
|
|
@@ -3631,14 +3864,14 @@ var OverviewIcon = (props) => /* @__PURE__ */ jsx98(
|
|
|
3631
3864
|
);
|
|
3632
3865
|
|
|
3633
3866
|
// src/components/Icon/icons/PageIcon.tsx
|
|
3634
|
-
import { jsx as
|
|
3635
|
-
var PageIcon = (props) => /* @__PURE__ */
|
|
3867
|
+
import { jsx as jsx101 } from "react/jsx-runtime";
|
|
3868
|
+
var PageIcon = (props) => /* @__PURE__ */ jsx101(
|
|
3636
3869
|
"svg",
|
|
3637
3870
|
{
|
|
3638
3871
|
...props,
|
|
3639
3872
|
viewBox: "0 0 24 24",
|
|
3640
3873
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3641
|
-
children: /* @__PURE__ */
|
|
3874
|
+
children: /* @__PURE__ */ jsx101(
|
|
3642
3875
|
"path",
|
|
3643
3876
|
{
|
|
3644
3877
|
clipRule: "evenodd",
|
|
@@ -3651,14 +3884,14 @@ var PageIcon = (props) => /* @__PURE__ */ jsx99(
|
|
|
3651
3884
|
);
|
|
3652
3885
|
|
|
3653
3886
|
// src/components/Icon/icons/PanelLeftIcon.tsx
|
|
3654
|
-
import { jsx as
|
|
3655
|
-
var PanelLeftIcon = (props) => /* @__PURE__ */
|
|
3887
|
+
import { jsx as jsx102 } from "react/jsx-runtime";
|
|
3888
|
+
var PanelLeftIcon = (props) => /* @__PURE__ */ jsx102(
|
|
3656
3889
|
"svg",
|
|
3657
3890
|
{
|
|
3658
3891
|
...props,
|
|
3659
3892
|
viewBox: "0 0 24 24",
|
|
3660
3893
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3661
|
-
children: /* @__PURE__ */
|
|
3894
|
+
children: /* @__PURE__ */ jsx102(
|
|
3662
3895
|
"path",
|
|
3663
3896
|
{
|
|
3664
3897
|
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",
|
|
@@ -3669,14 +3902,14 @@ var PanelLeftIcon = (props) => /* @__PURE__ */ jsx100(
|
|
|
3669
3902
|
);
|
|
3670
3903
|
|
|
3671
3904
|
// src/components/Icon/icons/PanelRightIcon.tsx
|
|
3672
|
-
import { jsx as
|
|
3673
|
-
var PanelRightIcon = (props) => /* @__PURE__ */
|
|
3905
|
+
import { jsx as jsx103 } from "react/jsx-runtime";
|
|
3906
|
+
var PanelRightIcon = (props) => /* @__PURE__ */ jsx103(
|
|
3674
3907
|
"svg",
|
|
3675
3908
|
{
|
|
3676
3909
|
...props,
|
|
3677
3910
|
viewBox: "0 0 24 24",
|
|
3678
3911
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3679
|
-
children: /* @__PURE__ */
|
|
3912
|
+
children: /* @__PURE__ */ jsx103(
|
|
3680
3913
|
"path",
|
|
3681
3914
|
{
|
|
3682
3915
|
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",
|
|
@@ -3687,14 +3920,14 @@ var PanelRightIcon = (props) => /* @__PURE__ */ jsx101(
|
|
|
3687
3920
|
);
|
|
3688
3921
|
|
|
3689
3922
|
// src/components/Icon/icons/PanelUpIcon.tsx
|
|
3690
|
-
import { jsx as
|
|
3691
|
-
var PanelUpIcon = (props) => /* @__PURE__ */
|
|
3923
|
+
import { jsx as jsx104 } from "react/jsx-runtime";
|
|
3924
|
+
var PanelUpIcon = (props) => /* @__PURE__ */ jsx104(
|
|
3692
3925
|
"svg",
|
|
3693
3926
|
{
|
|
3694
3927
|
...props,
|
|
3695
3928
|
viewBox: "0 0 24 24",
|
|
3696
3929
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3697
|
-
children: /* @__PURE__ */
|
|
3930
|
+
children: /* @__PURE__ */ jsx104(
|
|
3698
3931
|
"path",
|
|
3699
3932
|
{
|
|
3700
3933
|
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",
|
|
@@ -3705,14 +3938,14 @@ var PanelUpIcon = (props) => /* @__PURE__ */ jsx102(
|
|
|
3705
3938
|
);
|
|
3706
3939
|
|
|
3707
3940
|
// src/components/Icon/icons/PasswordIcon.tsx
|
|
3708
|
-
import { jsx as
|
|
3709
|
-
var PasswordIcon = (props) => /* @__PURE__ */
|
|
3941
|
+
import { jsx as jsx105 } from "react/jsx-runtime";
|
|
3942
|
+
var PasswordIcon = (props) => /* @__PURE__ */ jsx105(
|
|
3710
3943
|
"svg",
|
|
3711
3944
|
{
|
|
3712
3945
|
...props,
|
|
3713
3946
|
viewBox: "0 0 24 24",
|
|
3714
3947
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3715
|
-
children: /* @__PURE__ */
|
|
3948
|
+
children: /* @__PURE__ */ jsx105(
|
|
3716
3949
|
"path",
|
|
3717
3950
|
{
|
|
3718
3951
|
clipRule: "evenodd",
|
|
@@ -3725,14 +3958,14 @@ var PasswordIcon = (props) => /* @__PURE__ */ jsx103(
|
|
|
3725
3958
|
);
|
|
3726
3959
|
|
|
3727
3960
|
// src/components/Icon/icons/PencilIcon.tsx
|
|
3728
|
-
import { jsx as
|
|
3729
|
-
var PencilIcon = (props) => /* @__PURE__ */
|
|
3961
|
+
import { jsx as jsx106 } from "react/jsx-runtime";
|
|
3962
|
+
var PencilIcon = (props) => /* @__PURE__ */ jsx106(
|
|
3730
3963
|
"svg",
|
|
3731
3964
|
{
|
|
3732
3965
|
...props,
|
|
3733
3966
|
viewBox: "0 0 24 24",
|
|
3734
3967
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3735
|
-
children: /* @__PURE__ */
|
|
3968
|
+
children: /* @__PURE__ */ jsx106(
|
|
3736
3969
|
"path",
|
|
3737
3970
|
{
|
|
3738
3971
|
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",
|
|
@@ -3743,14 +3976,14 @@ var PencilIcon = (props) => /* @__PURE__ */ jsx104(
|
|
|
3743
3976
|
);
|
|
3744
3977
|
|
|
3745
3978
|
// src/components/Icon/icons/PeopleIcon.tsx
|
|
3746
|
-
import { jsx as
|
|
3747
|
-
var PeopleIcon = (props) => /* @__PURE__ */
|
|
3979
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
3980
|
+
var PeopleIcon = (props) => /* @__PURE__ */ jsx107(
|
|
3748
3981
|
"svg",
|
|
3749
3982
|
{
|
|
3750
3983
|
...props,
|
|
3751
3984
|
viewBox: "0 0 24 24",
|
|
3752
3985
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3753
|
-
children: /* @__PURE__ */
|
|
3986
|
+
children: /* @__PURE__ */ jsx107(
|
|
3754
3987
|
"path",
|
|
3755
3988
|
{
|
|
3756
3989
|
clipRule: "evenodd",
|
|
@@ -3763,14 +3996,14 @@ var PeopleIcon = (props) => /* @__PURE__ */ jsx105(
|
|
|
3763
3996
|
);
|
|
3764
3997
|
|
|
3765
3998
|
// src/components/Icon/icons/PinIcon.tsx
|
|
3766
|
-
import { jsx as
|
|
3767
|
-
var PinIcon = (props) => /* @__PURE__ */
|
|
3999
|
+
import { jsx as jsx108 } from "react/jsx-runtime";
|
|
4000
|
+
var PinIcon = (props) => /* @__PURE__ */ jsx108(
|
|
3768
4001
|
"svg",
|
|
3769
4002
|
{
|
|
3770
4003
|
...props,
|
|
3771
4004
|
viewBox: "0 0 24 24",
|
|
3772
4005
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3773
|
-
children: /* @__PURE__ */
|
|
4006
|
+
children: /* @__PURE__ */ jsx108(
|
|
3774
4007
|
"path",
|
|
3775
4008
|
{
|
|
3776
4009
|
clipRule: "evenodd",
|
|
@@ -3783,14 +4016,14 @@ var PinIcon = (props) => /* @__PURE__ */ jsx106(
|
|
|
3783
4016
|
);
|
|
3784
4017
|
|
|
3785
4018
|
// src/components/Icon/icons/PinSlashIcon.tsx
|
|
3786
|
-
import { jsx as
|
|
3787
|
-
var PinSlashIcon = (props) => /* @__PURE__ */
|
|
4019
|
+
import { jsx as jsx109 } from "react/jsx-runtime";
|
|
4020
|
+
var PinSlashIcon = (props) => /* @__PURE__ */ jsx109(
|
|
3788
4021
|
"svg",
|
|
3789
4022
|
{
|
|
3790
4023
|
...props,
|
|
3791
4024
|
viewBox: "0 0 24 24",
|
|
3792
4025
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3793
|
-
children: /* @__PURE__ */
|
|
4026
|
+
children: /* @__PURE__ */ jsx109(
|
|
3794
4027
|
"path",
|
|
3795
4028
|
{
|
|
3796
4029
|
clipRule: "evenodd",
|
|
@@ -3803,14 +4036,14 @@ var PinSlashIcon = (props) => /* @__PURE__ */ jsx107(
|
|
|
3803
4036
|
);
|
|
3804
4037
|
|
|
3805
4038
|
// src/components/Icon/icons/PlayIcon.tsx
|
|
3806
|
-
import { jsx as
|
|
3807
|
-
var PlayIcon = (props) => /* @__PURE__ */
|
|
4039
|
+
import { jsx as jsx110 } from "react/jsx-runtime";
|
|
4040
|
+
var PlayIcon = (props) => /* @__PURE__ */ jsx110(
|
|
3808
4041
|
"svg",
|
|
3809
4042
|
{
|
|
3810
4043
|
...props,
|
|
3811
4044
|
viewBox: "0 0 24 24",
|
|
3812
4045
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3813
|
-
children: /* @__PURE__ */
|
|
4046
|
+
children: /* @__PURE__ */ jsx110(
|
|
3814
4047
|
"path",
|
|
3815
4048
|
{
|
|
3816
4049
|
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",
|
|
@@ -3821,14 +4054,14 @@ var PlayIcon = (props) => /* @__PURE__ */ jsx108(
|
|
|
3821
4054
|
);
|
|
3822
4055
|
|
|
3823
4056
|
// src/components/Icon/icons/PlayerIcon.tsx
|
|
3824
|
-
import { jsx as
|
|
3825
|
-
var PlayerIcon = (props) => /* @__PURE__ */
|
|
4057
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
4058
|
+
var PlayerIcon = (props) => /* @__PURE__ */ jsx111(
|
|
3826
4059
|
"svg",
|
|
3827
4060
|
{
|
|
3828
4061
|
...props,
|
|
3829
4062
|
viewBox: "0 0 24 24",
|
|
3830
4063
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3831
|
-
children: /* @__PURE__ */
|
|
4064
|
+
children: /* @__PURE__ */ jsx111(
|
|
3832
4065
|
"path",
|
|
3833
4066
|
{
|
|
3834
4067
|
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",
|
|
@@ -3839,14 +4072,14 @@ var PlayerIcon = (props) => /* @__PURE__ */ jsx109(
|
|
|
3839
4072
|
);
|
|
3840
4073
|
|
|
3841
4074
|
// src/components/Icon/icons/PlusIcon.tsx
|
|
3842
|
-
import { jsx as
|
|
3843
|
-
var PlusIcon = (props) => /* @__PURE__ */
|
|
4075
|
+
import { jsx as jsx112 } from "react/jsx-runtime";
|
|
4076
|
+
var PlusIcon = (props) => /* @__PURE__ */ jsx112(
|
|
3844
4077
|
"svg",
|
|
3845
4078
|
{
|
|
3846
4079
|
...props,
|
|
3847
4080
|
viewBox: "0 0 24 24",
|
|
3848
4081
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3849
|
-
children: /* @__PURE__ */
|
|
4082
|
+
children: /* @__PURE__ */ jsx112(
|
|
3850
4083
|
"path",
|
|
3851
4084
|
{
|
|
3852
4085
|
clipRule: "evenodd",
|
|
@@ -3859,14 +4092,14 @@ var PlusIcon = (props) => /* @__PURE__ */ jsx110(
|
|
|
3859
4092
|
);
|
|
3860
4093
|
|
|
3861
4094
|
// src/components/Icon/icons/PodcastIcon.tsx
|
|
3862
|
-
import { jsx as
|
|
3863
|
-
var PodcastIcon = (props) => /* @__PURE__ */
|
|
4095
|
+
import { jsx as jsx113 } from "react/jsx-runtime";
|
|
4096
|
+
var PodcastIcon = (props) => /* @__PURE__ */ jsx113(
|
|
3864
4097
|
"svg",
|
|
3865
4098
|
{
|
|
3866
4099
|
...props,
|
|
3867
4100
|
viewBox: "0 0 24 24",
|
|
3868
4101
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3869
|
-
children: /* @__PURE__ */
|
|
4102
|
+
children: /* @__PURE__ */ jsx113(
|
|
3870
4103
|
"path",
|
|
3871
4104
|
{
|
|
3872
4105
|
clipRule: "evenodd",
|
|
@@ -3879,14 +4112,14 @@ var PodcastIcon = (props) => /* @__PURE__ */ jsx111(
|
|
|
3879
4112
|
);
|
|
3880
4113
|
|
|
3881
4114
|
// src/components/Icon/icons/PreviewIcon.tsx
|
|
3882
|
-
import { jsx as
|
|
3883
|
-
var PreviewIcon = (props) => /* @__PURE__ */
|
|
4115
|
+
import { jsx as jsx114 } from "react/jsx-runtime";
|
|
4116
|
+
var PreviewIcon = (props) => /* @__PURE__ */ jsx114(
|
|
3884
4117
|
"svg",
|
|
3885
4118
|
{
|
|
3886
4119
|
...props,
|
|
3887
4120
|
viewBox: "0 0 24 24",
|
|
3888
4121
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3889
|
-
children: /* @__PURE__ */
|
|
4122
|
+
children: /* @__PURE__ */ jsx114(
|
|
3890
4123
|
"path",
|
|
3891
4124
|
{
|
|
3892
4125
|
clipRule: "evenodd",
|
|
@@ -3899,14 +4132,14 @@ var PreviewIcon = (props) => /* @__PURE__ */ jsx112(
|
|
|
3899
4132
|
);
|
|
3900
4133
|
|
|
3901
4134
|
// src/components/Icon/icons/PrivateUserSessionsIcon.tsx
|
|
3902
|
-
import { jsx as
|
|
3903
|
-
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */
|
|
4135
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
4136
|
+
var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ jsx115(
|
|
3904
4137
|
"svg",
|
|
3905
4138
|
{
|
|
3906
4139
|
...props,
|
|
3907
4140
|
viewBox: "0 0 24 24",
|
|
3908
4141
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3909
|
-
children: /* @__PURE__ */
|
|
4142
|
+
children: /* @__PURE__ */ jsx115(
|
|
3910
4143
|
"path",
|
|
3911
4144
|
{
|
|
3912
4145
|
clipRule: "evenodd",
|
|
@@ -3919,7 +4152,7 @@ var PrivateUserSessionsIcon = (props) => /* @__PURE__ */ jsx113(
|
|
|
3919
4152
|
);
|
|
3920
4153
|
|
|
3921
4154
|
// src/components/Icon/icons/ProjectIcon.tsx
|
|
3922
|
-
import { jsx as
|
|
4155
|
+
import { jsx as jsx116, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
3923
4156
|
var ProjectIcon = (props) => /* @__PURE__ */ jsxs3(
|
|
3924
4157
|
"svg",
|
|
3925
4158
|
{
|
|
@@ -3927,7 +4160,7 @@ var ProjectIcon = (props) => /* @__PURE__ */ jsxs3(
|
|
|
3927
4160
|
viewBox: "0 0 24 24",
|
|
3928
4161
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3929
4162
|
children: [
|
|
3930
|
-
/* @__PURE__ */
|
|
4163
|
+
/* @__PURE__ */ jsx116(
|
|
3931
4164
|
"path",
|
|
3932
4165
|
{
|
|
3933
4166
|
clipRule: "evenodd",
|
|
@@ -3936,7 +4169,7 @@ var ProjectIcon = (props) => /* @__PURE__ */ jsxs3(
|
|
|
3936
4169
|
fillRule: "evenodd"
|
|
3937
4170
|
}
|
|
3938
4171
|
),
|
|
3939
|
-
/* @__PURE__ */
|
|
4172
|
+
/* @__PURE__ */ jsx116(
|
|
3940
4173
|
"path",
|
|
3941
4174
|
{
|
|
3942
4175
|
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",
|
|
@@ -3948,14 +4181,14 @@ var ProjectIcon = (props) => /* @__PURE__ */ jsxs3(
|
|
|
3948
4181
|
);
|
|
3949
4182
|
|
|
3950
4183
|
// src/components/Icon/icons/PropertiesIcon.tsx
|
|
3951
|
-
import { jsx as
|
|
3952
|
-
var PropertiesIcon = (props) => /* @__PURE__ */
|
|
4184
|
+
import { jsx as jsx117 } from "react/jsx-runtime";
|
|
4185
|
+
var PropertiesIcon = (props) => /* @__PURE__ */ jsx117(
|
|
3953
4186
|
"svg",
|
|
3954
4187
|
{
|
|
3955
4188
|
...props,
|
|
3956
4189
|
viewBox: "0 0 24 24",
|
|
3957
4190
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3958
|
-
children: /* @__PURE__ */
|
|
4191
|
+
children: /* @__PURE__ */ jsx117(
|
|
3959
4192
|
"path",
|
|
3960
4193
|
{
|
|
3961
4194
|
clipRule: "evenodd",
|
|
@@ -3968,14 +4201,14 @@ var PropertiesIcon = (props) => /* @__PURE__ */ jsx115(
|
|
|
3968
4201
|
);
|
|
3969
4202
|
|
|
3970
4203
|
// src/components/Icon/icons/QuestionMarkIcon.tsx
|
|
3971
|
-
import { jsx as
|
|
3972
|
-
var QuestionMarkIcon = (props) => /* @__PURE__ */
|
|
4204
|
+
import { jsx as jsx118 } from "react/jsx-runtime";
|
|
4205
|
+
var QuestionMarkIcon = (props) => /* @__PURE__ */ jsx118(
|
|
3973
4206
|
"svg",
|
|
3974
4207
|
{
|
|
3975
4208
|
...props,
|
|
3976
4209
|
viewBox: "0 0 24 24",
|
|
3977
4210
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3978
|
-
children: /* @__PURE__ */
|
|
4211
|
+
children: /* @__PURE__ */ jsx118(
|
|
3979
4212
|
"path",
|
|
3980
4213
|
{
|
|
3981
4214
|
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",
|
|
@@ -3986,14 +4219,14 @@ var QuestionMarkIcon = (props) => /* @__PURE__ */ jsx116(
|
|
|
3986
4219
|
);
|
|
3987
4220
|
|
|
3988
4221
|
// src/components/Icon/icons/ReactIcon.tsx
|
|
3989
|
-
import { jsx as
|
|
3990
|
-
var ReactIcon = (props) => /* @__PURE__ */
|
|
4222
|
+
import { jsx as jsx119 } from "react/jsx-runtime";
|
|
4223
|
+
var ReactIcon = (props) => /* @__PURE__ */ jsx119(
|
|
3991
4224
|
"svg",
|
|
3992
4225
|
{
|
|
3993
4226
|
...props,
|
|
3994
4227
|
viewBox: "0 0 24 24",
|
|
3995
4228
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3996
|
-
children: /* @__PURE__ */
|
|
4229
|
+
children: /* @__PURE__ */ jsx119(
|
|
3997
4230
|
"path",
|
|
3998
4231
|
{
|
|
3999
4232
|
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",
|
|
@@ -4004,14 +4237,14 @@ var ReactIcon = (props) => /* @__PURE__ */ jsx117(
|
|
|
4004
4237
|
);
|
|
4005
4238
|
|
|
4006
4239
|
// src/components/Icon/icons/RecordIcon.tsx
|
|
4007
|
-
import { jsx as
|
|
4008
|
-
var RecordIcon = (props) => /* @__PURE__ */
|
|
4240
|
+
import { jsx as jsx120 } from "react/jsx-runtime";
|
|
4241
|
+
var RecordIcon = (props) => /* @__PURE__ */ jsx120(
|
|
4009
4242
|
"svg",
|
|
4010
4243
|
{
|
|
4011
4244
|
...props,
|
|
4012
4245
|
viewBox: "0 0 24 24",
|
|
4013
4246
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4014
|
-
children: /* @__PURE__ */
|
|
4247
|
+
children: /* @__PURE__ */ jsx120(
|
|
4015
4248
|
"path",
|
|
4016
4249
|
{
|
|
4017
4250
|
clipRule: "evenodd",
|
|
@@ -4024,14 +4257,14 @@ var RecordIcon = (props) => /* @__PURE__ */ jsx118(
|
|
|
4024
4257
|
);
|
|
4025
4258
|
|
|
4026
4259
|
// src/components/Icon/icons/RedoIcon.tsx
|
|
4027
|
-
import { jsx as
|
|
4028
|
-
var RedoIcon = (props) => /* @__PURE__ */
|
|
4260
|
+
import { jsx as jsx121 } from "react/jsx-runtime";
|
|
4261
|
+
var RedoIcon = (props) => /* @__PURE__ */ jsx121(
|
|
4029
4262
|
"svg",
|
|
4030
4263
|
{
|
|
4031
4264
|
...props,
|
|
4032
4265
|
viewBox: "0 0 24 24",
|
|
4033
4266
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4034
|
-
children: /* @__PURE__ */
|
|
4267
|
+
children: /* @__PURE__ */ jsx121(
|
|
4035
4268
|
"path",
|
|
4036
4269
|
{
|
|
4037
4270
|
clipRule: "evenodd",
|
|
@@ -4044,14 +4277,14 @@ var RedoIcon = (props) => /* @__PURE__ */ jsx119(
|
|
|
4044
4277
|
);
|
|
4045
4278
|
|
|
4046
4279
|
// src/components/Icon/icons/ReplaceIcon.tsx
|
|
4047
|
-
import { jsx as
|
|
4048
|
-
var ReplaceIcon = (props) => /* @__PURE__ */
|
|
4280
|
+
import { jsx as jsx122 } from "react/jsx-runtime";
|
|
4281
|
+
var ReplaceIcon = (props) => /* @__PURE__ */ jsx122(
|
|
4049
4282
|
"svg",
|
|
4050
4283
|
{
|
|
4051
4284
|
...props,
|
|
4052
4285
|
viewBox: "0 0 24 24",
|
|
4053
4286
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4054
|
-
children: /* @__PURE__ */
|
|
4287
|
+
children: /* @__PURE__ */ jsx122(
|
|
4055
4288
|
"path",
|
|
4056
4289
|
{
|
|
4057
4290
|
clipRule: "evenodd",
|
|
@@ -4064,14 +4297,14 @@ var ReplaceIcon = (props) => /* @__PURE__ */ jsx120(
|
|
|
4064
4297
|
);
|
|
4065
4298
|
|
|
4066
4299
|
// src/components/Icon/icons/ReplyIcon.tsx
|
|
4067
|
-
import { jsx as
|
|
4068
|
-
var ReplyIcon = (props) => /* @__PURE__ */
|
|
4300
|
+
import { jsx as jsx123 } from "react/jsx-runtime";
|
|
4301
|
+
var ReplyIcon = (props) => /* @__PURE__ */ jsx123(
|
|
4069
4302
|
"svg",
|
|
4070
4303
|
{
|
|
4071
4304
|
...props,
|
|
4072
4305
|
viewBox: "0 0 24 24",
|
|
4073
4306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4074
|
-
children: /* @__PURE__ */
|
|
4307
|
+
children: /* @__PURE__ */ jsx123(
|
|
4075
4308
|
"path",
|
|
4076
4309
|
{
|
|
4077
4310
|
clipRule: "evenodd",
|
|
@@ -4084,14 +4317,14 @@ var ReplyIcon = (props) => /* @__PURE__ */ jsx121(
|
|
|
4084
4317
|
);
|
|
4085
4318
|
|
|
4086
4319
|
// src/components/Icon/icons/SaveAsCopyIcon.tsx
|
|
4087
|
-
import { jsx as
|
|
4088
|
-
var SaveAsCopyIcon = (props) => /* @__PURE__ */
|
|
4320
|
+
import { jsx as jsx124 } from "react/jsx-runtime";
|
|
4321
|
+
var SaveAsCopyIcon = (props) => /* @__PURE__ */ jsx124(
|
|
4089
4322
|
"svg",
|
|
4090
4323
|
{
|
|
4091
4324
|
...props,
|
|
4092
4325
|
viewBox: "0 0 24 24",
|
|
4093
4326
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4094
|
-
children: /* @__PURE__ */
|
|
4327
|
+
children: /* @__PURE__ */ jsx124(
|
|
4095
4328
|
"path",
|
|
4096
4329
|
{
|
|
4097
4330
|
clipRule: "evenodd",
|
|
@@ -4104,14 +4337,14 @@ var SaveAsCopyIcon = (props) => /* @__PURE__ */ jsx122(
|
|
|
4104
4337
|
);
|
|
4105
4338
|
|
|
4106
4339
|
// src/components/Icon/icons/SaveIcon.tsx
|
|
4107
|
-
import { jsx as
|
|
4108
|
-
var SaveIcon = (props) => /* @__PURE__ */
|
|
4340
|
+
import { jsx as jsx125 } from "react/jsx-runtime";
|
|
4341
|
+
var SaveIcon = (props) => /* @__PURE__ */ jsx125(
|
|
4109
4342
|
"svg",
|
|
4110
4343
|
{
|
|
4111
4344
|
...props,
|
|
4112
4345
|
viewBox: "0 0 24 24",
|
|
4113
4346
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4114
|
-
children: /* @__PURE__ */
|
|
4347
|
+
children: /* @__PURE__ */ jsx125(
|
|
4115
4348
|
"path",
|
|
4116
4349
|
{
|
|
4117
4350
|
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",
|
|
@@ -4122,14 +4355,14 @@ var SaveIcon = (props) => /* @__PURE__ */ jsx123(
|
|
|
4122
4355
|
);
|
|
4123
4356
|
|
|
4124
4357
|
// src/components/Icon/icons/ScissorsIcon.tsx
|
|
4125
|
-
import { jsx as
|
|
4126
|
-
var ScissorsIcon = (props) => /* @__PURE__ */
|
|
4358
|
+
import { jsx as jsx126 } from "react/jsx-runtime";
|
|
4359
|
+
var ScissorsIcon = (props) => /* @__PURE__ */ jsx126(
|
|
4127
4360
|
"svg",
|
|
4128
4361
|
{
|
|
4129
4362
|
...props,
|
|
4130
4363
|
viewBox: "0 0 24 24",
|
|
4131
4364
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4132
|
-
children: /* @__PURE__ */
|
|
4365
|
+
children: /* @__PURE__ */ jsx126(
|
|
4133
4366
|
"path",
|
|
4134
4367
|
{
|
|
4135
4368
|
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",
|
|
@@ -4140,14 +4373,14 @@ var ScissorsIcon = (props) => /* @__PURE__ */ jsx124(
|
|
|
4140
4373
|
);
|
|
4141
4374
|
|
|
4142
4375
|
// src/components/Icon/icons/ScreenshareOffIcon.tsx
|
|
4143
|
-
import { jsx as
|
|
4144
|
-
var ScreenshareOffIcon = (props) => /* @__PURE__ */
|
|
4376
|
+
import { jsx as jsx127 } from "react/jsx-runtime";
|
|
4377
|
+
var ScreenshareOffIcon = (props) => /* @__PURE__ */ jsx127(
|
|
4145
4378
|
"svg",
|
|
4146
4379
|
{
|
|
4147
4380
|
...props,
|
|
4148
4381
|
viewBox: "0 0 24 24",
|
|
4149
4382
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4150
|
-
children: /* @__PURE__ */
|
|
4383
|
+
children: /* @__PURE__ */ jsx127(
|
|
4151
4384
|
"path",
|
|
4152
4385
|
{
|
|
4153
4386
|
clipRule: "evenodd",
|
|
@@ -4160,14 +4393,14 @@ var ScreenshareOffIcon = (props) => /* @__PURE__ */ jsx125(
|
|
|
4160
4393
|
);
|
|
4161
4394
|
|
|
4162
4395
|
// src/components/Icon/icons/ScreenshareOnIcon.tsx
|
|
4163
|
-
import { jsx as
|
|
4164
|
-
var ScreenshareOnIcon = (props) => /* @__PURE__ */
|
|
4396
|
+
import { jsx as jsx128 } from "react/jsx-runtime";
|
|
4397
|
+
var ScreenshareOnIcon = (props) => /* @__PURE__ */ jsx128(
|
|
4165
4398
|
"svg",
|
|
4166
4399
|
{
|
|
4167
4400
|
...props,
|
|
4168
4401
|
viewBox: "0 0 24 24",
|
|
4169
4402
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4170
|
-
children: /* @__PURE__ */
|
|
4403
|
+
children: /* @__PURE__ */ jsx128(
|
|
4171
4404
|
"path",
|
|
4172
4405
|
{
|
|
4173
4406
|
clipRule: "evenodd",
|
|
@@ -4180,14 +4413,14 @@ var ScreenshareOnIcon = (props) => /* @__PURE__ */ jsx126(
|
|
|
4180
4413
|
);
|
|
4181
4414
|
|
|
4182
4415
|
// src/components/Icon/icons/SearchIcon.tsx
|
|
4183
|
-
import { jsx as
|
|
4184
|
-
var SearchIcon = (props) => /* @__PURE__ */
|
|
4416
|
+
import { jsx as jsx129 } from "react/jsx-runtime";
|
|
4417
|
+
var SearchIcon = (props) => /* @__PURE__ */ jsx129(
|
|
4185
4418
|
"svg",
|
|
4186
4419
|
{
|
|
4187
4420
|
...props,
|
|
4188
4421
|
viewBox: "0 0 24 24",
|
|
4189
4422
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4190
|
-
children: /* @__PURE__ */
|
|
4423
|
+
children: /* @__PURE__ */ jsx129(
|
|
4191
4424
|
"path",
|
|
4192
4425
|
{
|
|
4193
4426
|
clipRule: "evenodd",
|
|
@@ -4200,14 +4433,14 @@ var SearchIcon = (props) => /* @__PURE__ */ jsx127(
|
|
|
4200
4433
|
);
|
|
4201
4434
|
|
|
4202
4435
|
// src/components/Icon/icons/SendIcon.tsx
|
|
4203
|
-
import { jsx as
|
|
4204
|
-
var SendIcon = (props) => /* @__PURE__ */
|
|
4436
|
+
import { jsx as jsx130 } from "react/jsx-runtime";
|
|
4437
|
+
var SendIcon = (props) => /* @__PURE__ */ jsx130(
|
|
4205
4438
|
"svg",
|
|
4206
4439
|
{
|
|
4207
4440
|
...props,
|
|
4208
4441
|
viewBox: "0 0 24 24",
|
|
4209
4442
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4210
|
-
children: /* @__PURE__ */
|
|
4443
|
+
children: /* @__PURE__ */ jsx130(
|
|
4211
4444
|
"path",
|
|
4212
4445
|
{
|
|
4213
4446
|
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",
|
|
@@ -4218,14 +4451,14 @@ var SendIcon = (props) => /* @__PURE__ */ jsx128(
|
|
|
4218
4451
|
);
|
|
4219
4452
|
|
|
4220
4453
|
// src/components/Icon/icons/ShapesIcon.tsx
|
|
4221
|
-
import { jsx as
|
|
4222
|
-
var ShapesIcon = (props) => /* @__PURE__ */
|
|
4454
|
+
import { jsx as jsx131 } from "react/jsx-runtime";
|
|
4455
|
+
var ShapesIcon = (props) => /* @__PURE__ */ jsx131(
|
|
4223
4456
|
"svg",
|
|
4224
4457
|
{
|
|
4225
4458
|
...props,
|
|
4226
4459
|
viewBox: "0 0 24 24",
|
|
4227
4460
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4228
|
-
children: /* @__PURE__ */
|
|
4461
|
+
children: /* @__PURE__ */ jsx131(
|
|
4229
4462
|
"path",
|
|
4230
4463
|
{
|
|
4231
4464
|
clipRule: "evenodd",
|
|
@@ -4238,14 +4471,14 @@ var ShapesIcon = (props) => /* @__PURE__ */ jsx129(
|
|
|
4238
4471
|
);
|
|
4239
4472
|
|
|
4240
4473
|
// src/components/Icon/icons/ShareIcon.tsx
|
|
4241
|
-
import { jsx as
|
|
4242
|
-
var ShareIcon = (props) => /* @__PURE__ */
|
|
4474
|
+
import { jsx as jsx132 } from "react/jsx-runtime";
|
|
4475
|
+
var ShareIcon = (props) => /* @__PURE__ */ jsx132(
|
|
4243
4476
|
"svg",
|
|
4244
4477
|
{
|
|
4245
4478
|
...props,
|
|
4246
4479
|
viewBox: "0 0 24 24",
|
|
4247
4480
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4248
|
-
children: /* @__PURE__ */
|
|
4481
|
+
children: /* @__PURE__ */ jsx132(
|
|
4249
4482
|
"path",
|
|
4250
4483
|
{
|
|
4251
4484
|
clipRule: "evenodd",
|
|
@@ -4258,14 +4491,14 @@ var ShareIcon = (props) => /* @__PURE__ */ jsx130(
|
|
|
4258
4491
|
);
|
|
4259
4492
|
|
|
4260
4493
|
// src/components/Icon/icons/SharingPermissionsIcon.tsx
|
|
4261
|
-
import { jsx as
|
|
4262
|
-
var SharingPermissionsIcon = (props) => /* @__PURE__ */
|
|
4494
|
+
import { jsx as jsx133 } from "react/jsx-runtime";
|
|
4495
|
+
var SharingPermissionsIcon = (props) => /* @__PURE__ */ jsx133(
|
|
4263
4496
|
"svg",
|
|
4264
4497
|
{
|
|
4265
4498
|
...props,
|
|
4266
4499
|
viewBox: "0 0 24 24",
|
|
4267
4500
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4268
|
-
children: /* @__PURE__ */
|
|
4501
|
+
children: /* @__PURE__ */ jsx133(
|
|
4269
4502
|
"path",
|
|
4270
4503
|
{
|
|
4271
4504
|
clipRule: "evenodd",
|
|
@@ -4278,14 +4511,14 @@ var SharingPermissionsIcon = (props) => /* @__PURE__ */ jsx131(
|
|
|
4278
4511
|
);
|
|
4279
4512
|
|
|
4280
4513
|
// src/components/Icon/icons/SimulcastIcon.tsx
|
|
4281
|
-
import { jsx as
|
|
4282
|
-
var SimulcastIcon = (props) => /* @__PURE__ */
|
|
4514
|
+
import { jsx as jsx134 } from "react/jsx-runtime";
|
|
4515
|
+
var SimulcastIcon = (props) => /* @__PURE__ */ jsx134(
|
|
4283
4516
|
"svg",
|
|
4284
4517
|
{
|
|
4285
4518
|
...props,
|
|
4286
4519
|
viewBox: "0 0 24 24",
|
|
4287
4520
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4288
|
-
children: /* @__PURE__ */
|
|
4521
|
+
children: /* @__PURE__ */ jsx134(
|
|
4289
4522
|
"path",
|
|
4290
4523
|
{
|
|
4291
4524
|
clipRule: "evenodd",
|
|
@@ -4298,14 +4531,14 @@ var SimulcastIcon = (props) => /* @__PURE__ */ jsx132(
|
|
|
4298
4531
|
);
|
|
4299
4532
|
|
|
4300
4533
|
// src/components/Icon/icons/SortIcon.tsx
|
|
4301
|
-
import { jsx as
|
|
4302
|
-
var SortIcon = (props) => /* @__PURE__ */
|
|
4534
|
+
import { jsx as jsx135 } from "react/jsx-runtime";
|
|
4535
|
+
var SortIcon = (props) => /* @__PURE__ */ jsx135(
|
|
4303
4536
|
"svg",
|
|
4304
4537
|
{
|
|
4305
4538
|
...props,
|
|
4306
4539
|
viewBox: "0 0 24 24",
|
|
4307
4540
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4308
|
-
children: /* @__PURE__ */
|
|
4541
|
+
children: /* @__PURE__ */ jsx135(
|
|
4309
4542
|
"path",
|
|
4310
4543
|
{
|
|
4311
4544
|
clipRule: "evenodd",
|
|
@@ -4318,14 +4551,14 @@ var SortIcon = (props) => /* @__PURE__ */ jsx133(
|
|
|
4318
4551
|
);
|
|
4319
4552
|
|
|
4320
4553
|
// src/components/Icon/icons/SparkleIcon.tsx
|
|
4321
|
-
import { jsx as
|
|
4322
|
-
var SparkleIcon = (props) => /* @__PURE__ */
|
|
4554
|
+
import { jsx as jsx136 } from "react/jsx-runtime";
|
|
4555
|
+
var SparkleIcon = (props) => /* @__PURE__ */ jsx136(
|
|
4323
4556
|
"svg",
|
|
4324
4557
|
{
|
|
4325
4558
|
...props,
|
|
4326
4559
|
viewBox: "0 0 24 24",
|
|
4327
4560
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4328
|
-
children: /* @__PURE__ */
|
|
4561
|
+
children: /* @__PURE__ */ jsx136(
|
|
4329
4562
|
"path",
|
|
4330
4563
|
{
|
|
4331
4564
|
clipRule: "evenodd",
|
|
@@ -4338,7 +4571,7 @@ var SparkleIcon = (props) => /* @__PURE__ */ jsx134(
|
|
|
4338
4571
|
);
|
|
4339
4572
|
|
|
4340
4573
|
// src/components/Icon/icons/SpinnerIcon.tsx
|
|
4341
|
-
import { jsx as
|
|
4574
|
+
import { jsx as jsx137, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
4342
4575
|
var SpinnerIcon = (props) => /* @__PURE__ */ jsxs4(
|
|
4343
4576
|
"svg",
|
|
4344
4577
|
{
|
|
@@ -4346,7 +4579,7 @@ var SpinnerIcon = (props) => /* @__PURE__ */ jsxs4(
|
|
|
4346
4579
|
viewBox: "0 0 24 24",
|
|
4347
4580
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4348
4581
|
children: [
|
|
4349
|
-
/* @__PURE__ */
|
|
4582
|
+
/* @__PURE__ */ jsx137(
|
|
4350
4583
|
"path",
|
|
4351
4584
|
{
|
|
4352
4585
|
clipRule: "evenodd",
|
|
@@ -4355,7 +4588,7 @@ var SpinnerIcon = (props) => /* @__PURE__ */ jsxs4(
|
|
|
4355
4588
|
fillRule: "evenodd"
|
|
4356
4589
|
}
|
|
4357
4590
|
),
|
|
4358
|
-
/* @__PURE__ */
|
|
4591
|
+
/* @__PURE__ */ jsx137(
|
|
4359
4592
|
"animateTransform",
|
|
4360
4593
|
{
|
|
4361
4594
|
attributeName: "transform",
|
|
@@ -4371,14 +4604,14 @@ var SpinnerIcon = (props) => /* @__PURE__ */ jsxs4(
|
|
|
4371
4604
|
);
|
|
4372
4605
|
|
|
4373
4606
|
// src/components/Icon/icons/StatsIcon.tsx
|
|
4374
|
-
import { jsx as
|
|
4375
|
-
var StatsIcon = (props) => /* @__PURE__ */
|
|
4607
|
+
import { jsx as jsx138 } from "react/jsx-runtime";
|
|
4608
|
+
var StatsIcon = (props) => /* @__PURE__ */ jsx138(
|
|
4376
4609
|
"svg",
|
|
4377
4610
|
{
|
|
4378
4611
|
...props,
|
|
4379
4612
|
viewBox: "0 0 24 24",
|
|
4380
4613
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4381
|
-
children: /* @__PURE__ */
|
|
4614
|
+
children: /* @__PURE__ */ jsx138(
|
|
4382
4615
|
"path",
|
|
4383
4616
|
{
|
|
4384
4617
|
clipRule: "evenodd",
|
|
@@ -4391,14 +4624,14 @@ var StatsIcon = (props) => /* @__PURE__ */ jsx136(
|
|
|
4391
4624
|
);
|
|
4392
4625
|
|
|
4393
4626
|
// src/components/Icon/icons/SwitchAccountsIcon.tsx
|
|
4394
|
-
import { jsx as
|
|
4395
|
-
var SwitchAccountsIcon = (props) => /* @__PURE__ */
|
|
4627
|
+
import { jsx as jsx139 } from "react/jsx-runtime";
|
|
4628
|
+
var SwitchAccountsIcon = (props) => /* @__PURE__ */ jsx139(
|
|
4396
4629
|
"svg",
|
|
4397
4630
|
{
|
|
4398
4631
|
...props,
|
|
4399
4632
|
viewBox: "0 0 24 24",
|
|
4400
4633
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4401
|
-
children: /* @__PURE__ */
|
|
4634
|
+
children: /* @__PURE__ */ jsx139(
|
|
4402
4635
|
"path",
|
|
4403
4636
|
{
|
|
4404
4637
|
clipRule: "evenodd",
|
|
@@ -4411,14 +4644,14 @@ var SwitchAccountsIcon = (props) => /* @__PURE__ */ jsx137(
|
|
|
4411
4644
|
);
|
|
4412
4645
|
|
|
4413
4646
|
// src/components/Icon/icons/TagIcon.tsx
|
|
4414
|
-
import { jsx as
|
|
4415
|
-
var TagIcon = (props) => /* @__PURE__ */
|
|
4647
|
+
import { jsx as jsx140 } from "react/jsx-runtime";
|
|
4648
|
+
var TagIcon = (props) => /* @__PURE__ */ jsx140(
|
|
4416
4649
|
"svg",
|
|
4417
4650
|
{
|
|
4418
4651
|
...props,
|
|
4419
4652
|
viewBox: "0 0 24 24",
|
|
4420
4653
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4421
|
-
children: /* @__PURE__ */
|
|
4654
|
+
children: /* @__PURE__ */ jsx140(
|
|
4422
4655
|
"path",
|
|
4423
4656
|
{
|
|
4424
4657
|
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",
|
|
@@ -4429,14 +4662,14 @@ var TagIcon = (props) => /* @__PURE__ */ jsx138(
|
|
|
4429
4662
|
);
|
|
4430
4663
|
|
|
4431
4664
|
// src/components/Icon/icons/ThumbnailIcon.tsx
|
|
4432
|
-
import { jsx as
|
|
4433
|
-
var ThumbnailIcon = (props) => /* @__PURE__ */
|
|
4665
|
+
import { jsx as jsx141 } from "react/jsx-runtime";
|
|
4666
|
+
var ThumbnailIcon = (props) => /* @__PURE__ */ jsx141(
|
|
4434
4667
|
"svg",
|
|
4435
4668
|
{
|
|
4436
4669
|
...props,
|
|
4437
4670
|
viewBox: "0 0 24 24",
|
|
4438
4671
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4439
|
-
children: /* @__PURE__ */
|
|
4672
|
+
children: /* @__PURE__ */ jsx141(
|
|
4440
4673
|
"path",
|
|
4441
4674
|
{
|
|
4442
4675
|
clipRule: "evenodd",
|
|
@@ -4449,14 +4682,14 @@ var ThumbnailIcon = (props) => /* @__PURE__ */ jsx139(
|
|
|
4449
4682
|
);
|
|
4450
4683
|
|
|
4451
4684
|
// src/components/Icon/icons/ThumbsDownIcon.tsx
|
|
4452
|
-
import { jsx as
|
|
4453
|
-
var ThumbsDownIcon = (props) => /* @__PURE__ */
|
|
4685
|
+
import { jsx as jsx142 } from "react/jsx-runtime";
|
|
4686
|
+
var ThumbsDownIcon = (props) => /* @__PURE__ */ jsx142(
|
|
4454
4687
|
"svg",
|
|
4455
4688
|
{
|
|
4456
4689
|
...props,
|
|
4457
4690
|
viewBox: "0 0 24 24",
|
|
4458
4691
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4459
|
-
children: /* @__PURE__ */
|
|
4692
|
+
children: /* @__PURE__ */ jsx142(
|
|
4460
4693
|
"path",
|
|
4461
4694
|
{
|
|
4462
4695
|
clipRule: "evenodd",
|
|
@@ -4469,14 +4702,14 @@ var ThumbsDownIcon = (props) => /* @__PURE__ */ jsx140(
|
|
|
4469
4702
|
);
|
|
4470
4703
|
|
|
4471
4704
|
// src/components/Icon/icons/ThumbsUpIcon.tsx
|
|
4472
|
-
import { jsx as
|
|
4473
|
-
var ThumbsUpIcon = (props) => /* @__PURE__ */
|
|
4705
|
+
import { jsx as jsx143 } from "react/jsx-runtime";
|
|
4706
|
+
var ThumbsUpIcon = (props) => /* @__PURE__ */ jsx143(
|
|
4474
4707
|
"svg",
|
|
4475
4708
|
{
|
|
4476
4709
|
...props,
|
|
4477
4710
|
viewBox: "0 0 24 24",
|
|
4478
4711
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4479
|
-
children: /* @__PURE__ */
|
|
4712
|
+
children: /* @__PURE__ */ jsx143(
|
|
4480
4713
|
"path",
|
|
4481
4714
|
{
|
|
4482
4715
|
clipRule: "evenodd",
|
|
@@ -4489,14 +4722,14 @@ var ThumbsUpIcon = (props) => /* @__PURE__ */ jsx141(
|
|
|
4489
4722
|
);
|
|
4490
4723
|
|
|
4491
4724
|
// src/components/Icon/icons/TransitionsIcon.tsx
|
|
4492
|
-
import { jsx as
|
|
4493
|
-
var TransitionsIcon = (props) => /* @__PURE__ */
|
|
4725
|
+
import { jsx as jsx144 } from "react/jsx-runtime";
|
|
4726
|
+
var TransitionsIcon = (props) => /* @__PURE__ */ jsx144(
|
|
4494
4727
|
"svg",
|
|
4495
4728
|
{
|
|
4496
4729
|
...props,
|
|
4497
4730
|
viewBox: "0 0 24 24",
|
|
4498
4731
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4499
|
-
children: /* @__PURE__ */
|
|
4732
|
+
children: /* @__PURE__ */ jsx144(
|
|
4500
4733
|
"path",
|
|
4501
4734
|
{
|
|
4502
4735
|
clipRule: "evenodd",
|
|
@@ -4509,14 +4742,14 @@ var TransitionsIcon = (props) => /* @__PURE__ */ jsx142(
|
|
|
4509
4742
|
);
|
|
4510
4743
|
|
|
4511
4744
|
// src/components/Icon/icons/TrimIcon.tsx
|
|
4512
|
-
import { jsx as
|
|
4513
|
-
var TrimIcon = (props) => /* @__PURE__ */
|
|
4745
|
+
import { jsx as jsx145 } from "react/jsx-runtime";
|
|
4746
|
+
var TrimIcon = (props) => /* @__PURE__ */ jsx145(
|
|
4514
4747
|
"svg",
|
|
4515
4748
|
{
|
|
4516
4749
|
...props,
|
|
4517
4750
|
viewBox: "0 0 24 24",
|
|
4518
4751
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4519
|
-
children: /* @__PURE__ */
|
|
4752
|
+
children: /* @__PURE__ */ jsx145(
|
|
4520
4753
|
"path",
|
|
4521
4754
|
{
|
|
4522
4755
|
clipRule: "evenodd",
|
|
@@ -4529,14 +4762,14 @@ var TrimIcon = (props) => /* @__PURE__ */ jsx143(
|
|
|
4529
4762
|
);
|
|
4530
4763
|
|
|
4531
4764
|
// src/components/Icon/icons/TurnstileIcon.tsx
|
|
4532
|
-
import { jsx as
|
|
4533
|
-
var TurnstileIcon = (props) => /* @__PURE__ */
|
|
4765
|
+
import { jsx as jsx146 } from "react/jsx-runtime";
|
|
4766
|
+
var TurnstileIcon = (props) => /* @__PURE__ */ jsx146(
|
|
4534
4767
|
"svg",
|
|
4535
4768
|
{
|
|
4536
4769
|
...props,
|
|
4537
4770
|
viewBox: "0 0 24 24",
|
|
4538
4771
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4539
|
-
children: /* @__PURE__ */
|
|
4772
|
+
children: /* @__PURE__ */ jsx146(
|
|
4540
4773
|
"path",
|
|
4541
4774
|
{
|
|
4542
4775
|
clipRule: "evenodd",
|
|
@@ -4549,14 +4782,14 @@ var TurnstileIcon = (props) => /* @__PURE__ */ jsx144(
|
|
|
4549
4782
|
);
|
|
4550
4783
|
|
|
4551
4784
|
// src/components/Icon/icons/UndoIcon.tsx
|
|
4552
|
-
import { jsx as
|
|
4553
|
-
var UndoIcon = (props) => /* @__PURE__ */
|
|
4785
|
+
import { jsx as jsx147 } from "react/jsx-runtime";
|
|
4786
|
+
var UndoIcon = (props) => /* @__PURE__ */ jsx147(
|
|
4554
4787
|
"svg",
|
|
4555
4788
|
{
|
|
4556
4789
|
...props,
|
|
4557
4790
|
viewBox: "0 0 24 24",
|
|
4558
4791
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4559
|
-
children: /* @__PURE__ */
|
|
4792
|
+
children: /* @__PURE__ */ jsx147(
|
|
4560
4793
|
"path",
|
|
4561
4794
|
{
|
|
4562
4795
|
clipRule: "evenodd",
|
|
@@ -4569,14 +4802,14 @@ var UndoIcon = (props) => /* @__PURE__ */ jsx145(
|
|
|
4569
4802
|
);
|
|
4570
4803
|
|
|
4571
4804
|
// src/components/Icon/icons/UnlockIcon.tsx
|
|
4572
|
-
import { jsx as
|
|
4573
|
-
var UnlockIcon = (props) => /* @__PURE__ */
|
|
4805
|
+
import { jsx as jsx148 } from "react/jsx-runtime";
|
|
4806
|
+
var UnlockIcon = (props) => /* @__PURE__ */ jsx148(
|
|
4574
4807
|
"svg",
|
|
4575
4808
|
{
|
|
4576
4809
|
...props,
|
|
4577
4810
|
viewBox: "0 0 24 24",
|
|
4578
4811
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4579
|
-
children: /* @__PURE__ */
|
|
4812
|
+
children: /* @__PURE__ */ jsx148(
|
|
4580
4813
|
"path",
|
|
4581
4814
|
{
|
|
4582
4815
|
clipRule: "evenodd",
|
|
@@ -4589,14 +4822,14 @@ var UnlockIcon = (props) => /* @__PURE__ */ jsx146(
|
|
|
4589
4822
|
);
|
|
4590
4823
|
|
|
4591
4824
|
// src/components/Icon/icons/UploadIcon.tsx
|
|
4592
|
-
import { jsx as
|
|
4593
|
-
var UploadIcon = (props) => /* @__PURE__ */
|
|
4825
|
+
import { jsx as jsx149 } from "react/jsx-runtime";
|
|
4826
|
+
var UploadIcon = (props) => /* @__PURE__ */ jsx149(
|
|
4594
4827
|
"svg",
|
|
4595
4828
|
{
|
|
4596
4829
|
...props,
|
|
4597
4830
|
viewBox: "0 0 24 24",
|
|
4598
4831
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4599
|
-
children: /* @__PURE__ */
|
|
4832
|
+
children: /* @__PURE__ */ jsx149(
|
|
4600
4833
|
"path",
|
|
4601
4834
|
{
|
|
4602
4835
|
clipRule: "evenodd",
|
|
@@ -4609,14 +4842,14 @@ var UploadIcon = (props) => /* @__PURE__ */ jsx147(
|
|
|
4609
4842
|
);
|
|
4610
4843
|
|
|
4611
4844
|
// src/components/Icon/icons/UsersPermissionsIcon.tsx
|
|
4612
|
-
import { jsx as
|
|
4613
|
-
var UsersPermissionsIcon = (props) => /* @__PURE__ */
|
|
4845
|
+
import { jsx as jsx150 } from "react/jsx-runtime";
|
|
4846
|
+
var UsersPermissionsIcon = (props) => /* @__PURE__ */ jsx150(
|
|
4614
4847
|
"svg",
|
|
4615
4848
|
{
|
|
4616
4849
|
...props,
|
|
4617
4850
|
viewBox: "0 0 24 24",
|
|
4618
4851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4619
|
-
children: /* @__PURE__ */
|
|
4852
|
+
children: /* @__PURE__ */ jsx150(
|
|
4620
4853
|
"path",
|
|
4621
4854
|
{
|
|
4622
4855
|
clipRule: "evenodd",
|
|
@@ -4629,14 +4862,14 @@ var UsersPermissionsIcon = (props) => /* @__PURE__ */ jsx148(
|
|
|
4629
4862
|
);
|
|
4630
4863
|
|
|
4631
4864
|
// src/components/Icon/icons/ViewStreamIcon.tsx
|
|
4632
|
-
import { jsx as
|
|
4633
|
-
var ViewStreamIcon = (props) => /* @__PURE__ */
|
|
4865
|
+
import { jsx as jsx151 } from "react/jsx-runtime";
|
|
4866
|
+
var ViewStreamIcon = (props) => /* @__PURE__ */ jsx151(
|
|
4634
4867
|
"svg",
|
|
4635
4868
|
{
|
|
4636
4869
|
...props,
|
|
4637
4870
|
viewBox: "0 0 24 24",
|
|
4638
4871
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4639
|
-
children: /* @__PURE__ */
|
|
4872
|
+
children: /* @__PURE__ */ jsx151(
|
|
4640
4873
|
"path",
|
|
4641
4874
|
{
|
|
4642
4875
|
clipRule: "evenodd",
|
|
@@ -4649,14 +4882,14 @@ var ViewStreamIcon = (props) => /* @__PURE__ */ jsx149(
|
|
|
4649
4882
|
);
|
|
4650
4883
|
|
|
4651
4884
|
// src/components/Icon/icons/VolumeIcon.tsx
|
|
4652
|
-
import { jsx as
|
|
4653
|
-
var VolumeIcon = (props) => /* @__PURE__ */
|
|
4885
|
+
import { jsx as jsx152 } from "react/jsx-runtime";
|
|
4886
|
+
var VolumeIcon = (props) => /* @__PURE__ */ jsx152(
|
|
4654
4887
|
"svg",
|
|
4655
4888
|
{
|
|
4656
4889
|
...props,
|
|
4657
4890
|
viewBox: "0 0 24 24",
|
|
4658
4891
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4659
|
-
children: /* @__PURE__ */
|
|
4892
|
+
children: /* @__PURE__ */ jsx152(
|
|
4660
4893
|
"path",
|
|
4661
4894
|
{
|
|
4662
4895
|
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",
|
|
@@ -4667,14 +4900,14 @@ var VolumeIcon = (props) => /* @__PURE__ */ jsx150(
|
|
|
4667
4900
|
);
|
|
4668
4901
|
|
|
4669
4902
|
// src/components/Icon/icons/VolumeOffIcon.tsx
|
|
4670
|
-
import { jsx as
|
|
4671
|
-
var VolumeOffIcon = (props) => /* @__PURE__ */
|
|
4903
|
+
import { jsx as jsx153 } from "react/jsx-runtime";
|
|
4904
|
+
var VolumeOffIcon = (props) => /* @__PURE__ */ jsx153(
|
|
4672
4905
|
"svg",
|
|
4673
4906
|
{
|
|
4674
4907
|
...props,
|
|
4675
4908
|
viewBox: "0 0 24 24",
|
|
4676
4909
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4677
|
-
children: /* @__PURE__ */
|
|
4910
|
+
children: /* @__PURE__ */ jsx153(
|
|
4678
4911
|
"path",
|
|
4679
4912
|
{
|
|
4680
4913
|
clipRule: "evenodd",
|
|
@@ -4687,14 +4920,14 @@ var VolumeOffIcon = (props) => /* @__PURE__ */ jsx151(
|
|
|
4687
4920
|
);
|
|
4688
4921
|
|
|
4689
4922
|
// src/components/Icon/icons/VolumeUpIcon.tsx
|
|
4690
|
-
import { jsx as
|
|
4691
|
-
var VolumeUpIcon = (props) => /* @__PURE__ */
|
|
4923
|
+
import { jsx as jsx154 } from "react/jsx-runtime";
|
|
4924
|
+
var VolumeUpIcon = (props) => /* @__PURE__ */ jsx154(
|
|
4692
4925
|
"svg",
|
|
4693
4926
|
{
|
|
4694
4927
|
...props,
|
|
4695
4928
|
viewBox: "0 0 24 24",
|
|
4696
4929
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4697
|
-
children: /* @__PURE__ */
|
|
4930
|
+
children: /* @__PURE__ */ jsx154(
|
|
4698
4931
|
"path",
|
|
4699
4932
|
{
|
|
4700
4933
|
clipRule: "evenodd",
|
|
@@ -4707,14 +4940,14 @@ var VolumeUpIcon = (props) => /* @__PURE__ */ jsx152(
|
|
|
4707
4940
|
);
|
|
4708
4941
|
|
|
4709
4942
|
// src/components/Icon/icons/VolumeXIcon.tsx
|
|
4710
|
-
import { jsx as
|
|
4711
|
-
var VolumeXIcon = (props) => /* @__PURE__ */
|
|
4943
|
+
import { jsx as jsx155 } from "react/jsx-runtime";
|
|
4944
|
+
var VolumeXIcon = (props) => /* @__PURE__ */ jsx155(
|
|
4712
4945
|
"svg",
|
|
4713
4946
|
{
|
|
4714
4947
|
...props,
|
|
4715
4948
|
viewBox: "0 0 24 24",
|
|
4716
4949
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4717
|
-
children: /* @__PURE__ */
|
|
4950
|
+
children: /* @__PURE__ */ jsx155(
|
|
4718
4951
|
"path",
|
|
4719
4952
|
{
|
|
4720
4953
|
clipRule: "evenodd",
|
|
@@ -4727,14 +4960,14 @@ var VolumeXIcon = (props) => /* @__PURE__ */ jsx153(
|
|
|
4727
4960
|
);
|
|
4728
4961
|
|
|
4729
4962
|
// src/components/Icon/icons/WandIcon.tsx
|
|
4730
|
-
import { jsx as
|
|
4731
|
-
var WandIcon = (props) => /* @__PURE__ */
|
|
4963
|
+
import { jsx as jsx156 } from "react/jsx-runtime";
|
|
4964
|
+
var WandIcon = (props) => /* @__PURE__ */ jsx156(
|
|
4732
4965
|
"svg",
|
|
4733
4966
|
{
|
|
4734
4967
|
...props,
|
|
4735
4968
|
viewBox: "0 0 24 24",
|
|
4736
4969
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4737
|
-
children: /* @__PURE__ */
|
|
4970
|
+
children: /* @__PURE__ */ jsx156(
|
|
4738
4971
|
"path",
|
|
4739
4972
|
{
|
|
4740
4973
|
clipRule: "evenodd",
|
|
@@ -4747,14 +4980,14 @@ var WandIcon = (props) => /* @__PURE__ */ jsx154(
|
|
|
4747
4980
|
);
|
|
4748
4981
|
|
|
4749
4982
|
// src/components/Icon/icons/ZoomInIcon.tsx
|
|
4750
|
-
import { jsx as
|
|
4751
|
-
var ZoomInIcon = (props) => /* @__PURE__ */
|
|
4983
|
+
import { jsx as jsx157 } from "react/jsx-runtime";
|
|
4984
|
+
var ZoomInIcon = (props) => /* @__PURE__ */ jsx157(
|
|
4752
4985
|
"svg",
|
|
4753
4986
|
{
|
|
4754
4987
|
...props,
|
|
4755
4988
|
viewBox: "0 0 24 24",
|
|
4756
4989
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4757
|
-
children: /* @__PURE__ */
|
|
4990
|
+
children: /* @__PURE__ */ jsx157(
|
|
4758
4991
|
"path",
|
|
4759
4992
|
{
|
|
4760
4993
|
clipRule: "evenodd",
|
|
@@ -4767,14 +5000,14 @@ var ZoomInIcon = (props) => /* @__PURE__ */ jsx155(
|
|
|
4767
5000
|
);
|
|
4768
5001
|
|
|
4769
5002
|
// src/components/Icon/icons/ZoomOutIcon.tsx
|
|
4770
|
-
import { jsx as
|
|
4771
|
-
var ZoomOutIcon = (props) => /* @__PURE__ */
|
|
5003
|
+
import { jsx as jsx158 } from "react/jsx-runtime";
|
|
5004
|
+
var ZoomOutIcon = (props) => /* @__PURE__ */ jsx158(
|
|
4772
5005
|
"svg",
|
|
4773
5006
|
{
|
|
4774
5007
|
...props,
|
|
4775
5008
|
viewBox: "0 0 24 24",
|
|
4776
5009
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4777
|
-
children: /* @__PURE__ */
|
|
5010
|
+
children: /* @__PURE__ */ jsx158(
|
|
4778
5011
|
"path",
|
|
4779
5012
|
{
|
|
4780
5013
|
clipRule: "evenodd",
|
|
@@ -4944,13 +5177,13 @@ var iconMap = {
|
|
|
4944
5177
|
|
|
4945
5178
|
// src/private/hooks/useResponsiveProp/useResponsiveProp.ts
|
|
4946
5179
|
import { isNotUndefined, isRecord as isRecord2, isUndefined } from "@wistia/type-guards";
|
|
4947
|
-
import { useMemo as
|
|
5180
|
+
import { useMemo as useMemo3 } from "react";
|
|
4948
5181
|
var isResponsiveObject = (values) => {
|
|
4949
5182
|
return typeof values === "object" && values !== null && !Array.isArray(values) && "base" in values;
|
|
4950
5183
|
};
|
|
4951
5184
|
var useResponsiveProp = (values) => {
|
|
4952
5185
|
const activeMediaQueries = useActiveMq();
|
|
4953
|
-
return
|
|
5186
|
+
return useMemo3(() => {
|
|
4954
5187
|
if (isRecord2(values) && isResponsiveObject(values)) {
|
|
4955
5188
|
const mq2 = activeMediaQueries.find((key) => key in values);
|
|
4956
5189
|
return isNotUndefined(mq2) && isNotUndefined(values[mq2]) ? values[mq2] : values.base;
|
|
@@ -4960,7 +5193,7 @@ var useResponsiveProp = (values) => {
|
|
|
4960
5193
|
};
|
|
4961
5194
|
|
|
4962
5195
|
// src/components/Icon/Icon.tsx
|
|
4963
|
-
import { jsx as
|
|
5196
|
+
import { jsx as jsx159 } from "react/jsx-runtime";
|
|
4964
5197
|
var iconSizeMap = {
|
|
4965
5198
|
sm: "12",
|
|
4966
5199
|
md: "16",
|
|
@@ -4968,7 +5201,7 @@ var iconSizeMap = {
|
|
|
4968
5201
|
xl: "32",
|
|
4969
5202
|
xxl: "48"
|
|
4970
5203
|
};
|
|
4971
|
-
var StyledIcon =
|
|
5204
|
+
var StyledIcon = styled5.svg`
|
|
4972
5205
|
${({ $colorScheme }) => getColorScheme($colorScheme ?? "inherit")}
|
|
4973
5206
|
`;
|
|
4974
5207
|
var Icon = ({
|
|
@@ -4980,13 +5213,13 @@ var Icon = ({
|
|
|
4980
5213
|
...otherProps
|
|
4981
5214
|
}) => {
|
|
4982
5215
|
const responsiveSize = useResponsiveProp(size);
|
|
4983
|
-
if (
|
|
5216
|
+
if (isNil6(type)) {
|
|
4984
5217
|
throw new Error("An Icon component requires a `type` prop to be provided");
|
|
4985
5218
|
}
|
|
4986
|
-
if (
|
|
5219
|
+
if (isNil6(iconMap[type])) {
|
|
4987
5220
|
throw new Error(`Type "${type}" does not exist, please update type prop in Icon component.`);
|
|
4988
5221
|
}
|
|
4989
|
-
if (
|
|
5222
|
+
if (isNil6(iconSizeMap[responsiveSize])) {
|
|
4990
5223
|
throw new Error(
|
|
4991
5224
|
`Size "${responsiveSize}" does not exist, please update size prop in Icon component.`
|
|
4992
5225
|
);
|
|
@@ -4997,7 +5230,7 @@ var Icon = ({
|
|
|
4997
5230
|
...style
|
|
4998
5231
|
};
|
|
4999
5232
|
const iconColor = invertColor ? "var(--color-icon-on-fill)" : "var(--color-icon)";
|
|
5000
|
-
return /* @__PURE__ */
|
|
5233
|
+
return /* @__PURE__ */ jsx159(
|
|
5001
5234
|
StyledIcon,
|
|
5002
5235
|
{
|
|
5003
5236
|
$colorScheme: colorScheme,
|
|
@@ -5018,12 +5251,12 @@ Icon.displayName = "Icon";
|
|
|
5018
5251
|
|
|
5019
5252
|
// src/components/Link/Link.tsx
|
|
5020
5253
|
import { forwardRef as forwardRef2 } from "react";
|
|
5021
|
-
import { isNil as
|
|
5022
|
-
import
|
|
5254
|
+
import { isNil as isNil7, isNotNil as isNotNil3, isNotUndefined as isNotUndefined2, isUndefined as isUndefined2 } from "@wistia/type-guards";
|
|
5255
|
+
import styled6 from "styled-components";
|
|
5023
5256
|
import { Link as RouterLink, useInRouterContext } from "react-router-dom";
|
|
5024
|
-
import { jsx as
|
|
5257
|
+
import { jsx as jsx160 } from "react/jsx-runtime";
|
|
5025
5258
|
var generateHref = (href, type, disabled) => {
|
|
5026
|
-
if (disabled ||
|
|
5259
|
+
if (disabled || isNil7(href)) {
|
|
5027
5260
|
return void 0;
|
|
5028
5261
|
}
|
|
5029
5262
|
let to = href;
|
|
@@ -5037,8 +5270,8 @@ var generateHref = (href, type, disabled) => {
|
|
|
5037
5270
|
};
|
|
5038
5271
|
var isButton = (props) => isUndefined2(props.href);
|
|
5039
5272
|
var isLink = (props) => isNotUndefined2(props.href);
|
|
5040
|
-
var StyledLink =
|
|
5041
|
-
${({ href }) =>
|
|
5273
|
+
var StyledLink = styled6.a`
|
|
5274
|
+
${({ href }) => isNil7(href) && buttonResetCss};
|
|
5042
5275
|
${({ $colorScheme }) => getColorScheme($colorScheme)}
|
|
5043
5276
|
cursor: pointer;
|
|
5044
5277
|
font-family: var(--typography-family-default);
|
|
@@ -5083,7 +5316,7 @@ var Link = forwardRef2(
|
|
|
5083
5316
|
onClick: handleClick
|
|
5084
5317
|
};
|
|
5085
5318
|
if (isButton(props)) {
|
|
5086
|
-
return /* @__PURE__ */
|
|
5319
|
+
return /* @__PURE__ */ jsx160(
|
|
5087
5320
|
StyledLink,
|
|
5088
5321
|
{
|
|
5089
5322
|
ref,
|
|
@@ -5103,7 +5336,7 @@ var Link = forwardRef2(
|
|
|
5103
5336
|
...commonProps,
|
|
5104
5337
|
...externalLinkProps
|
|
5105
5338
|
};
|
|
5106
|
-
return inRouterContext && type !== "external" ? /* @__PURE__ */
|
|
5339
|
+
return inRouterContext && type !== "external" ? /* @__PURE__ */ jsx160(
|
|
5107
5340
|
StyledLink,
|
|
5108
5341
|
{
|
|
5109
5342
|
as: RouterLink,
|
|
@@ -5111,7 +5344,7 @@ var Link = forwardRef2(
|
|
|
5111
5344
|
to: to ?? "",
|
|
5112
5345
|
children
|
|
5113
5346
|
}
|
|
5114
|
-
) : /* @__PURE__ */
|
|
5347
|
+
) : /* @__PURE__ */ jsx160(
|
|
5115
5348
|
StyledLink,
|
|
5116
5349
|
{
|
|
5117
5350
|
as: "a",
|
|
@@ -5127,9 +5360,9 @@ var Link = forwardRef2(
|
|
|
5127
5360
|
Link.displayName = "Link";
|
|
5128
5361
|
|
|
5129
5362
|
// src/components/Button/Button.tsx
|
|
5130
|
-
import { Fragment, jsx as
|
|
5363
|
+
import { Fragment, jsx as jsx161, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
5131
5364
|
var isLink2 = (props) => isNotUndefined3(props.href);
|
|
5132
|
-
var StyledButton =
|
|
5365
|
+
var StyledButton = styled7.button`
|
|
5133
5366
|
${buttonResetCss}
|
|
5134
5367
|
${({ $colorScheme }) => getColorScheme($colorScheme)}
|
|
5135
5368
|
${({ $size }) => buttonSizeStyles[$size]}
|
|
@@ -5138,7 +5371,7 @@ var StyledButton = styled5.button`
|
|
|
5138
5371
|
${({ $fullWidth }) => $fullWidth && "width: 100%;"}
|
|
5139
5372
|
position: relative;
|
|
5140
5373
|
`;
|
|
5141
|
-
var StyledButtonContent =
|
|
5374
|
+
var StyledButtonContent = styled7.div`
|
|
5142
5375
|
align-items: center;
|
|
5143
5376
|
display: inline-flex;
|
|
5144
5377
|
flex-grow: 1;
|
|
@@ -5150,11 +5383,11 @@ var StyledButtonContent = styled5.div`
|
|
|
5150
5383
|
${({ $hasLeftIcon }) => $hasLeftIcon && "padding-left: 0;"}
|
|
5151
5384
|
${({ $hasRightIcon }) => $hasRightIcon && "padding-right: 0;"}
|
|
5152
5385
|
`;
|
|
5153
|
-
var StyledButtonContentLabel =
|
|
5386
|
+
var StyledButtonContentLabel = styled7.span`
|
|
5154
5387
|
flex: 1;
|
|
5155
5388
|
text-align: center;
|
|
5156
5389
|
`;
|
|
5157
|
-
var StyledButtonLoading =
|
|
5390
|
+
var StyledButtonLoading = styled7.div`
|
|
5158
5391
|
position: absolute;
|
|
5159
5392
|
display: flex;
|
|
5160
5393
|
`;
|
|
@@ -5165,7 +5398,7 @@ var ButtonContent = ({
|
|
|
5165
5398
|
children
|
|
5166
5399
|
}) => {
|
|
5167
5400
|
return /* @__PURE__ */ jsxs5(Fragment, { children: [
|
|
5168
|
-
isLoading ? /* @__PURE__ */
|
|
5401
|
+
isLoading ? /* @__PURE__ */ jsx161(StyledButtonLoading, { children: /* @__PURE__ */ jsx161(Icon, { type: "spinner" }) }) : null,
|
|
5169
5402
|
/* @__PURE__ */ jsxs5(
|
|
5170
5403
|
StyledButtonContent,
|
|
5171
5404
|
{
|
|
@@ -5174,7 +5407,7 @@ var ButtonContent = ({
|
|
|
5174
5407
|
$isLoading: isLoading,
|
|
5175
5408
|
children: [
|
|
5176
5409
|
leftIcon ?? null,
|
|
5177
|
-
/* @__PURE__ */
|
|
5410
|
+
/* @__PURE__ */ jsx161(StyledButtonContentLabel, { children }),
|
|
5178
5411
|
rightIcon ?? null
|
|
5179
5412
|
]
|
|
5180
5413
|
}
|
|
@@ -5216,14 +5449,14 @@ var Button = forwardRef3(
|
|
|
5216
5449
|
commonProps.className = `${className ?? ""} force-state-${forceState}`;
|
|
5217
5450
|
}
|
|
5218
5451
|
if (isLink2(props)) {
|
|
5219
|
-
return /* @__PURE__ */
|
|
5452
|
+
return /* @__PURE__ */ jsx161(
|
|
5220
5453
|
StyledButton,
|
|
5221
5454
|
{
|
|
5222
5455
|
ref,
|
|
5223
5456
|
as: Link,
|
|
5224
5457
|
...props,
|
|
5225
5458
|
...commonProps,
|
|
5226
|
-
children: /* @__PURE__ */
|
|
5459
|
+
children: /* @__PURE__ */ jsx161(
|
|
5227
5460
|
ButtonContent,
|
|
5228
5461
|
{
|
|
5229
5462
|
isLoading,
|
|
@@ -5244,7 +5477,7 @@ var Button = forwardRef3(
|
|
|
5244
5477
|
onClick(event);
|
|
5245
5478
|
}
|
|
5246
5479
|
};
|
|
5247
|
-
return /* @__PURE__ */
|
|
5480
|
+
return /* @__PURE__ */ jsx161(
|
|
5248
5481
|
StyledButton,
|
|
5249
5482
|
{
|
|
5250
5483
|
ref,
|
|
@@ -5252,7 +5485,7 @@ var Button = forwardRef3(
|
|
|
5252
5485
|
type: "button",
|
|
5253
5486
|
...props,
|
|
5254
5487
|
...commonProps,
|
|
5255
|
-
children: /* @__PURE__ */
|
|
5488
|
+
children: /* @__PURE__ */ jsx161(
|
|
5256
5489
|
ButtonContent,
|
|
5257
5490
|
{
|
|
5258
5491
|
isLoading,
|
|
@@ -5268,9 +5501,9 @@ var Button = forwardRef3(
|
|
|
5268
5501
|
Button.displayName = "Button";
|
|
5269
5502
|
|
|
5270
5503
|
// src/components/ButtonGroup/ButtonGroup.tsx
|
|
5271
|
-
import
|
|
5272
|
-
import { isNil as
|
|
5273
|
-
import { jsx as
|
|
5504
|
+
import styled8 from "styled-components";
|
|
5505
|
+
import { isNil as isNil8 } from "@wistia/type-guards";
|
|
5506
|
+
import { jsx as jsx162 } from "react/jsx-runtime";
|
|
5274
5507
|
var getAlignment = (align) => {
|
|
5275
5508
|
if (align === "center") {
|
|
5276
5509
|
return "center";
|
|
@@ -5283,7 +5516,7 @@ var getAlignment = (align) => {
|
|
|
5283
5516
|
}
|
|
5284
5517
|
return void 0;
|
|
5285
5518
|
};
|
|
5286
|
-
var ButtonGroupComponent =
|
|
5519
|
+
var ButtonGroupComponent = styled8.div`
|
|
5287
5520
|
display: flex;
|
|
5288
5521
|
|
|
5289
5522
|
/* this helps ensure that primary buttons appear at the top of the column */
|
|
@@ -5309,10 +5542,10 @@ var ButtonGroup = ({
|
|
|
5309
5542
|
fullWidth = false,
|
|
5310
5543
|
...otherProps
|
|
5311
5544
|
}) => {
|
|
5312
|
-
if (
|
|
5545
|
+
if (isNil8(children)) {
|
|
5313
5546
|
return null;
|
|
5314
5547
|
}
|
|
5315
|
-
return /* @__PURE__ */
|
|
5548
|
+
return /* @__PURE__ */ jsx162(
|
|
5316
5549
|
ButtonGroupComponent,
|
|
5317
5550
|
{
|
|
5318
5551
|
$align: align,
|
|
@@ -5324,48 +5557,14 @@ var ButtonGroup = ({
|
|
|
5324
5557
|
};
|
|
5325
5558
|
ButtonGroup.displayName = "ButtonGroup";
|
|
5326
5559
|
|
|
5327
|
-
// src/components/ColorSchemeWrapper/ColorSchemeWrapper.tsx
|
|
5328
|
-
import styled7 from "styled-components";
|
|
5329
|
-
import { jsx as jsx161 } from "react/jsx-runtime";
|
|
5330
|
-
var colorSchemeOptions = [
|
|
5331
|
-
"inherit",
|
|
5332
|
-
"default",
|
|
5333
|
-
"info",
|
|
5334
|
-
"success",
|
|
5335
|
-
"warning",
|
|
5336
|
-
"error",
|
|
5337
|
-
"blue",
|
|
5338
|
-
"green",
|
|
5339
|
-
"orange",
|
|
5340
|
-
"pink",
|
|
5341
|
-
"purple",
|
|
5342
|
-
"yellow"
|
|
5343
|
-
];
|
|
5344
|
-
var StyledColorSchemeWrapper = styled7.div`
|
|
5345
|
-
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
5346
|
-
`;
|
|
5347
|
-
var ColorSchemeWrapper = ({
|
|
5348
|
-
colorScheme,
|
|
5349
|
-
children,
|
|
5350
|
-
...otherProps
|
|
5351
|
-
}) => /* @__PURE__ */ jsx161(
|
|
5352
|
-
StyledColorSchemeWrapper,
|
|
5353
|
-
{
|
|
5354
|
-
$colorScheme: colorScheme,
|
|
5355
|
-
...otherProps,
|
|
5356
|
-
children
|
|
5357
|
-
}
|
|
5358
|
-
);
|
|
5359
|
-
ColorSchemeWrapper.displayName = "ColorSchemeWrapper";
|
|
5360
|
-
|
|
5361
5560
|
// src/components/Divider/Divider.tsx
|
|
5362
|
-
import
|
|
5363
|
-
import { jsx as
|
|
5561
|
+
import styled9 from "styled-components";
|
|
5562
|
+
import { jsx as jsx163 } from "react/jsx-runtime";
|
|
5364
5563
|
var sizeToPixelMap = {
|
|
5365
5564
|
lg: 4,
|
|
5366
5565
|
sm: 1
|
|
5367
5566
|
};
|
|
5368
|
-
var DividerComponent =
|
|
5567
|
+
var DividerComponent = styled9.hr`
|
|
5369
5568
|
background: none;
|
|
5370
5569
|
border-bottom: none;
|
|
5371
5570
|
border-left: none;
|
|
@@ -5380,7 +5579,7 @@ var DividerComponent = styled8.hr`
|
|
|
5380
5579
|
`;
|
|
5381
5580
|
var Divider = ({ size = "sm", ...otherProps }) => {
|
|
5382
5581
|
const responsiveSize = useResponsiveProp(size);
|
|
5383
|
-
return /* @__PURE__ */
|
|
5582
|
+
return /* @__PURE__ */ jsx163(
|
|
5384
5583
|
DividerComponent,
|
|
5385
5584
|
{
|
|
5386
5585
|
$borderHeight: sizeToPixelMap[responsiveSize],
|
|
@@ -5392,8 +5591,8 @@ Divider.displayName = "Divider";
|
|
|
5392
5591
|
|
|
5393
5592
|
// src/components/Ellipsis/Ellipsis.tsx
|
|
5394
5593
|
import { isNotNil as isNotNil5 } from "@wistia/type-guards";
|
|
5395
|
-
import
|
|
5396
|
-
import { jsx as
|
|
5594
|
+
import styled10, { css as css12 } from "styled-components";
|
|
5595
|
+
import { jsx as jsx164 } from "react/jsx-runtime";
|
|
5397
5596
|
var ellipsisStyle = css12`
|
|
5398
5597
|
overflow: hidden;
|
|
5399
5598
|
text-overflow: ellipsis;
|
|
@@ -5420,7 +5619,7 @@ var ellipsisStyle = css12`
|
|
|
5420
5619
|
var ellipsisFlexParentStyle = css12`
|
|
5421
5620
|
min-width: 0;
|
|
5422
5621
|
`;
|
|
5423
|
-
var EllipsisComponent =
|
|
5622
|
+
var EllipsisComponent = styled10.div`
|
|
5424
5623
|
${ellipsisStyle};
|
|
5425
5624
|
${({ $lines }) => {
|
|
5426
5625
|
if (isNotNil5($lines)) {
|
|
@@ -5434,7 +5633,7 @@ var EllipsisComponent = styled9.div`
|
|
|
5434
5633
|
return void 0;
|
|
5435
5634
|
}}
|
|
5436
5635
|
`;
|
|
5437
|
-
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */
|
|
5636
|
+
var Ellipsis = ({ children, lines, ...otherProps }) => /* @__PURE__ */ jsx164(
|
|
5438
5637
|
EllipsisComponent,
|
|
5439
5638
|
{
|
|
5440
5639
|
$lines: lines,
|
|
@@ -5446,7 +5645,7 @@ Ellipsis.displayName = "Ellipsis";
|
|
|
5446
5645
|
|
|
5447
5646
|
// src/components/Heading/Heading.tsx
|
|
5448
5647
|
import { forwardRef as forwardRef4 } from "react";
|
|
5449
|
-
import
|
|
5648
|
+
import styled11, { css as css13 } from "styled-components";
|
|
5450
5649
|
|
|
5451
5650
|
// src/private/helpers/makePolymorphic/makePolymorphic.tsx
|
|
5452
5651
|
var makePolymorphic = (component) => {
|
|
@@ -5454,7 +5653,7 @@ var makePolymorphic = (component) => {
|
|
|
5454
5653
|
};
|
|
5455
5654
|
|
|
5456
5655
|
// src/components/Heading/Heading.tsx
|
|
5457
|
-
import { jsx as
|
|
5656
|
+
import { jsx as jsx165 } from "react/jsx-runtime";
|
|
5458
5657
|
var heroStyle = css13`
|
|
5459
5658
|
--font-family: var(--typography-heading-hero-family);
|
|
5460
5659
|
--font-size: var(--typography-heading-hero-size);
|
|
@@ -5507,7 +5706,7 @@ var variantStyleMap = {
|
|
|
5507
5706
|
heading6: heading6TextStyle
|
|
5508
5707
|
};
|
|
5509
5708
|
var DEFAULT_ELEMENT = "h1";
|
|
5510
|
-
var StyledHeading =
|
|
5709
|
+
var StyledHeading = styled11.div`
|
|
5511
5710
|
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
5512
5711
|
font-family: var(--font-family);
|
|
5513
5712
|
font-size: var(--font-size);
|
|
@@ -5550,7 +5749,7 @@ var HeadingComponent = forwardRef4(
|
|
|
5550
5749
|
variant = "heading1",
|
|
5551
5750
|
renderAs,
|
|
5552
5751
|
...otherProps
|
|
5553
|
-
}, ref) => /* @__PURE__ */
|
|
5752
|
+
}, ref) => /* @__PURE__ */ jsx165(
|
|
5554
5753
|
StyledHeading,
|
|
5555
5754
|
{
|
|
5556
5755
|
ref,
|
|
@@ -5571,7 +5770,7 @@ var Heading = makePolymorphic(HeadingComponent);
|
|
|
5571
5770
|
|
|
5572
5771
|
// src/components/IconButton/IconButton.tsx
|
|
5573
5772
|
import { Children as Children2, cloneElement as cloneElement2, forwardRef as forwardRef5 } from "react";
|
|
5574
|
-
import
|
|
5773
|
+
import styled13 from "styled-components";
|
|
5575
5774
|
|
|
5576
5775
|
// src/components/Tooltip/Tooltip.tsx
|
|
5577
5776
|
import {
|
|
@@ -5581,8 +5780,8 @@ import {
|
|
|
5581
5780
|
Portal,
|
|
5582
5781
|
Arrow
|
|
5583
5782
|
} from "@radix-ui/react-tooltip";
|
|
5584
|
-
import
|
|
5585
|
-
import { jsx as
|
|
5783
|
+
import styled12, { css as css14 } from "styled-components";
|
|
5784
|
+
import { jsx as jsx166, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
5586
5785
|
var CompactTooltipStyles = css14`
|
|
5587
5786
|
--tooltip-font-size: var(--typography-label-4-size);
|
|
5588
5787
|
--tooltip-line-height: var(--typography-label-4-line-height);
|
|
@@ -5590,7 +5789,7 @@ var CompactTooltipStyles = css14`
|
|
|
5590
5789
|
--tooltip-horizontal-padding: var(--space-02);
|
|
5591
5790
|
--tooltip-vertical-padding: var(--space-03);
|
|
5592
5791
|
`;
|
|
5593
|
-
var StyledContent =
|
|
5792
|
+
var StyledContent = styled12(Content)`
|
|
5594
5793
|
--tooltip-font-family: var(--typography-family-default);
|
|
5595
5794
|
--tooltip-border-radius: var(--border-radius-05);
|
|
5596
5795
|
--tooltip-bg: var(--color-bg-tooltip);
|
|
@@ -5654,8 +5853,8 @@ var Tooltip = ({
|
|
|
5654
5853
|
delayDuration: delay,
|
|
5655
5854
|
...rootProps,
|
|
5656
5855
|
children: [
|
|
5657
|
-
/* @__PURE__ */
|
|
5658
|
-
/* @__PURE__ */
|
|
5856
|
+
/* @__PURE__ */ jsx166(Trigger, { asChild: true, children }),
|
|
5857
|
+
/* @__PURE__ */ jsx166(Portal, { children: /* @__PURE__ */ jsxs6(
|
|
5659
5858
|
StyledContent,
|
|
5660
5859
|
{
|
|
5661
5860
|
$compact: compact,
|
|
@@ -5663,7 +5862,7 @@ var Tooltip = ({
|
|
|
5663
5862
|
sideOffset: hideArrow ? VISUAL_OFFSET : VISUAL_OFFSET - 2,
|
|
5664
5863
|
children: [
|
|
5665
5864
|
content,
|
|
5666
|
-
!hideArrow ? /* @__PURE__ */
|
|
5865
|
+
!hideArrow ? /* @__PURE__ */ jsx166(Arrow, { asChild: true, children: /* @__PURE__ */ jsx166(
|
|
5667
5866
|
"svg",
|
|
5668
5867
|
{
|
|
5669
5868
|
fill: "var(--tooltip-bg)",
|
|
@@ -5672,7 +5871,7 @@ var Tooltip = ({
|
|
|
5672
5871
|
viewBox: "0 0 12 8",
|
|
5673
5872
|
width: "12",
|
|
5674
5873
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5675
|
-
children: /* @__PURE__ */
|
|
5874
|
+
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" })
|
|
5676
5875
|
}
|
|
5677
5876
|
) }) : null
|
|
5678
5877
|
]
|
|
@@ -5685,8 +5884,8 @@ var Tooltip = ({
|
|
|
5685
5884
|
Tooltip.displayName = "Tooltip";
|
|
5686
5885
|
|
|
5687
5886
|
// src/components/IconButton/IconButton.tsx
|
|
5688
|
-
import { jsx as
|
|
5689
|
-
var StyledButton2 =
|
|
5887
|
+
import { jsx as jsx167 } from "react/jsx-runtime";
|
|
5888
|
+
var StyledButton2 = styled13(Button)`
|
|
5690
5889
|
--icon-button-size-sm: 24px;
|
|
5691
5890
|
--icon-button-size-md: 32px;
|
|
5692
5891
|
--icon-button-size-lg: 40px;
|
|
@@ -5703,7 +5902,7 @@ var StyledButton2 = styled12(Button)`
|
|
|
5703
5902
|
var IconButton = forwardRef5(
|
|
5704
5903
|
({ children, label, disableTooltip = false, size = "md", ...props }, ref) => {
|
|
5705
5904
|
const responsiveSize = useResponsiveProp(size);
|
|
5706
|
-
const button = /* @__PURE__ */
|
|
5905
|
+
const button = /* @__PURE__ */ jsx167(
|
|
5707
5906
|
StyledButton2,
|
|
5708
5907
|
{
|
|
5709
5908
|
...props,
|
|
@@ -5719,14 +5918,14 @@ var IconButton = forwardRef5(
|
|
|
5719
5918
|
if (disableTooltip) {
|
|
5720
5919
|
return button;
|
|
5721
5920
|
}
|
|
5722
|
-
return /* @__PURE__ */
|
|
5921
|
+
return /* @__PURE__ */ jsx167(Tooltip, { content: label, children: button });
|
|
5723
5922
|
}
|
|
5724
5923
|
);
|
|
5725
5924
|
IconButton.displayName = "IconButton";
|
|
5726
5925
|
|
|
5727
5926
|
// src/components/Label/Label.tsx
|
|
5728
|
-
import
|
|
5729
|
-
import { jsx as
|
|
5927
|
+
import styled14, { css as css15 } from "styled-components";
|
|
5928
|
+
import { jsx as jsx168 } from "react/jsx-runtime";
|
|
5730
5929
|
var requiredStyle = css15`
|
|
5731
5930
|
&::after {
|
|
5732
5931
|
color: red; /* TODO need a color for this */
|
|
@@ -5739,7 +5938,7 @@ var disabledStyle = css15`
|
|
|
5739
5938
|
color: var(--color-text-disabled);
|
|
5740
5939
|
`;
|
|
5741
5940
|
var SPACE_BETWEEN_LABEL_AND_INPUT = "var(--space-02)";
|
|
5742
|
-
var StyledLabel =
|
|
5941
|
+
var StyledLabel = styled14.label`
|
|
5743
5942
|
display: block;
|
|
5744
5943
|
font-size: var(--typography-label-1-size);
|
|
5745
5944
|
font-weight: var(--typography-label-1-weight);
|
|
@@ -5770,7 +5969,7 @@ var Label = ({
|
|
|
5770
5969
|
required = false,
|
|
5771
5970
|
screenReaderOnly = false,
|
|
5772
5971
|
...otherProps
|
|
5773
|
-
}) => /* @__PURE__ */
|
|
5972
|
+
}) => /* @__PURE__ */ jsx168(
|
|
5774
5973
|
StyledLabel,
|
|
5775
5974
|
{
|
|
5776
5975
|
disabled,
|
|
@@ -5783,11 +5982,11 @@ var Label = ({
|
|
|
5783
5982
|
Label.displayName = "Label";
|
|
5784
5983
|
|
|
5785
5984
|
// src/components/ScreenReaderOnly/ScreenReaderOnly.tsx
|
|
5786
|
-
import
|
|
5985
|
+
import styled15 from "styled-components";
|
|
5787
5986
|
import { isNotNil as isNotNil6 } from "@wistia/type-guards";
|
|
5788
|
-
import { jsx as
|
|
5789
|
-
var VisuallyHidden =
|
|
5790
|
-
var VisuallyHiddenButFocusable =
|
|
5987
|
+
import { jsx as jsx169 } from "react/jsx-runtime";
|
|
5988
|
+
var VisuallyHidden = styled15.div({ ...visuallyHiddenStyle });
|
|
5989
|
+
var VisuallyHiddenButFocusable = styled15.div({
|
|
5791
5990
|
"&:not(:focus-within)": visuallyHiddenStyle
|
|
5792
5991
|
});
|
|
5793
5992
|
var ScreenReaderOnly = ({
|
|
@@ -5798,18 +5997,18 @@ var ScreenReaderOnly = ({
|
|
|
5798
5997
|
}) => {
|
|
5799
5998
|
const accessibleText = isNotNil6(text) ? text : children;
|
|
5800
5999
|
if (focusable) {
|
|
5801
|
-
return /* @__PURE__ */
|
|
6000
|
+
return /* @__PURE__ */ jsx169(VisuallyHiddenButFocusable, { ...otherProps, children: accessibleText });
|
|
5802
6001
|
}
|
|
5803
|
-
return /* @__PURE__ */
|
|
6002
|
+
return /* @__PURE__ */ jsx169(VisuallyHidden, { ...otherProps, children: accessibleText });
|
|
5804
6003
|
};
|
|
5805
6004
|
ScreenReaderOnly.displayName = "ScreenReaderOnly";
|
|
5806
6005
|
|
|
5807
6006
|
// src/components/Stack/Stack.tsx
|
|
5808
6007
|
import { forwardRef as forwardRef6 } from "react";
|
|
5809
|
-
import
|
|
5810
|
-
import { jsx as
|
|
6008
|
+
import styled16 from "styled-components";
|
|
6009
|
+
import { jsx as jsx170 } from "react/jsx-runtime";
|
|
5811
6010
|
var DEFAULT_ELEMENT2 = "div";
|
|
5812
|
-
var StyledStack =
|
|
6011
|
+
var StyledStack = styled16.div`
|
|
5813
6012
|
display: flex;
|
|
5814
6013
|
flex-direction: ${({ $direction }) => $direction === "horizontal" ? "row" : "column"};
|
|
5815
6014
|
gap: ${({ $gap }) => `var(--${$gap})`};
|
|
@@ -5822,7 +6021,7 @@ var StackComponent = forwardRef6(
|
|
|
5822
6021
|
({ renderAs, direction = "vertical", gap = "space-02", ...props }, ref) => {
|
|
5823
6022
|
const responsiveGap = useResponsiveProp(gap);
|
|
5824
6023
|
const responsiveDirection = useResponsiveProp(direction);
|
|
5825
|
-
return /* @__PURE__ */
|
|
6024
|
+
return /* @__PURE__ */ jsx170(
|
|
5826
6025
|
StyledStack,
|
|
5827
6026
|
{
|
|
5828
6027
|
ref,
|
|
@@ -5839,8 +6038,8 @@ var Stack = makePolymorphic(StackComponent);
|
|
|
5839
6038
|
|
|
5840
6039
|
// src/components/Text/Text.tsx
|
|
5841
6040
|
import { forwardRef as forwardRef7 } from "react";
|
|
5842
|
-
import
|
|
5843
|
-
import { jsx as
|
|
6041
|
+
import styled17, { css as css16 } from "styled-components";
|
|
6042
|
+
import { jsx as jsx171 } from "react/jsx-runtime";
|
|
5844
6043
|
var bodyBoldStyles = css16`
|
|
5845
6044
|
> strong,
|
|
5846
6045
|
b {
|
|
@@ -5953,7 +6152,7 @@ var prominenceMap = {
|
|
|
5953
6152
|
vibrant: vibrantProminenceStyle,
|
|
5954
6153
|
secondary: secondaryProminenceStyle
|
|
5955
6154
|
};
|
|
5956
|
-
var StyledText =
|
|
6155
|
+
var StyledText = styled17.div`
|
|
5957
6156
|
${({ $colorScheme }) => getColorScheme($colorScheme)};
|
|
5958
6157
|
font-family: var(--font-family);
|
|
5959
6158
|
font-size: var(--font-size);
|
|
@@ -5974,8 +6173,8 @@ var StyledText = styled16.div`
|
|
|
5974
6173
|
${({ $preventUserSelect }) => $preventUserSelect && css16`
|
|
5975
6174
|
user-select: none;
|
|
5976
6175
|
`}
|
|
5977
|
-
${({ align }) => css16`
|
|
5978
|
-
text-align: ${align};
|
|
6176
|
+
${({ $align }) => css16`
|
|
6177
|
+
text-align: ${$align};
|
|
5979
6178
|
`}
|
|
5980
6179
|
${({ as }) => as === "p" && css16`
|
|
5981
6180
|
display: block;
|
|
@@ -5995,10 +6194,11 @@ var TextComponent = forwardRef7(
|
|
|
5995
6194
|
renderAs,
|
|
5996
6195
|
...otherProps
|
|
5997
6196
|
}, ref) => {
|
|
5998
|
-
return /* @__PURE__ */
|
|
6197
|
+
return /* @__PURE__ */ jsx171(
|
|
5999
6198
|
StyledText,
|
|
6000
6199
|
{
|
|
6001
6200
|
ref,
|
|
6201
|
+
$align: align,
|
|
6002
6202
|
$colorScheme: colorScheme,
|
|
6003
6203
|
$disabled: disabled,
|
|
6004
6204
|
$ellipsis: ellipsis,
|
|
@@ -6006,7 +6206,6 @@ var TextComponent = forwardRef7(
|
|
|
6006
6206
|
$preventUserSelect: preventUserSelect,
|
|
6007
6207
|
$prominence: prominence,
|
|
6008
6208
|
$variant: variant,
|
|
6009
|
-
align,
|
|
6010
6209
|
as: renderAs ?? DEFAULT_ELEMENT3,
|
|
6011
6210
|
...otherProps
|
|
6012
6211
|
}
|
|
@@ -6017,20 +6216,20 @@ TextComponent.displayName = "Text";
|
|
|
6017
6216
|
var Text = makePolymorphic(TextComponent);
|
|
6018
6217
|
|
|
6019
6218
|
// src/components/WistiaLogo/WistiaLogo.tsx
|
|
6020
|
-
import
|
|
6219
|
+
import styled18 from "styled-components";
|
|
6021
6220
|
import { isNotNil as isNotNil7 } from "@wistia/type-guards";
|
|
6022
|
-
import { jsx as
|
|
6221
|
+
import { jsx as jsx172, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
6023
6222
|
var renderBrandmark = (brandmarkColor, iconOnly) => {
|
|
6024
6223
|
if (iconOnly) {
|
|
6025
|
-
return /* @__PURE__ */
|
|
6224
|
+
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" }) });
|
|
6026
6225
|
}
|
|
6027
|
-
return /* @__PURE__ */
|
|
6226
|
+
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" }) });
|
|
6028
6227
|
};
|
|
6029
6228
|
var renderLogotype = (logotypeColor, iconOnly) => {
|
|
6030
6229
|
if (iconOnly) {
|
|
6031
6230
|
return null;
|
|
6032
6231
|
}
|
|
6033
|
-
return /* @__PURE__ */
|
|
6232
|
+
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" }) });
|
|
6034
6233
|
};
|
|
6035
6234
|
var computedViewBox = (iconOnly) => {
|
|
6036
6235
|
if (iconOnly) {
|
|
@@ -6038,7 +6237,7 @@ var computedViewBox = (iconOnly) => {
|
|
|
6038
6237
|
}
|
|
6039
6238
|
return "0 0 144 31.47";
|
|
6040
6239
|
};
|
|
6041
|
-
var WistiaLogoComponent =
|
|
6240
|
+
var WistiaLogoComponent = styled18.svg`
|
|
6042
6241
|
height: ${({ height }) => `${height}px`};
|
|
6043
6242
|
|
|
6044
6243
|
/* ensure it will always fit on mobile */
|
|
@@ -6090,17 +6289,18 @@ var WistiaLogo = ({
|
|
|
6090
6289
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6091
6290
|
...otherProps,
|
|
6092
6291
|
children: [
|
|
6093
|
-
/* @__PURE__ */
|
|
6094
|
-
isNotNil7(description) ? /* @__PURE__ */
|
|
6292
|
+
/* @__PURE__ */ jsx172("title", { children: title }),
|
|
6293
|
+
isNotNil7(description) ? /* @__PURE__ */ jsx172("desc", { children: description }) : null,
|
|
6095
6294
|
renderBrandmark(brandmarkColor, iconOnly),
|
|
6096
6295
|
renderLogotype(logotypeColor, iconOnly)
|
|
6097
6296
|
]
|
|
6098
6297
|
}
|
|
6099
6298
|
);
|
|
6100
|
-
return href !== void 0 ? /* @__PURE__ */
|
|
6299
|
+
return href !== void 0 ? /* @__PURE__ */ jsx172("a", { href, children: Logo }) : Logo;
|
|
6101
6300
|
};
|
|
6102
6301
|
WistiaLogo.displayName = "WistiaLogo";
|
|
6103
6302
|
export {
|
|
6303
|
+
Avatar,
|
|
6104
6304
|
Badge,
|
|
6105
6305
|
Box,
|
|
6106
6306
|
Button,
|