@bytebrand/fe-ui-core 4.1.105 → 4.1.107
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/AccordionWidget/AccordionWidget.styl +0 -3
- package/source/components/VehicleDetailedSidebar/partials/Properties.styl +0 -4
- package/source/components/VehicleDetailedSidebar/partials/Properties.tsx +1 -1
- package/source/components/VehicleSmallCard/VehicleData/VechiclePriceItem/VechiclePriceItem.tsx +2 -2
- package/source/components/VehicleSmallCard/VehicleData/VehicleInfo/VehicleInfo.styl +17 -11
- package/source/components/VehicleSmallCard/VehicleData/VehicleProperty/VehicleProperty.styl +2 -3
- package/source/components/VehicleSmallCard/VehicleSmallCard.tsx +1 -1
- package/source/components/_common/IconSVG/SVG/common/DeliveryDashboard.tsx +6 -8
- package/source/components/_common/IconSVG/SVG/common/HandingOverDashboard.tsx +14 -15
- package/source/components/_common/IconSVG/SVG/common/OrderReceivedDashboard.tsx +12 -10
- package/source/components/_common/IconSVG/SVG/common/PickupDashboard.tsx +12 -12
- package/source/components/_common/IconSVG/SVG/common/RegistrationDashboard.tsx +11 -15
- package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelDiesel.tsx +4 -14
- package/source/components/_common/IconSVG/SVG/vehicle/NewCar.tsx +7 -9
package/package.json
CHANGED
|
@@ -86,7 +86,7 @@ const Properties: React.FunctionComponent<IPropertiesProps> = ({ t, car, decorat
|
|
|
86
86
|
children: (
|
|
87
87
|
<div className={`${styles.tabContentPadding} ${styles.tabContentOverviewPadding}`}>
|
|
88
88
|
{mainProperties.map((property: any, index: number) => (
|
|
89
|
-
<VehicleProperty {...property} className={styles.property}
|
|
89
|
+
<VehicleProperty {...property} className={styles.property} key={index} />
|
|
90
90
|
))}
|
|
91
91
|
</div>
|
|
92
92
|
)
|
package/source/components/VehicleSmallCard/VehicleData/VechiclePriceItem/VechiclePriceItem.tsx
CHANGED
|
@@ -70,7 +70,7 @@ class VehiclePriceItem extends React.Component<IVehiclePriceItemProps> {
|
|
|
70
70
|
styles.priceItem,
|
|
71
71
|
{ [styles.priceItemFavorite]: vehicleComponentName === 'favorite' },
|
|
72
72
|
{ [styles.priceItemRecently]: vehicleComponentName === 'recently' },
|
|
73
|
-
{ [styles.priceItemComparable]: vehicleComponentName === 'comparable' || vehicleComponentName === 'landing' },
|
|
73
|
+
{ [styles.priceItemComparable]: vehicleComponentName === 'comparable' || vehicleComponentName === 'landing' || vehicleComponentName === 'main' },
|
|
74
74
|
{ [styles.priceItemDisable]: isPriceDisable },
|
|
75
75
|
{ [styles.priceItemBuy]: isTotal }
|
|
76
76
|
);
|
|
@@ -78,7 +78,7 @@ class VehiclePriceItem extends React.Component<IVehiclePriceItemProps> {
|
|
|
78
78
|
const priceItemCategoryClassName = classnames(
|
|
79
79
|
styles.priceItemCategory,
|
|
80
80
|
{ [styles.priceItemCategorySearch]: vehicleComponentName === 'search' || vehicleComponentName === 'myVehicles' },
|
|
81
|
-
{ [styles.priceItemCategoryComparable]: vehicleComponentName === 'comparable' || vehicleComponentName === 'landing' }
|
|
81
|
+
{ [styles.priceItemCategoryComparable]: vehicleComponentName === 'comparable' || vehicleComponentName === 'landing' || vehicleComponentName === 'main' }
|
|
82
82
|
);
|
|
83
83
|
|
|
84
84
|
const addCustomTooltipClass = vehicleComponentName === 'favorite' || vehicleComponentName === 'recently';
|
|
@@ -48,11 +48,6 @@
|
|
|
48
48
|
grid-auto-rows: 36px;
|
|
49
49
|
grid-template-columns: 100%;
|
|
50
50
|
|
|
51
|
-
& .carIconSearch
|
|
52
|
-
width: 25px;
|
|
53
|
-
height: 25px;
|
|
54
|
-
max-width: 25px;
|
|
55
|
-
margin-right: 5px
|
|
56
51
|
span
|
|
57
52
|
font-size: 11px;
|
|
58
53
|
|
|
@@ -83,9 +78,25 @@
|
|
|
83
78
|
+media-phone-up()
|
|
84
79
|
grid-auto-rows: 38px;
|
|
85
80
|
|
|
81
|
+
& > .consumptionCombined span
|
|
82
|
+
font-size: 8px
|
|
83
|
+
|
|
86
84
|
+media-tablet-landscape-up()
|
|
87
85
|
grid-auto-rows: 36px;
|
|
88
86
|
|
|
87
|
+
span
|
|
88
|
+
font-size: 11px;
|
|
89
|
+
|
|
90
|
+
& .priceRatingSegmentWrapSRL
|
|
91
|
+
gap: 2px;
|
|
92
|
+
& > div
|
|
93
|
+
width: 13px;
|
|
94
|
+
height: 12px;
|
|
95
|
+
|
|
96
|
+
& .priceRatingSRL span
|
|
97
|
+
font-size: 8px;
|
|
98
|
+
margin-bottom: 2px;
|
|
99
|
+
|
|
89
100
|
&.vehiclePropertiesComparable
|
|
90
101
|
grid-template-columns: 100%;
|
|
91
102
|
grid-auto-rows: 40px;
|
|
@@ -99,17 +110,12 @@
|
|
|
99
110
|
+media-phone-up()
|
|
100
111
|
grid-auto-rows: 38px;
|
|
101
112
|
|
|
102
|
-
& > .consumptionCombined
|
|
113
|
+
& > .consumptionCombined span
|
|
103
114
|
font-size: 8px
|
|
104
115
|
|
|
105
116
|
+media-tablet-landscape-up()
|
|
106
117
|
grid-auto-rows: 36px;
|
|
107
118
|
|
|
108
|
-
& .carIconSearch
|
|
109
|
-
width: 25px;
|
|
110
|
-
height: 25px;
|
|
111
|
-
max-width: 25px;
|
|
112
|
-
margin-right: 5px
|
|
113
119
|
span
|
|
114
120
|
font-size: 11px;
|
|
115
121
|
|
|
@@ -10,11 +10,10 @@
|
|
|
10
10
|
border-bottom: 1px solid rgba(76, 78, 100, 0.12);
|
|
11
11
|
|
|
12
12
|
.carIcon
|
|
13
|
-
width:
|
|
13
|
+
width: 28px;
|
|
14
14
|
height: 30px;
|
|
15
|
-
max-width: 28px;
|
|
16
15
|
margin-right: 5px
|
|
17
16
|
flex-shrink: 0
|
|
18
17
|
|
|
19
|
-
+media-
|
|
18
|
+
+media-tablet-landscape-up()
|
|
20
19
|
margin-right: 10px
|
|
@@ -266,7 +266,7 @@ const VehicleSmallCard: FunctionComponent<IVehicleSmallCardProps> = (props) => {
|
|
|
266
266
|
};
|
|
267
267
|
const showComponentLikeSlider = vehicleComponentName === 'search' ||
|
|
268
268
|
vehicleComponentName === 'myVehicles' ||
|
|
269
|
-
vehicleComponentName === 'favorite'
|
|
269
|
+
vehicleComponentName === 'favorite' ||
|
|
270
270
|
vehicleComponentName === 'recently';
|
|
271
271
|
return (
|
|
272
272
|
<section className={wrapperClassName} onClick={onContainerClick} id={id}>
|
|
@@ -7,17 +7,15 @@ const DeliveryDashboard = (
|
|
|
7
7
|
const { disabled } = props;
|
|
8
8
|
return (
|
|
9
9
|
<svg
|
|
10
|
-
|
|
11
|
-
height="137"
|
|
12
|
-
viewBox="0 0 157 137"
|
|
13
|
-
fill="none"
|
|
10
|
+
id="Layer_2"
|
|
14
11
|
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
viewBox="0 0 96.49 64.23"
|
|
13
|
+
fill={disabled ? '#D8E2FF' : '#005CCB'}
|
|
15
14
|
{...props}
|
|
16
15
|
>
|
|
17
|
-
<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
<circle cx="108.903" cy="98.6141" r="10.4944" fill={disabled ? '#D8E2FF' : '#005CCB'} stroke={disabled ? '#D8E2FF' : '#005CCB'} strokeWidth="3.38802"/>
|
|
16
|
+
<g id="Layer_1-2">
|
|
17
|
+
<path d="M78.44,64.23c-6.11,0-11.17-4.55-11.98-10.44l-37.32-.58c-.83,5.94-5.95,10.53-12.11,10.53s-11.41-4.7-12.14-10.75c-2.81-.71-4.89-3.26-4.89-6.28V6.48C0,2.91,2.91,0,6.48,0H63.09c3.57,0,6.48,2.91,6.48,6.48v5.06c1.05-.57,2.23-.83,3.44-.72,15.58,1.38,23.47,9.28,23.47,23.5v14.18c0,2.86-2.33,5.18-5.19,5.18l-.82,.04c-.79,5.91-5.89,10.49-12.04,10.49Zm-8.73-12.09c0,4.81,3.92,8.73,8.73,8.73s8.78-3.92,8.78-8.73h0c0-4.81-3.94-8.73-8.78-8.73s-8.73,3.92-8.73,8.73Zm-63.23-.63h1.68c0,4.89,3.98,8.87,8.87,8.87s8.87-3.98,8.87-8.87h0c0-4.89-3.98-8.87-8.87-8.87s-8.87,3.98-8.87,8.87h-1.68Zm22.67-1.66l37.19,.58-.13-43.94c0-1.73-1.4-3.13-3.12-3.13H6.48c-1.72,0-3.12,1.4-3.12,3.12V46.7c0,1.18,.65,2.2,1.62,2.73,.99-5.76,6.02-10.16,12.06-10.16s11.31,4.61,12.12,10.58Zm49.29-9.8c6.09,0,11.15,4.49,12.01,10.33l.75-.04c1.1,0,1.92-.82,1.92-1.82v-14.18c0-12.52-6.48-18.92-20.41-20.15-.76-.07-1.47,.18-2.04,.7-.62,.56-.97,1.38-.97,2.25v26.66c2.2-2.3,5.3-3.73,8.73-3.73Zm-2.17-5.5c-.53,0-1.21-.05-1.89-.4-1.6-.81-2.59-2.42-2.59-4.21v-12.48l1.12-1.07,.81,.04c8.39,.7,16.88,6.1,16.88,15.04l.02,1.79-.42,.55c-.21,.25-.7,.7-1.58,.64l-12.28,.1h-.06Zm-1.13-14.54v9.94c0,.52,.29,.98,.75,1.21,.01,0,.1,.02,.42,.03l10.92-.08c-.24-6.06-6.07-10.03-12.08-11.1Zm13.69,11.09h.01s0,0-.01,0Z"/>
|
|
18
|
+
</g>
|
|
21
19
|
</svg>
|
|
22
20
|
)
|
|
23
21
|
}
|
|
@@ -7,24 +7,23 @@ const HandingOverDashboard = (
|
|
|
7
7
|
const { disabled } = props;
|
|
8
8
|
return (
|
|
9
9
|
<svg
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
viewBox="0 0 120 119"
|
|
13
|
-
fill="none"
|
|
10
|
+
fill={disabled ? '#D8E2FF' : '#005CCB'}
|
|
11
|
+
id="Layer_2"
|
|
14
12
|
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
viewBox="0 0 94.09 88.65"
|
|
15
14
|
{...props}
|
|
16
15
|
>
|
|
17
|
-
<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
<
|
|
26
|
-
</
|
|
27
|
-
</
|
|
16
|
+
<g id="Layer_1-2">
|
|
17
|
+
<g>
|
|
18
|
+
<path d="M85,81.97c-.45,3.9-3.81,6.68-7.64,6.68h-4.33c-4.14,0-7.53-3.18-7.85-7.24H20.23c-.33,4.06-3.72,7.24-7.85,7.24h-3.59c-3.84,0-7.19-2.78-7.65-6.68-1.32-11.15-2.22-29.87,1.6-43.9,.08-.33,.17-.66,.27-.98l.39-1.75L8.28,13.56l.02-.08,.02-.09c.72-2.08,1.64-3.85,3.81-4.89,1.94-.92,4.7-1.16,8.68-1.16h25.42c-.65,1.08-1.21,2.19-1.69,3.34H20.81c-4.05,0-6.07,.28-7.24,.84-.93,.44-1.46,1.13-2.05,2.86l-4.84,21.58c13.67,3.75,27.71,5.35,41.7,4.81l2.46,2.46,.71,.71c-2.83,.18-5.68,.27-8.52,.27-12.47,0-24.97-1.67-37.15-5.01-3.56,13.37-2.73,31.38-1.44,42.37,.26,2.14,2.1,3.74,4.34,3.74h3.59c2.52,0,4.55-2.03,4.55-4.54v-.24c0-1.36,1.1-2.46,2.46-2.46h46.62c1.37,0,2.46,1.11,2.46,2.46v.24c0,2.51,2.03,4.54,4.55,4.54h4.33c2.24,0,4.08-1.6,4.33-3.74,.97-8.22,1.67-20.38,.48-31.58,1.1-.4,2.16-.87,3.19-1.43,1.41,11.91,.65,24.87-.37,33.4Z"/>
|
|
19
|
+
<g>
|
|
20
|
+
<path d="M87.6,6.49c-4.31-4.31-9.64-6.49-15.85-6.49s-11.54,2.18-15.84,6.49c-.28,.28-.55,.56-.81,.85-.97,1.05-1.8,2.17-2.52,3.34-2.12,3.43-3.17,7.33-3.17,11.65,0,6.21,2.19,11.54,6.5,15.85,.68,.68,1.38,1.3,2.1,1.87,1.44,1.14,2.98,2.06,4.61,2.77,2.77,1.23,5.83,1.85,9.13,1.85s6.48-.66,9.32-1.98c1.06-.47,2.07-1.05,3.05-1.7,1.19-.8,2.33-1.74,3.41-2.8,4.35-4.3,6.56-9.64,6.56-15.85s-2.19-11.54-6.49-15.84Zm-7.13,18.7l-2.79,2.77-8.66,8.58c-.9,.9-1.96,1.36-3.16,1.36s-2.27-.45-3.17-1.36l-6.94-6.79c-.4-.41-.61-.88-.61-1.44s.21-1.04,.61-1.44c.4-.4,.9-.61,1.51-.61s1.11,.21,1.51,.61l7.09,7.09,10.74-10.82,2.78-2.8,6.4-6.45c.4-.4,.9-.61,1.51-.61s1.11,.21,1.51,.61,.61,.9,.61,1.51-.21,1.11-.61,1.51l-8.33,8.27Z"/>
|
|
21
|
+
<path d="M69.77,51.34c-.62,0-1.21,.09-1.77,.28,1.22,.13,2.47,.21,3.75,.21,.11,0,.22,0,.33-.01-.71-.31-1.49-.47-2.31-.47Z"/>
|
|
22
|
+
</g>
|
|
23
|
+
<path d="M21.2,57.15c0,3.21-2.61,5.82-5.82,5.82s-5.82-2.61-5.82-5.82,2.61-5.81,5.82-5.81,5.82,2.6,5.82,5.81Z"/>
|
|
24
|
+
<path d="M75.59,57.15c0,3.21-2.61,5.82-5.82,5.82s-5.81-2.61-5.81-5.82c0-2.59,1.69-4.78,4.04-5.53h.01c.55-.18,1.15-.28,1.77-.28,.82,0,1.6,.16,2.31,.47h.01c2.06,.9,3.5,2.95,3.5,5.34Z"/>
|
|
25
|
+
</g>
|
|
26
|
+
</g>
|
|
28
27
|
</svg>
|
|
29
28
|
)
|
|
30
29
|
}
|
|
@@ -4,20 +4,22 @@ import React from 'react';
|
|
|
4
4
|
const OrderReceivedDashboard = (
|
|
5
5
|
props: any
|
|
6
6
|
) => {
|
|
7
|
-
const { disabled
|
|
7
|
+
const { disabled } = props;
|
|
8
8
|
return (
|
|
9
9
|
<svg
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
viewBox="0 0 76 96"
|
|
13
|
-
fill="none"
|
|
10
|
+
fill={disabled ? '#D8E2FF' : '#005CCB'}
|
|
11
|
+
id="Layer_2"
|
|
14
12
|
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
-
|
|
13
|
+
viewBox="0 0 75.24 94.9"
|
|
14
|
+
{...props}
|
|
16
15
|
>
|
|
17
|
-
|
|
18
|
-
<
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
<g id="Layer_1-2">
|
|
17
|
+
<g>
|
|
18
|
+
<path d="M54.83,36.01H20.41c-.88,0-1.6,.72-1.6,1.6s.72,1.6,1.6,1.6H54.83c.88,0,1.6-.71,1.6-1.6s-.72-1.6-1.6-1.6Zm0,14.75H20.41c-.88,0-1.6,.72-1.6,1.6s.72,1.6,1.6,1.6H54.83c.88,0,1.6-.71,1.6-1.6s-.72-1.6-1.6-1.6Zm-2.46,22.13h-9.57l-6.77-2.26c-.9-.3-1.88,.04-2.41,.83l-3.02,4.53-3.33-8.33c-.32-.8-1.08-1.31-1.94-1.31s-1.62,.51-1.94,1.31l-4.46,11.15c-.33,.82,.07,1.75,.89,2.08,.19,.08,.39,.12,.59,.12,.64,0,1.24-.38,1.49-1.01l3.43-8.58,3.08,7.71c.29,.72,.95,1.22,1.73,1.31,.77,.08,1.52-.27,1.96-.92l3.72-5.58,6.14,2.04c.21,.07,.43,.11,.66,.11h9.75c.88,0,1.6-.72,1.6-1.6s-.72-1.6-1.6-1.6Z"/>
|
|
19
|
+
<path d="M53.7,0H5.66C2.54,0,0,2.54,0,5.66V89.24c0,3.12,2.54,5.66,5.66,5.66h63.92c3.12,0,5.66-2.54,5.66-5.66V21.54L53.7,0Zm18.34,89.24c0,1.36-1.11,2.46-2.46,2.46H5.66c-1.35,0-2.46-1.1-2.46-2.46V5.66c0-1.36,1.11-2.46,2.46-2.46H52.37v14.75c0,2.71,2.2,4.91,4.92,4.91h14.75V89.24Z"/>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|
|
21
23
|
)
|
|
22
24
|
}
|
|
23
25
|
|
|
@@ -7,21 +7,21 @@ const PickupDashboard = (
|
|
|
7
7
|
const { disabled } = props;
|
|
8
8
|
return (
|
|
9
9
|
<svg
|
|
10
|
-
|
|
11
|
-
height="118"
|
|
12
|
-
viewBox="0 0 119 118"
|
|
13
|
-
fill="none"
|
|
10
|
+
id="Layer_2"
|
|
14
11
|
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
viewBox="0 0 89.31 97.92"
|
|
13
|
+
fill={disabled ? '#D8E2FF' : '#005CCB'}
|
|
15
14
|
{...props}
|
|
16
15
|
>
|
|
17
|
-
<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
16
|
+
<g id="Layer_1-2">
|
|
17
|
+
<g>
|
|
18
|
+
<path d="M40.39,90.24c-.49,4.04-3.96,6.92-7.94,6.92h-4.9c-4.48,0-8.12-3.6-8.17-8.07H2.59c-.95,0-1.73-.77-1.73-1.73s.78-1.73,1.73-1.73H20.28c1.41,0,2.56,1.15,2.56,2.56v.79c0,2.61,2.11,4.72,4.71,4.72h4.9c2.32,0,4.24-1.66,4.5-3.88,1.5-12.32,2.49-32.96-1.66-48.08C17.88,46.25,2.01,47.42,1.85,47.44h-.13c-.9,0-1.66-.69-1.72-1.61-.07-.95,.65-1.78,1.6-1.85,.16-.01,15.77-1.17,32.88-5.6l-5.36-23.91c-.67-1.95-1.27-2.76-2.36-3.28-1.33-.64-3.62-.95-8.13-.95H2.59c-.95,0-1.73-.77-1.73-1.73s.78-1.73,1.73-1.73H18.63c4.44,0,7.49,.26,9.63,1.29,2.37,1.13,3.38,3.05,4.17,5.37l.03,.09,.02,.09,5.88,26.22c4.65,15.9,3.56,37.73,2.03,50.4Z"/>
|
|
19
|
+
<circle cx="19.88" cy="60.21" r="6.27"/>
|
|
20
|
+
<path d="M68.5,14.34c-1.65,1.65-3.63,2.47-5.94,2.47s-4.29-.82-5.94-2.47c-1.65-1.65-2.47-3.63-2.47-5.94s.82-4.29,2.47-5.94c1.65-1.65,3.63-2.47,5.94-2.47s4.29,.82,5.94,2.47c1.65,1.65,2.47,3.63,2.47,5.94s-.82,4.29-2.47,5.94Z"/>
|
|
21
|
+
<path d="M70.6,18.97c-.34-.27-.72-.43-1.12-.5,.64,.24,1.23,.58,1.76,1l-.64-.5Z"/>
|
|
22
|
+
<path d="M87.37,97.64c-.18,.04-.36,.06-.54,.06-1.13,0-2.15-.79-2.41-1.94l-8.44-38.21c-1.25,.52-2.43,.79-3.68,.85l-4.53,8.13c-.21,.37-.31,.79-.31,1.2v27.71c0,1.37-1.11,2.48-2.48,2.48s-2.47-1.11-2.47-2.48v-27.71c0-1.26,.32-2.5,.94-3.61l3.8-6.83-5.49-25.97c-7.18,11.24-14.99,13.13-17.54,13.44-.1,.01-.21,.02-.31,.02-1.23,0-2.29-.92-2.45-2.17-.17-1.36,.8-2.59,2.15-2.76,1.66-.21,10.12-1.98,17.16-17.02,.66-2.27,2.52-4.12,4.99-4.64,.46-.1,.93-.15,1.38-.15,.81,0,1.6,.15,2.33,.43h.01c.64,.24,1.23,.58,1.76,1,.03,.02,.05,.04,.07,.05l10.69,8.37c1.81,1.42,2.85,3.55,2.85,5.85v10.33c0,1.36-1.11,2.47-2.48,2.47s-2.47-1.11-2.47-2.47v-10.33c0-.77-.35-1.48-.95-1.95l-4.24-3.32,4.34,20.55c.12,.2,.2,.41,.25,.64l9.95,45.03c.3,1.33-.55,2.65-1.88,2.95Z"/>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
25
|
</svg>
|
|
26
26
|
)
|
|
27
27
|
}
|
|
@@ -7,26 +7,22 @@ const RegistrationDashboard = (
|
|
|
7
7
|
const { disabled } = props;
|
|
8
8
|
return (
|
|
9
9
|
<svg
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
viewBox="0 0 119 119"
|
|
13
|
-
fill="none"
|
|
10
|
+
fill={disabled ? '#D8E2FF' : '#005CCB'}
|
|
11
|
+
id="Layer_2"
|
|
14
12
|
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
viewBox="0 0 95.53 64.5"
|
|
15
14
|
{...props}
|
|
16
15
|
>
|
|
17
|
-
<g
|
|
18
|
-
<g
|
|
19
|
-
<path d="
|
|
20
|
-
<
|
|
21
|
-
<
|
|
22
|
-
<path d="
|
|
16
|
+
<g id="Layer_1-2">
|
|
17
|
+
<g>
|
|
18
|
+
<path d="M77.07,61.55c-.33-.33-.74-.49-1.24-.49H7.39c-1.15,0-2.09-.37-2.83-1.11s-1.11-1.68-1.11-2.83V16.49c0-.49-.17-.9-.49-1.23-.33-.33-.74-.49-1.23-.49s-.91,.16-1.24,.49c-.32,.33-.49,.74-.49,1.23V57.12c0,2.13,.7,3.9,2.09,5.29,1.4,1.4,3.16,2.09,5.3,2.09H75.83c.5,0,.91-.16,1.24-.49,.32-.33,.49-.74,.49-1.23s-.17-.9-.49-1.23Z"/>
|
|
19
|
+
<polygon points="25.5 30.45 25.67 30.45 25.67 30.75 25.5 30.45"/>
|
|
20
|
+
<polygon points="25.67 17.52 25.39 17.52 25.67 17.28 25.67 17.52"/>
|
|
21
|
+
<path d="M25.67,30.45v-12.93h4.53c.86,0,1.61,.18,2.23,.53s1.14,.82,1.54,1.43c.4,.58,.7,1.27,.88,2.06,.2,.77,.3,1.59,.3,2.45,0,1.15-.17,2.23-.52,3.22-.33,.97-.86,1.76-1.59,2.36-.74,.59-1.68,.88-2.84,.88h-4.53Z"/>
|
|
22
|
+
<path d="M93.38,2.15c-1.44-1.43-3.18-2.15-5.23-2.15H20.68c-2.05,0-3.79,.72-5.23,2.15-1.43,1.44-2.15,3.18-2.15,5.23V43.82c0,2.14,.7,3.9,2.09,5.3,1.4,1.39,3.16,2.09,5.29,2.09H88.15c2.13,0,3.89-.7,5.29-2.09,1.39-1.4,2.09-3.16,2.09-5.3V7.38c0-2.05-.72-3.79-2.15-5.23ZM37.77,28.86c-.65,1.44-1.58,2.6-2.81,3.46-1.21,.86-2.7,1.29-4.48,1.29h-6.58c-.47,0-.88-.15-1.21-.46-.31-.33-.46-.74-.46-1.21v-15.9c0-.48,.15-.87,.46-1.18,.33-.33,.74-.5,1.21-.5h6.58c1.32,0,2.49,.25,3.52,.74,1.03,.5,1.89,1.2,2.58,2.09,.72,.88,1.25,1.91,1.6,3.08,.37,1.16,.55,2.4,.55,3.72,0,1.78-.32,3.4-.96,4.87Zm54.31,14.96c0,1.15-.36,2.1-1.1,2.83-.74,.74-1.69,1.11-2.83,1.11H45.02V3.45h43.13c1.14,0,2.09,.36,2.83,1.1s1.1,1.69,1.1,2.83V43.82Z"/>
|
|
23
|
+
<path d="M62.86,30.86c-.31-.31-.71-.46-1.19-.46h-7.17v-14.36c0-.48-.18-.87-.53-1.18-.33-.33-.71-.5-1.15-.5-.52,0-.94,.17-1.27,.5-.33,.31-.49,.7-.49,1.18v15.9c0,.47,.15,.88,.47,1.21,.33,.31,.73,.46,1.21,.46h8.93c.48,0,.88-.14,1.19-.44,.33-.31,.49-.69,.49-1.15s-.16-.86-.49-1.16Zm7.27-11.33c-.27-.29-.68-.44-1.21-.44h-.36c-.53,0-.94,.15-1.23,.44-.28,.28-.42,.68-.42,1.21v.47c0,.53,.14,.94,.42,1.24,.29,.27,.7,.41,1.23,.41h.36c.53,0,.94-.14,1.21-.41,.3-.3,.44-.71,.44-1.24v-.47c0-.53-.14-.93-.44-1.21Zm0,10.76c-.27-.3-.68-.44-1.21-.44h-.36c-.53,0-.94,.14-1.23,.44-.28,.27-.42,.67-.42,1.21v.46c0,.54,.14,.95,.42,1.24,.29,.28,.7,.41,1.23,.41h.36c.53,0,.94-.13,1.21-.41,.3-.29,.44-.7,.44-1.24v-.46c0-.54-.14-.94-.44-1.21Zm15.8-5.86c-.42-.9-1.03-1.63-1.84-2.18-.74-.52-1.61-.81-2.6-.84l3.67-3.94c.18-.18,.34-.39,.47-.61,.13-.23,.19-.47,.19-.71,0-.48-.15-.87-.44-1.18-.27-.32-.7-.47-1.26-.47h-8.42c-.44,0-.81,.15-1.1,.44-.29,.27-.44,.62-.44,1.04s.15,.81,.44,1.1c.29,.3,.66,.44,1.1,.44h5.43l-4.25,4.51c-.2,.24-.36,.46-.47,.66-.09,.21-.13,.44-.13,.69,0,.41,.11,.75,.33,1.05,.24,.29,.57,.44,.99,.44,.33,0,.61-.04,.85-.11,.26-.09,.51-.18,.77-.25,.28-.07,.61-.11,1.02-.11,.53,0,1.02,.12,1.48,.36,.48,.24,.86,.58,1.13,1.04,.29,.46,.44,1.04,.44,1.74s-.16,1.36-.49,1.89c-.33,.52-.76,.92-1.27,1.21-.49,.28-1.03,.42-1.59,.42s-1.08-.1-1.52-.28c-.42-.18-.79-.39-1.1-.63-.24-.17-.46-.28-.66-.33-.18-.06-.36-.08-.52-.08-.46,0-.84,.19-1.16,.57-.29,.37-.44,.76-.44,1.19,0,.23,.07,.49,.2,.77,.14,.25,.42,.49,.82,.71,.48,.28,1.05,.5,1.71,.66,.66,.17,1.33,.25,2.01,.25,1.46,0,2.75-.27,3.85-.8,1.1-.53,1.95-1.29,2.55-2.28,.61-.99,.91-2.17,.91-3.52,0-1.03-.22-1.98-.66-2.86Z"/>
|
|
23
24
|
</g>
|
|
24
25
|
</g>
|
|
25
|
-
<defs>
|
|
26
|
-
<clipPath id="clip0_5434_20773">
|
|
27
|
-
<rect width="118.181" height="118.181" fill={disabled ? '#D8E2FF' : '#005CCB'} transform="translate(0.452019)"/>
|
|
28
|
-
</clipPath>
|
|
29
|
-
</defs>
|
|
30
26
|
</svg>
|
|
31
27
|
)
|
|
32
28
|
}
|
|
@@ -3,24 +3,14 @@ import * as React from 'react';
|
|
|
3
3
|
|
|
4
4
|
const SvgFuelDiesel = (props: any) => (
|
|
5
5
|
<svg
|
|
6
|
-
viewBox="0 0
|
|
6
|
+
viewBox="0 0 25 24"
|
|
7
7
|
width="1em"
|
|
8
8
|
height="1em"
|
|
9
|
+
fill="none"
|
|
9
10
|
{...props}
|
|
10
11
|
>
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
<path
|
|
14
|
-
d="M11 32.4c-6 0-11-5-11-11C0 15.7 10.3.8 10.7.1c.1-.2.4-.2.6 0C11.7.8 22 15.7 22 21.5c0 5.9-5 10.9-11 10.9zM11 1C9.3 3.5.7 16.4.7 21.5.7 27 5.4 31.7 11 31.7S21.3 27 21.3 21.4c0-5-8.6-17.9-10.3-20.4z"
|
|
15
|
-
fill="#231f20"
|
|
16
|
-
/>
|
|
17
|
-
<path
|
|
18
|
-
d="M7.9 27.4h-.2c-3-1.5-3.6-4.2-3.7-4.3 0-.2.1-.4.3-.4s.4.1.4.3c0 0 .6 2.5 3.3 3.9.2.1.2.3.2.5h-.3z"
|
|
19
|
-
fill="#231f20"
|
|
20
|
-
/>
|
|
21
|
-
<path d="M16.7 18.1c0 3.1-2.5 5.6-5.6 5.6H8.6c-.7 0-1.2-.6-1.2-1.2v-8.8c0-.7.5-1.2 1.2-1.2h2.5c3.1-.1 5.6 2.5 5.6 5.6zm-2.4 0c0-1.8-1.4-3.2-3.2-3.2H9.9v6.4h1.3c1.7-.1 3.1-1.5 3.1-3.2z" />
|
|
22
|
-
</g>
|
|
23
|
-
</switch>
|
|
12
|
+
<path d="M7.3698 19.3455L7.36954 19.3452C5.90239 17.9058 5.17725 16.1898 5.17725 14.1702C5.17725 12.5156 5.65474 11.1268 6.59614 9.97619C7.5742 8.78078 9.60121 6.37887 12.6804 2.76685C15.8131 6.38122 17.8501 8.78016 18.7985 9.97105C19.7124 11.1215 20.1772 12.5121 20.1772 14.1702C20.1772 16.19 19.453 17.9061 17.9881 19.3455C16.5214 20.7843 14.7606 21.5 12.6772 21.5C10.5937 21.5 8.83416 20.7842 7.3698 19.3455Z" stroke="#616376"/>
|
|
13
|
+
<path d="M10.0994 17.1824V11.2219C10.0994 10.6934 10.5278 10.265 11.0563 10.265H12.5582C14.7327 10.265 16.4954 12.0277 16.4954 14.2022C16.4954 16.3766 14.7327 18.1393 12.5582 18.1393H11.0563C10.5278 18.1393 10.0994 17.7109 10.0994 17.1824Z" stroke="#616376"/>
|
|
24
14
|
</svg>
|
|
25
15
|
);
|
|
26
16
|
|
|
@@ -3,19 +3,17 @@ import * as React from 'react';
|
|
|
3
3
|
|
|
4
4
|
const SvgNewCar = (props: any) => (
|
|
5
5
|
<svg
|
|
6
|
-
viewBox="0 0
|
|
6
|
+
viewBox="0 0 25 25"
|
|
7
7
|
width="1em"
|
|
8
8
|
height="1em"
|
|
9
|
+
fill="none"
|
|
9
10
|
{...props}
|
|
10
11
|
>
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
<path d="M28.9 19.4h-.6s-3.5-.2-7.9-.2-7.9.2-7.9.2h-.6l.3-.5c.1-.3 1.2-2.6 1.7-3.2s4.2-.8 6.4-.9c2.3.1 6.2.2 6.7.9.5.6 1.6 2.9 1.7 3.2zm-8.6-3.9c-2.5.1-5.5.3-5.9.6-.3.3-.9 1.7-1.3 2.5 1.2-.1 4-.2 7.3-.2s6.2.1 7.3.2c-.4-.9-1.1-2.2-1.4-2.5-.2-.3-3.3-.6-6-.6zM20 8.5c-.2 0-.3-.2-.3-.3V.3c0-.1.1-.3.3-.3s.3.2.3.3v7.8c.1.3-.1.4-.3.4zM14.9 9.3c-.2 0-.3-.1-.3-.3l-2.2-7.5c-.1-.2.1-.4.2-.4.2-.1.4 0 .5.2l2.2 7.5c0 .2-.1.4-.4.5zM10.1 11.4c-.1 0-.2-.1-.3-.2L5.7 4.6c-.1-.2-.1-.4.1-.5s.4-.1.5.1l4.2 6.6c.1.2.1.4-.1.5-.1.1-.2.1-.3.1zM6.2 14.7c-.1 0-.2 0-.2-.1L.1 9.4c-.1-.1-.1-.3 0-.5.1-.1.3-.2.5 0l5.8 5.2c.1.1.2.4 0 .5 0 .1-.1.1-.2.1zM25.4 9.3c-.3-.1-.4-.3-.3-.5l2.2-7.5c.1-.2.2-.3.4-.2s.3.2.2.4L25.7 9c0 .2-.2.3-.3.3zM30.1 11.4c-.1 0-.1 0-.2-.1-.2-.1-.2-.3-.1-.5L34 4.2c.1-.2.3-.2.5-.1s.2.3.1.5l-4.2 6.6c0 .1-.1.2-.3.2zM34.1 14.7c-.1 0-.2 0-.3-.1s-.1-.4 0-.5l5.8-5.2c.1-.1.4-.1.5 0s.1.4 0 .5l-5.8 5.2c0 .1-.1.1-.2.1z" />
|
|
17
|
-
</g>
|
|
18
|
-
</switch>
|
|
12
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M13.4213 4.20398C13.4213 3.92784 13.1975 3.70398 12.9213 3.70398L6.99702 3.70398C6.10373 3.70398 5.4539 3.75581 4.98684 3.97912C4.45282 4.23444 4.23036 4.67062 4.06612 5.15253L4.05742 5.17805L4.05152 5.20437L2.86344 10.5002C1.91648 13.7462 2.13921 18.1815 2.44897 20.7447C2.55737 21.6416 3.3274 22.2765 4.20407 22.2765H5.19382C6.13158 22.2765 6.90213 21.5606 6.9887 20.6454H12.9797C13.2559 20.6454 13.4797 20.4216 13.4797 20.1454C13.4797 19.8693 13.2559 19.6454 12.9797 19.6454H6.66384C6.29544 19.6454 5.99679 19.9441 5.99679 20.3125V20.4735C5.99679 20.917 5.63729 21.2765 5.19382 21.2765H4.20407C3.80623 21.2765 3.48626 20.993 3.44175 20.6247C3.13457 18.0829 2.93555 13.8081 3.82761 10.7659L3.83216 10.7504L3.83569 10.7347L5.0212 5.45031C5.15154 5.07549 5.25347 4.96006 5.41819 4.8813C5.65346 4.76882 6.08309 4.70398 6.99702 4.70398L12.9213 4.70398C13.1975 4.70398 13.4213 4.48012 13.4213 4.20398Z" fill="#616376"/>
|
|
13
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M10.6053 4.20398C10.6053 3.92784 10.8291 3.70398 11.1053 3.70398L17.0296 3.70398C17.9229 3.70398 18.5727 3.75581 19.0398 3.97912C19.5738 4.23444 19.7962 4.67062 19.9605 5.15253L19.9692 5.17805L19.9751 5.20437L21.1632 10.5002C22.1101 13.7462 21.8874 18.1815 21.5776 20.7447C21.4692 21.6416 20.6992 22.2765 19.8225 22.2765H18.8328C17.895 22.2765 17.1245 21.5606 17.0379 20.6454H11.0469C10.7708 20.6454 10.5469 20.4216 10.5469 20.1454C10.5469 19.8693 10.7708 19.6454 11.0469 19.6454H17.3628C17.7312 19.6454 18.0298 19.9441 18.0298 20.3125V20.4735C18.0298 20.917 18.3893 21.2765 18.8328 21.2765H19.8225C20.2204 21.2765 20.5403 20.993 20.5849 20.6247C20.892 18.0829 21.0911 13.8081 20.199 10.7659L20.1945 10.7504L20.1909 10.7347L19.0054 5.45031C18.8751 5.07549 18.7731 4.96006 18.6084 4.8813C18.3732 4.76882 17.9435 4.70398 17.0296 4.70398L11.1053 4.70398C10.8291 4.70398 10.6053 4.48012 10.6053 4.20398Z" fill="#616376"/>
|
|
14
|
+
<path d="M20.6416 10.4957V10.4957C15.0085 12.1794 8.99043 12.1763 3.35645 10.4957V10.4957" stroke="#616376" strokeLinecap="round"/>
|
|
15
|
+
<circle cx="17.8726" cy="14.6561" r="1.26813" fill="#616376"/>
|
|
16
|
+
<circle cx="6.11701" cy="14.6561" r="1.26813" fill="#616376"/>
|
|
19
17
|
</svg>
|
|
20
18
|
);
|
|
21
19
|
|