@syscore/ui-library 1.1.10 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/App.tsx +47 -0
- package/client/components/icons/ConceptIcons.tsx +667 -0
- package/client/components/icons/NavAccount.tsx +31 -0
- package/client/components/icons/NavBullet.tsx +19 -0
- package/client/components/icons/NavLogo.tsx +36 -0
- package/client/components/icons/ProviderBadges.tsx +295 -0
- package/client/components/icons/ProviderSeals.tsx +319 -0
- package/client/components/icons/SealHealthSafetyRating.tsx +65 -0
- package/client/components/icons/SealIwbiMember.tsx +86 -0
- package/client/components/icons/SealWell.tsx +84 -0
- package/client/components/icons/SealWellCertification.tsx +138 -0
- package/client/components/icons/SealWellCommunity.tsx +122 -0
- package/client/components/icons/SealWellResidence.tsx +122 -0
- package/client/components/icons/SealWorksWithWell.tsx +140 -0
- package/client/components/icons/UtilityAccordion.tsx +21 -0
- package/client/components/icons/UtilityChevronDown.tsx +36 -0
- package/client/components/icons/UtilityClassification.tsx +45 -0
- package/client/components/icons/UtilityClose.tsx +41 -0
- package/client/components/icons/UtilityDrag.tsx +69 -0
- package/client/components/icons/UtilityEdit.tsx +42 -0
- package/client/components/icons/UtilityOptions.tsx +45 -0
- package/client/components/icons/UtilityPortfolio.tsx +87 -0
- package/client/components/icons/UtilityReset.tsx +41 -0
- package/client/components/icons/UtilityScoring.tsx +43 -0
- package/client/components/icons/UtilitySearch.tsx +38 -0
- package/client/components/icons/UtilitySort.tsx +52 -0
- package/client/components/icons/UtilityText.tsx +34 -0
- package/client/components/icons/WaterMarkWWWProducts.tsx +26 -0
- package/client/components/icons/WaterMarkWellProjects.tsx +30 -0
- package/client/components/icons/WatermarkMemberOrg.tsx +59 -0
- package/client/components/icons/WellSeal.tsx +79 -0
- package/client/components/icons/X.tsx +35 -0
- package/client/hooks/UseTabs.tsx +35 -0
- package/client/hooks/use-mobile.tsx +21 -0
- package/client/hooks/use-segmented-control.ts +42 -0
- package/client/hooks/use-toast.ts +188 -0
- package/client/pages/Index.tsx +88 -0
- package/client/pages/NotFound.tsx +29 -0
- package/client/ui/Accordion/Accordion.stories.tsx +74 -0
- package/client/ui/Alert/Alert.stories.tsx +82 -0
- package/client/ui/AlertDialog/AlertDialog.stories.tsx +106 -0
- package/client/ui/AspectRatio.stories.tsx +78 -0
- package/client/ui/Avatar/Avatar.stories.tsx +94 -0
- package/client/ui/Badge/Badge.stories.tsx +60 -0
- package/client/ui/Breadcrumb/Breadcrumb.stories.tsx +97 -0
- package/client/ui/Button.stories.tsx +429 -0
- package/client/ui/Calendar/Calendar.stories.tsx +99 -0
- package/client/ui/Card.stories.tsx +84 -0
- package/client/ui/Carousel/Carousel.stories.tsx +85 -0
- package/client/ui/Chart/Chart.stories.tsx +58 -0
- package/client/ui/Checkbox/Checkbox.stories.tsx +112 -0
- package/client/ui/Collapsible/Collapsible.stories.tsx +101 -0
- package/client/ui/Colors.stories.tsx +1041 -0
- package/client/ui/Command/Command.stories.tsx +97 -0
- package/client/ui/ContextMenu/ContextMenu.stories.tsx +74 -0
- package/client/ui/Dialog.stories.tsx +69 -0
- package/client/ui/Drawer/Drawer.stories.tsx +87 -0
- package/client/ui/DropdownMenu/DropdownMenu.stories.tsx +139 -0
- package/client/ui/Form/Form.stories.tsx +74 -0
- package/client/ui/HoverCard/HoverCard.stories.tsx +94 -0
- package/client/ui/Icons.stories.tsx +328 -0
- package/client/ui/Input/Input.stories.tsx +69 -0
- package/client/ui/InputOTP/InputOTP.stories.tsx +85 -0
- package/client/ui/Label.stories.tsx +66 -0
- package/client/ui/Menubar/Menubar.stories.tsx +88 -0
- package/client/ui/Navigation.stories.tsx +57 -0
- package/client/ui/NavigationMenu/NavigationMenu.stories.tsx +106 -0
- package/client/ui/Pagination/Pagination.stories.tsx +115 -0
- package/client/ui/Popover/Popover.stories.tsx +99 -0
- package/client/ui/Progress/Progress.stories.tsx +63 -0
- package/client/ui/RadioGroup/RadioGroup.stories.tsx +110 -0
- package/client/ui/Resizable/Resizable.stories.tsx +88 -0
- package/client/ui/ScrollArea/ScrollArea.stories.tsx +64 -0
- package/client/ui/SearchField.stories.tsx +63 -0
- package/client/ui/Select/Select.stories.tsx +111 -0
- package/client/ui/Separator/Separator.stories.tsx +67 -0
- package/client/ui/Sheet/Sheet.stories.tsx +138 -0
- package/client/ui/Sidebar/Sidebar.stories.tsx +92 -0
- package/client/ui/Skeleton/Skeleton.stories.tsx +65 -0
- package/client/ui/Slider/Slider.stories.tsx +101 -0
- package/client/ui/Sonner/Sonner.stories.tsx +48 -0
- package/client/ui/StrategyTable.stories.tsx +138 -0
- package/client/ui/Switch/Switch.stories.tsx +96 -0
- package/client/ui/Table/Table.stories.tsx +135 -0
- package/client/ui/Tabs.stories.tsx +33 -0
- package/client/ui/Tag.stories.tsx +190 -0
- package/client/ui/Textarea/Textarea.stories.tsx +56 -0
- package/client/ui/Toast/Toast.stories.tsx +76 -0
- package/client/ui/Toaster/Toaster.stories.tsx +52 -0
- package/client/ui/Toggle.stories.tsx +248 -0
- package/client/ui/ToggleGroup/ToggleGroup.stories.tsx +88 -0
- package/client/ui/Tooltip.stories.tsx +72 -0
- package/client/ui/Typography.stories.tsx +421 -0
- package/client/ui/WELLDashboard/WELLDashboard.stories.tsx +115 -0
- package/client/ui/WELLDashboard/index.tsx +221 -0
- package/client/vite-env.d.ts +1 -0
- package/dist/ui/index.cjs.js +1 -1
- package/dist/ui/index.d.ts +1 -0
- package/dist/ui/index.es.js +163 -1
- package/package.json +2 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export function UtilityAccordion({ className }: { className?: string }) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
className={className}
|
|
5
|
+
width="16"
|
|
6
|
+
height="16"
|
|
7
|
+
viewBox="0 0 16 16"
|
|
8
|
+
fill="none"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M2 3.5H14M2 8H14M2 12.5H14"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeWidth="1.5"
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface UtilityChevronDownProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const UtilityChevronDown: React.FC<UtilityChevronDownProps> = ({
|
|
9
|
+
className,
|
|
10
|
+
}) => {
|
|
11
|
+
return (
|
|
12
|
+
<div
|
|
13
|
+
className={cn(
|
|
14
|
+
"size-4 flex items-center justify-center text-gray-500",
|
|
15
|
+
className,
|
|
16
|
+
)}
|
|
17
|
+
>
|
|
18
|
+
<svg
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
width="12"
|
|
21
|
+
height="6"
|
|
22
|
+
viewBox="0 0 12 6"
|
|
23
|
+
fill="none"
|
|
24
|
+
className={cn("text-inherit")}
|
|
25
|
+
>
|
|
26
|
+
<path
|
|
27
|
+
d="M11 0.75L6 5.25L1 0.75"
|
|
28
|
+
stroke="currentColor"
|
|
29
|
+
strokeWidth="1.5"
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
</svg>
|
|
34
|
+
</div>
|
|
35
|
+
);
|
|
36
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface UtilityClassificationProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const UtilityClassification: React.FC<UtilityClassificationProps> = ({
|
|
9
|
+
className,
|
|
10
|
+
}) => {
|
|
11
|
+
return (
|
|
12
|
+
<div
|
|
13
|
+
className={cn(
|
|
14
|
+
"size-4 flex items-center justify-center text-gray-500",
|
|
15
|
+
className,
|
|
16
|
+
)}
|
|
17
|
+
>
|
|
18
|
+
<svg
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
width="16"
|
|
21
|
+
height="16"
|
|
22
|
+
viewBox="0 0 16 16"
|
|
23
|
+
fill="none"
|
|
24
|
+
className={cn("size-[14px] text-inherit")}
|
|
25
|
+
>
|
|
26
|
+
<path
|
|
27
|
+
d="M8.412 1.4103C8.14945 1.14767 7.79333 1.00008 7.42196 1H2.40034C2.02895 1 1.67277 1.14754 1.41015 1.41015C1.14754 1.67277 1 2.02895 1 2.40034V7.42196C1.00008 7.79333 1.14767 8.14945 1.4103 8.412L7.50458 14.5063C7.82282 14.8225 8.25324 15 8.70187 15C9.15051 15 9.58093 14.8225 9.89917 14.5063L14.5063 9.89917C14.8225 9.58093 15 9.15051 15 8.70187C15 8.25324 14.8225 7.82282 14.5063 7.50458L8.412 1.4103Z"
|
|
28
|
+
fill="white"
|
|
29
|
+
stroke="currentColor"
|
|
30
|
+
strokeWidth="1.5"
|
|
31
|
+
strokeLinecap="round"
|
|
32
|
+
strokeLinejoin="round"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
d="M4.85106 5.20017C5.04441 5.20017 5.20115 5.04343 5.20115 4.85009C5.20115 4.65674 5.04441 4.5 4.85106 4.5C4.65772 4.5 4.50098 4.65674 4.50098 4.85009C4.50098 5.04343 4.65772 5.20017 4.85106 5.20017Z"
|
|
36
|
+
fill="currentColor"
|
|
37
|
+
stroke="currentColor"
|
|
38
|
+
strokeWidth="1.5"
|
|
39
|
+
strokeLinecap="round"
|
|
40
|
+
strokeLinejoin="round"
|
|
41
|
+
/>
|
|
42
|
+
</svg>
|
|
43
|
+
</div>
|
|
44
|
+
);
|
|
45
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface UtilityCloseProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const UtilityClose: React.FC<UtilityCloseProps> = ({ className }) => {
|
|
9
|
+
return (
|
|
10
|
+
<div
|
|
11
|
+
className={cn(
|
|
12
|
+
"size-4 flex items-center justify-center text-gray-500",
|
|
13
|
+
className,
|
|
14
|
+
)}
|
|
15
|
+
>
|
|
16
|
+
<svg
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
width="12"
|
|
19
|
+
height="12"
|
|
20
|
+
viewBox="0 0 12 12"
|
|
21
|
+
fill="none"
|
|
22
|
+
className={cn("size-3 text-inherit")}
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
d="M10.8002 1.19995L1.2002 10.8"
|
|
26
|
+
stroke="currentColor"
|
|
27
|
+
strokeWidth="1.5"
|
|
28
|
+
strokeLinecap="round"
|
|
29
|
+
strokeLinejoin="round"
|
|
30
|
+
/>
|
|
31
|
+
<path
|
|
32
|
+
d="M1.2002 1.19995L10.8002 10.8"
|
|
33
|
+
stroke="currentColor"
|
|
34
|
+
strokeWidth="1.5"
|
|
35
|
+
strokeLinecap="round"
|
|
36
|
+
strokeLinejoin="round"
|
|
37
|
+
/>
|
|
38
|
+
</svg>
|
|
39
|
+
</div>
|
|
40
|
+
);
|
|
41
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface UtilityDragProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const UtilityDrag: React.FC<UtilityDragProps> = ({ className }) => {
|
|
9
|
+
return (
|
|
10
|
+
<div
|
|
11
|
+
className={cn(
|
|
12
|
+
"size-4 flex items-center justify-center text-gray-500",
|
|
13
|
+
className,
|
|
14
|
+
)}
|
|
15
|
+
>
|
|
16
|
+
<svg
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
width="10"
|
|
19
|
+
height="16"
|
|
20
|
+
viewBox="0 0 10 16"
|
|
21
|
+
fill="none"
|
|
22
|
+
className={cn("text-inherit")}
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
d="M2 8.875C2.55228 8.875 3 8.48325 3 8C3 7.51675 2.55228 7.125 2 7.125C1.44772 7.125 1 7.51675 1 8C1 8.48325 1.44772 8.875 2 8.875Z"
|
|
26
|
+
stroke="currentColor"
|
|
27
|
+
strokeWidth="2"
|
|
28
|
+
strokeLinecap="round"
|
|
29
|
+
strokeLinejoin="round"
|
|
30
|
+
/>
|
|
31
|
+
<path
|
|
32
|
+
d="M2 2.75C2.55228 2.75 3 2.35825 3 1.875C3 1.39175 2.55228 1 2 1C1.44772 1 1 1.39175 1 1.875C1 2.35825 1.44772 2.75 2 2.75Z"
|
|
33
|
+
stroke="currentColor"
|
|
34
|
+
strokeWidth="2"
|
|
35
|
+
strokeLinecap="round"
|
|
36
|
+
strokeLinejoin="round"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
d="M2 15C2.55228 15 3 14.6082 3 14.125C3 13.6418 2.55228 13.25 2 13.25C1.44772 13.25 1 13.6418 1 14.125C1 14.6082 1.44772 15 2 15Z"
|
|
40
|
+
stroke="currentColor"
|
|
41
|
+
strokeWidth="2"
|
|
42
|
+
strokeLinecap="round"
|
|
43
|
+
strokeLinejoin="round"
|
|
44
|
+
/>
|
|
45
|
+
<path
|
|
46
|
+
d="M8 8.875C8.55228 8.875 9 8.48325 9 8C9 7.51675 8.55228 7.125 8 7.125C7.44772 7.125 7 7.51675 7 8C7 8.48325 7.44772 8.875 8 8.875Z"
|
|
47
|
+
stroke="currentColor"
|
|
48
|
+
strokeWidth="2"
|
|
49
|
+
strokeLinecap="round"
|
|
50
|
+
strokeLinejoin="round"
|
|
51
|
+
/>
|
|
52
|
+
<path
|
|
53
|
+
d="M8 2.75C8.55228 2.75 9 2.35825 9 1.875C9 1.39175 8.55228 1 8 1C7.44772 1 7 1.39175 7 1.875C7 2.35825 7.44772 2.75 8 2.75Z"
|
|
54
|
+
stroke="currentColor"
|
|
55
|
+
strokeWidth="2"
|
|
56
|
+
strokeLinecap="round"
|
|
57
|
+
strokeLinejoin="round"
|
|
58
|
+
/>
|
|
59
|
+
<path
|
|
60
|
+
d="M8 15C8.55228 15 9 14.6082 9 14.125C9 13.6418 8.55228 13.25 8 13.25C7.44772 13.25 7 13.6418 7 14.125C7 14.6082 7.44772 15 8 15Z"
|
|
61
|
+
stroke="currentColor"
|
|
62
|
+
strokeWidth="2"
|
|
63
|
+
strokeLinecap="round"
|
|
64
|
+
strokeLinejoin="round"
|
|
65
|
+
/>
|
|
66
|
+
</svg>
|
|
67
|
+
</div>
|
|
68
|
+
);
|
|
69
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface UtilityEditProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const UtilityEdit: React.FC<UtilityEditProps> = ({ className }) => {
|
|
9
|
+
return (
|
|
10
|
+
<div
|
|
11
|
+
className={cn(
|
|
12
|
+
"size-4 flex items-center justify-center text-gray-500",
|
|
13
|
+
className,
|
|
14
|
+
)}
|
|
15
|
+
>
|
|
16
|
+
<svg
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
width="16"
|
|
19
|
+
height="16"
|
|
20
|
+
viewBox="0 0 16 16"
|
|
21
|
+
fill="none"
|
|
22
|
+
className={cn("size-[14px] text-inherit")}
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
d="M14.4221 4.36874C14.7922 3.99873 15.0001 3.49685 15.0002 2.97351C15.0003 2.45017 14.7924 1.94823 14.4224 1.57813C14.0524 1.20803 13.5505 1.00007 13.0272 1C12.5038 0.999934 12.0019 1.20777 11.6318 1.57778L2.28938 10.9223C2.12685 11.0843 2.00666 11.2839 1.93938 11.5033L1.01465 14.5498C0.996563 14.6103 0.995196 14.6746 1.0107 14.7359C1.0262 14.7971 1.058 14.853 1.10271 14.8977C1.14743 14.9423 1.20339 14.974 1.26467 14.9894C1.32595 15.0048 1.39025 15.0034 1.45076 14.9852L4.49793 14.0612C4.71716 13.9945 4.91666 13.875 5.07895 13.7133L14.4221 4.36874Z"
|
|
26
|
+
fill="white"
|
|
27
|
+
stroke="currentColor"
|
|
28
|
+
strokeWidth="1.5"
|
|
29
|
+
strokeLinecap="round"
|
|
30
|
+
strokeLinejoin="round"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M10.1002 3.10034L12.9003 5.90041"
|
|
34
|
+
stroke="currentColor"
|
|
35
|
+
strokeWidth="1.5"
|
|
36
|
+
strokeLinecap="round"
|
|
37
|
+
strokeLinejoin="round"
|
|
38
|
+
/>
|
|
39
|
+
</svg>
|
|
40
|
+
</div>
|
|
41
|
+
);
|
|
42
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface UtilityOptionsProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
color?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export const UtilityOptions: React.FC<UtilityOptionsProps> = ({
|
|
10
|
+
className = "",
|
|
11
|
+
color = "#71747D",
|
|
12
|
+
}) => {
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width="4"
|
|
17
|
+
height="16"
|
|
18
|
+
viewBox="0 0 4 16"
|
|
19
|
+
fill="none"
|
|
20
|
+
className={cn(className)}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M2 8.875C2.55228 8.875 3 8.48325 3 8C3 7.51675 2.55228 7.125 2 7.125C1.44772 7.125 1 7.51675 1 8C1 8.48325 1.44772 8.875 2 8.875Z"
|
|
24
|
+
stroke={color}
|
|
25
|
+
strokeWidth="2"
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
d="M2 2.75C2.55228 2.75 3 2.35825 3 1.875C3 1.39175 2.55228 1 2 1C1.44772 1 1 1.39175 1 1.875C1 2.35825 1.44772 2.75 2 2.75Z"
|
|
31
|
+
stroke={color}
|
|
32
|
+
strokeWidth="2"
|
|
33
|
+
strokeLinecap="round"
|
|
34
|
+
strokeLinejoin="round"
|
|
35
|
+
/>
|
|
36
|
+
<path
|
|
37
|
+
d="M2 15C2.55228 15 3 14.6082 3 14.125C3 13.6418 2.55228 13.25 2 13.25C1.44772 13.25 1 13.6418 1 14.125C1 14.6082 1.44772 15 2 15Z"
|
|
38
|
+
stroke={color}
|
|
39
|
+
strokeWidth="2"
|
|
40
|
+
strokeLinecap="round"
|
|
41
|
+
strokeLinejoin="round"
|
|
42
|
+
/>
|
|
43
|
+
</svg>
|
|
44
|
+
);
|
|
45
|
+
};
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface UtilityPortfolioProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const UtilityPortfolio: React.FC<UtilityPortfolioProps> = ({
|
|
9
|
+
className,
|
|
10
|
+
}) => {
|
|
11
|
+
return (
|
|
12
|
+
<div
|
|
13
|
+
className={cn(
|
|
14
|
+
"size-4 flex items-center justify-center text-gray-500",
|
|
15
|
+
className,
|
|
16
|
+
)}
|
|
17
|
+
>
|
|
18
|
+
<svg
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
width="16"
|
|
21
|
+
height="16"
|
|
22
|
+
viewBox="0 0 16 16"
|
|
23
|
+
fill="none"
|
|
24
|
+
className={cn("size-[14px] text-inherit")}
|
|
25
|
+
>
|
|
26
|
+
<path
|
|
27
|
+
d="M3.80005 14.9998V2.39982C3.80005 2.02851 3.94755 1.67242 4.2101 1.40987C4.47265 1.14732 4.82875 0.999817 5.20005 0.999817H10.8C11.1714 0.999817 11.5274 1.14732 11.79 1.40987C12.0525 1.67242 12.2 2.02851 12.2 2.39982V14.9998H3.80005Z"
|
|
28
|
+
fill="white"
|
|
29
|
+
stroke="#0F748A"
|
|
30
|
+
strokeWidth="1.5"
|
|
31
|
+
strokeLinecap="round"
|
|
32
|
+
strokeLinejoin="round"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
d="M3.8 7.99982H2.4C2.0287 7.99982 1.6726 8.14732 1.41005 8.40987C1.1475 8.67242 1 9.02851 1 9.39982V13.5998C1 13.9711 1.1475 14.3272 1.41005 14.5898C1.6726 14.8523 2.0287 14.9998 2.4 14.9998H3.8"
|
|
36
|
+
fill="#D6F4FB"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
d="M3.8 7.99982H2.4C2.0287 7.99982 1.6726 8.14732 1.41005 8.40987C1.1475 8.67242 1 9.02851 1 9.39982V13.5998C1 13.9711 1.1475 14.3272 1.41005 14.5898C1.6726 14.8523 2.0287 14.9998 2.4 14.9998H3.8"
|
|
40
|
+
stroke="#0F748A"
|
|
41
|
+
strokeWidth="1.5"
|
|
42
|
+
strokeLinecap="round"
|
|
43
|
+
strokeLinejoin="round"
|
|
44
|
+
/>
|
|
45
|
+
<path
|
|
46
|
+
d="M12.2 5.89981H13.6C13.9713 5.89981 14.3273 6.04731 14.5899 6.30986C14.8525 6.57241 15 6.92851 15 7.29981V13.5998C15 13.9711 14.8525 14.3272 14.5899 14.5898C14.3273 14.8523 13.9713 14.9998 13.6 14.9998H12.2"
|
|
47
|
+
fill="#D6F4FB"
|
|
48
|
+
/>
|
|
49
|
+
<path
|
|
50
|
+
d="M12.2 5.89981H13.6C13.9713 5.89981 14.3273 6.04731 14.5899 6.30986C14.8525 6.57241 15 6.92851 15 7.29981V13.5998C15 13.9711 14.8525 14.3272 14.5899 14.5898C14.3273 14.8523 13.9713 14.9998 13.6 14.9998H12.2"
|
|
51
|
+
stroke="#0F748A"
|
|
52
|
+
strokeWidth="1.5"
|
|
53
|
+
strokeLinecap="round"
|
|
54
|
+
strokeLinejoin="round"
|
|
55
|
+
/>
|
|
56
|
+
<path
|
|
57
|
+
d="M6.59998 3.7998H9.39998"
|
|
58
|
+
stroke="#0F748A"
|
|
59
|
+
strokeWidth="1.5"
|
|
60
|
+
strokeLinecap="round"
|
|
61
|
+
strokeLinejoin="round"
|
|
62
|
+
/>
|
|
63
|
+
<path
|
|
64
|
+
d="M6.59998 6.59982H9.39998"
|
|
65
|
+
stroke="#0F748A"
|
|
66
|
+
strokeWidth="1.5"
|
|
67
|
+
strokeLinecap="round"
|
|
68
|
+
strokeLinejoin="round"
|
|
69
|
+
/>
|
|
70
|
+
<path
|
|
71
|
+
d="M6.59998 9.39981H9.39998"
|
|
72
|
+
stroke="#0F748A"
|
|
73
|
+
strokeWidth="1.5"
|
|
74
|
+
strokeLinecap="round"
|
|
75
|
+
strokeLinejoin="round"
|
|
76
|
+
/>
|
|
77
|
+
<path
|
|
78
|
+
d="M6.59998 12.1998H9.39998"
|
|
79
|
+
stroke="#0F748A"
|
|
80
|
+
strokeWidth="1.5"
|
|
81
|
+
strokeLinecap="round"
|
|
82
|
+
strokeLinejoin="round"
|
|
83
|
+
/>
|
|
84
|
+
</svg>
|
|
85
|
+
</div>
|
|
86
|
+
);
|
|
87
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface UtilityResetProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const UtilityReset: React.FC<UtilityResetProps> = ({ className }) => {
|
|
9
|
+
return (
|
|
10
|
+
<div
|
|
11
|
+
className={cn(
|
|
12
|
+
"size-4 flex items-center justify-center text-gray-500",
|
|
13
|
+
className,
|
|
14
|
+
)}
|
|
15
|
+
>
|
|
16
|
+
<svg
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
width="16"
|
|
19
|
+
height="16"
|
|
20
|
+
viewBox="0 0 16 16"
|
|
21
|
+
fill="none"
|
|
22
|
+
className={cn("size-[14px] text-inherit")}
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
d="M14.75 7.75C14.75 9.13447 14.3395 10.4878 13.5703 11.639C12.8011 12.7901 11.7079 13.6873 10.4288 14.2172C9.1497 14.747 7.74224 14.8856 6.38437 14.6155C5.0265 14.3454 3.77922 13.6787 2.80026 12.6997C1.82129 11.7208 1.1546 10.4735 0.884506 9.11563C0.61441 7.75776 0.753033 6.3503 1.28285 5.07122C1.81266 3.79213 2.70987 2.69888 3.86101 1.92971C5.01215 1.16054 6.36553 0.75 7.75 0.75C9.71 0.75 11.5844 1.52778 12.9922 2.88111L14.75 4.63889"
|
|
26
|
+
stroke="currentColor"
|
|
27
|
+
stroke-width="1.5"
|
|
28
|
+
stroke-linecap="round"
|
|
29
|
+
stroke-linejoin="round"
|
|
30
|
+
/>
|
|
31
|
+
<path
|
|
32
|
+
d="M14.7502 0.75V4.63889H10.8613"
|
|
33
|
+
stroke="currentColor"
|
|
34
|
+
stroke-width="1.5"
|
|
35
|
+
stroke-linecap="round"
|
|
36
|
+
stroke-linejoin="round"
|
|
37
|
+
/>
|
|
38
|
+
</svg>
|
|
39
|
+
</div>
|
|
40
|
+
);
|
|
41
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface UtilityScoringProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const UtilityScoring: React.FC<UtilityScoringProps> = ({
|
|
9
|
+
className,
|
|
10
|
+
}) => {
|
|
11
|
+
return (
|
|
12
|
+
<div
|
|
13
|
+
className={cn(
|
|
14
|
+
"size-4 flex items-center justify-center text-gray-500",
|
|
15
|
+
className,
|
|
16
|
+
)}
|
|
17
|
+
>
|
|
18
|
+
<svg
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
width="16"
|
|
21
|
+
height="10"
|
|
22
|
+
viewBox="0 0 16 10"
|
|
23
|
+
fill="none"
|
|
24
|
+
className={cn("size-[14px] text-inherit")}
|
|
25
|
+
>
|
|
26
|
+
<path
|
|
27
|
+
d="M12.2 0.999939L4.5 8.65211L1 5.17385"
|
|
28
|
+
stroke="currentColor"
|
|
29
|
+
strokeWidth="1.5"
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
<path
|
|
34
|
+
d="M14.9992 3.78253L9.74922 8.99992L8.69922 7.95644"
|
|
35
|
+
stroke="currentColor"
|
|
36
|
+
strokeWidth="1.5"
|
|
37
|
+
strokeLinecap="round"
|
|
38
|
+
strokeLinejoin="round"
|
|
39
|
+
/>
|
|
40
|
+
</svg>
|
|
41
|
+
</div>
|
|
42
|
+
);
|
|
43
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface UtilitySearchProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const UtilitySearch: React.FC<UtilitySearchProps> = ({ className }) => {
|
|
9
|
+
return (
|
|
10
|
+
<div
|
|
11
|
+
className={cn(
|
|
12
|
+
"size-4 flex items-center justify-center text-gray-500",
|
|
13
|
+
className,
|
|
14
|
+
)}
|
|
15
|
+
>
|
|
16
|
+
<svg
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
width="16"
|
|
19
|
+
height="16"
|
|
20
|
+
viewBox="0 0 16 16"
|
|
21
|
+
fill="none"
|
|
22
|
+
className={cn("size-[14px] text-inherit")}
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
d="M11.8889 6.44444C11.8889 9.45133 9.45133 11.8889 6.44444 11.8889C3.43756 11.8889 1 9.45133 1 6.44444C1 3.43756 3.43756 1 6.44444 1C9.45133 1 11.8889 3.43756 11.8889 6.44444Z"
|
|
26
|
+
fill="white"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M15 15L10.3333 10.3333M11.8889 6.44444C11.8889 9.45133 9.45133 11.8889 6.44444 11.8889C3.43756 11.8889 1 9.45133 1 6.44444C1 3.43756 3.43756 1 6.44444 1C9.45133 1 11.8889 3.43756 11.8889 6.44444Z"
|
|
30
|
+
stroke="#71747D"
|
|
31
|
+
strokeWidth="1.5"
|
|
32
|
+
strokeLinecap="round"
|
|
33
|
+
strokeLinejoin="round"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
</div>
|
|
37
|
+
);
|
|
38
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface UtilitySortProps {
|
|
5
|
+
color?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export const UtilitySort: React.FC<UtilitySortProps> = ({
|
|
10
|
+
color = "#71747D",
|
|
11
|
+
className = "",
|
|
12
|
+
}) => {
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width="16"
|
|
17
|
+
height="14"
|
|
18
|
+
viewBox="0 0 16 14"
|
|
19
|
+
fill="none"
|
|
20
|
+
className={cn(className)}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M15.0001 10L11.8889 13L8.77783 10"
|
|
24
|
+
stroke={color}
|
|
25
|
+
strokeWidth="1.5"
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
d="M11.8887 13V2"
|
|
31
|
+
stroke={color}
|
|
32
|
+
strokeWidth="1.5"
|
|
33
|
+
strokeLinecap="round"
|
|
34
|
+
strokeLinejoin="round"
|
|
35
|
+
/>
|
|
36
|
+
<path
|
|
37
|
+
d="M1 4L4.11111 1L7.22222 4"
|
|
38
|
+
stroke={color}
|
|
39
|
+
strokeWidth="1.5"
|
|
40
|
+
strokeLinecap="round"
|
|
41
|
+
strokeLinejoin="round"
|
|
42
|
+
/>
|
|
43
|
+
<path
|
|
44
|
+
d="M4.11133 1V12"
|
|
45
|
+
stroke={color}
|
|
46
|
+
strokeWidth="1.5"
|
|
47
|
+
strokeLinecap="round"
|
|
48
|
+
strokeLinejoin="round"
|
|
49
|
+
/>
|
|
50
|
+
</svg>
|
|
51
|
+
);
|
|
52
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export function UtilityText({ className }: { className?: string }) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
className={className}
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width="16"
|
|
7
|
+
height="14"
|
|
8
|
+
viewBox="0 0 16 14"
|
|
9
|
+
fill="none"
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M8.75 12.75H0.75"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
stroke-width="1.5"
|
|
15
|
+
stroke-linecap="round"
|
|
16
|
+
stroke-linejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
d="M10.75 0.75H0.75"
|
|
20
|
+
stroke="currentColor"
|
|
21
|
+
stroke-width="1.5"
|
|
22
|
+
stroke-linecap="round"
|
|
23
|
+
stroke-linejoin="round"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
d="M14.75 6.75H0.75"
|
|
27
|
+
stroke="currentColor"
|
|
28
|
+
stroke-width="1.5"
|
|
29
|
+
stroke-linecap="round"
|
|
30
|
+
stroke-linejoin="round"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "../../lib/utils";
|
|
3
|
+
|
|
4
|
+
interface WaterMarkWWWProductsProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const WaterMarkWWWProducts: React.FC<WaterMarkWWWProductsProps> = ({
|
|
9
|
+
className,
|
|
10
|
+
}) => {
|
|
11
|
+
return (
|
|
12
|
+
<svg
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
width="120"
|
|
15
|
+
height="120"
|
|
16
|
+
viewBox="0 0 120 120"
|
|
17
|
+
fill="none"
|
|
18
|
+
className={cn("text-gray-100 rounded-full", className)}
|
|
19
|
+
>
|
|
20
|
+
<path
|
|
21
|
+
d="M60 0C93.1371 0 120 26.8629 120 60C120 93.1371 93.1371 120 60 120C26.8629 120 0 93.1371 0 60C0 26.8629 26.8629 0 60 0ZM45.7295 4.35059C44.665 4.35059 43.7911 5.1661 43.6992 6.20605C39.5978 7.45441 35.6492 9.17185 31.9482 11.3125C27.6971 13.7641 23.7661 16.7829 20.2793 20.2676C16.7779 23.7741 13.7642 27.6957 11.3184 31.9297C8.84343 36.2 6.95019 40.7758 5.68359 45.5117C4.4243 50.2549 3.78418 55.1585 3.78418 60.0908C3.7842 65.0231 4.42429 69.9268 5.68359 74.6699C6.95748 79.4276 8.85799 84.0035 11.3184 88.252C13.7715 92.5004 16.7926 96.4285 20.2793 99.9131C23.788 103.412 27.7116 106.425 31.9482 108.869C36.2211 111.342 40.7994 113.234 45.5381 114.5C50.2841 115.759 55.1907 116.398 60.126 116.398C65.0614 116.398 69.9682 115.759 74.707 114.5C79.4677 113.227 84.0467 111.328 88.2979 108.869C92.5489 106.418 96.4791 103.398 99.9658 99.9131C103.467 96.4066 106.481 92.4859 108.927 88.252C111.08 84.5373 112.791 80.591 114.034 76.5098C115.08 76.4235 115.902 75.5493 115.902 74.4814C115.902 73.3566 114.99 72.4443 113.864 72.4443C112.739 72.4444 111.826 73.3567 111.826 74.4814C111.826 75.1455 112.146 75.7336 112.638 76.1055C111.429 80.0771 109.76 83.9107 107.668 87.5244C105.288 91.642 102.346 95.4689 98.9395 98.8809C95.5401 102.278 91.7189 105.21 87.5771 107.604C83.428 109.997 78.9728 111.845 74.3359 113.089C69.7208 114.318 64.9376 114.943 60.126 114.943C55.3145 114.943 50.5392 114.318 45.917 113.089C41.2947 111.859 36.8395 110.011 32.6758 107.604C28.5557 105.225 24.7265 102.285 21.3125 98.8809C17.9131 95.4835 14.9799 91.6638 12.585 87.5244C10.19 83.3777 8.34048 78.9251 7.0957 74.291C5.86556 69.6789 5.24026 64.8994 5.24023 60.0908C5.24023 55.2822 5.86554 50.5023 7.0957 45.8828C8.32592 41.2632 10.1755 36.8107 12.585 32.6494C14.9653 28.5319 17.9058 24.7049 21.3125 21.293C24.7119 17.8956 28.5339 14.9637 32.6758 12.5703C36.2741 10.491 40.1089 8.824 44.0986 7.60645C44.4704 8.10235 45.0618 8.4248 45.7295 8.4248C46.855 8.42462 47.7675 7.51251 47.7676 6.3877C47.7676 5.26282 46.855 4.35077 45.7295 4.35059ZM110.14 58.0547C109.014 58.0547 108.101 58.966 108.101 60.0908C108.101 60.9396 108.621 61.6666 109.359 61.9727C109.22 65.6496 108.676 69.2945 107.73 72.8438C106.624 76.9905 104.964 80.9843 102.802 84.7236C100.647 88.4411 98.0047 91.8751 94.9619 94.916C91.9192 97.9569 88.4906 100.59 84.7637 102.751C81.0221 104.912 77.0261 106.571 72.877 107.677C68.7569 108.783 64.4619 109.342 60.1162 109.342C55.7997 109.342 51.5119 108.782 47.3555 107.677C43.2062 106.571 39.2094 104.912 35.4678 102.751C31.7481 100.598 28.3122 97.9569 25.2695 94.916C22.6729 92.3209 20.3743 89.4442 18.4121 86.3418C18.6833 85.9959 18.8467 85.5614 18.8467 85.0879C18.8466 83.963 17.9342 83.0508 16.8086 83.0508C15.683 83.0508 14.7706 83.963 14.7705 85.0879C14.7705 86.2129 15.6829 87.125 16.8086 87.125C16.9307 87.125 17.0499 87.1124 17.166 87.0918C19.1912 90.2968 21.5648 93.2725 24.2432 95.9492C27.3805 99.0773 30.911 101.798 34.7471 104.017C38.5979 106.243 42.7114 107.946 46.9844 109.088C51.2644 110.223 55.6828 110.797 60.123 110.797C64.5997 110.797 69.0184 110.223 73.2549 109.088C77.5206 107.946 81.6414 106.243 85.4922 104.017C89.3283 101.791 92.8661 99.0773 95.9961 95.9492C99.1335 92.8137 101.848 89.285 104.068 85.4512C106.296 81.6029 108 77.4929 109.143 73.2227C110.114 69.5624 110.674 65.8005 110.815 62.0107C111.608 61.7318 112.178 60.9786 112.178 60.0908C112.178 58.9662 111.265 58.055 110.14 58.0547ZM21.6621 35.8584C20.5367 35.8587 19.6242 36.7708 19.624 37.8955C19.624 38.3981 19.8075 38.8576 20.1094 39.2129C18.5744 42.1428 17.367 45.2297 16.5186 48.4141C15.5067 52.2189 14.9971 56.1478 14.9971 60.0908C14.9971 64.0483 15.5073 67.9765 16.5264 71.7666C17.5382 75.564 19.0592 79.2234 21.0391 82.6426C23.0191 86.0545 25.4288 89.1981 28.2168 91.9844C31.0193 94.7778 34.1641 97.1931 37.5635 99.1572C40.9847 101.136 44.6465 102.657 48.4463 103.668C52.2533 104.679 56.1846 105.188 60.1299 105.188C64.1043 105.187 68.0351 104.679 71.8057 103.66C75.6054 102.649 79.2672 101.128 82.6885 99.1494C85.5305 97.5057 88.1752 95.5643 90.5879 93.3574C90.8698 93.4969 91.1866 93.5771 91.5225 93.5771C92.6882 93.577 93.6328 92.6328 93.6328 91.4678C93.6328 90.3027 92.6882 89.3585 91.5225 89.3584C90.3566 89.3584 89.4111 90.3026 89.4111 91.4678C89.4111 91.7664 89.474 92.0502 89.5859 92.3076C87.2587 94.4328 84.7037 96.3076 81.9678 97.8916C78.6558 99.8048 75.1105 101.274 71.4346 102.256C67.7805 103.238 63.9805 103.733 60.1299 103.733C56.3082 103.733 52.5076 103.231 48.8242 102.256C45.1483 101.274 41.603 99.8048 38.291 97.8916C35.008 95.9928 31.9652 93.6574 29.25 90.9512C26.5566 88.2594 24.2201 85.2179 22.3057 81.915C20.3913 78.6051 18.9212 75.0623 17.9385 71.3887C16.9558 67.7222 16.4531 63.9174 16.4531 60.0908C16.4531 56.2716 16.9484 52.4667 17.9238 48.793C18.7456 45.721 19.9085 42.7405 21.3867 39.9111C21.4769 39.9233 21.5686 39.9326 21.6621 39.9326C22.7878 39.9326 23.7012 39.0205 23.7012 37.8955C23.701 36.7706 22.7877 35.8584 21.6621 35.8584ZM32.6924 30.6357C31.5667 30.6357 30.6533 31.5479 30.6533 32.6729C30.6534 32.9818 30.7245 33.2738 30.8477 33.5361C28.9554 35.618 27.2895 37.8948 25.8838 40.3252C24.1587 43.3005 22.826 46.5082 21.9307 49.8545C21.0499 53.1863 20.5987 56.6276 20.5986 60.083C20.5986 63.5675 21.0427 67.0089 21.9307 70.3115C22.826 73.6506 24.1514 76.8591 25.8838 79.8418C27.609 82.8245 29.727 85.5752 32.1729 88.0195C34.6187 90.4639 37.371 92.5805 40.3555 94.3047C43.3325 96.0287 46.5424 97.3601 49.8906 98.2549C53.2246 99.1351 56.6683 99.5859 60.126 99.5859C63.6126 99.5859 67.0556 99.1355 70.3457 98.248C73.6868 97.3533 76.8974 96.0219 79.8818 94.2979C82.8664 92.5737 85.6186 90.4561 88.0645 88.0117C90.0545 86.0228 91.8266 83.8308 93.3477 81.4766C93.473 81.5006 93.602 81.5146 93.7344 81.5146C94.8601 81.5146 95.7725 80.6025 95.7725 79.4775C95.7723 78.3527 94.86 77.4404 93.7344 77.4404C92.6089 77.4405 91.6965 78.3528 91.6963 79.4775C91.6963 79.9402 91.8523 80.366 92.1123 80.708C90.652 82.9635 88.9508 85.067 87.0381 86.9785C84.6868 89.3283 82.0365 91.3653 79.1611 93.0312C76.2858 94.6972 73.1921 95.9775 69.9746 96.8359C66.7935 97.6944 63.4812 98.124 60.1182 98.124C56.7844 98.124 53.4727 97.687 50.2627 96.8359C47.038 95.9702 43.9442 94.6899 41.0762 93.0312C38.2081 91.3726 35.5577 89.3356 33.1992 86.9785C30.8481 84.6288 28.8095 81.9809 27.1426 79.1074C25.4757 76.234 24.1949 73.1421 23.3359 69.9268C22.477 66.7476 22.0479 63.4372 22.0479 60.0762C22.0479 56.7443 22.4843 53.4338 23.3359 50.2256C24.2022 47.003 25.483 43.9111 27.1426 41.0449C28.4874 38.7225 30.0808 36.5431 31.8916 34.5459C32.1374 34.6509 32.4082 34.709 32.6924 34.709C33.8178 34.7088 34.7303 33.7975 34.7305 32.6729C34.7305 31.548 33.8179 30.6359 32.6924 30.6357ZM60.1289 8.0752C59.2463 8.0754 58.4961 8.63634 58.2129 9.4209C54.4184 9.56213 50.6521 10.1221 46.9873 11.0938C42.7216 12.2359 38.6008 13.9379 34.75 16.1641C30.9138 18.3902 27.3762 21.1042 24.2461 24.2324C21.116 27.3679 18.394 30.8966 16.1738 34.7305C13.9464 38.5788 12.2425 42.6887 11.0996 46.959C10.1275 50.6209 9.56726 54.3843 9.42578 58.1758C8.64112 58.459 8.08026 59.209 8.08008 60.0908C8.08008 61.2158 8.99248 62.1279 10.1182 62.1279C11.2437 62.1278 12.1562 61.2157 12.1562 60.0908C12.1561 59.2361 11.6287 58.5052 10.8818 58.2031C11.0213 54.5266 11.5668 50.8792 12.5117 47.3379C13.6182 43.1912 15.2785 39.1973 17.4404 35.458C19.6024 31.7405 22.2375 28.3065 25.2803 25.2656C28.323 22.2247 31.7515 19.5913 35.4785 17.4307C39.2201 15.27 43.2161 13.6107 47.3652 12.5049C50.9096 11.5603 54.5605 11.0152 58.2402 10.876C58.5427 11.622 59.274 12.1482 60.1289 12.1484C61.2546 12.1484 62.168 11.2363 62.168 10.1113C62.1677 8.98653 61.2544 8.0752 60.1289 8.0752Z"
|
|
22
|
+
fill="currentColor"
|
|
23
|
+
/>
|
|
24
|
+
</svg>
|
|
25
|
+
);
|
|
26
|
+
};
|