@woosmap/ui 3.98.0 → 3.99.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/Icon/Icon.js +21 -3
- package/src/icons/autocomplete-check.svg +1 -1
- package/src/icons/calendar.svg +1 -0
- package/src/icons/cb.svg +1 -0
- package/src/icons/escalator.svg +1 -0
- package/src/icons/gas-pump.svg +1 -0
- package/src/icons/parking.svg +1 -0
- package/src/icons/plane.svg +1 -0
- package/src/icons/restaurant.svg +1 -0
- package/src/icons/service-marker.svg +1 -1
- package/src/icons/shop.svg +1 -0
- package/src/icons/user-profile.svg +1 -1
- package/src/icons/wifi.svg +1 -0
package/package.json
CHANGED
|
@@ -5,10 +5,12 @@ import { ReactComponent as Autocomplete } from '../../icons/autocomplete.svg';
|
|
|
5
5
|
import { ReactComponent as AutocompleteCheck } from '../../icons/autocomplete-check.svg';
|
|
6
6
|
import { ReactComponent as Buildings } from '../../icons/buildings.svg';
|
|
7
7
|
import { ReactComponent as Battery } from '../../icons/battery.svg';
|
|
8
|
+
import { ReactComponent as Calendar } from '../../icons/calendar.svg';
|
|
8
9
|
import { ReactComponent as Care } from '../../icons/care.svg';
|
|
9
10
|
import { ReactComponent as Cars } from '../../icons/cars.svg';
|
|
10
11
|
import { ReactComponent as CheckBig } from '../../icons/check-big.svg';
|
|
11
12
|
import { ReactComponent as CallToAction } from '../../icons/call-to-action.svg';
|
|
13
|
+
import { ReactComponent as Cb } from '../../icons/cb.svg';
|
|
12
14
|
import { ReactComponent as CubeBig } from '../../icons/cube-big.svg';
|
|
13
15
|
import { ReactComponent as CustomersServices } from '../../icons/customers-services.svg';
|
|
14
16
|
import { ReactComponent as Customize } from '../../icons/customize.svg';
|
|
@@ -16,6 +18,8 @@ import { ReactComponent as DeliveryTime } from '../../icons/delivery-time.svg';
|
|
|
16
18
|
import { ReactComponent as Demo } from '../../icons/demo.svg';
|
|
17
19
|
import { ReactComponent as Elephant } from '../../icons/elephant.svg';
|
|
18
20
|
import { ReactComponent as Equalizer } from '../../icons/equalizer.svg';
|
|
21
|
+
import { ReactComponent as Escalator } from '../../icons/escalator.svg';
|
|
22
|
+
import { ReactComponent as GasPump } from '../../icons/gas-pump.svg';
|
|
19
23
|
import { ReactComponent as Gdpr } from '../../icons/gdpr.svg';
|
|
20
24
|
import { ReactComponent as Github } from '../../icons/github.svg';
|
|
21
25
|
import { ReactComponent as Green } from '../../icons/green.svg';
|
|
@@ -49,13 +53,16 @@ import { ReactComponent as MobileRocket } from '../../icons/mobile-rocket.svg';
|
|
|
49
53
|
import { ReactComponent as Notification } from '../../icons/notification.svg';
|
|
50
54
|
import { ReactComponent as NotificationPosition } from '../../icons/notification-position.svg';
|
|
51
55
|
import { ReactComponent as OpenSource } from '../../icons/open-source.svg';
|
|
52
|
-
import { ReactComponent as
|
|
56
|
+
import { ReactComponent as Parking } from '../../icons/parking.svg';
|
|
53
57
|
import { ReactComponent as PieChart } from '../../icons/pie-chart.svg';
|
|
58
|
+
import { ReactComponent as PlaceReview } from '../../icons/place-review.svg';
|
|
59
|
+
import { ReactComponent as Plane } from '../../icons/plane.svg';
|
|
54
60
|
import { ReactComponent as Position } from '../../icons/position.svg';
|
|
55
61
|
import { ReactComponent as PuzzleStar } from '../../icons/puzzle-star.svg';
|
|
56
62
|
import { ReactComponent as Quote } from '../../icons/quote.svg';
|
|
57
63
|
import { ReactComponent as Refresh } from '../../icons/refresh.svg';
|
|
58
64
|
import { ReactComponent as Responsive } from '../../icons/responsive.svg';
|
|
65
|
+
import { ReactComponent as Restaurant } from '../../icons/restaurant.svg';
|
|
59
66
|
import { ReactComponent as SaveTime } from '../../icons/save-time.svg';
|
|
60
67
|
import { ReactComponent as SaveMoney } from '../../icons/save-money.svg';
|
|
61
68
|
import { ReactComponent as Schedule } from '../../icons/schedule.svg';
|
|
@@ -65,6 +72,7 @@ import { ReactComponent as SecurityZone } from '../../icons/security-zone.svg';
|
|
|
65
72
|
import { ReactComponent as ServiceMarker } from '../../icons/service-marker.svg';
|
|
66
73
|
import { ReactComponent as ShakeHand } from '../../icons/shake-hand.svg';
|
|
67
74
|
import { ReactComponent as Shipping } from '../../icons/shipping.svg';
|
|
75
|
+
import { ReactComponent as Shop } from '../../icons/shop.svg';
|
|
68
76
|
import { ReactComponent as Speed } from '../../icons/speed.svg';
|
|
69
77
|
import { ReactComponent as StarBig } from '../../icons/star-big.svg';
|
|
70
78
|
import { ReactComponent as StarFilledBig } from '../../icons/star-filled-big.svg';
|
|
@@ -75,6 +83,7 @@ import { ReactComponent as Travel } from '../../icons/travel.svg';
|
|
|
75
83
|
import { ReactComponent as TshirtMarker } from '../../icons/tshirt-marker.svg';
|
|
76
84
|
import { ReactComponent as UserProfile } from '../../icons/user-profile.svg';
|
|
77
85
|
import { ReactComponent as Wheelchair } from '../../icons/wheelchair.svg';
|
|
86
|
+
import { ReactComponent as Wifi } from '../../icons/wifi.svg';
|
|
78
87
|
import { ReactComponent as World } from '../../icons/world.svg';
|
|
79
88
|
import { ReactComponent as WorldLocation } from '../../icons/world-location.svg';
|
|
80
89
|
import { ReactComponent as WorldTime } from '../../icons/world-time.svg';
|
|
@@ -215,9 +224,11 @@ const WebsiteIcons = {
|
|
|
215
224
|
'autocomplete-check': AutocompleteCheck,
|
|
216
225
|
battery: Battery,
|
|
217
226
|
buildings: Buildings,
|
|
227
|
+
calendar: Calendar,
|
|
218
228
|
care: Care,
|
|
219
229
|
cars: Cars,
|
|
220
230
|
'call-to-action': CallToAction,
|
|
231
|
+
cb: Cb,
|
|
221
232
|
'check-big': CheckBig,
|
|
222
233
|
'cube-big': CubeBig,
|
|
223
234
|
'customers-services': CustomersServices,
|
|
@@ -226,10 +237,12 @@ const WebsiteIcons = {
|
|
|
226
237
|
demo: Demo,
|
|
227
238
|
elephant: Elephant,
|
|
228
239
|
equalizer: Equalizer,
|
|
240
|
+
escalator: Escalator,
|
|
241
|
+
'gas-pump': GasPump,
|
|
229
242
|
gdpr: Gdpr,
|
|
230
|
-
heart: Heart,
|
|
231
243
|
github: Github,
|
|
232
244
|
green: Green,
|
|
245
|
+
heart: Heart,
|
|
233
246
|
'house-insurance': HouseInsurance,
|
|
234
247
|
'indoor-outdoor': IndoorOutdoor,
|
|
235
248
|
integrations: Integrations,
|
|
@@ -259,13 +272,16 @@ const WebsiteIcons = {
|
|
|
259
272
|
notification: Notification,
|
|
260
273
|
'notification-position': NotificationPosition,
|
|
261
274
|
'open-source': OpenSource,
|
|
275
|
+
parking: Parking,
|
|
262
276
|
'pie-chart': PieChart,
|
|
263
277
|
'place-review': PlaceReview,
|
|
278
|
+
plane: Plane,
|
|
264
279
|
position: Position,
|
|
265
280
|
'puzzle-star': PuzzleStar,
|
|
266
281
|
quote: Quote,
|
|
267
282
|
refresh: Refresh,
|
|
268
283
|
responsive: Responsive,
|
|
284
|
+
restaurant: Restaurant,
|
|
269
285
|
'save-money': SaveMoney,
|
|
270
286
|
'save-time': SaveTime,
|
|
271
287
|
schedule: Schedule,
|
|
@@ -275,6 +291,7 @@ const WebsiteIcons = {
|
|
|
275
291
|
'service-marker': ServiceMarker,
|
|
276
292
|
'shake-hand': ShakeHand,
|
|
277
293
|
shipping: Shipping,
|
|
294
|
+
shop: Shop,
|
|
278
295
|
speed: Speed,
|
|
279
296
|
'star-big': StarBig,
|
|
280
297
|
'star-filled-big': StarFilledBig,
|
|
@@ -284,7 +301,8 @@ const WebsiteIcons = {
|
|
|
284
301
|
travel: Travel,
|
|
285
302
|
'tshirt-marker': TshirtMarker,
|
|
286
303
|
'user-profile': UserProfile,
|
|
287
|
-
|
|
304
|
+
wheelchair: Wheelchair,
|
|
305
|
+
wifi: Wifi,
|
|
288
306
|
world: World,
|
|
289
307
|
'world-location': WorldLocation,
|
|
290
308
|
'world-time': WorldTime,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M77.773 31.603H22.227c-5.76 0-10.445-4.686-10.445-10.444s4.686-10.445 10.445-10.445h55.547c5.76 0 10.445 4.686 10.445 10.445s-4.686 10.444-10.445 10.444Zm-55.546-17.89c-4.105 0-7.445 3.34-7.445 7.445s3.34 7.444 7.445 7.444h55.547c4.105 0 7.445-3.34 7.445-7.444s-3.34-7.445-7.445-7.445H22.
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M77.773 31.603H22.227c-5.76 0-10.445-4.686-10.445-10.444s4.686-10.445 10.445-10.445h55.547c5.76 0 10.445 4.686 10.445 10.445s-4.686 10.444-10.445 10.444Zm-55.546-17.89c-4.105 0-7.445 3.34-7.445 7.445s3.34 7.444 7.445 7.444h55.547c4.105 0 7.445-3.34 7.445-7.444s-3.34-7.445-7.445-7.445H22.227Zm56.31 75.574H21.463c-5.339 0-9.682-4.343-9.682-9.682V47.753c0-5.338 4.343-9.681 9.682-9.681h57.074c5.339 0 9.682 4.343 9.682 9.681v31.852c0 5.339-4.343 9.682-9.682 9.682ZM21.463 41.073a6.689 6.689 0 0 0-6.682 6.681v31.852a6.689 6.689 0 0 0 6.682 6.682h57.074a6.689 6.689 0 0 0 6.682-6.682V47.754a6.689 6.689 0 0 0-6.682-6.681H21.463Z"/><path d="M21.307 19.953h21.571v3H21.307zm0 29.551h35.755v3H21.307zm0 11.676h54.179v3H21.307zm0 11.752H50v3H21.307zM69.37 56.865l-5.982-5.982 2.121-2.121 3.861 3.861 6.913-6.913 2.121 2.121-9.034 9.034z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M76.137 15.039H23.863c-4.866 0-8.824 3.959-8.824 8.824v52.273c0 4.865 3.958 8.824 8.824 8.824h52.273c4.866 0 8.824-3.959 8.824-8.824V23.863c0-4.865-3.958-8.824-8.824-8.824Zm-7.238 3v5.034h-5.034v-5.034h5.034Zm-32.763 0v5.034h-5.034v-5.034h5.034Zm-12.272 0h4.238v6.534a1.5 1.5 0 0 0 1.5 1.5h8.034a1.5 1.5 0 0 0 1.5-1.5v-6.534h21.729v6.534a1.5 1.5 0 0 0 1.5 1.5h8.034a1.5 1.5 0 0 0 1.5-1.5v-6.534h4.238a5.83 5.83 0 0 1 5.824 5.824v10.961H18.039V23.863a5.83 5.83 0 0 1 5.824-5.824Zm52.273 63.922H23.863a5.83 5.83 0 0 1-5.824-5.824V37.824h63.922v38.312a5.83 5.83 0 0 1-5.824 5.824Z"/><path d="M70.826 47.559H56.745a1.5 1.5 0 0 0-1.5 1.5V63.14a1.5 1.5 0 0 0 1.5 1.5h14.081a1.5 1.5 0 0 0 1.5-1.5V49.059a1.5 1.5 0 0 0-1.5-1.5Zm-1.5 14.081H58.245V50.559h11.081V61.64Z"/></svg>
|
package/src/icons/cb.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M56.431 48.979h28.543c5.172 0 9.379-4.207 9.379-9.379s-4.208-9.379-9.379-9.379H56.431a1.5 1.5 0 0 0-1.5 1.5v15.758a1.5 1.5 0 0 0 1.5 1.5Zm1.5-15.758h27.043c3.518 0 6.379 2.861 6.379 6.379s-2.862 6.379-6.379 6.379H57.931V33.221ZM84.974 51.892H56.431a1.5 1.5 0 0 0-1.5 1.5v15.759a1.5 1.5 0 0 0 1.5 1.5h28.543c5.172 0 9.379-4.208 9.379-9.38s-4.208-9.379-9.379-9.379Zm0 15.759H57.931V54.892h27.043c3.518 0 6.379 2.862 6.379 6.38s-2.862 6.379-6.379 6.379ZM50.186 48.979a1.5 1.5 0 0 0 1.488-1.688c-1.407-11.15-11.261-19.559-22.92-19.559-12.741 0-23.106 9.989-23.106 22.268s10.366 22.268 23.106 22.268c11.347 0 20.924-7.832 22.772-18.623a1.498 1.498 0 0 0-1.478-1.753H29.336v-2.913h20.85Zm-22.35 5.913h20.347c-2.282 8.43-10.178 14.376-19.429 14.376-11.087 0-20.106-8.644-20.106-19.268s9.02-19.268 20.106-19.268c9.551 0 17.706 6.443 19.652 15.246h-20.57a1.5 1.5 0 0 0-1.5 1.5v5.913a1.5 1.5 0 0 0 1.5 1.5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M83.686 24.56H71.698a14.416 14.416 0 0 0-10.261 4.252L49.099 41.15v-6.561a5.994 5.994 0 1 0-11.988 0v18.55L25.202 65.048a1.102 1.102 0 0 1-.784.324h-8.103c-5.674 0-10.29 4.616-10.29 10.29s4.616 10.29 10.29 10.29h11.072a14.42 14.42 0 0 0 10.262-4.25l36.239-36.237c.206-.206.492-.324.785-.324h9.015c5.674 0 10.29-4.616 10.29-10.29s-4.616-10.29-10.291-10.29Zm0 17.58h-9.015c-1.098 0-2.13.427-2.906 1.203L35.526 79.58a11.44 11.44 0 0 1-8.141 3.371H16.313c-4.02 0-7.29-3.271-7.29-7.29s3.271-7.29 7.29-7.29h8.103a4.08 4.08 0 0 0 2.905-1.203l36.237-36.235a11.433 11.433 0 0 1 8.14-3.372h11.988c4.02 0 7.291 3.27 7.291 7.289s-3.271 7.29-7.29 7.29ZM43.104 27.537a5.994 5.994 0 1 0 0-11.988 5.994 5.994 0 0 0 0 11.988Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M51.719 25.543H24.772a1.5 1.5 0 0 0-1.5 1.5v15.903a1.5 1.5 0 0 0 1.5 1.5h26.946a1.5 1.5 0 0 0 1.5-1.5V27.043a1.5 1.5 0 0 0-1.5-1.5Zm-1.5 15.903H26.272V28.543h23.946v12.903Z"/><path d="m84.318 39.882-4.419-4.419L68.23 23.794a1.5 1.5 0 1 0-2.121 2.121l6.806 6.806c-2.577.656-4.491 2.989-4.491 5.767a5.964 5.964 0 0 0 5.957 5.958 5.907 5.907 0 0 0 2.957-.793v7.8c-.107.313-.107.65 0 .963v25.213c0 2.389-1.943 4.332-4.332 4.332s-4.332-1.943-4.332-4.332V53.076c0-4.41-3.217-8.073-7.426-8.79V25.111c0-5.554-4.519-10.072-10.072-10.072H25.314c-5.554 0-10.072 4.519-10.072 10.072v58.35a1.5 1.5 0 0 0 1.5 1.5h43.007a1.5 1.5 0 0 0 1.5-1.5V47.35c2.542.667 4.426 2.978 4.426 5.726v24.553c0 4.043 3.289 7.332 7.332 7.332s7.332-3.289 7.332-7.332V52.462l3.979-3.979a1.5 1.5 0 0 0 .439-1.061v-6.479c0-.397-.158-.779-.439-1.061ZM58.249 81.961H18.242v-56.85c0-3.899 3.173-7.072 7.072-7.072h25.862c3.899 0 7.072 3.173 7.072 7.072v56.85Zm16.133-40.515c-1.631 0-2.957-1.327-2.957-2.958s1.326-2.957 2.957-2.957 2.957 1.326 2.957 2.957-1.326 2.958-2.957 2.958Zm7.376 5.354-1.419 1.419v-8.075l1.419 1.419V46.8Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50.859 58.946H41.28v22.771H25.828V18.283h25.031c15.542 0 23.313 8.766 23.313 20.422 0 10.482-7.139 20.241-23.313 20.241Zm-1.175-12.289c6.145 0 8.766-3.072 8.766-7.952s-2.621-7.952-8.766-7.952H41.28v15.904h8.404Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M36.768 85.966a2.75 2.75 0 0 1-.647-.077 2.707 2.707 0 0 1-1.955-1.813l-3.304-10.234-2.586.629c-.779.188-1.578-.036-2.144-.602s-.79-1.367-.601-2.144l.628-2.586-10.235-3.304a2.706 2.706 0 0 1-1.812-1.955 2.706 2.706 0 0 1 .723-2.566l1.761-1.761a4.02 4.02 0 0 1 3.036-1.175l11.803.557 12.112-12.113-6.031-6.74L17.21 27.243a2.68 2.68 0 0 1-.126-4.445l.91-.65a9.028 9.028 0 0 1 8.103-1.205l32.411 10.92 11.368-11.369a15.1 15.1 0 0 1 9.006-4.318l2.362-.258a2.578 2.578 0 0 1 2.84 2.839l-.259 2.363a15.1 15.1 0 0 1-4.318 9.007L68.139 41.495l10.92 32.41a9.025 9.025 0 0 1-1.205 8.103l-.65.91c-.52.728-1.312 1.154-2.257 1.12a2.671 2.671 0 0 1-2.188-1.247L59.921 62.485l-6.74-6.03-12.113 12.112.557 11.803a4.034 4.034 0 0 1-1.175 3.036l-1.761 1.761c-.52.52-1.206.8-1.919.8ZM31.77 70.58c.69 0 1.334.445 1.556 1.131l3.558 11.017 1.443-1.443c.204-.204.312-.486.3-.774l-.588-12.465a1.495 1.495 0 0 1 .438-1.131L52.062 53.33a1.503 1.503 0 0 1 2.061-.058l7.954 7.116c.104.093.193.199.268.316l12.695 20.08.373-.521a6.013 6.013 0 0 0 .803-5.401L64.999 41.571a1.499 1.499 0 0 1 .361-1.539l12.026-12.026a12.09 12.09 0 0 0 3.457-7.212l.201-1.836-1.836.2a12.088 12.088 0 0 0-7.211 3.457L59.971 34.642c-.403.404-1 .544-1.539.361L25.139 23.786a6.013 6.013 0 0 0-5.401.803l-.521.373 20.079 12.695c.117.074.224.164.316.268l7.117 7.954a1.5 1.5 0 0 1-.058 2.061L33.086 61.525a1.473 1.473 0 0 1-1.131.438l-12.465-.588c-.304.011-.571.097-.774.3l-1.443 1.443 11.016 3.557a1.641 1.641 0 0 1 1.086 1.939l-.646 2.659 2.658-.646c.128-.031.257-.046.384-.046Zm.329 2.96-.008.003.008-.003Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M35.834 89.498a6.175 6.175 0 0 1-6.167-6.167V63.123l-2.315-1.23a4.557 4.557 0 0 1-2.425-4.034V26.075c0-8.587 6.986-15.573 15.573-15.573a1.5 1.5 0 0 1 1.5 1.5v71.329c0 3.4-2.766 6.167-6.167 6.167Zm3.167-75.907c-6.229.743-11.073 6.059-11.073 12.484v31.783c0 .582.319 1.112.833 1.385l3.112 1.654c.49.26.796.77.796 1.324V83.33c0 1.746 1.42 3.167 3.167 3.167s3.167-1.421 3.167-3.167V13.591ZM61.653 89.498a6.174 6.174 0 0 1-6.166-6.167V45.804a13.43 13.43 0 0 1-7.325-11.98V12.002a1.5 1.5 0 0 1 1.5-1.5 6.723 6.723 0 0 1 6.715 6.715v16.858a.57.57 0 0 0 .172.409.617.617 0 0 0 .413.164c.306-.005.563-.3.563-.643v-19.41c0-1.113.462-2.193 1.268-2.962a4.04 4.04 0 0 1 3.021-1.126c2.185.103 3.896 1.93 3.896 4.161v19.407a.574.574 0 0 0 1.148 0V17.217a6.723 6.723 0 0 1 6.715-6.715 1.5 1.5 0 0 1 1.5 1.5v21.821c0 5.054-2.815 9.638-7.252 11.941V83.33c0 3.4-2.766 6.167-6.167 6.167Zm-10.491-75.68v20.005c0 4.221 2.515 8.005 6.407 9.642.557.234.918.779.918 1.383v38.483c0 1.746 1.42 3.167 3.166 3.167s3.167-1.421 3.167-3.167V44.816a1.5 1.5 0 0 1 .909-1.379 10.447 10.447 0 0 0 6.343-9.614V13.818a3.72 3.72 0 0 0-2.215 3.398v16.858c0 1.971-1.603 3.573-3.574 3.573s-3.574-1.603-3.574-3.573V14.668c0-.615-.465-1.138-1.037-1.165a1.056 1.056 0 0 0-.809.301 1.08 1.08 0 0 0-.339.791v19.411c0 1.974-1.574 3.607-3.508 3.643-.979-.021-1.879-.346-2.569-1.023a3.546 3.546 0 0 1-1.07-2.55V17.217a3.72 3.72 0 0 0-2.215-3.398Z"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path style="fill:none" d="M0 0h100v100H0z"/><path d="M47.176 48.245c0 1.514 1.214 2.655 2.824 2.655s2.824-1.142 2.824-2.655c0-3.993 2.83-7.332 5.825-10.867 3.42-4.035 6.955-8.207 6.955-13.935 0-8.604-7-15.605-15.604-15.605s-15.605 7-15.605 15.605c0 5.728 3.536 9.9 6.955 13.935 2.996 3.535 5.826 6.874 5.826 10.867ZM50 10.838c6.95 0 12.604 5.655 12.604 12.605 0 4.628-3.032 8.207-6.243 11.995-2.776 3.276-5.635 6.648-6.361 10.79-.727-4.141-3.584-7.514-6.361-10.79-3.211-3.788-6.244-7.367-6.244-11.995 0-6.95 5.655-12.605 12.605-12.605Z"/><path d="M50 30.869c3.951 0 7.165-3.214 7.165-7.165S53.951 16.539 50 16.539s-7.165 3.214-7.165 7.165 3.214 7.165 7.165 7.165Zm0-11.329c2.297 0 4.165 1.868 4.165 4.165S52.297 27.87 50 27.87s-4.165-1.868-4.165-4.165S47.703 19.54 50 19.
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path style="fill:none" d="M0 0h100v100H0z"/><path d="M47.176 48.245c0 1.514 1.214 2.655 2.824 2.655s2.824-1.142 2.824-2.655c0-3.993 2.83-7.332 5.825-10.867 3.42-4.035 6.955-8.207 6.955-13.935 0-8.604-7-15.605-15.604-15.605s-15.605 7-15.605 15.605c0 5.728 3.536 9.9 6.955 13.935 2.996 3.535 5.826 6.874 5.826 10.867ZM50 10.838c6.95 0 12.604 5.655 12.604 12.605 0 4.628-3.032 8.207-6.243 11.995-2.776 3.276-5.635 6.648-6.361 10.79-.727-4.141-3.584-7.514-6.361-10.79-3.211-3.788-6.244-7.367-6.244-11.995 0-6.95 5.655-12.605 12.605-12.605Z"/><path d="M50 30.869c3.951 0 7.165-3.214 7.165-7.165S53.951 16.539 50 16.539s-7.165 3.214-7.165 7.165 3.214 7.165 7.165 7.165Zm0-11.329c2.297 0 4.165 1.868 4.165 4.165S52.297 27.87 50 27.87s-4.165-1.868-4.165-4.165S47.703 19.54 50 19.54Zm34.921 33.801c-2.699-2.699-7.09-2.698-9.787 0l-8.932 8.932c-.48-3.351-3.361-5.938-6.842-5.938H41.908a13.65 13.65 0 0 0-8.929 3.327l-6.876 5.951-1.961-3.153-11.655 7.249 14.317 23.02 11.654-7.249-1.461-2.349h19.094a21.168 21.168 0 0 0 15.068-6.242l13.762-13.761c2.697-2.699 2.697-7.089 0-9.787ZM27.767 88.596 16.619 70.671l6.56-4.08 11.148 17.925-6.56 4.08ZM82.8 61.006 69.038 74.767a18.19 18.19 0 0 1-12.947 5.363h-20.96l-7.425-11.939 7.235-6.261a10.646 10.646 0 0 1 6.966-2.596h17.452c2.161 0 3.92 1.758 3.92 3.92s-1.759 3.92-3.92 3.92H48.484v3h10.875c.308 0 .608-.027.905-.066v.066a5.532 5.532 0 0 0 3.887-1.61l13.104-13.103a3.927 3.927 0 0 1 5.545 0 3.926 3.926 0 0 1 0 5.544Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M76.688 14.936a349.96 349.96 0 0 0-44.373-.559c-.031-.006-.06-.018-.092-.022a1.473 1.473 0 0 0-.653.058c-2.736.144-5.469.31-8.195.518-7.139.032-12.936 5.85-12.936 12.995v43.112c0 6.221 4.196 11.746 10.208 13.438l.156.043a42.918 42.918 0 0 0 11.54 1.569h35.315a42.9 42.9 0 0 0 11.542-1.57l.159-.044c6.007-1.69 10.203-7.216 10.203-13.436V28.842c0-7.243-5.655-13.353-12.874-13.906Zm9.433 10.851a1.504 1.504 0 0 0-.253.352 7.985 7.985 0 0 1-7.177 4.436c-3.764 0-6.922-2.61-7.782-6.113.043-.178.057-.365.03-.557l-.889-6.408c2.139.124 4.276.266 6.408.429 4.612.355 8.41 3.599 9.663 7.861Zm-53.544-3.072.747-5.382a346.735 346.735 0 0 1 15.304-.403v7.291c0 4.423-3.598 8.021-8.021 8.021s-8.021-3.598-8.021-8.021c0-.154-.03-.299-.073-.439.039-.351.059-.707.065-1.067Zm19.051-5.783c5.13.024 10.258.165 15.373.416l.691 4.984c-.011.073-.022.146-.022.222 0 .416.028.824.073 1.228-.043.14-.073.285-.073.439 0 4.423-3.598 8.021-8.021 8.021s-8.021-3.598-8.021-8.021v-7.288Zm-28.193.999c.038 0 .077-.002.115-.005 2.238-.172 4.481-.32 6.726-.448l-.89 6.412a1.5 1.5 0 0 0 .005.402c-.797 3.589-4 6.283-7.826 6.283a8.013 8.013 0 0 1-7.392-4.899 1.492 1.492 0 0 0-.341-.496c1.198-4.178 5.044-7.248 9.603-7.248Zm55.034 63.677.329 1.466-.404-1.444a39.875 39.875 0 0 1-10.733 1.458H32.343c-3.655 0-7.266-.489-10.735-1.458l-.153-.043c-4.72-1.328-8.016-5.665-8.016-10.548V29.995a11 11 0 0 0 8.125 3.58c3.744 0 7.053-1.881 9.046-4.743 1.75 3.777 5.567 6.409 9.997 6.409 4.063 0 7.61-2.215 9.521-5.496 1.911 3.28 5.459 5.496 9.521 5.496 4.429 0 8.246-2.632 9.996-6.409 1.993 2.862 5.302 4.743 9.046 4.743 3.032 0 5.833-1.231 7.871-3.322v40.786c0 4.882-3.296 9.22-8.094 10.569Z"/><path d="M74.332 50.485c-15.009 8.709-33.655 8.709-48.664 0a1.5 1.5 0 0 0-1.506 2.596c7.969 4.623 16.903 6.935 25.838 6.935s17.869-2.312 25.838-6.935a1.5 1.5 0 0 0-1.506-2.596Z"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M79.546 23.072h-4.552a1.5 1.5 0 1 0 0 3h4.552a3.375 3.375 0 0 1 3.371 3.37v55.611a3.375 3.375 0 0 1-3.371 3.371H20.454a3.376 3.376 0 0 1-3.371-3.371V29.442a3.374 3.374 0 0 1 3.371-3.37h4.552a1.5 1.5 0 1 0 0-3h-4.552a6.377 6.377 0 0 0-6.371 6.37v55.611a6.378 6.378 0 0 0 6.371 6.371h59.092a6.378 6.378 0 0 0 6.371-6.371V29.442a6.377 6.377 0 0 0-6.371-6.37Z"/><path d="M27.71 69.049h44.58a1.5 1.5 0 1 0 0-3H27.71a1.5 1.5 0 1 0 0
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M79.546 23.072h-4.552a1.5 1.5 0 1 0 0 3h4.552a3.375 3.375 0 0 1 3.371 3.37v55.611a3.375 3.375 0 0 1-3.371 3.371H20.454a3.376 3.376 0 0 1-3.371-3.371V29.442a3.374 3.374 0 0 1 3.371-3.37h4.552a1.5 1.5 0 1 0 0-3h-4.552a6.377 6.377 0 0 0-6.371 6.37v55.611a6.378 6.378 0 0 0 6.371 6.371h59.092a6.378 6.378 0 0 0 6.371-6.371V29.442a6.377 6.377 0 0 0-6.371-6.37Z"/><path d="M27.71 69.049h44.58a1.5 1.5 0 1 0 0-3H27.71a1.5 1.5 0 1 0 0 3Zm11.866 5.969a1.5 1.5 0 1 0 0 3h20.849a1.5 1.5 0 1 0 0-3H39.576Zm-4.627-17.939a1.5 1.5 0 1 0 0 3h30.103a1.5 1.5 0 1 0 0-3H34.949Zm.479-14.14c3.691 3.819 8.854 6.207 14.572 6.207 5.932 0 11.261-2.576 14.974-6.649.142-.109.258-.24.351-.386 3.081-3.559 4.96-8.185 4.96-13.25 0-11.186-9.1-20.285-20.285-20.285s-20.285 9.1-20.285 20.285c0 5.277 2.042 10.075 5.357 13.687.094.148.211.282.356.392ZM50 46.146c-4.573 0-8.726-1.798-11.82-4.708 2.681-4.829 7.244-7.786 12.128-7.786 4.804 0 9.193 2.753 11.918 7.417a17.23 17.23 0 0 1-12.225 5.078Zm-5.2-21.371c0-2.867 2.333-5.2 5.2-5.2s5.2 2.333 5.2 5.2-2.333 5.199-5.2 5.199-5.2-2.332-5.2-5.199ZM50 11.576c9.531 0 17.285 7.754 17.285 17.285 0 3.629-1.129 6.996-3.047 9.78-2.355-3.561-5.669-6.117-9.371-7.281 2.018-1.495 3.334-3.886 3.334-6.584 0-4.521-3.678-8.2-8.2-8.2s-8.2 3.679-8.2 8.2a8.19 8.19 0 0 0 3.523 6.725c-3.689 1.269-6.947 3.92-9.229 7.582-2.113-2.867-3.378-6.395-3.378-10.222 0-9.531 7.754-17.285 17.285-17.285Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M88.164 35.475C77.685 26.001 64.132 20.785 50 20.785s-27.686 5.217-38.164 14.69a1.5 1.5 0 1 0 2.012 2.224C23.774 28.726 36.614 23.784 50 23.784s26.227 4.942 36.152 13.915a1.496 1.496 0 0 0 2.118-.106 1.5 1.5 0 0 0-.106-2.118Z"/><path d="M50 33.708a43.91 43.91 0 0 0-29.501 11.355 1.5 1.5 0 1 0 2.012 2.224c7.548-6.822 17.31-10.58 27.489-10.58s19.941 3.758 27.489 10.58a1.496 1.496 0 0 0 2.118-.106 1.5 1.5 0 0 0-.106-2.118A43.91 43.91 0 0 0 50 33.708ZM50 48.153a29.493 29.493 0 0 0-19.817 7.629 1.5 1.5 0 1 0 2.012 2.224c4.889-4.419 11.212-6.854 17.806-6.854s12.917 2.435 17.806 6.854a1.496 1.496 0 0 0 2.118-.106 1.5 1.5 0 0 0-.106-2.118 29.493 29.493 0 0 0-19.817-7.629ZM50 61.997a15.666 15.666 0 0 0-10.526 4.068 1.5 1.5 0 0 0-.107 2.118l9.521 10.538a1.502 1.502 0 0 0 2.226 0l9.521-10.538a1.5 1.5 0 0 0-.107-2.118 15.668 15.668 0 0 0-10.526-4.068Z"/></svg>
|