@thecb/components 10.6.5-beta.5 → 10.6.5-beta.6
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 +325 -1363
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +325 -1363
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/Icons.theme.js +4 -4
- package/src/components/atoms/wallet-name/WalletName.js +3 -4
- package/src/components/atoms/wallet-name/WalletName.stories.js +13 -2
- package/src/components/atoms/wallet-name/index.d.ts +1 -0
- package/src/components/molecules/obligation/Obligation.js +1 -1
- package/src/components/molecules/obligation/icons/AccountBillIcon.js +14 -79
- package/src/components/molecules/obligation/icons/AccountConstructionIcon.js +14 -89
- package/src/components/molecules/obligation/icons/AccountDentalIcon.js +13 -85
- package/src/components/molecules/obligation/icons/AccountElectricIcon.js +13 -90
- package/src/components/molecules/obligation/icons/AccountGarbageIcon.js +14 -84
- package/src/components/molecules/obligation/icons/AccountGasIcon.js +13 -85
- package/src/components/molecules/obligation/icons/AccountGenericIcon.js +14 -79
- package/src/components/molecules/obligation/icons/AccountMedicalIcon.js +14 -84
- package/src/components/molecules/obligation/icons/AccountWaterIcon.js +14 -84
- package/src/components/molecules/obligation/icons/PropertyApartmentIcon.js +13 -90
- package/src/components/molecules/obligation/icons/PropertyBusinessIcon.js +13 -83
- package/src/components/molecules/obligation/icons/PropertyCarIcon.js +12 -89
- package/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.js +12 -90
- package/src/components/molecules/obligation/icons/PropertyGarageIcon.js +12 -86
- package/src/components/molecules/obligation/icons/PropertyLandIcon.js +12 -89
- package/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.js +12 -89
- package/src/components/molecules/obligation/icons/PropertyPersonalIcon.js +14 -84
- package/src/components/molecules/obligation/icons/PropertyStorefrontIcon.js +12 -90
- package/src/components/molecules/obligation/icons/index.js +40 -18
- package/src/components/molecules/obligation/modules/IconModule.js +8 -3
- package/src/components/molecules/payment-form-card/PaymentFormCard.js +1 -1
- package/src/components/molecules/payment-form-card/PaymentFormCard.stories.js +10 -1
- package/src/util/general.js +2 -2
|
@@ -1,98 +1,21 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
|
|
3
|
-
const PropertyApartmentIcon = () => (
|
|
3
|
+
const PropertyApartmentIcon = ({ color }) => (
|
|
4
4
|
<svg
|
|
5
|
-
width="
|
|
6
|
-
height="
|
|
7
|
-
viewBox="0 0
|
|
8
|
-
|
|
5
|
+
width="48"
|
|
6
|
+
height="48"
|
|
7
|
+
viewBox="0 0 48 48"
|
|
8
|
+
fill="none"
|
|
9
9
|
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
11
10
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
id="apt-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="apt-Profile-/-Icons"
|
|
59
|
-
stroke="none"
|
|
60
|
-
strokeWidth="1"
|
|
61
|
-
fill="none"
|
|
62
|
-
fillRule="evenodd"
|
|
63
|
-
>
|
|
64
|
-
<g id="Outlined" transform="translate(7.000000, -456.000000)">
|
|
65
|
-
<g
|
|
66
|
-
id="Potentail-future-property"
|
|
67
|
-
transform="translate(0.000000, 231.000000)"
|
|
68
|
-
>
|
|
69
|
-
<g
|
|
70
|
-
id="apt-Profile-Obligation-Icon-/-Property---02-Apt-or-Condo"
|
|
71
|
-
transform="translate(0.000000, 230.000000)"
|
|
72
|
-
>
|
|
73
|
-
<g id="Oval-Copy">
|
|
74
|
-
<use
|
|
75
|
-
fill="black"
|
|
76
|
-
fillOpacity="1"
|
|
77
|
-
filter="url(#apt-filter-2)"
|
|
78
|
-
xlinkHref="#apt-path-1"
|
|
79
|
-
></use>
|
|
80
|
-
<use
|
|
81
|
-
fill="#FFFFFF"
|
|
82
|
-
fillRule="evenodd"
|
|
83
|
-
xlinkHref="#apt-path-1"
|
|
84
|
-
></use>
|
|
85
|
-
</g>
|
|
86
|
-
<path
|
|
87
|
-
d="M47.9999332,49.9999905 L47.9999332,48.7499934 C47.9999332,48.5416609 47.9270164,48.3645774 47.7811838,48.2187447 C47.6353511,48.072912 47.4582675,47.9999952 47.249935,47.9999952 L47.249935,47.9999952 L45.999938,47.9999952 L45.999938,19.5000668 C45.999938,19.0833972 45.8541053,18.729232 45.5624391,18.4375657 C45.2707728,18.1458994 44.9166076,18.0000668 44.4999416,18.0000668 L44.4999416,18.0000668 L23.5,18.0000668 C23.0833257,18.0000668 22.7291605,18.1458994 22.4374942,18.4375657 C22.1458279,18.729232 22,19.0833972 22,19.5000668 L22,19.5000668 L22,47.9999952 L20.7499982,47.9999952 C20.5416657,47.9999952 20.3645821,48.072912 20.2187495,48.2187447 C20.0729168,48.3645774 20,48.5416609 20,48.7499934 L20,48.7499934 L20,49.9999905 L47.9999332,49.9999905 Z M31.2499732,26.0000572 L28.7499791,26.0000572 C28.5416466,26.0000572 28.3645631,25.9271309 28.2187304,25.7812982 C28.0728977,25.6354655 27.9999809,25.458382 27.9999809,25.2500495 L27.9999809,25.2500495 L27.9999809,22.7500554 C27.9999809,22.5417229 28.0728977,22.3646394 28.2187304,22.2188067 C28.3645631,22.072974 28.5416466,22.0000572 28.7499791,22.0000572 L28.7499791,22.0000572 L31.2499732,22.0000572 C31.4583057,22.0000572 31.6353892,22.072974 31.7812219,22.2188067 C31.9270546,22.3646394 31.9999809,22.5417229 31.9999809,22.7500554 L31.9999809,22.7500554 L31.9999809,25.2500495 C31.9999809,25.458382 31.9270546,25.6354655 31.7812219,25.7812982 C31.6353892,25.9271309 31.4583057,26.0000572 31.2499732,26.0000572 L31.2499732,26.0000572 Z M39.2499541,26.0000572 L36.7499601,26.0000572 C36.5416275,26.0000572 36.364544,25.9271309 36.2187113,25.7812982 C36.0728787,25.6354655 35.9999619,25.458382 35.9999619,25.2500495 L35.9999619,25.2500495 L35.9999619,22.7500554 C35.9999619,22.5417229 36.0728787,22.3646394 36.2187113,22.2188067 C36.364544,22.072974 36.5416275,22.0000572 36.7499601,22.0000572 L36.7499601,22.0000572 L39.2499541,22.0000572 C39.4582866,22.0000572 39.6353702,22.072974 39.7812028,22.2188067 C39.9270355,22.3646394 39.9999619,22.5417229 39.9999619,22.7500554 L39.9999619,22.7500554 L39.9999619,25.2500495 C39.9999619,25.458382 39.9270355,25.6354655 39.7812028,25.7812982 C39.6353702,25.9271309 39.4582866,26.0000572 39.2499541,26.0000572 L39.2499541,26.0000572 Z M31.2499732,32.0000429 L28.7499791,32.0000429 C28.5416466,32.0000429 28.3645631,31.9271166 28.2187304,31.7812839 C28.0728977,31.6354512 27.9999809,31.4583677 27.9999809,31.2500352 L27.9999809,31.2500352 L27.9999809,28.7500411 C27.9999809,28.5417086 28.0728977,28.3646251 28.2187304,28.2187924 C28.3645631,28.0729597 28.5416466,28.0000429 28.7499791,28.0000429 L28.7499791,28.0000429 L31.2499732,28.0000429 C31.4583057,28.0000429 31.6353892,28.0729597 31.7812219,28.2187924 C31.9270546,28.3646251 31.9999809,28.5417086 31.9999809,28.7500411 L31.9999809,28.7500411 L31.9999809,31.2500352 C31.9999809,31.4583677 31.9270546,31.6354512 31.7812219,31.7812839 C31.6353892,31.9271166 31.4583057,32.0000429 31.2499732,32.0000429 L31.2499732,32.0000429 Z M39.2499541,32.0000429 L36.7499601,32.0000429 C36.5416275,32.0000429 36.364544,31.9271166 36.2187113,31.7812839 C36.0728787,31.6354512 35.9999619,31.4583677 35.9999619,31.2500352 L35.9999619,31.2500352 L35.9999619,28.7500411 C35.9999619,28.5417086 36.0728787,28.3646251 36.2187113,28.2187924 C36.364544,28.0729597 36.5416275,28.0000429 36.7499601,28.0000429 L36.7499601,28.0000429 L39.2499541,28.0000429 C39.4582866,28.0000429 39.6353702,28.0729597 39.7812028,28.2187924 C39.9270355,28.3646251 39.9999619,28.5417086 39.9999619,28.7500411 L39.9999619,28.7500411 L39.9999619,31.2500352 C39.9999619,31.4583677 39.9270355,31.6354512 39.7812028,31.7812839 C39.6353702,31.9271166 39.4582866,32.0000429 39.2499541,32.0000429 L39.2499541,32.0000429 Z M31.2499732,38.0000286 L28.7499791,38.0000286 C28.5416466,38.0000286 28.3645631,37.9271023 28.2187304,37.7812696 C28.0728977,37.6354369 27.9999809,37.4583534 27.9999809,37.2500209 L27.9999809,37.2500209 L27.9999809,34.7500268 C27.9999809,34.5416943 28.0728977,34.3646108 28.2187304,34.2187781 C28.3645631,34.0729454 28.5416466,34.0000286 28.7499791,34.0000286 L28.7499791,34.0000286 L31.2499732,34.0000286 C31.4583057,34.0000286 31.6353892,34.0729454 31.7812219,34.2187781 C31.9270546,34.3646108 31.9999809,34.5416943 31.9999809,34.7500268 L31.9999809,34.7500268 L31.9999809,37.2500209 C31.9999809,37.4583534 31.9270546,37.6354369 31.7812219,37.7812696 C31.6353892,37.9271023 31.4583057,38.0000286 31.2499732,38.0000286 L31.2499732,38.0000286 Z M39.2499541,38.0000286 L36.7499601,38.0000286 C36.5416275,38.0000286 36.364544,37.9271023 36.2187113,37.7812696 C36.0728787,37.6354369 35.9999619,37.4583534 35.9999619,37.2500209 L35.9999619,37.2500209 L35.9999619,34.7500268 C35.9999619,34.5416943 36.0728787,34.3646108 36.2187113,34.2187781 C36.364544,34.0729454 36.5416275,34.0000286 36.7499601,34.0000286 L36.7499601,34.0000286 L39.2499541,34.0000286 C39.4582866,34.0000286 39.6353702,34.0729454 39.7812028,34.2187781 C39.9270355,34.3646108 39.9999619,34.5416943 39.9999619,34.7500268 L39.9999619,34.7500268 L39.9999619,37.2500209 C39.9999619,37.4583534 39.9270355,37.6354369 39.7812028,37.7812696 C39.6353702,37.9271023 39.4582866,38.0000286 39.2499541,38.0000286 L39.2499541,38.0000286 Z M35.9999714,47.9999952 L31.9999714,47.9999952 L31.9999714,42.7500077 C31.9999714,42.5416752 32.0728882,42.3645917 32.2187209,42.218759 C32.3645535,42.0729263 32.5416371,42.0000095 32.7499696,42.0000095 L32.7499696,42.0000095 L35.2499636,42.0000095 C35.4582962,42.0000095 35.6353797,42.0729263 35.7812124,42.218759 C35.927045,42.3645917 35.9999714,42.5416752 35.9999714,42.7500077 L35.9999714,42.7500077 L35.9999714,47.9999952 Z"
|
|
88
|
-
id="b"
|
|
89
|
-
fill="#292A33"
|
|
90
|
-
fillRule="nonzero"
|
|
91
|
-
></path>
|
|
92
|
-
</g>
|
|
93
|
-
</g>
|
|
94
|
-
</g>
|
|
95
|
-
</g>
|
|
11
|
+
<path
|
|
12
|
+
d="M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z"
|
|
13
|
+
fill={color}
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
d="M33.3812 35.15V34.2848C33.3812 34.1406 33.3308 34.018 33.2298 33.917C33.1289 33.8161 33.0063 33.7656 32.8621 33.7656H31.9969V14.0383C31.9969 13.7499 31.8959 13.5047 31.694 13.3028C31.4922 13.1009 31.247 13 30.9586 13H16.4227C16.1342 13 15.8891 13.1009 15.6872 13.3028C15.4853 13.5047 15.3844 13.7499 15.3844 14.0383V33.7656H14.5191C14.3749 33.7656 14.2524 33.8161 14.1514 33.917C14.0505 34.018 14 34.1406 14 34.2848V35.15H33.3812ZM21.7871 18.5375H20.0566C19.9124 18.5375 19.7899 18.487 19.6889 18.3861C19.588 18.2851 19.5375 18.1626 19.5375 18.0184V16.2879C19.5375 16.1437 19.588 16.0211 19.6889 15.9202C19.7899 15.8192 19.9124 15.7687 20.0566 15.7687H21.7871C21.9313 15.7687 22.0539 15.8192 22.1548 15.9202C22.2558 16.0211 22.3063 16.1437 22.3063 16.2879V18.0184C22.3063 18.1626 22.2558 18.2851 22.1548 18.3861C22.0539 18.487 21.9313 18.5375 21.7871 18.5375ZM27.3246 18.5375H25.5941C25.4499 18.5375 25.3274 18.487 25.2264 18.3861C25.1255 18.2851 25.075 18.1626 25.075 18.0184V16.2879C25.075 16.1437 25.1255 16.0211 25.2264 15.9202C25.3274 15.8192 25.4499 15.7687 25.5941 15.7687H27.3246C27.4688 15.7687 27.5914 15.8192 27.6923 15.9202C27.7933 16.0211 27.8438 16.1437 27.8438 16.2879V18.0184C27.8438 18.1626 27.7933 18.2851 27.6923 18.3861C27.5914 18.487 27.4688 18.5375 27.3246 18.5375ZM21.7871 22.6906H20.0566C19.9124 22.6906 19.7899 22.6402 19.6889 22.5392C19.588 22.4383 19.5375 22.3157 19.5375 22.1715V20.441C19.5375 20.2968 19.588 20.1742 19.6889 20.0733C19.7899 19.9723 19.9124 19.9219 20.0566 19.9219H21.7871C21.9313 19.9219 22.0539 19.9723 22.1548 20.0733C22.2558 20.1742 22.3063 20.2968 22.3063 20.441V22.1715C22.3063 22.3157 22.2558 22.4383 22.1548 22.5392C22.0539 22.6402 21.9313 22.6906 21.7871 22.6906ZM27.3246 22.6906H25.5941C25.4499 22.6906 25.3274 22.6402 25.2264 22.5392C25.1255 22.4383 25.075 22.3157 25.075 22.1715V20.441C25.075 20.2968 25.1255 20.1742 25.2264 20.0733C25.3274 19.9723 25.4499 19.9219 25.5941 19.9219H27.3246C27.4688 19.9219 27.5914 19.9723 27.6923 20.0733C27.7933 20.1742 27.8438 20.2968 27.8438 20.441V22.1715C27.8438 22.3157 27.7933 22.4383 27.6923 22.5392C27.5914 22.6402 27.4688 22.6906 27.3246 22.6906ZM21.7871 26.8438H20.0566C19.9124 26.8438 19.7899 26.7933 19.6889 26.6923C19.588 26.5914 19.5375 26.4688 19.5375 26.3246V24.5941C19.5375 24.4499 19.588 24.3274 19.6889 24.2264C19.7899 24.1255 19.9124 24.075 20.0566 24.075H21.7871C21.9313 24.075 22.0539 24.1255 22.1548 24.2264C22.2558 24.3274 22.3063 24.4499 22.3063 24.5941V26.3246C22.3063 26.4688 22.2558 26.5914 22.1548 26.6923C22.0539 26.7933 21.9313 26.8438 21.7871 26.8438ZM27.3246 26.8438H25.5941C25.4499 26.8438 25.3274 26.7933 25.2264 26.6923C25.1255 26.5914 25.075 26.4688 25.075 26.3246V24.5941C25.075 24.4499 25.1255 24.3274 25.2264 24.2264C25.3274 24.1255 25.4499 24.075 25.5941 24.075H27.3246C27.4688 24.075 27.5914 24.1255 27.6923 24.2264C27.7933 24.3274 27.8438 24.4499 27.8438 24.5941V26.3246C27.8438 26.4688 27.7933 26.5914 27.6923 26.6923C27.5914 26.7933 27.4688 26.8438 27.3246 26.8438ZM25.075 33.7656H22.3063V30.1316C22.3063 29.9874 22.3567 29.8649 22.4577 29.7639C22.5586 29.663 22.6812 29.6125 22.8254 29.6125H24.5559C24.7001 29.6125 24.8226 29.663 24.9236 29.7639C25.0245 29.8649 25.075 29.9874 25.075 30.1316V33.7656Z"
|
|
17
|
+
fill="#FEFEFE"
|
|
18
|
+
/>
|
|
96
19
|
</svg>
|
|
97
20
|
);
|
|
98
21
|
|
|
@@ -2,92 +2,22 @@ import React from "react";
|
|
|
2
2
|
|
|
3
3
|
const PropertyBusinessIcon = () => (
|
|
4
4
|
<svg
|
|
5
|
-
width="
|
|
6
|
-
height="
|
|
7
|
-
viewBox="0 0
|
|
8
|
-
|
|
5
|
+
width="48"
|
|
6
|
+
height="48"
|
|
7
|
+
viewBox="0 0 48 48"
|
|
8
|
+
fill="none"
|
|
9
9
|
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
11
10
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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-business-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="PropertyBusiness"
|
|
64
|
-
stroke="none"
|
|
65
|
-
strokeWidth="1"
|
|
66
|
-
fill="none"
|
|
11
|
+
<path
|
|
12
|
+
d="M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z"
|
|
13
|
+
fill="#3B5BDB"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
67
16
|
fillRule="evenodd"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
fill="black"
|
|
73
|
-
fillOpacity="1"
|
|
74
|
-
filter="url(#property-business-filter-2)"
|
|
75
|
-
xlinkHref="#property-business-path-1"
|
|
76
|
-
></use>
|
|
77
|
-
<use
|
|
78
|
-
fill="#FFFFFF"
|
|
79
|
-
fillRule="evenodd"
|
|
80
|
-
xlinkHref="#property-business-path-1"
|
|
81
|
-
></use>
|
|
82
|
-
</g>
|
|
83
|
-
<path
|
|
84
|
-
d="M48.4999273,47.9999952 C48.9165933,47.9999952 49.2707585,47.8541626 49.5624247,47.5624963 C49.854091,47.27083 49.9999237,46.9166648 49.9999237,46.4999988 L49.9999237,46.4999988 L49.9999237,29.5000393 C49.9999237,28.9167077 49.7395073,28.4792088 49.2186756,28.1875425 C48.6978438,27.8958762 48.187428,27.9167101 47.6874292,28.2500423 L47.6874292,28.2500423 L38.9999499,33.7500292 L38.9999499,29.5000393 C38.9999499,28.9167077 38.7395336,28.4792088 38.2187018,28.1875425 C37.69787,27.8958762 37.1874543,27.9167101 36.6874554,28.2500423 L36.6874554,28.2500423 L27.9999762,33.7500292 L27.9999762,21.500062 C27.9999762,21.0833924 27.8541435,20.7292272 27.5624772,20.4375609 C27.2708109,20.1458947 26.9166457,20.000062 26.4999797,20.000062 L26.4999797,20.000062 L19.5,20.000062 C19.0833304,20.000062 18.7291652,20.1458947 18.437499,20.4375609 C18.1458327,20.7292272 18,21.0833924 18,21.500062 L18,21.500062 L18,46.4999988 C18,46.9166648 18.1458327,47.27083 18.437499,47.5624963 C18.7291652,47.8541626 19.0833304,47.9999952 19.5,47.9999952 L19.5,47.9999952 L48.4999273,47.9999952 Z"
|
|
85
|
-
id="i"
|
|
86
|
-
fill="#292A33"
|
|
87
|
-
fillRule="nonzero"
|
|
88
|
-
></path>
|
|
89
|
-
</g>
|
|
90
|
-
</g>
|
|
17
|
+
clipRule="evenodd"
|
|
18
|
+
d="M16.3134 14.209V16H14.0746V14.209H16.3134ZM16.3134 14.209H18.5522C18.8507 14.209 19.1045 14.3134 19.3134 14.5224C19.5224 14.7313 19.6269 14.9851 19.6269 15.2836V24.0597L25.8507 20.1194C26.2089 19.8806 26.5746 19.8657 26.9477 20.0746C27.3209 20.2836 27.5074 20.597 27.5074 21.0149V24.0597L33.7313 20.1194C34.0895 19.8806 34.4552 19.8657 34.8283 20.0746C35.2014 20.2836 35.388 20.597 35.388 21.0149V33.194C35.388 33.4925 35.2835 33.7462 35.0746 33.9552C34.8656 34.1641 34.6119 34.2686 34.3134 34.2686H13.5373C13.2388 34.2686 12.9851 34.1641 12.7761 33.9552C12.5672 33.7462 12.4627 33.4925 12.4627 33.194V15.2836C12.4627 14.9851 12.5672 14.7313 12.7761 14.5224C12.9851 14.3134 13.2388 14.209 13.5373 14.209H14.0746V13.8955H16.3134V14.209Z"
|
|
19
|
+
fill="#FEFEFE"
|
|
20
|
+
/>
|
|
91
21
|
</svg>
|
|
92
22
|
);
|
|
93
23
|
|
|
@@ -2,97 +2,20 @@ import React from "react";
|
|
|
2
2
|
|
|
3
3
|
const PropertyCarIcon = () => (
|
|
4
4
|
<svg
|
|
5
|
-
width="
|
|
6
|
-
height="
|
|
7
|
-
viewBox="0 0
|
|
8
|
-
|
|
5
|
+
width="48"
|
|
6
|
+
height="48"
|
|
7
|
+
viewBox="0 0 48 48"
|
|
8
|
+
fill="none"
|
|
9
9
|
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
11
10
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
id="car-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="car-Profile-/-Icons"
|
|
59
|
-
stroke="none"
|
|
60
|
-
strokeWidth="1"
|
|
61
|
-
fill="none"
|
|
62
|
-
fillRule="evenodd"
|
|
63
|
-
>
|
|
64
|
-
<g id="Outlined" transform="translate(7.000000, -686.000000)">
|
|
65
|
-
<g
|
|
66
|
-
id="Potentail-future-property"
|
|
67
|
-
transform="translate(0.000000, 231.000000)"
|
|
68
|
-
>
|
|
69
|
-
<g
|
|
70
|
-
id="car-Profile-Obligation-Icon-/-Property---Private-Car"
|
|
71
|
-
transform="translate(0.000000, 460.000000)"
|
|
72
|
-
>
|
|
73
|
-
<g id="Oval-Copy-6">
|
|
74
|
-
<use
|
|
75
|
-
fill="black"
|
|
76
|
-
fillOpacity="1"
|
|
77
|
-
filter="url(#car-filter-2)"
|
|
78
|
-
xlinkHref="#car-path-1"
|
|
79
|
-
></use>
|
|
80
|
-
<use
|
|
81
|
-
fill="#FFFFFF"
|
|
82
|
-
fillRule="evenodd"
|
|
83
|
-
xlinkHref="#car-path-1"
|
|
84
|
-
></use>
|
|
85
|
-
</g>
|
|
86
|
-
<path
|
|
87
|
-
d="M23.9999857,46 C24.5416514,46 25.0104003,45.8020835 25.4062323,45.4062514 C25.8020644,45.0104193 25.9999809,44.5416705 25.9999809,44.0000048 L25.9999809,44.0000048 L25.9999809,42.0000095 L41.9999428,42.0000095 L41.9999428,44.0000048 C41.9999428,44.5416705 42.1978593,45.0104193 42.5936914,45.4062514 C42.9895234,45.8020835 43.4582723,46 43.999938,46 L43.999938,46 L45.9999332,46 C46.5415989,46 47.0103478,45.8020835 47.4061799,45.4062514 C47.802012,45.0104193 47.9999285,44.5416705 47.9999285,44.0000048 L47.9999285,44.0000048 L47.9999285,40.6250128 C48.6665939,39.8750146 48.9999261,39.0000167 48.9999261,38.0000191 L48.9999261,38.0000191 L48.9999261,35.0000262 C48.9999261,33.7916961 48.5415942,32.7916985 47.6249294,32.0000334 L47.6249294,32.0000334 L48.8749264,32.0000334 C49.041593,32.0000334 49.1978426,31.9479505 49.3436753,31.8437838 C49.4895079,31.739617 49.5832577,31.6042013 49.6249246,31.4375347 L49.6249246,31.4375347 L49.9999237,29.9375383 C50.0415906,29.6875389 49.9895067,29.4687894 49.8436741,29.2812899 C49.6978414,29.0937903 49.4999249,29.0000405 49.2499255,29.0000405 L49.2499255,29.0000405 L45.4999344,29.0000405 L44.437437,26.3750468 C43.9374382,25.041717 43.0936902,23.9792195 41.906193,23.1875544 C40.7186958,22.3958893 39.395782,22.0000572 37.9374525,22.0000572 L37.9374525,22.0000572 L30.0624712,22.0000572 C28.6041417,22.0000572 27.2812279,22.3958893 26.0937307,23.1875544 C24.9062335,23.9792195 24.0624855,25.041717 23.5624867,26.3750468 L23.5624867,26.3750468 L22.4999893,29.0000405 L18.7499982,29.0000405 C18.4999988,29.0000405 18.3020823,29.0937903 18.1562496,29.2812899 C18.010417,29.4687894 17.9583331,29.6875389 18,29.9375383 L18,29.9375383 L18.3749991,31.4375347 C18.416666,31.6042013 18.5104158,31.739617 18.6562484,31.8437838 C18.8020811,31.9479505 18.9583307,32.0000334 19.1249973,32.0000334 L19.1249973,32.0000334 L20.3749943,32.0000334 C19.4583295,32.7916985 18.9999976,33.7916961 18.9999976,35.0000262 L18.9999976,35.0000262 L18.9999976,38.0000191 C18.9999976,39.0000167 19.3333298,39.8750146 19.9999952,40.6250128 L19.9999952,40.6250128 L19.9999952,44.0000048 C19.9999952,44.5416705 20.1979117,45.0104193 20.5937438,45.4062514 C20.9895759,45.8020835 21.4583248,46 21.9999905,46 L21.9999905,46 L23.9999857,46 Z M41.9999428,31.0000358 L25.9999809,31.0000358 L27.2499779,27.8750432 C27.4583105,27.3333775 27.8228936,26.8854626 28.3437253,26.5312964 C28.8645571,26.1771303 29.4374727,26.0000477 30.0624712,26.0000477 L30.0624712,26.0000477 L37.9999523,26.0000477 C38.5832839,26.0000477 39.1353666,26.1771303 39.6561984,26.5312964 C40.1770301,26.8854626 40.5416132,27.3333775 40.7499458,27.8750432 L40.7499458,27.8750432 L41.9999428,31.0000358 Z M24.4374847,38.0000286 L23.9999905,38.0000286 C23.4166541,38.0000286 22.9374882,37.8125195 22.5624891,37.4375204 C22.18749,37.0625213 21.9999905,36.5833555 21.9999905,36.0000286 C21.9999905,35.4166922 22.18749,34.9375264 22.5624891,34.5625273 C22.9374882,34.1875282 23.4166541,34.0000286 23.9999905,34.0000286 C24.5833173,34.0000286 25.2291497,34.3437778 25.9374811,35.0312762 C26.6458124,35.7187745 26.9999785,36.3750229 26.9999785,37.0000286 C26.9999785,37.4583534 26.7291462,37.7500197 26.1874805,37.8750194 C25.8541483,37.9583522 25.2708157,38.0000286 24.4374847,38.0000286 L24.4374847,38.0000286 Z M43.9999452,38.0000286 L43.5624391,38.0000286 C42.729108,38.0000286 42.1457754,37.9583522 41.8124432,37.8750194 C41.2707775,37.7500197 40.9999452,37.4583534 40.9999452,37.0000286 C40.9999452,36.3750229 41.3541113,35.7187745 42.0624426,35.0312762 C42.770774,34.3437778 43.4166064,34.0000286 43.9999452,34.0000286 C44.5832696,34.0000286 45.0624355,34.1875282 45.4374346,34.5625273 C45.8124337,34.9375264 45.9999332,35.4166922 45.9999332,36.0000286 C45.9999332,36.5833555 45.8124337,37.0625213 45.4374346,37.4375204 C45.0624355,37.8125195 44.5832696,38.0000286 43.9999452,38.0000286 L43.9999452,38.0000286 Z"
|
|
88
|
-
id="c"
|
|
89
|
-
fill="#292A33"
|
|
90
|
-
fillRule="nonzero"
|
|
91
|
-
></path>
|
|
92
|
-
</g>
|
|
93
|
-
</g>
|
|
94
|
-
</g>
|
|
95
|
-
</g>
|
|
11
|
+
<path
|
|
12
|
+
d="M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z"
|
|
13
|
+
fill="#3B5BDB"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
d="M36.8919 19.7729H33.7284L32.8492 17.5748C31.9457 15.3149 29.7893 13.855 27.3551 13.855H20.6446C18.2108 13.855 16.054 15.3149 15.1499 17.5748L14.2707 19.7729H11.1077C10.6951 19.7729 10.3923 20.1607 10.4927 20.5607L10.8097 21.8288C10.88 22.111 11.1336 22.3091 11.4248 22.3091H12.4852C11.7756 22.9289 11.3186 23.8298 11.3186 24.8454V27.3816C11.3186 28.2334 11.6441 29.0022 12.164 29.5972V32.4541C12.164 33.3878 12.9212 34.145 13.8548 34.145H15.5457C16.4793 34.145 17.2365 33.3878 17.2365 32.4541V30.7633H30.7631V32.4541C30.7631 33.3878 31.5203 34.145 32.454 34.145H34.1448C35.0785 34.145 35.8356 33.3878 35.8356 32.4541V29.5972C36.3556 29.0027 36.6811 28.2339 36.6811 27.3816V24.8454C36.6811 23.8298 36.224 22.9289 35.5149 22.3091H36.5754C36.8665 22.3091 37.1202 22.111 37.1904 21.8288L37.5075 20.5607C37.6073 20.1607 37.3046 19.7729 36.8919 19.7729ZM18.2896 18.8308C18.6747 17.8681 19.6073 17.2366 20.6446 17.2366H27.3551C28.3923 17.2366 29.3249 17.8681 29.7101 18.8308L30.7631 21.4637H17.2365L18.2896 18.8308ZM15.5457 27.3711C14.5312 27.3711 13.8548 26.6969 13.8548 25.6855C13.8548 24.6742 14.5312 24 15.5457 24C16.5601 24 18.0819 25.517 18.0819 26.5283C18.0819 27.5396 16.5601 27.3711 15.5457 27.3711ZM32.454 27.3711C31.4395 27.3711 29.9177 27.5396 29.9177 26.5283C29.9177 25.517 31.4395 24 32.454 24C33.4685 24 34.1448 24.6742 34.1448 25.6855C34.1448 26.6969 33.4685 27.3711 32.454 27.3711Z"
|
|
17
|
+
fill="#FEFEFE"
|
|
18
|
+
/>
|
|
96
19
|
</svg>
|
|
97
20
|
);
|
|
98
21
|
|
|
@@ -2,98 +2,20 @@ import React from "react";
|
|
|
2
2
|
|
|
3
3
|
const PropertyCommercialVehicleIcon = () => (
|
|
4
4
|
<svg
|
|
5
|
-
width="
|
|
6
|
-
height="
|
|
7
|
-
viewBox="0 0
|
|
8
|
-
|
|
5
|
+
width="48"
|
|
6
|
+
height="48"
|
|
7
|
+
viewBox="0 0 48 48"
|
|
8
|
+
fill="none"
|
|
9
9
|
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
11
10
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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>
|
|
11
|
+
<path
|
|
12
|
+
d="M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z"
|
|
13
|
+
fill="#3B5BDB"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
d="M30.7656 35.15C31.9193 35.15 32.8999 34.7462 33.7074 33.9387C34.515 33.1311 34.9188 32.1505 34.9188 30.9969H36.9953C37.1972 30.9969 37.363 30.932 37.4928 30.8022C37.6226 30.6724 37.6875 30.5066 37.6875 30.3047V28.9203C37.6875 28.7184 37.6226 28.5526 37.4928 28.4228C37.363 28.293 37.1972 28.2281 36.9953 28.2281H36.3031V23.5559C36.3031 22.979 36.1012 22.4887 35.6975 22.085L31.3713 17.7588C30.9675 17.355 30.4772 17.1531 29.9004 17.1531H27.9969V15.0766C27.9969 14.4997 27.795 14.0094 27.3912 13.6057C26.9874 13.2019 26.4971 13 25.9203 13H12.0766C11.4997 13 11.0094 13.2019 10.6057 13.6057C10.2019 14.0094 10 14.4997 10 15.0766V28.9203C10 29.4971 10.2019 29.9874 10.6057 30.3912C11.0094 30.795 11.4997 30.9969 12.0766 30.9969H12.7688C12.7688 32.1505 13.1725 33.1311 13.9801 33.9387C14.7876 34.7462 15.7682 35.15 16.9219 35.15C18.0755 35.15 19.0561 34.7462 19.8637 33.9387C20.6712 33.1311 21.075 32.1505 21.075 30.9969H26.6125C26.6125 32.1505 27.0163 33.1311 27.8238 33.9387C28.6314 34.7462 29.612 35.15 30.7656 35.15ZM34.2266 24.075H27.9969V19.2297H29.9004L34.2266 23.5559V24.075ZM16.9219 33.0734C16.3451 33.0734 15.8548 32.8715 15.451 32.4678C15.0472 32.064 14.8453 31.5737 14.8453 30.9969C14.8453 30.4201 15.0472 29.9298 15.451 29.526C15.8548 29.1222 16.3451 28.9203 16.9219 28.9203C17.4987 28.9203 17.989 29.1222 18.3928 29.526C18.7965 29.9298 18.9984 30.4201 18.9984 30.9969C18.9984 31.5737 18.7965 32.064 18.3928 32.4678C17.989 32.8715 17.4987 33.0734 16.9219 33.0734ZM30.7656 33.0734C30.1888 33.0734 29.6985 32.8715 29.2947 32.4678C28.891 32.064 28.6891 31.5737 28.6891 30.9969C28.6891 30.4201 28.891 29.9298 29.2947 29.526C29.6985 29.1222 30.1888 28.9203 30.7656 28.9203C31.3424 28.9203 31.8327 29.1222 32.2365 29.526C32.6403 29.9298 32.8422 30.4201 32.8422 30.9969C32.8422 31.5737 32.6403 32.064 32.2365 32.4678C31.8327 32.8715 31.3424 33.0734 30.7656 33.0734Z"
|
|
17
|
+
fill="#FEFEFE"
|
|
18
|
+
/>
|
|
97
19
|
</svg>
|
|
98
20
|
);
|
|
99
21
|
|
|
@@ -2,94 +2,20 @@ import React from "react";
|
|
|
2
2
|
|
|
3
3
|
const PropertyGarageIcon = () => (
|
|
4
4
|
<svg
|
|
5
|
-
width="
|
|
6
|
-
height="
|
|
7
|
-
viewBox="0 0
|
|
8
|
-
|
|
5
|
+
width="48"
|
|
6
|
+
height="48"
|
|
7
|
+
viewBox="0 0 48 48"
|
|
8
|
+
fill="none"
|
|
9
9
|
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
11
10
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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>
|
|
11
|
+
<path
|
|
12
|
+
d="M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z"
|
|
13
|
+
fill="#3B5BDB"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
d="M14.463 34.1481C14.5417 34.1481 14.6138 34.1153 14.6794 34.0497C14.745 33.9841 14.7778 33.912 14.7778 33.8333V24.074C14.7778 23.733 14.9024 23.4379 15.1516 23.1886C15.4008 22.9394 15.7091 22.8148 16.0764 22.8148H31.1087C31.476 22.8148 31.7843 22.9394 32.0335 23.1886C32.2827 23.4379 32.4074 23.733 32.4074 24.074V33.8333C32.4074 33.912 32.4401 33.9841 32.5057 34.0497C32.5713 34.1153 32.6435 34.1481 32.7222 34.1481H35.8703C35.949 34.1481 36.0212 34.1153 36.0867 34.0497C36.1523 33.9841 36.1851 33.912 36.1851 33.8333V20.3356C36.1851 19.9683 36.0802 19.6273 35.8703 19.3125C35.6604 18.9977 35.3719 18.7616 35.0046 18.6042H35.0439L24.3009 14.1574C23.8287 13.9475 23.3565 13.9475 22.8842 14.1574L12.1806 18.6042C11.8133 18.7616 11.5247 18.9977 11.3148 19.3125C11.1049 19.6273 11 19.9683 11 20.3356V33.8333C11 33.912 11.0328 33.9841 11.0984 34.0497C11.164 34.1153 11.2361 34.1481 11.3148 34.1481H14.463ZM30.8333 26.5926C30.912 26.5926 30.9841 26.5598 31.0497 26.4942C31.1153 26.4286 31.1481 26.3565 31.1481 26.2778V24.3889C31.1481 24.3102 31.1153 24.238 31.0497 24.1724C30.9841 24.1068 30.912 24.074 30.8333 24.074H16.3912C16.2863 24.074 16.2075 24.1068 16.1551 24.1724C16.1026 24.238 16.0764 24.3102 16.0764 24.3889V26.2778C16.0764 26.3565 16.1026 26.4286 16.1551 26.4942C16.2075 26.5598 16.2863 26.5926 16.3912 26.5926H30.8333ZM30.8333 30.3703C30.912 30.3703 30.9841 30.3375 31.0497 30.272C31.1153 30.2064 31.1481 30.1342 31.1481 30.0555V28.1666C31.1481 28.0879 31.1153 28.0158 31.0497 27.9502C30.9841 27.8846 30.912 27.8518 30.8333 27.8518H16.3518C16.2731 27.8518 16.201 27.8846 16.1354 27.9502C16.0698 28.0158 16.037 28.0879 16.037 28.1666V30.0555C16.037 30.1342 16.0698 30.2064 16.1354 30.272C16.201 30.3375 16.2731 30.3703 16.3518 30.3703H30.8333ZM30.8333 34.1481C30.912 34.1481 30.9841 34.1153 31.0497 34.0497C31.1153 33.9841 31.1481 33.912 31.1481 33.8333V31.9444C31.1481 31.8657 31.1153 31.7936 31.0497 31.728C30.9841 31.6624 30.912 31.6296 30.8333 31.6296H16.3518C16.2731 31.6296 16.201 31.6624 16.1354 31.728C16.0698 31.7936 16.037 31.8657 16.037 31.9444V33.8333C16.037 33.912 16.0698 33.9841 16.1354 34.0497C16.201 34.1153 16.2731 34.1481 16.3518 34.1481H30.8333Z"
|
|
17
|
+
fill="#FEFEFE"
|
|
18
|
+
/>
|
|
93
19
|
</svg>
|
|
94
20
|
);
|
|
95
21
|
|