@bytebrand/fe-ui-core 4.1.93 → 4.1.95
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/package.json +1 -1
- package/source/components/VehicleSmallCard/VehicleData/VechiclePriceItem/VechiclePriceItem.tsx +3 -1
- package/source/components/VehicleSmallCard/VehicleData/VehiclePrice/VehiclePrice.styl +2 -2
- package/source/components/VehicleSmallCard/VehicleData/VehiclePrice/VehiclePrice.tsx +4 -0
- package/source/components/VehicleSmallCard/VehicleData/VehicleProperty/VehicleProperty.styl +0 -3
- package/source/components/VehicleSmallCard/VehicleData/VehicleTitle/VehicleTitle.styl +6 -1
- package/source/components/VehicleSmallCard/VehicleData/VehicleTitle/VehicleTitle.tsx +4 -2
- package/source/components/VehicleSmallCard/VehicleSmallCard.styl +1 -1
- package/source/components/_common/IconSVG/SVG/common/CallbackDashboard.tsx +1 -1
- package/source/components/_common/IconSVG/SVG/common/DeliveryDashboard.tsx +5 -4
- package/source/components/_common/IconSVG/SVG/common/HandingOverDashboard.tsx +6 -5
- package/source/components/_common/IconSVG/SVG/common/OrderReceivedDashboard.tsx +4 -3
- package/source/components/_common/IconSVG/SVG/common/PickupDashboard.tsx +9 -8
- package/source/components/_common/IconSVG/SVG/common/PreparationDashboard.tsx +7 -6
- package/source/components/_common/IconSVG/SVG/common/RegistrationDashboard.tsx +6 -5
package/package.json
CHANGED
package/source/components/VehicleSmallCard/VehicleData/VechiclePriceItem/VechiclePriceItem.tsx
CHANGED
|
@@ -10,6 +10,7 @@ import { IPrice } from '../../../../framework/types/types';
|
|
|
10
10
|
export interface IVehiclePriceItemProps {
|
|
11
11
|
priceTitle: string;
|
|
12
12
|
tooltipDescription?: string;
|
|
13
|
+
priceSub?: string;
|
|
13
14
|
price?: IPrice;
|
|
14
15
|
isTotal: Boolean;
|
|
15
16
|
isNewPriceCategory: Boolean;
|
|
@@ -57,6 +58,7 @@ class VehiclePriceItem extends React.Component<IVehiclePriceItemProps> {
|
|
|
57
58
|
margin,
|
|
58
59
|
isAlternativeText,
|
|
59
60
|
vehicleComponentName,
|
|
61
|
+
priceSub,
|
|
60
62
|
isTotal = false,
|
|
61
63
|
showAboIcon = false,
|
|
62
64
|
isPriceDisable = false,
|
|
@@ -125,7 +127,7 @@ class VehiclePriceItem extends React.Component<IVehiclePriceItemProps> {
|
|
|
125
127
|
className={styles.priceMtl}
|
|
126
128
|
isNew={isStrikeShown}
|
|
127
129
|
size='semimedium'
|
|
128
|
-
sub=
|
|
130
|
+
sub={priceSub}
|
|
129
131
|
/>
|
|
130
132
|
)}
|
|
131
133
|
</>
|
|
@@ -95,13 +95,13 @@
|
|
|
95
95
|
height: 30px;
|
|
96
96
|
font-size: 13px !important;
|
|
97
97
|
min-width: auto !important;
|
|
98
|
-
width:
|
|
98
|
+
width: 100%;
|
|
99
99
|
|
|
100
100
|
+media-tablet-landscape-up()
|
|
101
101
|
width: 100%;
|
|
102
102
|
|
|
103
103
|
.btnPlusIcon
|
|
104
|
-
font-size:
|
|
104
|
+
font-size: 13px;
|
|
105
105
|
margin-right: 5px;
|
|
106
106
|
|
|
107
107
|
+media-tablet-landscape-up()
|
|
@@ -125,6 +125,7 @@ class VehiclePrice extends React.Component<IVehiclePriceSectionProps> {
|
|
|
125
125
|
perMonthCurrent: monthlyInstallment,
|
|
126
126
|
title: t('vehicleProps:title.financing'),
|
|
127
127
|
postfix: '3',
|
|
128
|
+
priceSub: t('vehicleProps:value.priceSub'),
|
|
128
129
|
tooltipDescription: !combineRefAlternative && t('vehicleProps:title.financingDescription')
|
|
129
130
|
},
|
|
130
131
|
{
|
|
@@ -133,6 +134,7 @@ class VehiclePrice extends React.Component<IVehiclePriceSectionProps> {
|
|
|
133
134
|
postfix: '1,3',
|
|
134
135
|
isPriceDisable: !isLeasingActive,
|
|
135
136
|
title: t('vehicleProps:title.leasing'),
|
|
137
|
+
priceSub: t('vehicleProps:value.priceSub'),
|
|
136
138
|
tooltipDescription: !combineRefAlternative && t('vehicleProps:title.leasingDescription')
|
|
137
139
|
}
|
|
138
140
|
];
|
|
@@ -180,6 +182,7 @@ class VehiclePrice extends React.Component<IVehiclePriceSectionProps> {
|
|
|
180
182
|
const ListPrices = priceData.map((
|
|
181
183
|
{
|
|
182
184
|
title,
|
|
185
|
+
priceSub,
|
|
183
186
|
totalCurrent,
|
|
184
187
|
tooltipDescription,
|
|
185
188
|
perMonthOld,
|
|
@@ -205,6 +208,7 @@ class VehiclePrice extends React.Component<IVehiclePriceSectionProps> {
|
|
|
205
208
|
showAboIcon={showAboIcon}
|
|
206
209
|
totalOld={highestPriceExtra}
|
|
207
210
|
isTotal={isTotal}
|
|
211
|
+
priceSub={priceSub}
|
|
208
212
|
positionY={positionY}
|
|
209
213
|
url={url}
|
|
210
214
|
isStrikeShown={isStrikeShown}
|
|
@@ -27,6 +27,9 @@
|
|
|
27
27
|
display block
|
|
28
28
|
& p
|
|
29
29
|
margin: 0;
|
|
30
|
+
&.wrapTitlesFavorite
|
|
31
|
+
display: flex;
|
|
32
|
+
|
|
30
33
|
|
|
31
34
|
.manufacturerModel
|
|
32
35
|
font-size: 16px
|
|
@@ -63,12 +66,14 @@
|
|
|
63
66
|
&.optionTitleSearch
|
|
64
67
|
font-size: 12px;
|
|
65
68
|
margin-top: 2px;
|
|
69
|
+
&.optionTitleFavorite
|
|
70
|
+
font-size: 12px;
|
|
71
|
+
margin-left: 8px;
|
|
66
72
|
&.optionTitleIsAlternative
|
|
67
73
|
overflow: hidden;
|
|
68
74
|
max-width: 260px;
|
|
69
75
|
|
|
70
76
|
.sponsored
|
|
71
|
-
font-family: 'Arial Fett', 'Arial Standard', 'Arial'
|
|
72
77
|
font-weight: 700
|
|
73
78
|
font-style: normal
|
|
74
79
|
font-size: 10px
|
|
@@ -30,11 +30,13 @@ const VehicleTitle: React.FC<IVehicleTitleProps> = ({
|
|
|
30
30
|
|
|
31
31
|
const wrapTitlesClassName = classnames(
|
|
32
32
|
styles.wrapTitles,
|
|
33
|
-
{ [styles.
|
|
33
|
+
{ [styles.wrapTitlesFavorite]: vehicleComponentName === 'favorite' },
|
|
34
|
+
{ [styles.wrapTitlesSearch]: vehicleComponentName === 'search' || vehicleComponentName === 'myVehicles' }
|
|
34
35
|
);
|
|
35
36
|
const optionTitleClassName = classnames(
|
|
36
37
|
styles.optionTitle,
|
|
37
|
-
{ [styles.
|
|
38
|
+
{ [styles.optionTitleFavorite]: vehicleComponentName === 'favorite' },
|
|
39
|
+
{ [styles.optionTitleSearch]: vehicleComponentName === 'search' || vehicleComponentName === 'myVehicles' },
|
|
38
40
|
{ [styles.optionTitleIsAlternative]: combineRefAlternative }
|
|
39
41
|
);
|
|
40
42
|
|
|
@@ -14,7 +14,7 @@ const CallbackDashboard = (
|
|
|
14
14
|
{...props}
|
|
15
15
|
>
|
|
16
16
|
<rect width="40" height="40" rx="8" fill="#FDB528"/>
|
|
17
|
-
<rect width="40" height="40" rx="8" fill="white"
|
|
17
|
+
<rect width="40" height="40" rx="8" fill="white" fillOpacity="0.88"/>
|
|
18
18
|
<mask id="mask0_7926_63655" maskUnits="userSpaceOnUse" x="8" y="8" width="24" height="24">
|
|
19
19
|
<rect x="8" y="8" width="24" height="24" fill="#FCCD04"/>
|
|
20
20
|
</mask>
|
|
@@ -4,6 +4,7 @@ import React from 'react';
|
|
|
4
4
|
const DeliveryDashboard = (
|
|
5
5
|
props: any
|
|
6
6
|
) => {
|
|
7
|
+
const { disabled } = props;
|
|
7
8
|
return (
|
|
8
9
|
<svg
|
|
9
10
|
width="157"
|
|
@@ -13,10 +14,10 @@ const DeliveryDashboard = (
|
|
|
13
14
|
xmlns="http://www.w3.org/2000/svg"
|
|
14
15
|
{...props}
|
|
15
16
|
>
|
|
16
|
-
<path d="M31.7887 51.7509C31.7887 49.0779 33.9557 46.9109 36.6288 46.9109H93.6945C96.3675 46.9109 98.5345 49.0778 98.5345 51.7509V97.1307H31.7887V51.7509Z" stroke=
|
|
17
|
-
<circle cx="47.921" cy="98.6141" r="10.6363" fill=
|
|
18
|
-
<path d="M104.152 75.3877V63.5553C104.152 63.498 104.201 63.453 104.258 63.4578C111.288 64.0474 119.724 68.5886 119.724 76.9351L119.739 78.1373C119.739 78.1638 119.73 78.1877 119.715 78.2062C119.663 78.27 119.562 78.2425 119.48 78.2431L107.031 78.3394C106.62 78.3426 106.201 78.3079 105.834 78.1227C104.818 77.6097 104.152 76.5603 104.152 75.3877Z" stroke=
|
|
19
|
-
<circle cx="108.903" cy="98.6141" r="10.4944" fill=
|
|
17
|
+
<path d="M31.7887 51.7509C31.7887 49.0779 33.9557 46.9109 36.6288 46.9109H93.6945C96.3675 46.9109 98.5345 49.0778 98.5345 51.7509V97.1307H31.7887V51.7509Z" stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.38802"/>
|
|
18
|
+
<circle cx="47.921" cy="98.6141" r="10.6363" fill={disabled ? '#D8E2FF' : '#005CCB'} stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.38802"/>
|
|
19
|
+
<path d="M104.152 75.3877V63.5553C104.152 63.498 104.201 63.453 104.258 63.4578C111.288 64.0474 119.724 68.5886 119.724 76.9351L119.739 78.1373C119.739 78.1638 119.73 78.1877 119.715 78.2062C119.663 78.27 119.562 78.2425 119.48 78.2431L107.031 78.3394C106.62 78.3426 106.201 78.3079 105.834 78.1227C104.818 77.6097 104.152 76.5603 104.152 75.3877Z" stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.38802"/>
|
|
20
|
+
<circle cx="108.903" cy="98.6141" r="10.4944" fill={disabled ? '#D8E2FF' : '#005CCB'} stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.38802"/>
|
|
20
21
|
</svg>
|
|
21
22
|
)
|
|
22
23
|
}
|
|
@@ -4,6 +4,7 @@ import React from 'react';
|
|
|
4
4
|
const HandingOverDashboard = (
|
|
5
5
|
props: any
|
|
6
6
|
) => {
|
|
7
|
+
const { disabled } = props;
|
|
7
8
|
return (
|
|
8
9
|
<svg
|
|
9
10
|
width="120"
|
|
@@ -13,11 +14,11 @@ const HandingOverDashboard = (
|
|
|
13
14
|
xmlns="http://www.w3.org/2000/svg"
|
|
14
15
|
{...props}
|
|
15
16
|
>
|
|
16
|
-
<path fillRule="evenodd" clipRule="evenodd" d="M63.7911 23.5159L55.7372 23.5159C55.7368 23.5159 55.7364 23.5159 55.736 23.5159L38.4598 23.5159C34.5604 23.5159 32.6338 23.7879 31.5336 24.3139C30.6798 24.7221 30.1937 25.3445 29.6197 27.0023L24.5456 49.6197L24.5334 49.6743L24.5177 49.7279C20.7651 62.5251 21.5027 80.3493 22.768 91.3145C23.0229 93.5236 24.9355 95.1904 27.2579 95.1904H30.1394C32.5973 95.1904 34.5898 93.1979 34.5898 90.74C34.5898 89.3463 35.7197 88.2164 37.1134 88.2164H55.7765H64.0407H72.7018H81.9989C83.3926 88.2164 84.5225 89.3463 84.5225 90.74C84.5225 93.1979 86.515 95.1905 88.9729 95.1905H92.5592C94.8816 95.1905 96.7943 93.5236 97.0492 91.3145C98.3145 80.3493 99.0521 62.5251 95.2995 49.7279L95.2838 49.6743L95.2715 49.6197L90.1975 27.0023C89.6234 25.3445 89.1373 24.7221 88.2836 24.3139C87.1833 23.7879 85.2568 23.5159 81.3574 23.5159H63.7911ZM64.0407 91.6786H72.7018H81.1153C81.5795 95.6063 84.9204 98.6527 88.9729 98.6527H92.5592C96.5406 98.6527 100.021 95.7646 100.489 91.7114C101.762 80.6726 102.578 62.3005 98.6377 48.8078L93.5548 26.1514L93.5344 26.0602L93.5043 25.9719C92.8141 23.9468 91.9116 22.211 89.777 21.1904C87.8743 20.2806 85.1853 20.0537 81.3574 20.0537H63.7911H55.7372H38.4598C34.6319 20.0537 31.9429 20.2806 30.0401 21.1904C27.9055 22.211 27.0031 23.9468 26.3129 25.9719L26.2828 26.0602L26.2623 26.1514L21.1795 48.8078C17.2395 62.3005 18.0548 80.6726 19.3286 91.7114C19.7963 95.7646 23.2765 98.6527 27.2579 98.6527H30.1394C34.1918 98.6527 37.5327 95.6063 37.9969 91.6786H55.7765H64.0407Z" fill=
|
|
17
|
-
<path d="M97.4777 48.6873V48.6873C72.933 55.8919 46.7664 55.8786 22.2178 48.6873V48.6873" stroke=
|
|
18
|
-
<path d="M36.4534 67.3468L27.617 65.9761" stroke=
|
|
19
|
-
<path d="M82.9203 67.3468L91.7566 65.9761" stroke=
|
|
20
|
-
<path d="M98.9332 53.954L98.9344 53.9528C103.234 49.7006 105.412 44.4184 105.412 38.332C105.412 32.2589 103.264 26.9811 99.0084 22.7257C94.753 18.4703 89.4752 16.3222 83.4021 16.3222C77.3289 16.3222 72.0512 18.4703 67.7958 22.7257C63.5403 26.9811 61.3923 32.2589 61.3923 38.332C61.3923 44.4051 63.5403 49.6829 67.7958 53.9383C72.0512 58.1937 77.3289 60.3418 83.4021 60.3418C89.4099 60.3418 94.6537 58.1825 98.9332 53.954Z" fill=
|
|
17
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M63.7911 23.5159L55.7372 23.5159C55.7368 23.5159 55.7364 23.5159 55.736 23.5159L38.4598 23.5159C34.5604 23.5159 32.6338 23.7879 31.5336 24.3139C30.6798 24.7221 30.1937 25.3445 29.6197 27.0023L24.5456 49.6197L24.5334 49.6743L24.5177 49.7279C20.7651 62.5251 21.5027 80.3493 22.768 91.3145C23.0229 93.5236 24.9355 95.1904 27.2579 95.1904H30.1394C32.5973 95.1904 34.5898 93.1979 34.5898 90.74C34.5898 89.3463 35.7197 88.2164 37.1134 88.2164H55.7765H64.0407H72.7018H81.9989C83.3926 88.2164 84.5225 89.3463 84.5225 90.74C84.5225 93.1979 86.515 95.1905 88.9729 95.1905H92.5592C94.8816 95.1905 96.7943 93.5236 97.0492 91.3145C98.3145 80.3493 99.0521 62.5251 95.2995 49.7279L95.2838 49.6743L95.2715 49.6197L90.1975 27.0023C89.6234 25.3445 89.1373 24.7221 88.2836 24.3139C87.1833 23.7879 85.2568 23.5159 81.3574 23.5159H63.7911ZM64.0407 91.6786H72.7018H81.1153C81.5795 95.6063 84.9204 98.6527 88.9729 98.6527H92.5592C96.5406 98.6527 100.021 95.7646 100.489 91.7114C101.762 80.6726 102.578 62.3005 98.6377 48.8078L93.5548 26.1514L93.5344 26.0602L93.5043 25.9719C92.8141 23.9468 91.9116 22.211 89.777 21.1904C87.8743 20.2806 85.1853 20.0537 81.3574 20.0537H63.7911H55.7372H38.4598C34.6319 20.0537 31.9429 20.2806 30.0401 21.1904C27.9055 22.211 27.0031 23.9468 26.3129 25.9719L26.2828 26.0602L26.2623 26.1514L21.1795 48.8078C17.2395 62.3005 18.0548 80.6726 19.3286 91.7114C19.7963 95.7646 23.2765 98.6527 27.2579 98.6527H30.1394C34.1918 98.6527 37.5327 95.6063 37.9969 91.6786H55.7765H64.0407Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
18
|
+
<path d="M97.4777 48.6873V48.6873C72.933 55.8919 46.7664 55.8786 22.2178 48.6873V48.6873" stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.46221" strokeLinecap="round"/>
|
|
19
|
+
<path d="M36.4534 67.3468L27.617 65.9761" stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.46221" strokeLinecap="round"/>
|
|
20
|
+
<path d="M82.9203 67.3468L91.7566 65.9761" stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.46221" strokeLinecap="round"/>
|
|
21
|
+
<path d="M98.9332 53.954L98.9344 53.9528C103.234 49.7006 105.412 44.4184 105.412 38.332C105.412 32.2589 103.264 26.9811 99.0084 22.7257C94.753 18.4703 89.4752 16.3222 83.4021 16.3222C77.3289 16.3222 72.0512 18.4703 67.7958 22.7257C63.5403 26.9811 61.3923 32.2589 61.3923 38.332C61.3923 44.4051 63.5403 49.6829 67.7958 53.9383C72.0512 58.1937 77.3289 60.3418 83.4021 60.3418C89.4099 60.3418 94.6537 58.1825 98.9332 53.954Z" fill={disabled ? '#D8E2FF' : '#005CCB'} stroke="white" strokeWidth="7.41903"/>
|
|
21
22
|
<path d="M94.9016 31.4228L78.5798 47.8683L72.7682 42.0568C72.4385 41.727 72.0263 41.5622 71.5317 41.5622C71.0371 41.5622 70.6249 41.727 70.2952 42.0568C69.9655 42.3865 69.8006 42.7772 69.8006 43.229C69.8006 43.684 69.9655 44.0764 70.2952 44.4061L75.9831 49.9704C76.725 50.7123 77.5906 51.0832 78.5798 51.0832C79.569 51.0832 80.4345 50.7123 81.1764 49.9704L97.3746 33.8958C97.7044 33.5661 97.8692 33.1539 97.8692 32.6593C97.8692 32.1647 97.7044 31.7526 97.3746 31.4228C97.0449 31.0931 96.6327 30.9282 96.1381 30.9282C95.6435 30.9282 95.2314 31.0931 94.9016 31.4228Z" fill="white"/>
|
|
22
23
|
<defs>
|
|
23
24
|
<clipPath id="clip0_5434_20785">
|
|
@@ -4,6 +4,7 @@ import React from 'react';
|
|
|
4
4
|
const OrderReceivedDashboard = (
|
|
5
5
|
props: any
|
|
6
6
|
) => {
|
|
7
|
+
const { disabled } = props;
|
|
7
8
|
return (
|
|
8
9
|
<svg
|
|
9
10
|
width="76"
|
|
@@ -13,9 +14,9 @@ const OrderReceivedDashboard = (
|
|
|
13
14
|
xmlns="http://www.w3.org/2000/svg"
|
|
14
15
|
{ ...props }
|
|
15
16
|
>
|
|
16
|
-
<path d="M54.0576 2.61863L53.5889 2.15H52.9262H6.21786C3.9765 2.15 2.15952 3.96698 2.15952 6.20833V89.7917C2.15952 92.033 3.9765 93.85 6.21785 93.85H70.1345C72.3759 93.85 74.1928 92.033 74.1928 89.7917V23.4167V22.7539L73.7242 22.2853L54.0576 2.61863Z" stroke=
|
|
17
|
-
<path d="M20.9679 38.1667H55.3845M20.9679 52.9167H55.3845M20.9679 79.9584L25.7917 67.8989C25.8252 67.8151 25.9439 67.8151 25.9774 67.8989L30.7306 79.7819C30.7605 79.8567 30.862 79.8672 30.9066 79.8002L35.6755 72.647C35.7005 72.6094 35.7475 72.5933 35.7903 72.6076L43.0775 75.0366C43.0877 75.04 43.0983 75.0417 43.1091 75.0417H52.9262" stroke=
|
|
18
|
-
<path d="M52.9262 18.5V3.75L72.5929 23.4167H57.8429C55.1275 23.4167 52.9262 21.2154 52.9262 18.5Z" fill=
|
|
17
|
+
<path d="M54.0576 2.61863L53.5889 2.15H52.9262H6.21786C3.9765 2.15 2.15952 3.96698 2.15952 6.20833V89.7917C2.15952 92.033 3.9765 93.85 6.21785 93.85H70.1345C72.3759 93.85 74.1928 92.033 74.1928 89.7917V23.4167V22.7539L73.7242 22.2853L54.0576 2.61863Z" stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.2"/>
|
|
18
|
+
<path d="M20.9679 38.1667H55.3845M20.9679 52.9167H55.3845M20.9679 79.9584L25.7917 67.8989C25.8252 67.8151 25.9439 67.8151 25.9774 67.8989L30.7306 79.7819C30.7605 79.8567 30.862 79.8672 30.9066 79.8002L35.6755 72.647C35.7005 72.6094 35.7475 72.5933 35.7903 72.6076L43.0775 75.0366C43.0877 75.04 43.0983 75.0417 43.1091 75.0417H52.9262" stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.2" strokeLinecap="round"/>
|
|
19
|
+
<path d="M52.9262 18.5V3.75L72.5929 23.4167H57.8429C55.1275 23.4167 52.9262 21.2154 52.9262 18.5Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
19
20
|
</svg>
|
|
20
21
|
)
|
|
21
22
|
}
|
|
@@ -4,6 +4,7 @@ import React from 'react';
|
|
|
4
4
|
const PickupDashboard = (
|
|
5
5
|
props: any
|
|
6
6
|
) => {
|
|
7
|
+
const { disabled } = props;
|
|
7
8
|
return (
|
|
8
9
|
<svg
|
|
9
10
|
width="119"
|
|
@@ -13,14 +14,14 @@ const PickupDashboard = (
|
|
|
13
14
|
xmlns="http://www.w3.org/2000/svg"
|
|
14
15
|
{...props}
|
|
15
16
|
>
|
|
16
|
-
<path
|
|
17
|
-
<ellipse cx="36.0529" cy="67.9791" rx="6.23499" ry="6.23499" fill=
|
|
18
|
-
<path
|
|
19
|
-
<path d="M84.3874 22.3885C82.7485 24.0273 80.7818 24.8468 78.4874 24.8468C76.1929 24.8468 74.2263 24.0273 72.5874 22.3885C70.9485 20.7496 70.129 18.7829 70.129 16.4885C70.129 14.194 70.9485 12.2273 72.5874 10.5885C74.2263 8.94957 76.1929 8.13013 78.4874 8.13013C80.7818 8.13013 82.7485 8.94957 84.3874 10.5885C86.0263 12.2273 86.8457 14.194 86.8457 16.4885C86.8457 18.7829 86.0263 20.7496 84.3874 22.3885Z" fill=
|
|
20
|
-
<path
|
|
21
|
-
<path
|
|
22
|
-
<path
|
|
23
|
-
<path d="M76.5776 34.0232C75.8245 30.461 78.1018 26.9628 81.6639 26.2098C85.226 25.4568 88.7241 27.7339 89.4772 31.296L96.1391 62.8069C91.2063 66.3182 88.3944 66.8432 83.2395 65.5339L76.5776 34.0232Z" fill=
|
|
17
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M13.5047 16.5889C13.5047 15.2312 14.6053 14.1306 15.963 14.1306H31.908C36.3 14.1306 39.495 14.3854 41.7913 15.4834C44.4169 16.7387 45.5107 18.8832 46.3182 21.2526L46.361 21.3781L46.39 21.5075L52.2314 47.5453C56.8873 63.505 55.7922 85.3117 54.2692 97.9139C53.7362 102.324 49.9503 105.445 45.64 105.445H40.7737C36.163 105.445 32.3745 101.925 31.9489 97.4262H15.9635C14.6058 97.4262 13.5052 96.3255 13.5052 94.9678C13.5052 93.6101 14.6058 92.5095 15.9635 92.5095H33.5461C35.3574 92.5095 36.8258 93.9778 36.8258 95.7891V96.5808C36.8258 98.7612 38.5933 100.529 40.7737 100.529H45.64C47.596 100.529 49.1692 99.135 49.388 97.324C50.8984 84.8268 51.8769 63.809 47.4909 48.8517L47.4685 48.7756L47.4512 48.6981L41.6224 22.7168C40.9815 20.8739 40.4804 20.3063 39.6705 19.9191C38.5138 19.3661 36.4015 19.0473 31.908 19.0473H15.963C14.6053 19.0473 13.5047 17.9466 13.5047 16.5889Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
18
|
+
<ellipse cx="36.0529" cy="67.9791" rx="6.23499" ry="6.23499" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
19
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M52.0425 46.8835C52.3882 48.1944 51.629 49.5435 50.3467 49.897C41.4235 52.3565 32.8683 53.8845 26.5522 54.798C23.3912 55.2551 20.7837 55.5594 18.9623 55.7497C18.0514 55.8449 17.3367 55.9116 16.8471 55.9547C16.6023 55.9763 16.4138 55.9919 16.2851 56.0023L16.1374 56.014L16.0981 56.017L16.0872 56.0178C16.0869 56.0178 16.0823 56.0181 15.9098 53.5661L16.0823 56.0181C14.7576 56.1155 13.6066 55.0967 13.5113 53.7425C13.4161 52.3884 14.4125 51.2117 15.737 51.1142C15.737 51.1142 15.737 51.1142 15.737 51.1142L15.7451 51.1135L15.7762 51.1112L15.9072 51.1008C16.0246 51.0914 16.2015 51.0767 16.4344 51.0562C16.9001 51.0152 17.5894 50.9509 18.4733 50.8585C20.2415 50.6738 22.7868 50.3769 25.8786 49.9298C32.068 49.0346 40.4184 47.5413 49.0948 45.1498C50.377 44.7964 51.6968 45.5726 52.0425 46.8835Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
20
|
+
<path d="M84.3874 22.3885C82.7485 24.0273 80.7818 24.8468 78.4874 24.8468C76.1929 24.8468 74.2263 24.0273 72.5874 22.3885C70.9485 20.7496 70.129 18.7829 70.129 16.4885C70.129 14.194 70.9485 12.2273 72.5874 10.5885C74.2263 8.94957 76.1929 8.13013 78.4874 8.13013C80.7818 8.13013 82.7485 8.94957 84.3874 10.5885C86.0263 12.2273 86.8457 14.194 86.8457 16.4885C86.8457 18.7829 86.0263 20.7496 84.3874 22.3885Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
21
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M90.2626 57.0494C91.487 57.636 92.004 59.1042 91.4174 60.3286L80.3424 83.4447C80.2205 83.6992 80.1433 83.9727 80.1142 84.2534L78.1167 103.518C77.9767 104.868 76.7684 105.849 75.418 105.709C74.0675 105.569 73.0863 104.361 73.2263 103.011L75.2238 83.7463C75.3111 82.9044 75.5427 82.0837 75.9084 81.3204L86.6427 58.253C87.2294 57.0286 89.0381 56.4628 90.2626 57.0494Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
22
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M92.1918 55.6237C93.5175 55.3307 94.745 56.2625 95.0379 57.5882L105.015 102.254C105.308 103.579 104.471 104.892 103.145 105.185C101.819 105.478 100.507 104.64 100.214 103.315L90.3219 58.5546C90.0289 57.2289 90.8661 55.9166 92.1918 55.6237Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
23
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M83.0202 27.4021C83.8573 26.3332 85.4024 26.1452 86.4714 26.9823L97.8061 35.8581C99.5912 37.256 100.634 39.3973 100.634 41.6647V51.932C100.634 53.2897 99.5335 54.3904 98.1758 54.3904C96.8181 54.3904 95.7174 53.2897 95.7174 51.932V41.6647C95.7174 40.9089 95.3698 40.1951 94.7748 39.7292L83.4401 30.8533C82.3711 30.0162 82.1832 28.4711 83.0202 27.4021ZM80.4011 28.5959C81.641 29.1491 82.1976 30.6027 81.6444 31.8426C75.2286 46.2211 66.4306 51.8594 60.2527 52.6211C58.9052 52.7872 57.6782 51.8295 57.5121 50.482C57.3459 49.1345 58.3036 47.9075 59.6511 47.7413C63.555 47.26 71.1738 43.2423 77.1544 29.8391C77.7076 28.5993 79.1613 28.0426 80.4011 28.5959Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
24
|
+
<path d="M76.5776 34.0232C75.8245 30.461 78.1018 26.9628 81.6639 26.2098C85.226 25.4568 88.7241 27.7339 89.4772 31.296L96.1391 62.8069C91.2063 66.3182 88.3944 66.8432 83.2395 65.5339L76.5776 34.0232Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
24
25
|
</svg>
|
|
25
26
|
)
|
|
26
27
|
}
|
|
@@ -4,6 +4,7 @@ import React from 'react';
|
|
|
4
4
|
const PreparationDashboard = (
|
|
5
5
|
props: any
|
|
6
6
|
) => {
|
|
7
|
+
const { disabled } = props;
|
|
7
8
|
return (
|
|
8
9
|
<svg
|
|
9
10
|
width="119"
|
|
@@ -13,15 +14,15 @@ const PreparationDashboard = (
|
|
|
13
14
|
xmlns="http://www.w3.org/2000/svg"
|
|
14
15
|
{...props}
|
|
15
16
|
>
|
|
16
|
-
<path
|
|
17
|
-
<circle cx="27.7271" cy="68.9288" r="5.67465" fill=
|
|
18
|
-
<path d="M79.671 18.066H69.6615C68.223 18.066 66.9482 18.5872 65.9314 19.604C64.9138 20.6216 64.391 21.8969 64.391 23.3365V65.2585C64.391 66.6976 64.9135 67.9723 65.9314 68.9886C66.9477 70.0065 68.2224 70.529 69.6615 70.529H100.004C101.444 70.529 102.719 70.0062 103.737 68.9886C104.754 67.9718 105.275 66.697 105.275 65.2585V23.3365C105.275 21.898 104.754 20.6231 103.738 19.6052L103.736 19.6027C102.718 18.5871 101.443 18.066 100.004 18.066H90.0372C90.0055 17.1589 89.7152 16.2739 89.1622 15.4437L89.1615 15.4427C88.1559 13.9354 86.6442 13.172 84.833 13.172C83.0417 13.172 81.56 13.9523 80.5656 15.4427L80.565 15.4437C80.0132 16.272 79.7152 17.1563 79.671 18.066ZM84.653 18.5055L84.6476 18.5001C84.6231 18.4757 84.618 18.4631 84.6153 18.4564C84.6117 18.4472 84.5977 18.4084 84.5977 18.3201C84.5977 18.2319 84.6116 18.1926 84.6157 18.1824C84.6188 18.1745 84.6246 18.1607 84.6503 18.135C84.6744 18.1109 84.6871 18.1057 84.6944 18.1028C84.7042 18.0989 84.7438 18.0849 84.833 18.0849C84.9221 18.0849 84.9623 18.0989 84.9732 18.1032C84.9813 18.1064 84.9945 18.112 85.0181 18.135C85.0411 18.1587 85.0468 18.1719 85.05 18.18C85.0542 18.1908 85.0682 18.231 85.0682 18.3201C85.0682 18.4093 85.0542 18.4489 85.0503 18.4588C85.0474 18.4661 85.0422 18.4787 85.0181 18.5028C84.9924 18.5285 84.9786 18.5343 84.9708 18.5374C84.9606 18.5415 84.9212 18.5554 84.833 18.5554C84.7447 18.5554 84.706 18.5415 84.6968 18.5378C84.6901 18.5352 84.6774 18.5301 84.653 18.5055L84.653 18.5055Z" stroke=
|
|
19
|
-
<path d="M72.7548 44.1166L79.3424 52.9L96.9091 35.3333" stroke=
|
|
17
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M58.1748 23.7579H49.2801L31.6646 23.7579C27.5881 23.7579 25.5252 24.0397 24.3247 24.6137C23.353 25.0782 22.8183 25.7973 22.2091 27.5603L16.8963 51.2419L16.885 51.2923L16.8705 51.3418C12.8986 64.8868 13.7206 83.77 15.0641 95.2222C15.33 97.4891 17.2918 99.1914 19.6628 99.1914H23.0103C25.6528 99.1914 27.8261 96.9992 27.8261 94.3222C27.8261 93.0016 28.8935 91.8928 30.2487 91.8928H49.0189H58.436H77.2062C78.5614 91.8928 79.6288 93.0016 79.6288 94.3222C79.6288 96.9992 81.8021 99.1914 84.4445 99.1914H87.7921C90.1626 99.1914 92.1274 97.4875 92.3961 95.2191C93.1381 88.9542 93.7279 80.4269 93.4108 71.6202C93.379 70.7371 94.0691 69.9954 94.9522 69.9636C95.8353 69.9318 96.5769 70.6219 96.6087 71.505C96.933 80.5119 96.3305 89.2078 95.5738 95.5955C95.1043 99.5593 91.6973 102.391 87.7921 102.391H84.4445C80.262 102.391 76.8524 99.1502 76.4654 95.0928H58.441C58.4393 95.0928 58.4376 95.0928 58.436 95.0928L49.0189 95.0928L30.9895 95.0928C30.6025 99.1502 27.1928 102.391 23.0103 102.391H19.6628C15.758 102.391 12.3512 99.5611 11.8859 95.595C10.5344 84.0749 9.63916 64.6827 13.7851 50.4914L19.106 26.7739L19.1249 26.6897L19.1527 26.608C19.8687 24.5072 20.7878 22.7578 22.9444 21.7267C24.8866 20.7981 27.6541 20.5579 31.6646 20.5579L49.2795 20.5579C49.2797 20.5579 49.2799 20.5579 49.2801 20.5579H58.1748C58.175 20.5579 58.1753 20.5579 58.1755 20.5579L62.5352 20.5579C63.4189 20.5579 64.1352 21.2742 64.1352 22.1579C64.1352 23.0415 63.4189 23.7579 62.5352 23.7579L58.1748 23.7579Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
18
|
+
<circle cx="27.7271" cy="68.9288" r="5.67465" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
19
|
+
<path d="M79.671 18.066H69.6615C68.223 18.066 66.9482 18.5872 65.9314 19.604C64.9138 20.6216 64.391 21.8969 64.391 23.3365V65.2585C64.391 66.6976 64.9135 67.9723 65.9314 68.9886C66.9477 70.0065 68.2224 70.529 69.6615 70.529H100.004C101.444 70.529 102.719 70.0062 103.737 68.9886C104.754 67.9718 105.275 66.697 105.275 65.2585V23.3365C105.275 21.898 104.754 20.6231 103.738 19.6052L103.736 19.6027C102.718 18.5871 101.443 18.066 100.004 18.066H90.0372C90.0055 17.1589 89.7152 16.2739 89.1622 15.4437L89.1615 15.4427C88.1559 13.9354 86.6442 13.172 84.833 13.172C83.0417 13.172 81.56 13.9523 80.5656 15.4427L80.565 15.4437C80.0132 16.272 79.7152 17.1563 79.671 18.066ZM84.653 18.5055L84.6476 18.5001C84.6231 18.4757 84.618 18.4631 84.6153 18.4564C84.6117 18.4472 84.5977 18.4084 84.5977 18.3201C84.5977 18.2319 84.6116 18.1926 84.6157 18.1824C84.6188 18.1745 84.6246 18.1607 84.6503 18.135C84.6744 18.1109 84.6871 18.1057 84.6944 18.1028C84.7042 18.0989 84.7438 18.0849 84.833 18.0849C84.9221 18.0849 84.9623 18.0989 84.9732 18.1032C84.9813 18.1064 84.9945 18.112 85.0181 18.135C85.0411 18.1587 85.0468 18.1719 85.05 18.18C85.0542 18.1908 85.0682 18.231 85.0682 18.3201C85.0682 18.4093 85.0542 18.4489 85.0503 18.4588C85.0474 18.4661 85.0422 18.4787 85.0181 18.5028C84.9924 18.5285 84.9786 18.5343 84.9708 18.5374C84.9606 18.5415 84.9212 18.5554 84.833 18.5554C84.7447 18.5554 84.706 18.5415 84.6968 18.5378C84.6901 18.5352 84.6774 18.5301 84.653 18.5055L84.653 18.5055Z" stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.2"/>
|
|
20
|
+
<path d="M72.7548 44.1166L79.3424 52.9L96.9091 35.3333" stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.2" strokeLinecap="round" strokeLinejoin="round"/>
|
|
20
21
|
<mask id="mask0_6163_53581" maskUnits="userSpaceOnUse" x="14" y="48" width="80" height="10">
|
|
21
|
-
<path d="M92.7218 50.312L68.6152 57.5174C59.1364 60.3507 49.0364 60.3534 39.5559 57.5254L15.3741 50.312" stroke=
|
|
22
|
+
<path d="M92.7218 50.312L68.6152 57.5174C59.1364 60.3507 49.0364 60.3534 39.5559 57.5254L15.3741 50.312" stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.2" strokeLinecap="round"/>
|
|
22
23
|
</mask>
|
|
23
24
|
<g mask="url(#mask0_6163_53581)">
|
|
24
|
-
<rect width="49.8774" height="23.297" transform="matrix(-1 0 0 1 63.7976 41.2515)" fill=
|
|
25
|
+
<rect width="49.8774" height="23.297" transform="matrix(-1 0 0 1 63.7976 41.2515)" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
25
26
|
</g>
|
|
26
27
|
</svg>
|
|
27
28
|
)
|
|
@@ -4,6 +4,7 @@ import React from 'react';
|
|
|
4
4
|
const RegistrationDashboard = (
|
|
5
5
|
props: any
|
|
6
6
|
) => {
|
|
7
|
+
const { disabled } = props;
|
|
7
8
|
return (
|
|
8
9
|
<svg
|
|
9
10
|
width="119"
|
|
@@ -15,15 +16,15 @@ const RegistrationDashboard = (
|
|
|
15
16
|
>
|
|
16
17
|
<g clipPath="url(#clip0_5434_20773)">
|
|
17
18
|
<g mask="url(#mask0_5434_20773)">
|
|
18
|
-
<path d="M19.1639 96.7606C17.0301 96.7606 15.2656 96.063 13.8704 94.6678C12.4752 93.2727 11.7776 91.5081 11.7776 89.3743V48.7497C11.7776 48.2573 11.9417 47.8469 12.27 47.5187C12.5983 47.1904 13.0087 47.0262 13.5011 47.0262C13.9935 47.0262 14.4038 47.1904 14.7321 47.5187C15.0604 47.8469 15.2245 48.2573 15.2245 48.7497V89.3743C15.2245 90.5233 15.5939 91.4671 16.3325 92.2057C17.0711 92.9444 18.0149 93.3137 19.1639 93.3137H87.6102C88.1026 93.3137 88.513 93.4778 88.8412 93.8061C89.1695 94.1344 89.3336 94.5447 89.3336 95.0372C89.3336 95.5296 89.1695 95.9399 88.8412 96.2682C88.513 96.5965 88.1026 96.7606 87.6102 96.7606H19.1639ZM32.4592 83.4653C30.3254 83.4653 28.5609 82.7677 27.1657 81.3725C25.7705 79.9773 25.0729 78.2128 25.0729 76.079V39.6399C25.0729 37.5882 25.7919 35.845 27.2297 34.4105C28.6643 32.9726 30.4075 32.2537 32.4592 32.2537H51.6636H80.7163H99.9207C101.972 32.2537 103.717 32.9726 105.155 34.4105C106.59 35.845 107.307 37.5882 107.307 39.6399V76.079C107.307 78.2128 106.609 79.9773 105.214 81.3725C103.819 82.7677 102.054 83.4653 99.9207 83.4653H32.4592ZM32.4592 80.0184H99.9207C101.07 80.0184 102.013 79.649 102.752 78.9104C103.491 78.1718 103.86 77.228 103.86 76.079V39.6399C103.86 38.491 103.491 37.5472 102.752 36.8085C102.013 36.0699 101.07 35.7006 99.9207 35.7006H32.4592C31.3102 35.7006 30.3664 36.0699 29.6278 36.8085C28.8892 37.5472 28.5199 38.491 28.5199 39.6399V76.079C28.5199 77.228 28.8892 78.1718 29.6278 78.9104C30.3664 79.649 31.3102 80.0184 32.4592 80.0184Z" fill=
|
|
19
|
-
<path d="M27.2847 35.1138C27.2847 34.757 27.4489 34.4596 27.7772 34.2216C28.1054 33.9837 28.5158 33.8647 29.0082 33.8647C29.5006 33.8647 55.9722 33.9836 56.3005 34.2215C56.6288 34.4595 56.7929 34.7569 56.7929 35.1138L56.7929 80.4385C56.7929 80.7954 56.6288 81.0928 56.3005 81.3307C55.9722 81.5686 29.5006 81.6876 29.0082 81.6876C28.5158 81.6876 28.1054 81.5687 27.7772 81.3307C27.4489 81.0928 27.2847 80.7954 27.2847 80.4385L27.2847 35.1138Z" fill=
|
|
20
|
-
<path d="M42.2537 46.6169C43.5739 46.6169 44.7473 46.8644 45.7741 47.3595C46.8009 47.8545 47.6627 48.5513 48.3595 49.4498C49.0746 50.3299 49.6063 51.3567 49.9547 52.5302C50.3214 53.6853 50.5048 54.923 50.5048 56.2431C50.5048 58.0217 50.1839 59.6444 49.5421 61.1113C48.9004 62.5598 47.9653 63.7149 46.7368 64.5767C45.5266 65.4385 44.0323 65.8694 42.2537 65.8694H35.6803C35.2036 65.8694 34.8002 65.7135 34.4702 65.4018C34.1585 65.0718 34.0026 64.6684 34.0026 64.1917V48.2946C34.0026 47.8179 34.1585 47.4237 34.4702 47.1119C34.8002 46.7819 35.2036 46.6169 35.6803 46.6169H42.2537ZM41.9787 62.7065C43.1338 62.7065 44.0781 62.4131 44.8115 61.8264C45.5449 61.2213 46.0767 60.4328 46.4067 59.4611C46.7551 58.4709 46.9293 57.3983 46.9293 56.2431C46.9293 55.3814 46.8284 54.5654 46.6268 53.7953C46.4434 53.0069 46.15 52.3193 45.7466 51.7326C45.3433 51.1275 44.8299 50.6507 44.2064 50.3024C43.583 49.954 42.8404 49.7798 41.9787 49.7798H37.1655L37.4406 49.5323V63.009L37.2755 62.7065H41.9787Z" fill=
|
|
21
|
-
<path d="M73.4495 62.6515C73.9263 62.6515 74.3205 62.8073 74.6322 63.119C74.9622 63.4124 75.1272 63.7974 75.1272 64.2742C75.1272 64.7326 74.9622 65.1176 74.6322 65.4293C74.3205 65.7227 73.9263 65.8694 73.4495 65.8694H64.5109C64.0341 65.8694 63.6308 65.7135 63.3007 65.4018C62.989 65.0718 62.8332 64.6684 62.8332 64.1917V48.2946C62.8332 47.8179 62.9982 47.4237 63.3282 47.1119C63.6583 46.7819 64.08 46.6169 64.5934 46.6169C65.0334 46.6169 65.4185 46.7819 65.7485 47.1119C66.0969 47.4237 66.2711 47.8179 66.2711 48.2946V63.119L65.666 62.6515H73.4495ZM80.3398 55.1155C79.8081 55.1155 79.3955 54.978 79.1022 54.7029C78.8271 54.4096 78.6896 53.997 78.6896 53.4653V52.9977C78.6896 52.466 78.8271 52.0626 79.1022 51.7876C79.3955 51.4942 79.8081 51.3475 80.3398 51.3475H80.6974C81.2291 51.3475 81.6325 51.4942 81.9075 51.7876C82.2009 52.0626 82.3476 52.466 82.3476 52.9977V53.4653C82.3476 53.997 82.2009 54.4096 81.9075 54.7029C81.6325 54.978 81.2291 55.1155 80.6974 55.1155H80.3398ZM80.3398 65.8694C79.8081 65.8694 79.3955 65.7319 79.1022 65.4568C78.8271 65.1635 78.6896 64.7509 78.6896 64.2192V63.7516C78.6896 63.2199 78.8271 62.8165 79.1022 62.5415C79.3955 62.2481 79.8081 62.1014 80.3398 62.1014H80.6974C81.2291 62.1014 81.6325 62.2481 81.9075 62.5415C82.2009 62.8165 82.3476 63.2199 82.3476 63.7516V64.2192C82.3476 64.7509 82.2009 65.1635 81.9075 65.4568C81.6325 65.7319 81.2291 65.8694 80.6974 65.8694H80.3398ZM87.9153 61.9914C88.0804 61.9914 88.2545 62.0189 88.4379 62.0739C88.6396 62.1289 88.8596 62.2389 89.098 62.4039C89.4097 62.6423 89.7764 62.8532 90.1981 63.0365C90.6382 63.2199 91.1424 63.3116 91.7108 63.3116C92.2792 63.3116 92.811 63.174 93.306 62.899C93.8194 62.6056 94.2412 62.2022 94.5712 61.6888C94.9012 61.1571 95.0663 60.5245 95.0663 59.7911C95.0663 59.0943 94.9196 58.5168 94.6262 58.0584C94.3512 57.6 93.9753 57.2516 93.4986 57.0132C93.0402 56.7749 92.5451 56.6557 92.0134 56.6557C91.61 56.6557 91.2708 56.6924 90.9957 56.7657C90.739 56.839 90.4823 56.9216 90.2256 57.0132C89.9873 57.0866 89.7031 57.1232 89.373 57.1232C88.9513 57.1232 88.6213 56.9766 88.3829 56.6832C88.1629 56.3898 88.0529 56.0414 88.0529 55.6381C88.0529 55.3814 88.0987 55.1522 88.1904 54.9505C88.3004 54.7488 88.4562 54.5287 88.6579 54.2904L93.4986 49.1472L94.2412 49.7798H87.4753C87.0352 49.7798 86.6685 49.6331 86.3751 49.3397C86.0818 49.0464 85.9351 48.6797 85.9351 48.2396C85.9351 47.8179 86.0818 47.4695 86.3751 47.1945C86.6685 46.9011 87.0352 46.7544 87.4753 46.7544H95.8914C96.4598 46.7544 96.8815 46.9103 97.1565 47.222C97.4499 47.5337 97.5966 47.9279 97.5966 48.4046C97.5966 48.643 97.5324 48.8813 97.4041 49.1197C97.2757 49.3397 97.1199 49.5414 96.9365 49.7248L92.0684 54.9505L91.3258 54.0153C91.5275 53.9237 91.8025 53.8412 92.1509 53.7678C92.5176 53.6945 92.8201 53.6578 93.0585 53.6578C94.1403 53.6578 95.0754 53.942 95.8639 54.5104C96.6706 55.0605 97.2849 55.7847 97.7066 56.6832C98.1467 57.5633 98.3667 58.5168 98.3667 59.5436C98.3667 60.9004 98.0642 62.0739 97.4591 63.064C96.854 64.0541 96.0014 64.8151 94.9012 65.3468C93.8011 65.8786 92.5176 66.1444 91.0507 66.1444C90.3723 66.1444 89.7031 66.0619 89.043 65.8969C88.3829 65.7319 87.8145 65.5118 87.3378 65.2368C86.9344 65.0168 86.6593 64.7784 86.5127 64.5217C86.3843 64.2467 86.3201 63.99 86.3201 63.7516C86.3201 63.3299 86.4668 62.9357 86.7602 62.569C87.0719 62.1839 87.4569 61.9914 87.9153 61.9914Z" fill=
|
|
19
|
+
<path d="M19.1639 96.7606C17.0301 96.7606 15.2656 96.063 13.8704 94.6678C12.4752 93.2727 11.7776 91.5081 11.7776 89.3743V48.7497C11.7776 48.2573 11.9417 47.8469 12.27 47.5187C12.5983 47.1904 13.0087 47.0262 13.5011 47.0262C13.9935 47.0262 14.4038 47.1904 14.7321 47.5187C15.0604 47.8469 15.2245 48.2573 15.2245 48.7497V89.3743C15.2245 90.5233 15.5939 91.4671 16.3325 92.2057C17.0711 92.9444 18.0149 93.3137 19.1639 93.3137H87.6102C88.1026 93.3137 88.513 93.4778 88.8412 93.8061C89.1695 94.1344 89.3336 94.5447 89.3336 95.0372C89.3336 95.5296 89.1695 95.9399 88.8412 96.2682C88.513 96.5965 88.1026 96.7606 87.6102 96.7606H19.1639ZM32.4592 83.4653C30.3254 83.4653 28.5609 82.7677 27.1657 81.3725C25.7705 79.9773 25.0729 78.2128 25.0729 76.079V39.6399C25.0729 37.5882 25.7919 35.845 27.2297 34.4105C28.6643 32.9726 30.4075 32.2537 32.4592 32.2537H51.6636H80.7163H99.9207C101.972 32.2537 103.717 32.9726 105.155 34.4105C106.59 35.845 107.307 37.5882 107.307 39.6399V76.079C107.307 78.2128 106.609 79.9773 105.214 81.3725C103.819 82.7677 102.054 83.4653 99.9207 83.4653H32.4592ZM32.4592 80.0184H99.9207C101.07 80.0184 102.013 79.649 102.752 78.9104C103.491 78.1718 103.86 77.228 103.86 76.079V39.6399C103.86 38.491 103.491 37.5472 102.752 36.8085C102.013 36.0699 101.07 35.7006 99.9207 35.7006H32.4592C31.3102 35.7006 30.3664 36.0699 29.6278 36.8085C28.8892 37.5472 28.5199 38.491 28.5199 39.6399V76.079C28.5199 77.228 28.8892 78.1718 29.6278 78.9104C30.3664 79.649 31.3102 80.0184 32.4592 80.0184Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
20
|
+
<path d="M27.2847 35.1138C27.2847 34.757 27.4489 34.4596 27.7772 34.2216C28.1054 33.9837 28.5158 33.8647 29.0082 33.8647C29.5006 33.8647 55.9722 33.9836 56.3005 34.2215C56.6288 34.4595 56.7929 34.7569 56.7929 35.1138L56.7929 80.4385C56.7929 80.7954 56.6288 81.0928 56.3005 81.3307C55.9722 81.5686 29.5006 81.6876 29.0082 81.6876C28.5158 81.6876 28.1054 81.5687 27.7772 81.3307C27.4489 81.0928 27.2847 80.7954 27.2847 80.4385L27.2847 35.1138Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
21
|
+
<path d="M42.2537 46.6169C43.5739 46.6169 44.7473 46.8644 45.7741 47.3595C46.8009 47.8545 47.6627 48.5513 48.3595 49.4498C49.0746 50.3299 49.6063 51.3567 49.9547 52.5302C50.3214 53.6853 50.5048 54.923 50.5048 56.2431C50.5048 58.0217 50.1839 59.6444 49.5421 61.1113C48.9004 62.5598 47.9653 63.7149 46.7368 64.5767C45.5266 65.4385 44.0323 65.8694 42.2537 65.8694H35.6803C35.2036 65.8694 34.8002 65.7135 34.4702 65.4018C34.1585 65.0718 34.0026 64.6684 34.0026 64.1917V48.2946C34.0026 47.8179 34.1585 47.4237 34.4702 47.1119C34.8002 46.7819 35.2036 46.6169 35.6803 46.6169H42.2537ZM41.9787 62.7065C43.1338 62.7065 44.0781 62.4131 44.8115 61.8264C45.5449 61.2213 46.0767 60.4328 46.4067 59.4611C46.7551 58.4709 46.9293 57.3983 46.9293 56.2431C46.9293 55.3814 46.8284 54.5654 46.6268 53.7953C46.4434 53.0069 46.15 52.3193 45.7466 51.7326C45.3433 51.1275 44.8299 50.6507 44.2064 50.3024C43.583 49.954 42.8404 49.7798 41.9787 49.7798H37.1655L37.4406 49.5323V63.009L37.2755 62.7065H41.9787Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
22
|
+
<path d="M73.4495 62.6515C73.9263 62.6515 74.3205 62.8073 74.6322 63.119C74.9622 63.4124 75.1272 63.7974 75.1272 64.2742C75.1272 64.7326 74.9622 65.1176 74.6322 65.4293C74.3205 65.7227 73.9263 65.8694 73.4495 65.8694H64.5109C64.0341 65.8694 63.6308 65.7135 63.3007 65.4018C62.989 65.0718 62.8332 64.6684 62.8332 64.1917V48.2946C62.8332 47.8179 62.9982 47.4237 63.3282 47.1119C63.6583 46.7819 64.08 46.6169 64.5934 46.6169C65.0334 46.6169 65.4185 46.7819 65.7485 47.1119C66.0969 47.4237 66.2711 47.8179 66.2711 48.2946V63.119L65.666 62.6515H73.4495ZM80.3398 55.1155C79.8081 55.1155 79.3955 54.978 79.1022 54.7029C78.8271 54.4096 78.6896 53.997 78.6896 53.4653V52.9977C78.6896 52.466 78.8271 52.0626 79.1022 51.7876C79.3955 51.4942 79.8081 51.3475 80.3398 51.3475H80.6974C81.2291 51.3475 81.6325 51.4942 81.9075 51.7876C82.2009 52.0626 82.3476 52.466 82.3476 52.9977V53.4653C82.3476 53.997 82.2009 54.4096 81.9075 54.7029C81.6325 54.978 81.2291 55.1155 80.6974 55.1155H80.3398ZM80.3398 65.8694C79.8081 65.8694 79.3955 65.7319 79.1022 65.4568C78.8271 65.1635 78.6896 64.7509 78.6896 64.2192V63.7516C78.6896 63.2199 78.8271 62.8165 79.1022 62.5415C79.3955 62.2481 79.8081 62.1014 80.3398 62.1014H80.6974C81.2291 62.1014 81.6325 62.2481 81.9075 62.5415C82.2009 62.8165 82.3476 63.2199 82.3476 63.7516V64.2192C82.3476 64.7509 82.2009 65.1635 81.9075 65.4568C81.6325 65.7319 81.2291 65.8694 80.6974 65.8694H80.3398ZM87.9153 61.9914C88.0804 61.9914 88.2545 62.0189 88.4379 62.0739C88.6396 62.1289 88.8596 62.2389 89.098 62.4039C89.4097 62.6423 89.7764 62.8532 90.1981 63.0365C90.6382 63.2199 91.1424 63.3116 91.7108 63.3116C92.2792 63.3116 92.811 63.174 93.306 62.899C93.8194 62.6056 94.2412 62.2022 94.5712 61.6888C94.9012 61.1571 95.0663 60.5245 95.0663 59.7911C95.0663 59.0943 94.9196 58.5168 94.6262 58.0584C94.3512 57.6 93.9753 57.2516 93.4986 57.0132C93.0402 56.7749 92.5451 56.6557 92.0134 56.6557C91.61 56.6557 91.2708 56.6924 90.9957 56.7657C90.739 56.839 90.4823 56.9216 90.2256 57.0132C89.9873 57.0866 89.7031 57.1232 89.373 57.1232C88.9513 57.1232 88.6213 56.9766 88.3829 56.6832C88.1629 56.3898 88.0529 56.0414 88.0529 55.6381C88.0529 55.3814 88.0987 55.1522 88.1904 54.9505C88.3004 54.7488 88.4562 54.5287 88.6579 54.2904L93.4986 49.1472L94.2412 49.7798H87.4753C87.0352 49.7798 86.6685 49.6331 86.3751 49.3397C86.0818 49.0464 85.9351 48.6797 85.9351 48.2396C85.9351 47.8179 86.0818 47.4695 86.3751 47.1945C86.6685 46.9011 87.0352 46.7544 87.4753 46.7544H95.8914C96.4598 46.7544 96.8815 46.9103 97.1565 47.222C97.4499 47.5337 97.5966 47.9279 97.5966 48.4046C97.5966 48.643 97.5324 48.8813 97.4041 49.1197C97.2757 49.3397 97.1199 49.5414 96.9365 49.7248L92.0684 54.9505L91.3258 54.0153C91.5275 53.9237 91.8025 53.8412 92.1509 53.7678C92.5176 53.6945 92.8201 53.6578 93.0585 53.6578C94.1403 53.6578 95.0754 53.942 95.8639 54.5104C96.6706 55.0605 97.2849 55.7847 97.7066 56.6832C98.1467 57.5633 98.3667 58.5168 98.3667 59.5436C98.3667 60.9004 98.0642 62.0739 97.4591 63.064C96.854 64.0541 96.0014 64.8151 94.9012 65.3468C93.8011 65.8786 92.5176 66.1444 91.0507 66.1444C90.3723 66.1444 89.7031 66.0619 89.043 65.8969C88.3829 65.7319 87.8145 65.5118 87.3378 65.2368C86.9344 65.0168 86.6593 64.7784 86.5127 64.5217C86.3843 64.2467 86.3201 63.99 86.3201 63.7516C86.3201 63.3299 86.4668 62.9357 86.7602 62.569C87.0719 62.1839 87.4569 61.9914 87.9153 61.9914Z" fill={disabled ? '#D8E2FF' : '#005CCB'}/>
|
|
22
23
|
</g>
|
|
23
24
|
</g>
|
|
24
25
|
<defs>
|
|
25
26
|
<clipPath id="clip0_5434_20773">
|
|
26
|
-
<rect width="118.181" height="118.181" fill=
|
|
27
|
+
<rect width="118.181" height="118.181" fill={disabled ? '#D8E2FF' : '#005CCB'} transform="translate(0.452019)"/>
|
|
27
28
|
</clipPath>
|
|
28
29
|
</defs>
|
|
29
30
|
</svg>
|