@thecb/components 10.6.4-beta.2 → 10.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1467 -939
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1467 -939
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/icons.stories.js +2 -0
- package/src/components/atoms/layouts/Box.js +2 -0
- package/src/components/atoms/layouts/Box.styled.js +3 -1
- package/src/components/atoms/placeholder/Placeholder.js +92 -126
- package/src/components/atoms/placeholder/Placeholder.stories.js +1 -0
- package/src/components/molecules/editable-list/EditableList.stories.js +7 -2
- package/src/components/molecules/obligation/icons/AccountBillIcon.js +79 -14
- package/src/components/molecules/obligation/icons/AccountConstructionIcon.js +89 -14
- package/src/components/molecules/obligation/icons/AccountDentalIcon.js +85 -13
- package/src/components/molecules/obligation/icons/AccountElectricIcon.js +90 -13
- package/src/components/molecules/obligation/icons/AccountGarbageIcon.js +84 -14
- package/src/components/molecules/obligation/icons/AccountGasIcon.js +85 -13
- package/src/components/molecules/obligation/icons/AccountGenericIcon.js +79 -14
- package/src/components/molecules/obligation/icons/AccountMedicalIcon.js +84 -14
- package/src/components/molecules/obligation/icons/AccountWaterIcon.js +84 -14
- package/src/components/molecules/obligation/icons/PropertyApartmentIcon.js +90 -13
- package/src/components/molecules/obligation/icons/PropertyBusinessIcon.js +83 -13
- package/src/components/molecules/obligation/icons/PropertyCarIcon.js +89 -12
- package/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.js +90 -12
- package/src/components/molecules/obligation/icons/PropertyGarageIcon.js +86 -12
- package/src/components/molecules/obligation/icons/PropertyLandIcon.js +89 -12
- package/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.js +89 -12
- package/src/components/molecules/obligation/icons/PropertyPersonalIcon.js +84 -14
- package/src/components/molecules/obligation/icons/PropertyStorefrontIcon.js +90 -12
- package/src/components/molecules/obligation/icons/index.js +18 -32
- package/src/components/molecules/obligation/modules/IconModule.js +3 -9
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/molecules/.DS_Store +0 -0
- package/src/components/molecules/obligation/.DS_Store +0 -0
|
@@ -2,20 +2,98 @@ import React from "react";
|
|
|
2
2
|
|
|
3
3
|
const PropertyCommercialVehicleIcon = () => (
|
|
4
4
|
<svg
|
|
5
|
-
width="
|
|
6
|
-
height="
|
|
7
|
-
viewBox="0 0
|
|
8
|
-
|
|
5
|
+
width="51px"
|
|
6
|
+
height="51px"
|
|
7
|
+
viewBox="0 0 81 81"
|
|
8
|
+
version="1.1"
|
|
9
9
|
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
10
11
|
>
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
<title>Profile Obligation Icon / Property - Commercial Vehicle</title>
|
|
13
|
+
<defs>
|
|
14
|
+
<circle id="comm-vehicle-path-1" cx="33.5" cy="33.5" r="33.5"></circle>
|
|
15
|
+
<filter
|
|
16
|
+
x="-17.2%"
|
|
17
|
+
y="-14.2%"
|
|
18
|
+
width="134.3%"
|
|
19
|
+
height="134.3%"
|
|
20
|
+
filterUnits="objectBoundingBox"
|
|
21
|
+
id="comm-vehicle-filter-2"
|
|
22
|
+
>
|
|
23
|
+
<feOffset
|
|
24
|
+
dx="0"
|
|
25
|
+
dy="-4"
|
|
26
|
+
in="SourceAlpha"
|
|
27
|
+
result="shadowOffsetOuter1"
|
|
28
|
+
></feOffset>
|
|
29
|
+
<feColorMatrix
|
|
30
|
+
values="0 0 0 0 0.964705882 0 0 0 0 0.964705882 0 0 0 0 0.976470588 0 0 0 1 0"
|
|
31
|
+
type="matrix"
|
|
32
|
+
in="shadowOffsetOuter1"
|
|
33
|
+
result="shadowMatrixOuter1"
|
|
34
|
+
></feColorMatrix>
|
|
35
|
+
<feOffset
|
|
36
|
+
dx="0"
|
|
37
|
+
dy="2"
|
|
38
|
+
in="SourceAlpha"
|
|
39
|
+
result="shadowOffsetOuter2"
|
|
40
|
+
></feOffset>
|
|
41
|
+
<feGaussianBlur
|
|
42
|
+
stdDeviation="3.5"
|
|
43
|
+
in="shadowOffsetOuter2"
|
|
44
|
+
result="shadowBlurOuter2"
|
|
45
|
+
></feGaussianBlur>
|
|
46
|
+
<feColorMatrix
|
|
47
|
+
values="0 0 0 0 0.161570617 0 0 0 0 0.163300979 0 0 0 0 0.199501812 0 0 0 0.3 0"
|
|
48
|
+
type="matrix"
|
|
49
|
+
in="shadowBlurOuter2"
|
|
50
|
+
result="shadowMatrixOuter2"
|
|
51
|
+
></feColorMatrix>
|
|
52
|
+
<feMerge>
|
|
53
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
54
|
+
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
|
55
|
+
</feMerge>
|
|
56
|
+
</filter>
|
|
57
|
+
</defs>
|
|
58
|
+
<g
|
|
59
|
+
id="comm-vehicle-Profile-/-Icons"
|
|
60
|
+
stroke="none"
|
|
61
|
+
strokeWidth="1"
|
|
62
|
+
fill="none"
|
|
63
|
+
fillRule="evenodd"
|
|
64
|
+
>
|
|
65
|
+
<g id="Outlined" transform="translate(7.000000, -916.000000)">
|
|
66
|
+
<g
|
|
67
|
+
id="comm-vehicle-Potentail-future-property"
|
|
68
|
+
transform="translate(0.000000, 231.000000)"
|
|
69
|
+
>
|
|
70
|
+
<g
|
|
71
|
+
id="comm-vehicle-Profile-Obligation-Icon-/-Property---Commercial-Vehicle"
|
|
72
|
+
transform="translate(0.000000, 690.000000)"
|
|
73
|
+
>
|
|
74
|
+
<g id="Oval-Copy-6">
|
|
75
|
+
<use
|
|
76
|
+
fill="black"
|
|
77
|
+
fillOpacity="1"
|
|
78
|
+
filter="url(#comm-vehicle-filter-2)"
|
|
79
|
+
xlinkHref="#comm-vehicle-path-1"
|
|
80
|
+
></use>
|
|
81
|
+
<use
|
|
82
|
+
fill="#FFFFFF"
|
|
83
|
+
fillRule="evenodd"
|
|
84
|
+
xlinkHref="#comm-vehicle-path-1"
|
|
85
|
+
></use>
|
|
86
|
+
</g>
|
|
87
|
+
<path
|
|
88
|
+
d="M43.9999285,49.9999905 C45.6665915,49.9999905 47.0832541,49.4166588 48.2499183,48.2499946 C49.4165825,47.0833304 49.9999142,45.6666678 49.9999142,44.0000048 L49.9999142,44.0000048 L52.999907,44.0000048 C53.2915733,44.0000048 53.5311558,43.906255 53.7186553,43.7187554 C53.9061549,43.5312559 53.9999046,43.2916734 53.9999046,43.0000072 L53.9999046,43.0000072 L53.9999046,41.0000119 C53.9999046,40.7083456 53.9061549,40.4687632 53.7186553,40.2812636 C53.5311558,40.0937641 53.2915733,40.0000143 52.999907,40.0000143 L52.999907,40.0000143 L51.9999094,40.0000143 L51.9999094,33.2500304 C51.9999094,32.4166994 51.7082431,31.7083671 51.1249115,31.1250355 L51.1249115,31.1250355 L44.8749264,24.8750504 C44.2915948,24.2917187 43.5832625,24.0000525 42.7499315,24.0000525 L42.7499315,24.0000525 L39.999938,24.0000525 L39.999938,21.0000668 C39.999938,20.1667286 39.7082717,19.4583963 39.1249401,18.8750647 C38.5416085,18.291733 37.8332762,18.0000668 36.9999452,18.0000668 L36.9999452,18.0000668 L17,18.0000668 C16.1666618,18.0000668 15.4583295,18.291733 14.8749979,18.8750647 C14.2916663,19.4583963 14,20.1667286 14,21.0000668 L14,21.0000668 L14,41.0000119 C14,41.8333429 14.2916663,42.5416752 14.8749979,43.1250069 C15.4583295,43.7083385 16.1666618,44.0000048 17,44.0000048 L17,44.0000048 L18,44.0000048 C18,45.6666678 18.5833221,47.0833304 19.7499863,48.2499946 C20.9166505,49.4166588 22.3333131,49.9999905 23.9999762,49.9999905 C25.6666392,49.9999905 27.0833018,49.4166588 28.249966,48.2499946 C29.4166302,47.0833304 29.9999619,45.6666678 29.9999619,44.0000048 L29.9999619,44.0000048 L37.9999428,44.0000048 C37.9999428,45.6666678 38.5832744,47.0833304 39.7499386,48.2499946 C40.9166028,49.4166588 42.3332655,49.9999905 43.9999285,49.9999905 Z M48.9999166,34.0000286 L39.999938,34.0000286 L39.999938,27.0000453 L42.7499315,27.0000453 L48.9999166,33.2500304 L48.9999166,34.0000286 Z M23.9999833,46.9999976 C23.1666451,46.9999976 22.4583128,46.7083313 21.8749812,46.1249997 C21.2916496,45.5416681 20.9999833,44.8333358 20.9999833,44.0000119 C20.9999833,43.1666737 21.2916496,42.4583415 21.8749812,41.8750098 C22.4583128,41.2916782 23.1666451,41.0000119 23.9999833,41.0000119 C24.8333072,41.0000119 25.5416395,41.2916782 26.1249711,41.8750098 C26.7083027,42.4583415 26.999969,43.1666737 26.999969,44.0000119 C26.999969,44.8333358 26.7083027,45.5416681 26.1249711,46.1249997 C25.5416395,46.7083313 24.8333072,46.9999976 23.9999833,46.9999976 Z M43.9999356,46.9999976 C43.1665974,46.9999976 42.4582652,46.7083313 41.8749335,46.1249997 C41.2916019,45.5416681 40.9999356,44.8333358 40.9999356,44.0000119 C40.9999356,43.1666737 41.2916019,42.4583415 41.8749335,41.8750098 C42.4582652,41.2916782 43.1665974,41.0000119 43.9999356,41.0000119 C44.8332595,41.0000119 45.5415918,41.2916782 46.1249234,41.8750098 C46.708255,42.4583415 46.9999213,43.1666737 46.9999213,44.0000119 C46.9999213,44.8333358 46.708255,45.5416681 46.1249234,46.1249997 C45.5415918,46.7083313 44.8332595,46.9999976 43.9999356,46.9999976 Z"
|
|
89
|
+
id="t"
|
|
90
|
+
fill="#292A33"
|
|
91
|
+
fillRule="nonzero"
|
|
92
|
+
></path>
|
|
93
|
+
</g>
|
|
94
|
+
</g>
|
|
95
|
+
</g>
|
|
96
|
+
</g>
|
|
19
97
|
</svg>
|
|
20
98
|
);
|
|
21
99
|
|
|
@@ -2,20 +2,94 @@ import React from "react";
|
|
|
2
2
|
|
|
3
3
|
const PropertyGarageIcon = () => (
|
|
4
4
|
<svg
|
|
5
|
-
width="
|
|
6
|
-
height="
|
|
7
|
-
viewBox="0 0
|
|
8
|
-
|
|
5
|
+
width="51px"
|
|
6
|
+
height="51px"
|
|
7
|
+
viewBox="0 0 81 81"
|
|
8
|
+
version="1.1"
|
|
9
9
|
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
10
11
|
>
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
<defs>
|
|
13
|
+
<circle id="garage-path-1" cx="33.5" cy="33.5" r="33.5"></circle>
|
|
14
|
+
<filter
|
|
15
|
+
x="-17.2%"
|
|
16
|
+
y="-14.2%"
|
|
17
|
+
width="134.3%"
|
|
18
|
+
height="134.3%"
|
|
19
|
+
filterUnits="objectBoundingBox"
|
|
20
|
+
id="garage-filter-2"
|
|
21
|
+
>
|
|
22
|
+
<feOffset
|
|
23
|
+
dx="0"
|
|
24
|
+
dy="-4"
|
|
25
|
+
in="SourceAlpha"
|
|
26
|
+
result="shadowOffsetOuter1"
|
|
27
|
+
></feOffset>
|
|
28
|
+
<feColorMatrix
|
|
29
|
+
values="0 0 0 0 0.964705882 0 0 0 0 0.964705882 0 0 0 0 0.976470588 0 0 0 1 0"
|
|
30
|
+
type="matrix"
|
|
31
|
+
in="shadowOffsetOuter1"
|
|
32
|
+
result="shadowMatrixOuter1"
|
|
33
|
+
></feColorMatrix>
|
|
34
|
+
<feOffset
|
|
35
|
+
dx="0"
|
|
36
|
+
dy="2"
|
|
37
|
+
in="SourceAlpha"
|
|
38
|
+
result="shadowOffsetOuter2"
|
|
39
|
+
></feOffset>
|
|
40
|
+
<feGaussianBlur
|
|
41
|
+
stdDeviation="3.5"
|
|
42
|
+
in="shadowOffsetOuter2"
|
|
43
|
+
result="shadowBlurOuter2"
|
|
44
|
+
></feGaussianBlur>
|
|
45
|
+
<feColorMatrix
|
|
46
|
+
values="0 0 0 0 0.161570617 0 0 0 0 0.163300979 0 0 0 0 0.199501812 0 0 0 0.3 0"
|
|
47
|
+
type="matrix"
|
|
48
|
+
in="shadowBlurOuter2"
|
|
49
|
+
result="shadowMatrixOuter2"
|
|
50
|
+
></feColorMatrix>
|
|
51
|
+
<feMerge>
|
|
52
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
53
|
+
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
|
54
|
+
</feMerge>
|
|
55
|
+
</filter>
|
|
56
|
+
</defs>
|
|
57
|
+
<g
|
|
58
|
+
id="garage-Profile-/-Icons"
|
|
59
|
+
stroke="none"
|
|
60
|
+
strokeWidth="1"
|
|
61
|
+
fill="none"
|
|
62
|
+
fillRule="evenodd"
|
|
63
|
+
>
|
|
64
|
+
<g id="Outlined" transform="translate(7.000000, -226.000000)">
|
|
65
|
+
<g
|
|
66
|
+
id="garage-Potentail-future-property"
|
|
67
|
+
transform="translate(0.000000, 231.000000)"
|
|
68
|
+
>
|
|
69
|
+
<g id="Profile-Obligation-Icon-/-Property---Garage">
|
|
70
|
+
<g id="Oval-Copy-3">
|
|
71
|
+
<use
|
|
72
|
+
fill="black"
|
|
73
|
+
fillOpacity="1"
|
|
74
|
+
filter="url(#garage-filter-2)"
|
|
75
|
+
xlinkHref="#garage-path-1"
|
|
76
|
+
></use>
|
|
77
|
+
<use
|
|
78
|
+
fill="#FFFFFF"
|
|
79
|
+
fillRule="evenodd"
|
|
80
|
+
xlinkHref="#garage-path-1"
|
|
81
|
+
></use>
|
|
82
|
+
</g>
|
|
83
|
+
<path
|
|
84
|
+
d="M19.4999869,49.9999905 C19.6249866,49.9999905 19.7395693,49.9479076 19.8437361,49.8437408 C19.9479028,49.7395741 19.9999857,49.6249914 19.9999857,49.4999917 L19.9999857,49.4999917 L19.9999857,34.0000286 C19.9999857,33.4583629 20.1979022,32.989614 20.5937343,32.593782 C20.9895664,32.1979499 21.4791492,32.0000334 22.0624808,32.0000334 L22.0624808,32.0000334 L45.9374239,32.0000334 C46.5207555,32.0000334 47.0103383,32.1979499 47.4061704,32.593782 C47.8020024,32.989614 47.9999189,33.4583629 47.9999189,34.0000286 L47.9999189,34.0000286 L47.9999189,49.4999917 C47.9999189,49.6249914 48.0520018,49.7395741 48.1561686,49.8437408 C48.2603353,49.9479076 48.374918,49.9999905 48.4999177,49.9999905 L48.4999177,49.9999905 L53.4999058,49.9999905 C53.6249055,49.9999905 53.7394883,49.9479076 53.843655,49.8437408 C53.9478217,49.7395741 53.9999046,49.6249914 53.9999046,49.4999917 L53.9999046,49.4999917 L53.9999046,28.0625428 C53.9999046,27.4792111 53.833238,26.9375454 53.4999058,26.4375466 C53.1665736,25.9375478 52.7082407,25.5625487 52.1249091,25.3125493 L52.1249091,25.3125493 L52.187409,25.3125493 L35.1249496,18.2500662 C34.3749514,17.9167339 33.6249532,17.9167339 32.874955,18.2500662 L32.874955,18.2500662 L15.8749955,25.3125493 C15.2916639,25.5625487 14.833331,25.9375478 14.5,26.4375466 C14.1666666,26.9375454 14,27.4792111 14,28.0625428 L14,28.0625428 L14,49.4999917 C14,49.6249914 14.0520829,49.7395741 14.1562496,49.8437408 C14.2604164,49.9479076 14.3749991,49.9999905 14.5,49.9999905 L14.5,49.9999905 L19.4999869,49.9999905 Z M45.4999249,38.0000286 C45.6249246,38.0000286 45.7395073,37.9479362 45.8436741,37.8437694 C45.9478408,37.7396027 45.9999237,37.62502 45.9999237,37.5000286 L45.9999237,37.5000286 L45.9999237,34.5000286 C45.9999237,34.3750277 45.9478408,34.260445 45.8436741,34.1562782 C45.7395073,34.0521115 45.6249246,34.0000286 45.4999249,34.0000286 L45.4999249,34.0000286 L22.5624808,34.0000286 C22.395813,34.0000286 22.2708133,34.0521115 22.1874805,34.1562782 C22.1041477,34.260445 22.0624808,34.3750277 22.0624808,34.5000286 L22.0624808,34.5000286 L22.0624808,37.5000286 C22.0624808,37.62502 22.1041477,37.7396027 22.1874805,37.8437694 C22.2708133,37.9479362 22.395813,38.0000286 22.5624808,38.0000286 L22.5624808,38.0000286 L45.4999249,38.0000286 Z M45.4999249,44.0000143 C45.6249246,44.0000143 45.7395073,43.9479219 45.8436741,43.8437551 C45.9478408,43.7395884 45.9999237,43.6250057 45.9999237,43.5000143 L45.9999237,43.5000143 L45.9999237,40.5000143 C45.9999237,40.3750134 45.9478408,40.2604307 45.8436741,40.1562639 C45.7395073,40.0520972 45.6249246,40.0000143 45.4999249,40.0000143 L45.4999249,40.0000143 L22.4999809,40.0000143 C22.37498,40.0000143 22.2603973,40.0520972 22.1562306,40.1562639 C22.0520638,40.2604307 21.9999809,40.3750134 21.9999809,40.5000143 L21.9999809,40.5000143 L21.9999809,43.5000143 C21.9999809,43.6250057 22.0520638,43.7395884 22.1562306,43.8437551 C22.2603973,43.9479219 22.37498,44.0000143 22.4999809,44.0000143 L22.4999809,44.0000143 L45.4999249,44.0000143 Z M45.4999249,50 C45.6249246,50 45.7395073,49.9479076 45.8436741,49.8437408 C45.9478408,49.7395741 45.9999237,49.6249914 45.9999237,49.5 L45.9999237,49.5 L45.9999237,46.5 C45.9999237,46.3749991 45.9478408,46.2604164 45.8436741,46.1562496 C45.7395073,46.0520829 45.6249246,46 45.4999249,46 L45.4999249,46 L22.4999809,46 C22.37498,46 22.2603973,46.0520829 22.1562306,46.1562496 C22.0520638,46.2604164 21.9999809,46.3749991 21.9999809,46.5 L21.9999809,46.5 L21.9999809,49.5 C21.9999809,49.6249914 22.0520638,49.7395741 22.1562306,49.8437408 C22.2603973,49.9479076 22.37498,50 22.4999809,50 L22.4999809,50 L45.4999249,50 Z"
|
|
85
|
+
id="w"
|
|
86
|
+
fill="#292A33"
|
|
87
|
+
fillRule="nonzero"
|
|
88
|
+
></path>
|
|
89
|
+
</g>
|
|
90
|
+
</g>
|
|
91
|
+
</g>
|
|
92
|
+
</g>
|
|
19
93
|
</svg>
|
|
20
94
|
);
|
|
21
95
|
|
|
@@ -2,20 +2,97 @@ import React from "react";
|
|
|
2
2
|
|
|
3
3
|
const PropertyLandIcon = () => (
|
|
4
4
|
<svg
|
|
5
|
-
width="
|
|
6
|
-
height="
|
|
7
|
-
viewBox="0 0
|
|
8
|
-
|
|
5
|
+
width="51px"
|
|
6
|
+
height="51px"
|
|
7
|
+
viewBox="0 0 81 81"
|
|
8
|
+
version="1.1"
|
|
9
9
|
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
10
11
|
>
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
<defs>
|
|
13
|
+
<circle id="land-path-1" cx="33.5" cy="33.5" r="33.5"></circle>
|
|
14
|
+
<filter
|
|
15
|
+
x="-17.2%"
|
|
16
|
+
y="-14.2%"
|
|
17
|
+
width="134.3%"
|
|
18
|
+
height="134.3%"
|
|
19
|
+
filterUnits="objectBoundingBox"
|
|
20
|
+
id="land-filter-2"
|
|
21
|
+
>
|
|
22
|
+
<feOffset
|
|
23
|
+
dx="0"
|
|
24
|
+
dy="-4"
|
|
25
|
+
in="SourceAlpha"
|
|
26
|
+
result="shadowOffsetOuter1"
|
|
27
|
+
></feOffset>
|
|
28
|
+
<feColorMatrix
|
|
29
|
+
values="0 0 0 0 0.964705882 0 0 0 0 0.964705882 0 0 0 0 0.976470588 0 0 0 1 0"
|
|
30
|
+
type="matrix"
|
|
31
|
+
in="shadowOffsetOuter1"
|
|
32
|
+
result="shadowMatrixOuter1"
|
|
33
|
+
></feColorMatrix>
|
|
34
|
+
<feOffset
|
|
35
|
+
dx="0"
|
|
36
|
+
dy="2"
|
|
37
|
+
in="SourceAlpha"
|
|
38
|
+
result="shadowOffsetOuter2"
|
|
39
|
+
></feOffset>
|
|
40
|
+
<feGaussianBlur
|
|
41
|
+
stdDeviation="3.5"
|
|
42
|
+
in="shadowOffsetOuter2"
|
|
43
|
+
result="shadowBlurOuter2"
|
|
44
|
+
></feGaussianBlur>
|
|
45
|
+
<feColorMatrix
|
|
46
|
+
values="0 0 0 0 0.161570617 0 0 0 0 0.163300979 0 0 0 0 0.199501812 0 0 0 0.3 0"
|
|
47
|
+
type="matrix"
|
|
48
|
+
in="shadowBlurOuter2"
|
|
49
|
+
result="shadowMatrixOuter2"
|
|
50
|
+
></feColorMatrix>
|
|
51
|
+
<feMerge>
|
|
52
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
53
|
+
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
|
54
|
+
</feMerge>
|
|
55
|
+
</filter>
|
|
56
|
+
</defs>
|
|
57
|
+
<g
|
|
58
|
+
id="land-Profile-/-Icons"
|
|
59
|
+
stroke="none"
|
|
60
|
+
strokeWidth="1"
|
|
61
|
+
fill="none"
|
|
62
|
+
fillRule="evenodd"
|
|
63
|
+
>
|
|
64
|
+
<g id="Outlined" transform="translate(7.000000, -571.000000)">
|
|
65
|
+
<g
|
|
66
|
+
id="land-Potentail-future-property"
|
|
67
|
+
transform="translate(0.000000, 231.000000)"
|
|
68
|
+
>
|
|
69
|
+
<g
|
|
70
|
+
id="Profile-Obligation-Icon-/-Property---Land"
|
|
71
|
+
transform="translate(0.000000, 345.000000)"
|
|
72
|
+
>
|
|
73
|
+
<g id="Oval-Copy-6">
|
|
74
|
+
<use
|
|
75
|
+
fill="black"
|
|
76
|
+
fillOpacity="1"
|
|
77
|
+
filter="url(#land-filter-2)"
|
|
78
|
+
xlinkHref="#land-path-1"
|
|
79
|
+
></use>
|
|
80
|
+
<use
|
|
81
|
+
fill="#FFFFFF"
|
|
82
|
+
fillRule="evenodd"
|
|
83
|
+
xlinkHref="#land-path-1"
|
|
84
|
+
></use>
|
|
85
|
+
</g>
|
|
86
|
+
<path
|
|
87
|
+
d="M36.9999642,49.9999905 C37.3749633,49.9999905 37.6562127,49.8437408 37.8437122,49.5312416 C38.0312118,49.2187423 38.0416287,48.8958261 37.8749622,48.5624939 L37.8749622,48.5624939 L35.9999666,45.5000012 L35.9999666,44.0000048 L44.5624462,44.0000048 C44.8541125,44.0000048 45.1145279,43.927088 45.3436943,43.7812553 C45.5728608,43.6354226 45.7499434,43.4375061 45.8749431,43.1875067 C45.9999428,42.9375073 46.0416097,42.6770909 45.9999428,42.4062586 C45.9582759,42.1354262 45.8332762,41.8750098 45.6249437,41.6250104 L45.6249437,41.6250104 L40.6249556,36.0000238 L42.562451,36.0000238 C43.1874495,36.0000238 43.6249484,35.7291915 43.8749478,35.1875258 C44.1249472,34.6458601 44.0624474,34.1458613 43.6874483,33.6875294 L43.6874483,33.6875294 L38.7499601,28.0000429 L40.5624557,28.0000429 C40.854122,28.0000429 41.1249544,27.9271261 41.3749538,27.7812934 C41.6249532,27.6354608 41.8020358,27.4271273 41.9062025,27.1562949 C42.0103693,26.8854626 42.0416192,26.6146292 41.9999523,26.3437969 C41.9582854,26.0729645 41.8332857,25.8333811 41.6249532,25.6250486 L41.6249532,25.6250486 L34.7499696,18.312566 C34.5416371,18.1042335 34.2916377,18.0000668 33.9999714,18.0000668 C33.7083051,18.0000668 33.4583057,18.1042335 33.2499732,18.312566 L33.2499732,18.312566 L26.3749896,25.6250486 C26.1666571,25.8333811 26.0416573,26.0729645 25.9999905,26.3437969 C25.9583236,26.6146292 25.9895735,26.8854626 26.0937402,27.1562949 C26.197907,27.4271273 26.3749896,27.6354608 26.624989,27.7812934 C26.8749884,27.9271261 27.1458207,28.0000429 27.437487,28.0000429 L27.437487,28.0000429 L29.2499827,28.0000429 L24.3124945,33.6875294 C23.9374954,34.1458613 23.8749955,34.6458601 24.1249949,35.1875258 C24.3749943,35.7291915 24.8124933,36.0000238 25.4374918,36.0000238 L25.4374918,36.0000238 L27.3749872,36.0000238 L22.3749991,41.6250104 C22.1666666,41.8750098 22.0416669,42.1354262 22,42.4062586 C21.9583331,42.6770909 22,42.9375073 22.1249997,43.1875067 C22.2499994,43.4375061 22.427082,43.6354226 22.6562484,43.7812553 C22.8854149,43.927088 23.1458303,44.0000048 23.4374966,44.0000048 L23.4374966,44.0000048 L31.9999762,44.0000048 L31.9999762,45.5000012 L30.1249806,48.5624939 C29.958314,48.8958261 29.968731,49.2187423 30.1562306,49.5312416 C30.3437301,49.8437408 30.6249794,49.9999905 30.9999785,49.9999905 L30.9999785,49.9999905 L36.9999642,49.9999905 Z"
|
|
88
|
+
id="t"
|
|
89
|
+
fill="#292A33"
|
|
90
|
+
fillRule="nonzero"
|
|
91
|
+
></path>
|
|
92
|
+
</g>
|
|
93
|
+
</g>
|
|
94
|
+
</g>
|
|
95
|
+
</g>
|
|
19
96
|
</svg>
|
|
20
97
|
);
|
|
21
98
|
|
|
@@ -2,20 +2,97 @@ import React from "react";
|
|
|
2
2
|
|
|
3
3
|
const PropertyMotorcycleIcon = () => (
|
|
4
4
|
<svg
|
|
5
|
-
width="
|
|
6
|
-
height="
|
|
7
|
-
viewBox="0 0
|
|
8
|
-
|
|
5
|
+
width="51px"
|
|
6
|
+
height="51px"
|
|
7
|
+
viewBox="0 0 81 81"
|
|
8
|
+
version="1.1"
|
|
9
9
|
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
10
11
|
>
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
<defs>
|
|
13
|
+
<circle id="motorcycle-path-1" cx="33.5" cy="33.5" r="33.5"></circle>
|
|
14
|
+
<filter
|
|
15
|
+
x="-17.2%"
|
|
16
|
+
y="-14.2%"
|
|
17
|
+
width="134.3%"
|
|
18
|
+
height="134.3%"
|
|
19
|
+
filterUnits="objectBoundingBox"
|
|
20
|
+
id="motorcycle-filter-2"
|
|
21
|
+
>
|
|
22
|
+
<feOffset
|
|
23
|
+
dx="0"
|
|
24
|
+
dy="-4"
|
|
25
|
+
in="SourceAlpha"
|
|
26
|
+
result="shadowOffsetOuter1"
|
|
27
|
+
></feOffset>
|
|
28
|
+
<feColorMatrix
|
|
29
|
+
values="0 0 0 0 0.964705882 0 0 0 0 0.964705882 0 0 0 0 0.976470588 0 0 0 1 0"
|
|
30
|
+
type="matrix"
|
|
31
|
+
in="shadowOffsetOuter1"
|
|
32
|
+
result="shadowMatrixOuter1"
|
|
33
|
+
></feColorMatrix>
|
|
34
|
+
<feOffset
|
|
35
|
+
dx="0"
|
|
36
|
+
dy="2"
|
|
37
|
+
in="SourceAlpha"
|
|
38
|
+
result="shadowOffsetOuter2"
|
|
39
|
+
></feOffset>
|
|
40
|
+
<feGaussianBlur
|
|
41
|
+
stdDeviation="3.5"
|
|
42
|
+
in="shadowOffsetOuter2"
|
|
43
|
+
result="shadowBlurOuter2"
|
|
44
|
+
></feGaussianBlur>
|
|
45
|
+
<feColorMatrix
|
|
46
|
+
values="0 0 0 0 0.161570617 0 0 0 0 0.163300979 0 0 0 0 0.199501812 0 0 0 0.3 0"
|
|
47
|
+
type="matrix"
|
|
48
|
+
in="shadowBlurOuter2"
|
|
49
|
+
result="shadowMatrixOuter2"
|
|
50
|
+
></feColorMatrix>
|
|
51
|
+
<feMerge>
|
|
52
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
53
|
+
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
|
54
|
+
</feMerge>
|
|
55
|
+
</filter>
|
|
56
|
+
</defs>
|
|
57
|
+
<g
|
|
58
|
+
id="motorcycle-Profile-/-Icons"
|
|
59
|
+
stroke="none"
|
|
60
|
+
strokeWidth="1"
|
|
61
|
+
fill="none"
|
|
62
|
+
fillRule="evenodd"
|
|
63
|
+
>
|
|
64
|
+
<g id="Outlined" transform="translate(7.000000, -801.000000)">
|
|
65
|
+
<g
|
|
66
|
+
id="Potentail-future-property"
|
|
67
|
+
transform="translate(0.000000, 231.000000)"
|
|
68
|
+
>
|
|
69
|
+
<g
|
|
70
|
+
id="motorcycle-Profile-Obligation-Icon-/-Property---Motorcycle"
|
|
71
|
+
transform="translate(0.000000, 575.000000)"
|
|
72
|
+
>
|
|
73
|
+
<g id="Oval-Copy-6">
|
|
74
|
+
<use
|
|
75
|
+
fill="black"
|
|
76
|
+
fillOpacity="1"
|
|
77
|
+
filter="url(#motorcycle-filter-2)"
|
|
78
|
+
xlinkHref="#motorcycle-path-1"
|
|
79
|
+
></use>
|
|
80
|
+
<use
|
|
81
|
+
fill="#FFFFFF"
|
|
82
|
+
fillRule="evenodd"
|
|
83
|
+
xlinkHref="#motorcycle-path-1"
|
|
84
|
+
></use>
|
|
85
|
+
</g>
|
|
86
|
+
<path
|
|
87
|
+
d="M45.9686738,46 C47.4061704,46 48.7499171,45.6458339 49.9999142,44.9375025 C51.2499112,44.2291712 52.2290758,43.2500066 52.9374072,42.0000095 C53.6457385,40.7500125 53.9999046,39.4062657 53.9999046,37.9687691 C53.9999046,36.5312726 53.6353225,35.2083587 52.9061572,34.0000286 C52.176992,32.7916985 51.2082443,31.8229508 49.9999142,31.0937855 C48.791584,30.3646203 47.4790872,30.0000381 46.0624236,30.0000381 C45.1457588,30.0000381 44.2707608,30.1458708 43.4374298,30.4375371 L43.4374298,30.4375371 L41.3749347,27.0000453 L46.4999225,27.0000453 C46.9165885,27.0000453 47.2707537,26.8542126 47.56242,26.5625463 C47.8540863,26.2708801 47.9999189,25.9167149 47.9999189,25.5000572 L47.9999189,25.5000572 L47.9999189,23.5000572 C47.9999189,23.0833877 47.8540863,22.7292225 47.56242,22.4375562 C47.2707537,22.1458899 46.9165885,22.0000572 46.4999225,22.0000572 L46.4999225,22.0000572 L43.6874292,22.0000572 C43.2290973,22.0000572 42.8540982,22.1667238 42.5624319,22.5000572 L42.5624319,22.5000572 L40.1874376,25.1250498 L38.8124408,22.7500554 C38.5207746,22.2500566 38.0832756,22.0000572 37.499944,22.0000572 L37.499944,22.0000572 L32.4999559,22.0000572 C32.2082896,22.0000572 31.9687072,22.093807 31.7812076,22.2813065 C31.5937081,22.4688061 31.4999583,22.7083885 31.4999583,23.0000572 L31.4999583,23.0000572 L31.4999583,24.0000572 C31.4999583,24.2917187 31.5937081,24.5313012 31.7812076,24.7188007 C31.9687072,24.9063003 32.2082896,25.0000572 32.4999559,25.0000572 L32.4999559,25.0000572 L36.6249461,25.0000572 L37.8749431,27.0000453 L28.249966,27.0000453 C27.6249675,26.2083802 26.8749693,25.6042156 25.9999714,25.1875496 C24.9583069,24.7292177 23.6249771,24.5000572 21.9999809,24.5000572 L21.9999809,24.5000572 L18.5624891,24.5000572 C18.1041572,24.5000572 17.7291581,24.6458839 17.4374918,24.9375502 C17.1458255,25.2292165 16.9999928,25.5833817 16.9999928,26.0000572 C16.9999928,26.4167137 17.1458255,26.7708789 17.4374918,27.0625452 C17.7291581,27.3542114 18.0833233,27.5000441 18.4999893,27.5000441 L18.4999893,27.5000441 L21.9999809,27.5000441 C23.3333108,27.5000441 24.3333084,28.0208759 24.9999738,29.0625404 L24.9999738,29.0625404 L24.2499756,30.3125374 C23.4166445,30.062538 22.5624796,29.9583713 21.6874817,30.0000381 C20.3124849,30.041705 19.041655,30.4167041 17.8749908,31.1250355 C16.7083266,31.8333668 15.7812458,32.7812815 15.0937474,33.9687787 C14.406249,35.1562759 14.0416669,36.4375228 14,37.8125195 C13.9583331,39.2708491 14.2916663,40.6354298 14.9999976,41.9062598 C15.7083289,43.1770897 16.6874936,44.1770874 17.9374906,44.9062526 C19.1874876,45.6354179 20.5416514,46 21.9999809,46 C23.8333096,46 25.4687227,45.4375013 26.9062192,44.312504 C28.3437158,43.1875067 29.2916305,41.7500101 29.7499624,40.0000143 L29.7499624,40.0000143 L34.9999499,40.0000143 C35.4166159,40.0000143 35.7811981,39.8437647 36.0936973,39.5312654 C36.4061966,39.2187662 36.5416132,38.854184 36.4999464,38.437518 C36.4582795,36.9375216 36.7395288,35.500025 37.3436943,34.1250283 C37.9478599,32.7500316 38.8332738,31.5833674 39.999938,30.6250367 L39.999938,30.6250367 L40.8124361,31.9375335 C39.9374382,32.6875317 39.2499398,33.5937796 38.749941,34.656277 C38.2499422,35.7187745 37.9999428,36.8541888 37.9999428,38.0625189 C37.9999428,39.4791825 38.3541089,40.7916794 39.0624402,42.0000095 C39.7707716,43.2083397 40.7395193,44.1770874 41.9686833,44.9062526 C43.1978474,45.6354179 44.5311772,46 45.9686738,46 Z M21.9999809,43.0000072 C20.6249842,43.0000072 19.447904,42.5104253 18.4687393,41.5312607 C17.4895747,40.552096 16.9999928,39.3750158 16.9999928,38.0000191 C16.9999928,36.6250224 17.4895747,35.4479421 18.4687393,34.4687775 C19.447904,33.4896128 20.6249842,33.000031 21.9999809,33.000031 C22.2499803,33.000031 22.4999797,33.020864 22.7499791,33.0625308 L22.7499791,33.0625308 L20.1874852,37.7500197 C19.895819,38.2500185 19.895819,38.7500173 20.1874852,39.2500161 C20.4791515,39.7500149 20.9166505,40.0000143 21.4999821,40.0000143 L21.4999821,40.0000143 L26.56247,40.0000143 C26.1874709,40.9166791 25.5833054,41.6458434 24.7499744,42.1875091 C23.9166433,42.7291748 22.9999785,43.0000072 21.9999809,43.0000072 Z M46.2499231,43.0000072 C44.8332595,43.08334 43.6040964,42.625008 42.5624319,41.6250104 C41.5207674,40.6250128 40.9999356,39.4166827 40.9999356,38.0000191 C40.9999356,36.6666892 41.4582675,35.520858 42.3749323,34.5625273 L42.3749323,34.5625273 L45.4999249,39.6875151 C45.6249246,39.9375145 45.8228411,40.0937641 46.0936735,40.1562639 C46.3645059,40.2187638 46.6040893,40.1875139 46.8124218,40.0625142 L46.8124218,40.0625142 L47.6874197,39.5000155 C47.9374191,39.3750158 48.0936687,39.1770993 48.1561686,38.9062669 C48.2186684,38.6354345 48.1874185,38.3958511 48.0624188,38.1875186 L48.0624188,38.1875186 L44.9999356,33.1250307 C45.3332583,33.0416979 45.6665915,33.000031 45.9999237,33.000031 C47.4165873,33.000031 48.6249174,33.5208628 49.6249151,34.5625273 C50.6249127,35.6041918 51.0832446,36.8333549 50.9999118,38.2500185 C50.916579,39.5416824 50.4269962,40.6354298 49.5311653,41.5312607 C48.6353344,42.4270915 47.541587,42.9166743 46.2499231,43.0000072 Z"
|
|
88
|
+
id="m"
|
|
89
|
+
fill="#292A33"
|
|
90
|
+
fillRule="nonzero"
|
|
91
|
+
></path>
|
|
92
|
+
</g>
|
|
93
|
+
</g>
|
|
94
|
+
</g>
|
|
95
|
+
</g>
|
|
19
96
|
</svg>
|
|
20
97
|
);
|
|
21
98
|
|
|
@@ -1,23 +1,93 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
|
|
3
|
-
const
|
|
3
|
+
const PropertyPersonalIcon = () => (
|
|
4
4
|
<svg
|
|
5
|
-
width="
|
|
6
|
-
height="
|
|
7
|
-
viewBox="0 0
|
|
8
|
-
|
|
5
|
+
width="51px"
|
|
6
|
+
height="51px"
|
|
7
|
+
viewBox="0 0 81 81"
|
|
8
|
+
version="1.1"
|
|
9
9
|
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
10
11
|
>
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
<defs>
|
|
13
|
+
<circle
|
|
14
|
+
id="property-personal-path-1"
|
|
15
|
+
cx="33.5"
|
|
16
|
+
cy="33.5"
|
|
17
|
+
r="33.5"
|
|
18
|
+
></circle>
|
|
19
|
+
<filter
|
|
20
|
+
x="-17.2%"
|
|
21
|
+
y="-14.2%"
|
|
22
|
+
width="134.3%"
|
|
23
|
+
height="134.3%"
|
|
24
|
+
filterUnits="objectBoundingBox"
|
|
25
|
+
id="property-personal-filter-2"
|
|
26
|
+
>
|
|
27
|
+
<feOffset
|
|
28
|
+
dx="0"
|
|
29
|
+
dy="-4"
|
|
30
|
+
in="SourceAlpha"
|
|
31
|
+
result="shadowOffsetOuter1"
|
|
32
|
+
></feOffset>
|
|
33
|
+
<feColorMatrix
|
|
34
|
+
values="0 0 0 0 0.964705882 0 0 0 0 0.964705882 0 0 0 0 0.976470588 0 0 0 1 0"
|
|
35
|
+
type="matrix"
|
|
36
|
+
in="shadowOffsetOuter1"
|
|
37
|
+
result="shadowMatrixOuter1"
|
|
38
|
+
></feColorMatrix>
|
|
39
|
+
<feOffset
|
|
40
|
+
dx="0"
|
|
41
|
+
dy="2"
|
|
42
|
+
in="SourceAlpha"
|
|
43
|
+
result="shadowOffsetOuter2"
|
|
44
|
+
></feOffset>
|
|
45
|
+
<feGaussianBlur
|
|
46
|
+
stdDeviation="3.5"
|
|
47
|
+
in="shadowOffsetOuter2"
|
|
48
|
+
result="shadowBlurOuter2"
|
|
49
|
+
></feGaussianBlur>
|
|
50
|
+
<feColorMatrix
|
|
51
|
+
values="0 0 0 0 0.161570617 0 0 0 0 0.163300979 0 0 0 0 0.199501812 0 0 0 0.3 0"
|
|
52
|
+
type="matrix"
|
|
53
|
+
in="shadowBlurOuter2"
|
|
54
|
+
result="shadowMatrixOuter2"
|
|
55
|
+
></feColorMatrix>
|
|
56
|
+
<feMerge>
|
|
57
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
58
|
+
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
|
59
|
+
</feMerge>
|
|
60
|
+
</filter>
|
|
61
|
+
</defs>
|
|
62
|
+
<g
|
|
63
|
+
id="PropertyPersonal"
|
|
64
|
+
stroke="none"
|
|
65
|
+
strokeWidth="1"
|
|
66
|
+
fill="none"
|
|
16
67
|
fillRule="evenodd"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
68
|
+
>
|
|
69
|
+
<g id="PropertyPersonalIcon" transform="translate(7.000000, 5.000000)">
|
|
70
|
+
<g id="Oval">
|
|
71
|
+
<use
|
|
72
|
+
fill="black"
|
|
73
|
+
fillOpacity="1"
|
|
74
|
+
filter="url(#property-personal-filter-2)"
|
|
75
|
+
xlinkHref="#property-personal-path-1"
|
|
76
|
+
></use>
|
|
77
|
+
<use
|
|
78
|
+
fill="#FFFFFF"
|
|
79
|
+
fillRule="evenodd"
|
|
80
|
+
xlinkHref="#property-personal-path-1"
|
|
81
|
+
></use>
|
|
82
|
+
</g>
|
|
83
|
+
<path
|
|
84
|
+
d="M49.7499195,37.0000215 C49.9582521,37.0000215 50.1249186,36.9166886 50.2499183,36.7500221 L50.2499183,36.7500221 L51.8124146,34.8125267 C51.9374143,34.6458601 51.9894972,34.4583605 51.9686642,34.250028 C51.9478313,34.0416955 51.8749145,33.8750289 51.7499148,33.7500292 L51.7499148,33.7500292 L46.4999273,29.4375395 L46.4999273,20.7500602 C46.4999273,20.5417277 46.4270105,20.3646441 46.2811778,20.2188115 C46.1353451,20.0729788 45.9582616,20.000062 45.7499291,20.000062 L45.7499291,20.000062 L42.2499374,20.000062 C42.0416049,20.000062 41.8645213,20.0729788 41.7186887,20.2188115 C41.572856,20.3646441 41.4999392,20.5417277 41.4999392,20.7500602 L41.4999392,20.7500602 L41.4999392,25.3125493 L35.9374525,20.6875603 C35.3541208,20.2292284 34.7082884,20.000062 33.9999571,20.000062 C33.2916258,20.000062 32.6666272,20.2292284 32.1249616,20.6875603 L32.1249616,20.6875603 L16.2499994,33.7500292 C16.1249997,33.8750289 16.0520829,34.0416955 16.0312499,34.250028 C16.010417,34.4583605 16.0624999,34.6458601 16.1874996,34.8125267 L16.1874996,34.8125267 L17.7499958,36.7500221 C17.8749955,36.9166886 18.0416621,37.0000215 18.2499946,37.0000215 C18.4583272,37.0000215 18.6458267,36.9375216 18.8124933,36.8125219 L18.8124933,36.8125219 L33.4999583,24.7500507 C33.6666249,24.625051 33.8332905,24.5625511 33.9999571,24.5625511 C34.1666237,24.5625511 34.3332893,24.625051 34.4999559,24.7500507 L34.4999559,24.7500507 L49.1874209,36.8125219 C49.3540875,36.9375216 49.541587,37.0000215 49.7499195,37.0000215 Z M30.249966,47.9999952 C30.4582985,47.9999952 30.6353821,47.9270784 30.7812148,47.7812458 C30.9270474,47.6354131 30.9999642,47.4583295 30.9999642,47.249997 L30.9999642,47.249997 L30.9999642,40.2500137 C30.9999642,40.0416812 31.072881,39.8645976 31.2187137,39.718765 C31.3645464,39.5729323 31.5416299,39.5000155 31.7499624,39.5000155 L31.7499624,39.5000155 L36.2499517,39.5000155 C36.4582842,39.5000155 36.6353678,39.5729323 36.7812005,39.718765 C36.9270331,39.8645976 36.9999499,40.0416812 36.9999499,40.2500137 L36.9999499,40.2500137 L36.9999499,47.249997 C36.9999499,47.4583295 37.0728667,47.6354131 37.2186994,47.7812458 C37.3645321,47.9270784 37.5416156,47.9999952 37.7499481,47.9999952 L37.7499481,47.9999952 L44.9999309,47.9999952 C45.4165968,47.9999952 45.770762,47.8541626 46.0624283,47.5624963 C46.3540946,47.27083 46.4999273,46.9166648 46.4999273,46.4999988 L46.4999273,46.4999988 L46.4999273,37.5625201 C46.4999273,37.3125207 46.4165945,37.1041882 46.2499279,36.9375216 L46.2499279,36.9375216 L34.4999559,27.3125446 C34.3332893,27.1875449 34.1666237,27.125045 33.9999571,27.125045 C33.8332905,27.125045 33.6666249,27.1875449 33.4999583,27.3125446 L33.4999583,27.3125446 L21.7499863,36.9375216 C21.5833197,37.1041882 21.4999869,37.3125207 21.4999869,37.5625201 L21.4999869,37.5625201 L21.4999869,46.4999988 C21.4999869,46.9166648 21.6458196,47.27083 21.9374858,47.5624963 C22.2291521,47.8541626 22.5833173,47.9999952 22.9999869,47.9999952 L22.9999869,47.9999952 L30.249966,47.9999952 Z"
|
|
85
|
+
id="h"
|
|
86
|
+
fill="#292A33"
|
|
87
|
+
fillRule="nonzero"
|
|
88
|
+
></path>
|
|
89
|
+
</g>
|
|
90
|
+
</g>
|
|
21
91
|
</svg>
|
|
22
92
|
);
|
|
23
93
|
|