@vygruppen/spor-react 12.24.16 → 13.0.0
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/.turbo/turbo-build.log +10 -10
- package/.turbo/turbo-postinstall.log +4 -3
- package/CHANGELOG.md +18 -0
- package/dist/index.cjs +2753 -2646
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +887 -601
- package/dist/index.d.ts +887 -601
- package/dist/index.mjs +2712 -2605
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
- package/src/accordion/Accordion.tsx +34 -29
- package/src/accordion/Expandable.tsx +20 -21
- package/src/alert/Alert.tsx +7 -5
- package/src/alert/AlertIcon.tsx +19 -20
- package/src/alert/ExpandableAlert.tsx +65 -64
- package/src/alert/ServiceAlert.tsx +78 -78
- package/src/breadcrumb/Breadcrumb.tsx +37 -34
- package/src/button/Button.tsx +64 -57
- package/src/button/ButtonGroup.tsx +12 -10
- package/src/button/Clipboard.tsx +21 -18
- package/src/button/CloseButton.tsx +19 -17
- package/src/button/FloatingActionButton.tsx +41 -47
- package/src/button/IconButton.tsx +20 -18
- package/src/calendar/CalendarContext.tsx +1 -1
- package/src/color-mode/color-mode.tsx +7 -5
- package/src/datepicker/CalendarTriggerButton.tsx +11 -7
- package/src/datepicker/DateField.tsx +53 -51
- package/src/datepicker/DatePicker.tsx +127 -134
- package/src/datepicker/DateTimeSegment.tsx +44 -40
- package/src/datepicker/StyledField.tsx +39 -36
- package/src/dialog/Dialog.tsx +14 -11
- package/src/dialog/Drawer.tsx +74 -67
- package/src/input/AttachedInputs.tsx +35 -41
- package/src/input/Autocomplete.tsx +118 -129
- package/src/input/CardSelect.tsx +67 -65
- package/src/input/Checkbox.tsx +19 -17
- package/src/input/CheckboxGroup.tsx +0 -2
- package/src/input/ChoiceChip.tsx +42 -38
- package/src/input/Combobox.tsx +4 -4
- package/src/input/CountryCodeSelect.tsx +8 -8
- package/src/input/Field.tsx +78 -75
- package/src/input/FloatingLabel.tsx +6 -8
- package/src/input/Input.tsx +87 -92
- package/src/input/ListBox.tsx +3 -4
- package/src/input/Menu.tsx +149 -142
- package/src/input/NativeSelect.tsx +7 -5
- package/src/input/NumericStepper.tsx +15 -12
- package/src/input/PasswordInput.tsx +65 -61
- package/src/input/PhoneNumberInput.tsx +7 -7
- package/src/input/Popover.tsx +52 -55
- package/src/input/Radio.tsx +16 -11
- package/src/input/SearchInput.tsx +32 -31
- package/src/input/Select.tsx +106 -96
- package/src/input/Switch.tsx +43 -41
- package/src/input/Textarea.tsx +68 -66
- package/src/layout/PressableCard.tsx +11 -10
- package/src/layout/RadioCard.tsx +57 -53
- package/src/layout/Separator.tsx +8 -7
- package/src/layout/StaticCard.tsx +11 -10
- package/src/linjetag/LineIcon.tsx +48 -54
- package/src/linjetag/TravelTag.tsx +57 -59
- package/src/link/TextLink.tsx +50 -40
- package/src/loader/ProgressBar.tsx +41 -46
- package/src/loader/ProgressLoader.tsx +83 -86
- package/src/loader/Skeleton.tsx +56 -48
- package/src/logo/CargonetLogo.tsx +88 -87
- package/src/logo/VyLogo.tsx +80 -77
- package/src/logo/VyLogoPride.tsx +137 -135
- package/src/media-controller/JumpButton.tsx +30 -28
- package/src/media-controller/PlayPauseButton.tsx +8 -7
- package/src/media-controller/SkipButton.tsx +28 -26
- package/src/nudge/Nudge.tsx +66 -70
- package/src/pagination/Pagination.tsx +52 -46
- package/src/popover/index.tsx +46 -41
- package/src/progress-indicator/ProgressIndicator.tsx +10 -7
- package/src/stepper/Stepper.tsx +84 -81
- package/src/tab/Tabs.tsx +8 -4
- package/src/table/Table.tsx +89 -109
- package/src/tooltip.tsx +26 -22
- package/src/typography/Badge.tsx +8 -5
- package/src/typography/Code.tsx +8 -5
- package/src/typography/Heading.tsx +22 -23
- package/src/typography/Text.tsx +11 -9
- package/tsconfig.json +1 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { BoxProps, chakra, RecipeVariantProps, Text } from "@chakra-ui/react";
|
|
3
|
-
import React, {
|
|
3
|
+
import React, { useEffect, useId, useRef, useState } from "react";
|
|
4
4
|
import { useProgressBar } from "react-aria";
|
|
5
5
|
|
|
6
6
|
import { createTexts, useTranslation } from "..";
|
|
@@ -87,93 +87,90 @@ const ProgressLoaderWrapper = chakra("div", progressLoaderRecipe);
|
|
|
87
87
|
* ```
|
|
88
88
|
*/
|
|
89
89
|
|
|
90
|
-
export const ProgressLoader =
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
} = usePathLength(value);
|
|
90
|
+
export const ProgressLoader = ({
|
|
91
|
+
ref,
|
|
92
|
+
value,
|
|
93
|
+
label,
|
|
94
|
+
labelRotationDelay = 5000,
|
|
95
|
+
"aria-label": ariaLabel,
|
|
96
|
+
width,
|
|
97
|
+
...rest
|
|
98
|
+
}: ProgressLoaderProps & {
|
|
99
|
+
ref?: React.RefObject<HTMLDivElement>;
|
|
100
|
+
}) => {
|
|
101
|
+
const { t } = useTranslation();
|
|
102
|
+
const currentLoadingText = useRotatingLabel({
|
|
103
|
+
label,
|
|
104
|
+
delay: labelRotationDelay,
|
|
105
|
+
});
|
|
106
|
+
const { labelProps, progressBarProps } = useProgressBar({
|
|
107
|
+
isIndeterminate: value === undefined,
|
|
108
|
+
value,
|
|
109
|
+
"aria-label": ariaLabel ?? t(texts.fallbackLabel(value ?? "?")),
|
|
110
|
+
});
|
|
111
|
+
const {
|
|
112
|
+
pathRef,
|
|
113
|
+
pathLength: progressPathLength,
|
|
114
|
+
progressOffset,
|
|
115
|
+
} = usePathLength(value);
|
|
117
116
|
|
|
118
|
-
|
|
117
|
+
const id = useId();
|
|
119
118
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
);
|
|
176
|
-
ProgressLoader.displayName = "ProgressLoader";
|
|
119
|
+
return (
|
|
120
|
+
<ProgressLoaderWrapper
|
|
121
|
+
{...progressBarProps}
|
|
122
|
+
width={width}
|
|
123
|
+
role="progressbar"
|
|
124
|
+
aria-valuenow={value}
|
|
125
|
+
aria-valuemin={0}
|
|
126
|
+
aria-valuemax={100}
|
|
127
|
+
aria-label={ariaLabel ?? t(texts.fallbackLabel(value ?? "?"))}
|
|
128
|
+
{...rest}
|
|
129
|
+
ref={ref}
|
|
130
|
+
>
|
|
131
|
+
<chakra.svg as="svg" viewBox="0 0 246 78" fill="none">
|
|
132
|
+
<path
|
|
133
|
+
id={`${id}-start-dot`}
|
|
134
|
+
d="M14.0479 44.8251C19.4332 44.8251 23.7988 40.5242 23.7988 35.2187C23.7988 29.9133 19.4332 25.6124 14.0479 25.6124C8.66254 25.6124 4.29688 29.9133 4.29688 35.2187C4.29688 40.5242 8.66254 44.8251 14.0479 44.8251Z"
|
|
135
|
+
fill="#FFB466"
|
|
136
|
+
/>
|
|
137
|
+
<path
|
|
138
|
+
id={`${id}-track`}
|
|
139
|
+
d="M204.911 39.1156C204.911 39.1156 175.012 46.8319 157.651 30.4354C140.29 14.0388 121 21.7547 110.391 47.6529C103.22 65.157 78.9634 67.0859 67.9533 47.6529C59.8376 33.3287 36.125 37.1866 36.125 37.1866"
|
|
140
|
+
strokeWidth="13.6469"
|
|
141
|
+
strokeLinecap="round"
|
|
142
|
+
strokeLinejoin="round"
|
|
143
|
+
/>
|
|
144
|
+
<path
|
|
145
|
+
id={`${id}-progress`}
|
|
146
|
+
d="M204.911 39.1156C204.911 39.1156 175.012 46.8319 157.651 30.4354C140.29 14.0388 121 21.7547 110.391 47.6529C103.22 65.157 78.9634 67.0859 67.9533 47.6529C59.8376 33.3287 36.125 37.1866 36.125 37.1866"
|
|
147
|
+
strokeWidth="13.6469"
|
|
148
|
+
strokeLinecap="round"
|
|
149
|
+
strokeLinejoin="round"
|
|
150
|
+
strokeDasharray={progressPathLength}
|
|
151
|
+
strokeDashoffset={progressOffset}
|
|
152
|
+
style={{ transition: "stroke-dashoffset .2s ease-out" }}
|
|
153
|
+
ref={pathRef}
|
|
154
|
+
/>
|
|
155
|
+
<path
|
|
156
|
+
id={`${id}-end-dot`}
|
|
157
|
+
d="M226.025 44.8251C231.411 44.8251 235.776 40.5242 235.776 35.2187C235.776 29.9133 231.411 25.6124 226.025 25.6124C220.64 25.6124 216.274 29.9133 216.274 35.2187C216.274 40.5242 220.64 44.8251 226.025 44.8251Z"
|
|
158
|
+
fill="#688CBA"
|
|
159
|
+
/>
|
|
160
|
+
</chakra.svg>
|
|
161
|
+
{currentLoadingText && (
|
|
162
|
+
<Text
|
|
163
|
+
textAlign="center"
|
|
164
|
+
marginTop={2}
|
|
165
|
+
fontWeight="bold"
|
|
166
|
+
{...labelProps}
|
|
167
|
+
>
|
|
168
|
+
{currentLoadingText}
|
|
169
|
+
</Text>
|
|
170
|
+
)}
|
|
171
|
+
</ProgressLoaderWrapper>
|
|
172
|
+
);
|
|
173
|
+
};
|
|
177
174
|
|
|
178
175
|
const texts = createTexts({
|
|
179
176
|
fallbackLabel: (value) => ({
|
package/src/loader/Skeleton.tsx
CHANGED
|
@@ -11,7 +11,6 @@ import {
|
|
|
11
11
|
useRecipe,
|
|
12
12
|
} from "@chakra-ui/react";
|
|
13
13
|
import * as React from "react";
|
|
14
|
-
import { forwardRef } from "react";
|
|
15
14
|
|
|
16
15
|
import { skeletonRecipe } from "@/theme/recipes/skeleton";
|
|
17
16
|
|
|
@@ -22,10 +21,12 @@ export type SkeletonCircleProps = ChakraSkeletonProps &
|
|
|
22
21
|
size?: CircleProps["size"];
|
|
23
22
|
};
|
|
24
23
|
|
|
25
|
-
export const SkeletonCircle =
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
export const SkeletonCircle = function SkeletonCircle({
|
|
25
|
+
ref,
|
|
26
|
+
...props
|
|
27
|
+
}: SkeletonCircleProps & {
|
|
28
|
+
ref?: React.RefObject<HTMLDivElement>;
|
|
29
|
+
}) {
|
|
29
30
|
const recipe = useRecipe({ key: "skeleton" });
|
|
30
31
|
|
|
31
32
|
const [recipeProps, restProps] = recipe.splitVariantProps({
|
|
@@ -41,58 +42,65 @@ export const SkeletonCircle = React.forwardRef<
|
|
|
41
42
|
<ChakraSkeleton css={{ ...recipe(recipeProps), ...css }} {...rest} />
|
|
42
43
|
</Circle>
|
|
43
44
|
);
|
|
44
|
-
}
|
|
45
|
+
};
|
|
45
46
|
|
|
46
47
|
export type SkeletonTextProps = ChakraSkeletonProps &
|
|
47
48
|
SkeletonVariantProps & {
|
|
48
49
|
noOfLines?: number;
|
|
49
50
|
};
|
|
50
51
|
|
|
51
|
-
export const SkeletonText =
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
52
|
+
export const SkeletonText = function SkeletonText(
|
|
53
|
+
props: SkeletonTextProps & { ref?: React.Ref<HTMLDivElement> },
|
|
54
|
+
) {
|
|
55
|
+
const recipe = useRecipe({ key: "skeleton" });
|
|
56
|
+
const [recipeProps, restProps] = recipe.splitVariantProps({
|
|
57
|
+
loading: true,
|
|
58
|
+
variant: "pulse",
|
|
59
|
+
...props,
|
|
60
|
+
});
|
|
60
61
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
{...rest}
|
|
70
|
-
/>
|
|
71
|
-
))}
|
|
72
|
-
</Stack>
|
|
73
|
-
);
|
|
74
|
-
},
|
|
75
|
-
);
|
|
62
|
+
const {
|
|
63
|
+
noOfLines = 3,
|
|
64
|
+
height = "0.5rem",
|
|
65
|
+
gap,
|
|
66
|
+
css,
|
|
67
|
+
ref,
|
|
68
|
+
...rest
|
|
69
|
+
} = restProps;
|
|
76
70
|
|
|
71
|
+
return (
|
|
72
|
+
<Stack gap={gap} width="full" ref={ref}>
|
|
73
|
+
{Array.from({ length: noOfLines }).map((_, index) => (
|
|
74
|
+
<ChakraSkeleton
|
|
75
|
+
key={index}
|
|
76
|
+
height={height}
|
|
77
|
+
css={{ ...recipe(recipeProps), ...css }}
|
|
78
|
+
_last={{ maxW: "80%" }}
|
|
79
|
+
{...rest}
|
|
80
|
+
/>
|
|
81
|
+
))}
|
|
82
|
+
</Stack>
|
|
83
|
+
);
|
|
84
|
+
};
|
|
77
85
|
export type SkeletonProps = ChakraSkeletonProps & SkeletonVariantProps;
|
|
78
86
|
|
|
79
|
-
export const Skeleton =
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
+
export const Skeleton = function Skeleton(
|
|
88
|
+
props: SkeletonProps & { ref?: React.Ref<HTMLDivElement> },
|
|
89
|
+
) {
|
|
90
|
+
const recipe = useRecipe({ key: "skeleton" });
|
|
91
|
+
const [recipeProps, restProps] = recipe.splitVariantProps({
|
|
92
|
+
loading: true,
|
|
93
|
+
variant: "pulse",
|
|
94
|
+
...props,
|
|
95
|
+
});
|
|
87
96
|
|
|
88
|
-
|
|
97
|
+
const { css, ref, ...rest } = restProps;
|
|
89
98
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
);
|
|
99
|
+
return (
|
|
100
|
+
<ChakraSkeleton
|
|
101
|
+
ref={ref}
|
|
102
|
+
css={{ ...recipe(recipeProps), ...css }}
|
|
103
|
+
{...rest}
|
|
104
|
+
/>
|
|
105
|
+
);
|
|
106
|
+
};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { chakra } from "@chakra-ui/react";
|
|
2
|
-
import { forwardRef } from "react";
|
|
3
2
|
|
|
4
3
|
export type CargonetLogoProps = {
|
|
5
4
|
/** The color of the logo
|
|
@@ -10,90 +9,92 @@ export type CargonetLogoProps = {
|
|
|
10
9
|
colorPalette: "light" | "dark";
|
|
11
10
|
};
|
|
12
11
|
|
|
13
|
-
export const CargonetLogo =
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
export const CargonetLogo = ({
|
|
13
|
+
ref,
|
|
14
|
+
...props
|
|
15
|
+
}: CargonetLogoProps & {
|
|
16
|
+
ref?: React.RefObject<SVGSVGElement>;
|
|
17
|
+
}) => {
|
|
18
|
+
const { colorPalette } = props;
|
|
19
|
+
// These colors should not be tokenized, as they are logo specific.
|
|
20
|
+
const mainColor = "#DF8200";
|
|
21
|
+
const accentColor = colorPalette === "light" ? "#383E42" : "#ffffff";
|
|
19
22
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
);
|
|
99
|
-
CargonetLogo.displayName = "CargonetLogo";
|
|
23
|
+
return (
|
|
24
|
+
<chakra.svg viewBox="0 0 251 52" ref={ref} {...props}>
|
|
25
|
+
<title>Cargonet logo</title>
|
|
26
|
+
<path
|
|
27
|
+
d="M87.9222 14.602L84.3862 18.7417C81.1953 15.9821 79.1685 15.2914 76.5379 15.2914C70.933 15.2914 67.4398 19.5609 67.4398 26.029C67.4398 32.5834 71.0186 36.8523 76.4089 36.8523C79.6855 36.8523 81.6694 35.6447 84.9038 32.9285L88.3969 36.982C84.645 40.5608 81.1524 42.1134 76.4951 42.1134C66.9651 42.1134 61.2733 35.214 61.2733 25.9856C61.2733 16.9732 66.7492 10.0309 76.5379 10.0309C81.2387 10.0309 84.3 11.4533 87.9222 14.602Z"
|
|
28
|
+
fill={accentColor}
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
d="M106.461 41.3802C106.159 40.5604 105.986 39.5259 105.857 38.4046C104.693 40.6038 102.408 42.1131 98.6988 42.1131C94.4299 42.1131 90.8511 40.216 90.8511 35.774C90.8511 30.9013 95.1628 29.1333 100.812 28.1417L105.598 27.3225V26.7187C105.598 24.3903 103.917 23.1399 101.416 23.1399C98.4829 23.1399 96.5858 24.476 94.4734 26.6759L91.0231 23.5712C93.9124 20.2934 97.1468 18.6117 101.373 18.6117C107.754 18.6117 110.946 21.846 110.946 26.5028V35.9037C110.946 38.448 111.118 40.216 111.506 41.3802H106.461ZM105.598 32.6265V31.1607L101.373 31.9364C98.0093 32.5836 96.2414 33.4022 96.2414 35.3861C96.2414 36.9388 97.5346 37.9299 99.8202 37.9299C102.666 37.9299 105.598 36.4647 105.598 32.6265Z"
|
|
32
|
+
fill={accentColor}
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
d="M130.65 19.6469L129.572 24.5625C128.537 24.2614 127.373 24.0455 126.295 24.0455C123.233 24.0455 121.422 26.4601 121.422 30.5565V41.3803H115.816V25.8563C115.816 22.8813 115.644 20.8111 115.385 19.3448H120.603C120.818 20.1645 120.991 21.4578 121.034 23.0967C122.112 20.5524 123.88 18.9569 126.812 18.9569C128.192 18.9569 129.529 19.2157 130.65 19.6469Z"
|
|
36
|
+
fill={accentColor}
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
d="M152.813 19.3447V40.6896C152.813 46.9859 148.156 50.1768 142.075 50.1768C138.669 50.1768 135.219 49.3142 132.028 47.4172L134.745 43.3202C137.289 44.8729 139.532 45.692 141.99 45.692C145.008 45.692 147.336 44.269 147.336 40.3018V37.4993C146.043 39.5255 143.93 40.8199 140.911 40.8199C135.349 40.8199 131.209 36.3779 131.209 29.7373C131.209 23.0966 135.349 18.6118 140.911 18.6118C144.188 18.6118 146.345 20.0782 147.639 22.3631V19.3447H152.813ZM147.509 29.7373C147.509 25.9425 145.267 23.3988 142.162 23.3988C138.971 23.3988 136.858 25.9425 136.858 29.7373C136.858 33.5314 138.971 36.0763 142.162 36.0763C145.267 36.0763 147.509 33.5314 147.509 29.7373Z"
|
|
40
|
+
fill={accentColor}
|
|
41
|
+
/>
|
|
42
|
+
<path
|
|
43
|
+
d="M178.72 30.341C178.72 37.3267 173.976 42.0702 167.292 42.0702C160.609 42.0702 155.866 37.3267 155.866 30.341C155.866 23.3553 160.609 18.6117 167.292 18.6117C173.976 18.6117 178.72 23.3553 178.72 30.341ZM161.557 30.341C161.557 34.6967 163.886 37.4992 167.292 37.4992C170.699 37.4992 173.028 34.6967 173.028 30.341C173.028 26.0721 170.699 23.1828 167.292 23.1828C163.886 23.1828 161.557 26.0721 161.557 30.341Z"
|
|
44
|
+
fill={accentColor}
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
d="M208.903 10.7638V41.38H202.478L194.673 28.9612C192.516 25.5115 190.403 22.1046 188.635 18.8274C188.851 22.4497 188.937 26.4598 188.937 30.8155V41.38H183.029V10.7638H189.585L197.82 23.9589C199.717 26.9773 201.616 29.9529 203.21 32.8851C203.081 29.6507 203.038 26.0719 203.038 21.8893V10.7638H208.903Z"
|
|
48
|
+
fill={mainColor}
|
|
49
|
+
/>
|
|
50
|
+
<path
|
|
51
|
+
d="M233.663 37.7578C230.386 41.035 227.324 42.0707 223.788 42.0707C216.672 42.0707 212.231 37.499 212.231 30.4705C212.231 23.6573 216.371 18.6116 223.313 18.6116C230.041 18.6116 233.619 22.8376 233.619 29.6079C233.619 30.2546 233.577 31.2897 233.534 31.6781H217.578C218.009 35.0844 220.08 37.499 223.917 37.499C226.505 37.499 228.144 36.5936 230.6 34.4378L233.663 37.7578ZM217.708 27.9262H228.359C228.144 24.8644 226.376 22.881 223.227 22.881C220.123 22.881 218.311 24.8644 217.708 27.9262Z"
|
|
52
|
+
fill={mainColor}
|
|
53
|
+
/>
|
|
54
|
+
<path
|
|
55
|
+
d="M250.41 41.0785C248.556 41.6817 246.789 41.8976 245.538 41.8976C240.88 41.8976 239.198 39.8709 239.198 35.7739V23.4415H235.275V19.3445H239.198V12.6182H244.805V19.3445H250.066V23.4415H244.805V34.8257C244.805 36.5937 245.624 37.0244 247.047 37.0244C247.651 37.0244 248.47 36.9387 249.721 36.6365L250.41 41.0785Z"
|
|
56
|
+
fill={mainColor}
|
|
57
|
+
/>
|
|
58
|
+
<path
|
|
59
|
+
d="M21.4911 10.2565H31.1579V0.589175H21.4911V10.2565Z"
|
|
60
|
+
fill={mainColor}
|
|
61
|
+
/>
|
|
62
|
+
<path
|
|
63
|
+
d="M41.3861 10.8855H31.7757V20.5528H41.3861V10.8855Z"
|
|
64
|
+
fill={mainColor}
|
|
65
|
+
/>
|
|
66
|
+
<path
|
|
67
|
+
d="M42.0022 10.2547H51.6126V0.587402H42.0022V10.2547Z"
|
|
68
|
+
fill={mainColor}
|
|
69
|
+
/>
|
|
70
|
+
<path
|
|
71
|
+
d="M21.477 30.7758H31.1431V21.1654H21.477V30.7758Z"
|
|
72
|
+
fill={mainColor}
|
|
73
|
+
/>
|
|
74
|
+
<path
|
|
75
|
+
d="M11.2124 20.5493H20.8791V10.8826H11.2124V20.5493Z"
|
|
76
|
+
fill={mainColor}
|
|
77
|
+
/>
|
|
78
|
+
<path
|
|
79
|
+
d="M0.910156 30.7911H10.5775V21.1801H0.910156V30.7911Z"
|
|
80
|
+
fill={mainColor}
|
|
81
|
+
/>
|
|
82
|
+
<path
|
|
83
|
+
d="M11.1948 41.0258H20.8615V31.4154H11.1948V41.0258Z"
|
|
84
|
+
fill={mainColor}
|
|
85
|
+
/>
|
|
86
|
+
<path
|
|
87
|
+
d="M31.7669 41.0581H41.4336V31.3908H31.7669V41.0581Z"
|
|
88
|
+
fill={mainColor}
|
|
89
|
+
/>
|
|
90
|
+
<path
|
|
91
|
+
d="M21.4776 51.2277H31.1443V41.656H21.4776V51.2277Z"
|
|
92
|
+
fill={mainColor}
|
|
93
|
+
/>
|
|
94
|
+
<path
|
|
95
|
+
d="M42.0615 51.2283H51.7282V41.6989H42.0615V51.2283Z"
|
|
96
|
+
fill={mainColor}
|
|
97
|
+
/>
|
|
98
|
+
</chakra.svg>
|
|
99
|
+
);
|
|
100
|
+
};
|