@woosmap/ui 3.113.0 → 3.116.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/Card/SimpleCard.styl +4 -2
- package/src/components/Icon/Icon.js +18 -0
- package/src/icons/blog.svg +1 -0
- package/src/icons/book.svg +1 -0
- package/src/icons/chat-conversation.svg +1 -0
- package/src/icons/e-commerce.svg +1 -0
- package/src/icons/electric-charge.svg +1 -1
- package/src/icons/email-contact.svg +1 -0
- package/src/icons/information-round.svg +1 -0
- package/src/icons/institution.svg +1 -0
- package/src/icons/scooter-delivery.svg +1 -0
- package/src/icons/search-user.svg +1 -0
package/package.json
CHANGED
|
@@ -36,10 +36,11 @@
|
|
|
36
36
|
width 100%
|
|
37
37
|
min-width 0
|
|
38
38
|
.inline &
|
|
39
|
-
order
|
|
39
|
+
order 2
|
|
40
40
|
margin-right 1.2rem
|
|
41
41
|
margin-bottom 0
|
|
42
42
|
padding-right 0
|
|
43
|
+
max-width 18rem
|
|
43
44
|
&__subtitle
|
|
44
45
|
ellipsis()
|
|
45
46
|
font-size $fontSizeSmall
|
|
@@ -48,6 +49,7 @@
|
|
|
48
49
|
min-width 0
|
|
49
50
|
.inline &
|
|
50
51
|
order 3
|
|
52
|
+
width auto
|
|
51
53
|
margin-left auto
|
|
52
54
|
&__content
|
|
53
55
|
flexMiddle()
|
|
@@ -65,7 +67,7 @@
|
|
|
65
67
|
position unset
|
|
66
68
|
top unset
|
|
67
69
|
right unset
|
|
68
|
-
order
|
|
70
|
+
order 1
|
|
69
71
|
flex-shrink 0
|
|
70
72
|
margin-right 1.2rem
|
|
71
73
|
.tooltip
|
|
@@ -5,11 +5,14 @@ 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 Blog } from '../../icons/blog.svg';
|
|
9
|
+
import { ReactComponent as Book } from '../../icons/book.svg';
|
|
8
10
|
import { ReactComponent as Calendar } from '../../icons/calendar.svg';
|
|
9
11
|
import { ReactComponent as Care } from '../../icons/care.svg';
|
|
10
12
|
import { ReactComponent as Cars } from '../../icons/cars.svg';
|
|
11
13
|
import { ReactComponent as Cb } from '../../icons/cb.svg';
|
|
12
14
|
import { ReactComponent as ChatLove } from '../../icons/chat-love.svg';
|
|
15
|
+
import { ReactComponent as ChatConversation } from '../../icons/chat-conversation.svg';
|
|
13
16
|
import { ReactComponent as CheckBig } from '../../icons/check-big.svg';
|
|
14
17
|
import { ReactComponent as CallToAction } from '../../icons/call-to-action.svg';
|
|
15
18
|
import { ReactComponent as CubeBig } from '../../icons/cube-big.svg';
|
|
@@ -17,8 +20,10 @@ import { ReactComponent as CustomersServices } from '../../icons/customers-servi
|
|
|
17
20
|
import { ReactComponent as Customize } from '../../icons/customize.svg';
|
|
18
21
|
import { ReactComponent as DeliveryTime } from '../../icons/delivery-time.svg';
|
|
19
22
|
import { ReactComponent as Demo } from '../../icons/demo.svg';
|
|
23
|
+
import { ReactComponent as Ecommerce } from '../../icons/e-commerce.svg';
|
|
20
24
|
import { ReactComponent as ElectricCharge } from '../../icons/electric-charge.svg';
|
|
21
25
|
import { ReactComponent as Elephant } from '../../icons/elephant.svg';
|
|
26
|
+
import { ReactComponent as EmailContact } from '../../icons/email-contact.svg';
|
|
22
27
|
import { ReactComponent as Equalizer } from '../../icons/equalizer.svg';
|
|
23
28
|
import { ReactComponent as Escalator } from '../../icons/escalator.svg';
|
|
24
29
|
import { ReactComponent as Funnel } from '../../icons/funnel.svg';
|
|
@@ -29,6 +34,8 @@ import { ReactComponent as Green } from '../../icons/green.svg';
|
|
|
29
34
|
import { ReactComponent as Heart } from '../../icons/heart.svg';
|
|
30
35
|
import { ReactComponent as HouseInsurance } from '../../icons/house-insurance.svg';
|
|
31
36
|
import { ReactComponent as IndoorOutdoor } from '../../icons/indoor-outdoor.svg';
|
|
37
|
+
import { ReactComponent as InformationRound } from '../../icons/information-round.svg';
|
|
38
|
+
import { ReactComponent as Institution } from '../../icons/institution.svg';
|
|
32
39
|
import { ReactComponent as Integrations } from '../../icons/integrations.svg';
|
|
33
40
|
import { ReactComponent as Itinerary } from '../../icons/itinerary.svg';
|
|
34
41
|
import { ReactComponent as Like } from '../../icons/like.svg';
|
|
@@ -72,7 +79,9 @@ import { ReactComponent as Rocket } from '../../icons/rocket.svg';
|
|
|
72
79
|
import { ReactComponent as SaveTime } from '../../icons/save-time.svg';
|
|
73
80
|
import { ReactComponent as SaveMoney } from '../../icons/save-money.svg';
|
|
74
81
|
import { ReactComponent as SearchSettings } from '../../icons/search-settings.svg';
|
|
82
|
+
import { ReactComponent as SearchUser } from '../../icons/search-user.svg';
|
|
75
83
|
import { ReactComponent as Schedule } from '../../icons/schedule.svg';
|
|
84
|
+
import { ReactComponent as ScooterDelivery } from '../../icons/scooter-delivery.svg';
|
|
76
85
|
import { ReactComponent as SecuritPositionZone } from '../../icons/security-position-zone.svg';
|
|
77
86
|
import { ReactComponent as Security } from '../../icons/security.svg';
|
|
78
87
|
import { ReactComponent as SecurityTools } from '../../icons/security-tools.svg';
|
|
@@ -232,6 +241,8 @@ const WebsiteIcons = {
|
|
|
232
241
|
autocomplete: Autocomplete,
|
|
233
242
|
'autocomplete-check': AutocompleteCheck,
|
|
234
243
|
battery: Battery,
|
|
244
|
+
blog: Blog,
|
|
245
|
+
book: Book,
|
|
235
246
|
buildings: Buildings,
|
|
236
247
|
calendar: Calendar,
|
|
237
248
|
care: Care,
|
|
@@ -240,13 +251,16 @@ const WebsiteIcons = {
|
|
|
240
251
|
cb: Cb,
|
|
241
252
|
'check-big': CheckBig,
|
|
242
253
|
'chat-love': ChatLove,
|
|
254
|
+
'chat-conversation': ChatConversation,
|
|
243
255
|
'cube-big': CubeBig,
|
|
244
256
|
'customers-services': CustomersServices,
|
|
245
257
|
customize: Customize,
|
|
246
258
|
'delivery-time': DeliveryTime,
|
|
247
259
|
demo: Demo,
|
|
260
|
+
'e-commerce': Ecommerce,
|
|
248
261
|
'electric-charge': ElectricCharge,
|
|
249
262
|
elephant: Elephant,
|
|
263
|
+
'email-contact': EmailContact,
|
|
250
264
|
equalizer: Equalizer,
|
|
251
265
|
escalator: Escalator,
|
|
252
266
|
funnel: Funnel,
|
|
@@ -257,6 +271,8 @@ const WebsiteIcons = {
|
|
|
257
271
|
heart: Heart,
|
|
258
272
|
'house-insurance': HouseInsurance,
|
|
259
273
|
'indoor-outdoor': IndoorOutdoor,
|
|
274
|
+
'information-round': InformationRound,
|
|
275
|
+
institution: Institution,
|
|
260
276
|
integrations: Integrations,
|
|
261
277
|
itinerary: Itinerary,
|
|
262
278
|
like: Like,
|
|
@@ -299,8 +315,10 @@ const WebsiteIcons = {
|
|
|
299
315
|
rocket: Rocket,
|
|
300
316
|
'save-money': SaveMoney,
|
|
301
317
|
'search-settings': SearchSettings,
|
|
318
|
+
'search-user': SearchUser,
|
|
302
319
|
'save-time': SaveTime,
|
|
303
320
|
schedule: Schedule,
|
|
321
|
+
'scooter-delivery': ScooterDelivery,
|
|
304
322
|
security: Security,
|
|
305
323
|
'security-position-zone': SecuritPositionZone,
|
|
306
324
|
'security-tools': SecurityTools,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M79.503 50.507a1.5 1.5 0 0 0-1.5 1.5v26.491a6.057 6.057 0 0 1-6.05 6.05H28.047a6.057 6.057 0 0 1-6.05-6.05V21.502a6.057 6.057 0 0 1 6.05-6.05h43.906a6.057 6.057 0 0 1 6.05 6.05 1.5 1.5 0 0 0 3 0c0-4.99-4.06-9.05-9.05-9.05H28.047c-4.99 0-9.05 4.06-9.05 9.05v56.996c0 4.99 4.06 9.05 9.05 9.05h43.906c4.99 0 9.05-4.06 9.05-9.05V52.007a1.5 1.5 0 0 0-1.5-1.5Z"/><path d="M31.216 59.848a1.5 1.5 0 0 0 0 3h11.608a1.5 1.5 0 0 0 0-3H31.216Zm37.692-27.202a1.5 1.5 0 0 0 1.5-1.5v-1.445a5.874 5.874 0 0 0-5.867-5.867H35.582a5.874 5.874 0 0 0-5.866 5.867v15.934a5.873 5.873 0 0 0 5.866 5.866h13.211a1.5 1.5 0 0 0 0-3H35.582a2.87 2.87 0 0 1-2.866-2.866V29.701a2.87 2.87 0 0 1 2.866-2.867h28.959a2.87 2.87 0 0 1 2.867 2.867v1.445a1.5 1.5 0 0 0 1.5 1.5Z"/><path d="m93.477 27.325-3.852-3.852a3.26 3.26 0 0 0-4.602 0L48.784 59.714a1.517 1.517 0 0 0-.347.541l-3.355 9.077H31.201a1.5 1.5 0 0 0 0 3h14.783c.048 0 .093-.01.14-.014h.007l.019-.003c.074-.008.146-.02.216-.038.096-.015.192-.017.285-.051l10.044-3.712a1.49 1.49 0 0 0 .541-.347l36.241-36.239a3.257 3.257 0 0 0 0-4.603Zm-2.121 2.481L55.349 65.813l-6.68 2.469 2.469-6.68 36.006-36.006c.1-.1.261-.099.36 0l3.852 3.852c.1.1.1.261 0 .36Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M84.923 30.929c-1.999-.924-4.844-1.994-7.74-2.291v-4.294c0-3.551-2.826-6.502-6.432-6.718a34.252 34.252 0 0 0-2.084-.063c-6.636 0-13.062 1.871-18.667 5.381-5.604-3.509-12.03-5.38-18.666-5.38-.7 0-1.395.021-2.083.062-3.607.216-6.433 3.167-6.433 6.718v4.294c-2.896.297-5.741 1.366-7.74 2.291a6.75 6.75 0 0 0-3.91 6.104v30.773c0 3.339 1.38 6.384 3.887 8.575 2.582 2.258 6.053 3.282 9.527 2.816a46.149 46.149 0 0 1 6.118-.409 45.344 45.344 0 0 1 17.598 3.53c.183.076.38.116.579.116h2.246c.199 0 .396-.04.579-.116a45.326 45.326 0 0 1 17.598-3.53c2.041 0 4.099.138 6.118.409 3.471.467 6.945-.559 9.527-2.816 2.507-2.191 3.887-5.236 3.887-8.575V37.033a6.748 6.748 0 0 0-3.91-6.104ZM70.57 20.62c2.026.122 3.613 1.757 3.613 3.724v35.711c0 1.735-1.203 3.216-2.924 3.601-7.781 1.739-14.77 6.15-19.758 12.355V25.518a32.097 32.097 0 0 1 19.07-4.897Zm-44.752 3.724c0-1.967 1.587-3.602 3.614-3.724a32.09 32.09 0 0 1 19.069 4.897V76.01c-4.988-6.205-11.977-10.616-19.758-12.355-1.722-.385-2.924-1.865-2.924-3.601v-35.71Zm-1.636 51.882c-2.617.348-5.222-.414-7.152-2.103-1.846-1.613-2.862-3.856-2.862-6.316V37.034c0-1.445.852-2.772 2.169-3.382 1.71-.791 4.098-1.698 6.48-1.993v28.396c0 3.15 2.167 5.835 5.27 6.528 7.354 1.644 13.93 5.905 18.519 11.887a48.315 48.315 0 0 0-15.907-2.681 48.79 48.79 0 0 0-6.518.437Zm61.651-8.419c0 2.46-1.016 4.703-2.862 6.316-1.931 1.688-4.538 2.449-7.152 2.103a48.957 48.957 0 0 0-6.518-.437c-5.459 0-10.795.905-15.907 2.681 4.589-5.982 11.165-10.242 18.519-11.887 3.103-.693 5.27-3.378 5.27-6.528V31.659c2.382.295 4.771 1.202 6.481 1.993a3.741 3.741 0 0 1 2.168 3.382v30.773Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M37.85 54.443H27.044c-.378 0-.742.143-1.02.399l-10.228 9.477V22.963a3.917 3.917 0 0 1 3.912-3.912h42.441a3.916 3.916 0 0 1 3.911 3.912v16.036a1.5 1.5 0 0 0 3 0V22.963a6.92 6.92 0 0 0-6.911-6.912H19.708a6.92 6.92 0 0 0-6.912 6.912v44.791a1.5 1.5 0 0 0 2.52 1.101l12.315-11.411h10.218a1.5 1.5 0 1 0 0-3Z"/><path d="M81.769 44.784H50.912a5.441 5.441 0 0 0-5.435 5.435v20.045a5.441 5.441 0 0 0 5.435 5.435h24.953l8.842 7.871a1.497 1.497 0 0 0 1.611.248c.539-.241.886-.777.886-1.368V50.219a5.441 5.441 0 0 0-5.435-5.435Zm2.435 34.321-6.771-6.027a1.495 1.495 0 0 0-.997-.38H50.912a2.437 2.437 0 0 1-2.435-2.435V50.218a2.437 2.437 0 0 1 2.435-2.435h30.857a2.437 2.437 0 0 1 2.435 2.435v28.887ZM28.182 30.078a1.5 1.5 0 1 0 0 3h25.494a1.5 1.5 0 0 0 0-3H28.182Zm14.287 10.526H28.181a1.5 1.5 0 1 0 0 3h14.288a1.5 1.5 0 1 0 0-3Z"/><path d="M76.169 54.604H56.511a1.5 1.5 0 0 0 0 3h19.658a1.5 1.5 0 0 0 0-3Zm-11.206 8.204h-8.452a1.5 1.5 0 0 0 0 3h8.452a1.5 1.5 0 0 0 0-3Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50.99 71.924H30.145L17.136 38.402H83.02l-4.167 13.422a1.5 1.5 0 1 0 2.865.889l4.771-15.366a1.5 1.5 0 0 0-1.433-1.944H70.435c-.043-11.234-9.192-20.36-20.435-20.36s-20.392 9.126-20.435 20.36H14.944a1.501 1.501 0 0 0-1.399 2.043l14.173 36.522a1.5 1.5 0 0 0 1.398.957h21.873a1.5 1.5 0 1 0 0-3ZM50 18.041c9.589 0 17.392 7.781 17.435 17.36h-34.87c.043-9.58 7.846-17.36 17.435-17.36Z"/><path d="M88.242 80.706 77.45 69.913l6.792-3.737c.756-.415 1.205-1.209 1.169-2.072s-.547-1.618-1.336-1.97l-30.417-13.57a2.238 2.238 0 0 0-2.519.464 2.243 2.243 0 0 0-.466 2.519l13.571 30.419a2.244 2.244 0 0 0 1.969 1.335c.877.054 1.657-.411 2.073-1.168l3.737-6.794 10.792 10.792c.392.393.912.608 1.466.608s1.075-.216 1.465-.607l2.497-2.496a2.077 2.077 0 0 0-.001-2.929Zm-3.96 2.647L73.313 72.384a2.099 2.099 0 0 0-1.793-.598 2.103 2.103 0 0 0-1.558 1.075l-3.585 6.518L54.202 52.09l27.29 12.175-6.515 3.585c-.581.317-.984.898-1.078 1.555s.129 1.328.599 1.798l10.967 10.968-1.182 1.183Z"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M86.382 28.776h-1.787v-6.422a1.5 1.5 0 0 0-3 0v6.422h-5.26v-6.422a1.5 1.5 0 0 0-3 0v6.422h-1.787a1.5 1.5 0 0 0-1.5 1.5v4.046c0 4.361 3.149 7.994 7.291 8.761v34.545c0 2.389-1.943 4.332-4.332 4.332s-4.332-1.943-4.332-4.332V53.075c0-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.332V43.122c4.265-.664 7.543-4.351 7.543-8.8v-4.046a1.5 1.5 0 0 0-1.5-1.5ZM58.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.85Zm26.633-47.639c0 3.263-2.654 5.917-5.917 5.917s-5.917-2.654-5.917-5.917v-2.546h11.834v2.546Z"/><path d="M51.719 25.543H24.772a1.5 1.5 0 0 0-1.5 1.5v7.951a1.5 1.5 0 0 0 1.5 1.5h26.946a1.5 1.5 0 0 0 1.5-1.5v-7.951a1.5 1.5 0 0 0-1.5-1.5Zm-1.5 7.951H26.272v-4.951h23.946v4.
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M86.382 28.776h-1.787v-6.422a1.5 1.5 0 0 0-3 0v6.422h-5.26v-6.422a1.5 1.5 0 0 0-3 0v6.422h-1.787a1.5 1.5 0 0 0-1.5 1.5v4.046c0 4.361 3.149 7.994 7.291 8.761v34.545c0 2.389-1.943 4.332-4.332 4.332s-4.332-1.943-4.332-4.332V53.075c0-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.332V43.122c4.265-.664 7.543-4.351 7.543-8.8v-4.046a1.5 1.5 0 0 0-1.5-1.5ZM58.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.85Zm26.633-47.639c0 3.263-2.654 5.917-5.917 5.917s-5.917-2.654-5.917-5.917v-2.546h11.834v2.546Z"/><path d="M51.719 25.543H24.772a1.5 1.5 0 0 0-1.5 1.5v7.951a1.5 1.5 0 0 0 1.5 1.5h26.946a1.5 1.5 0 0 0 1.5-1.5v-7.951a1.5 1.5 0 0 0-1.5-1.5Zm-1.5 7.951H26.272v-4.951h23.946v4.951Zm-7.335 11.82L32.012 56.186a1.499 1.499 0 0 0 1.061 2.561h5.818l-9.323 9.324a1.5 1.5 0 1 0 2.122 2.121l11.884-11.885a1.499 1.499 0 0 0-1.061-2.561h-5.818l8.312-8.312a1.5 1.5 0 1 0-2.121-2.121Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M83.535 21.684h-67.07c-4.003 0-7.26 3.257-7.26 7.261v42.111c0 4.004 3.257 7.261 7.26 7.261h67.07c4.003 0 7.26-3.257 7.26-7.261V28.944c0-4.004-3.257-7.261-7.26-7.261Zm4.26 49.372a4.265 4.265 0 0 1-4.26 4.261h-67.07a4.265 4.265 0 0 1-4.26-4.261V35.935l36.982 23.829a1.5 1.5 0 0 0 1.614.007l36.993-23.389v34.674Zm0-38.223L50.008 56.725 12.205 32.367v-3.422a4.265 4.265 0 0 1 4.26-4.261h67.07a4.265 4.265 0 0 1 4.26 4.261v3.889Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 9.546C27.693 9.546 9.545 27.693 9.545 50S27.693 90.454 50 90.454 90.455 72.307 90.455 50 72.307 9.546 50 9.546Zm0 77.908c-20.652 0-37.455-16.802-37.455-37.454S29.348 12.546 50 12.546 87.455 29.348 87.455 50 70.653 87.454 50 87.454Z"/><path d="M61.271 68.031h-8.743V42.329a1.5 1.5 0 0 0-1.5-1.5H40.786a1.5 1.5 0 1 0 0 3h8.742v24.202h-8.742a1.5 1.5 0 1 0 0 3h20.485a1.5 1.5 0 1 0 0-3Z"/><circle cx="51.029" cy="30.449" r="4.439"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="m87.035 20.773-35.918-10.05a1.502 1.502 0 0 0-.809 0l-35.917 10.05a1.499 1.499 0 0 0-1.096 1.444V38.14a1.5 1.5 0 0 0 1.5 1.5h5.474v34.488h-5.474a1.5 1.5 0 0 0-1.5 1.5v9.609a1.5 1.5 0 0 0 1.5 1.5h71.836a1.5 1.5 0 0 0 1.5-1.5v-9.609a1.5 1.5 0 0 0-1.5-1.5h-5.474V39.641h5.474a1.5 1.5 0 0 0 1.5-1.5V22.218c0-.673-.448-1.264-1.096-1.444Zm-70.74 2.582 34.418-9.63 34.418 9.631v6.972H16.295v-6.972Zm6.974 16.285h3.339v34.488h-3.339V39.641Zm14.183 0v34.488h-7.843V39.641h7.843Zm17.184 0v34.488h-7.844V39.641h7.844Zm17.183 0v34.488h-7.844V39.641h7.844ZM60.975 74.128h-3.339V39.641h3.339v34.488Zm-17.183 0h-3.34V39.641h3.34v34.488Zm41.34 9.609H16.295v-6.609h68.836v6.609Zm-6.974-9.609h-3.34V39.641h3.34v34.488Zm6.974-37.488H16.295v-3.313h68.836v3.313Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M66.385 52.179a1.5 1.5 0 0 0-2.822 1.019c.039.108 3.846 10.921-1.466 14.682a1.5 1.5 0 0 0 1.734 2.45c7.172-5.078 2.746-17.618 2.554-18.149Z"/><path d="M85.379 70.48a1.498 1.498 0 0 0 .134-2.148c-1.28-1.406-3.678-3.05-6.699-3.523-.889-5.727-2.81-10.827-5.741-15.206h.389a1.5 1.5 0 0 0 1.5-1.5V39.83a1.5 1.5 0 0 0-1.5-1.5h-4.867c-2.419 0-4.48 1.534-5.279 3.678l-6.72-2.616a9.111 9.111 0 0 1-3.445-2.371l-2.131-2.35a9.15 9.15 0 0 1-2.357-6.685l.054-.926 2.718.477a1.961 1.961 0 0 0 2.132-1.136l.845-1.904s-2.951-.415-5.554-1.884a2.952 2.952 0 0 1-.737-.587c-1.768-1.946.226-5.035 2.799-4.497l3.757.786c-.637-1.895-4.165-8.911-11.238-6.535-5.867 1.971-4.288 10.148-3.579 12.879.142.546.591.951 1.146 1.049l1.365.24a22.25 22.25 0 0 0-6.09 15.27v7.22c0 1.864.702 3.58 1.86 4.909h-3.836V37.313a1.5 1.5 0 0 0-1.5-1.5H12.542a1.5 1.5 0 0 0-1.5 1.5v17.534a1.5 1.5 0 0 0 1.5 1.5h9.564c3.482 0 4.816 2.947 5.314 4.823-8.155.991-14.524 8.7-14.524 18.041a1.5 1.5 0 0 0 1.5 1.5h3.547c.928 5.423 5.617 9.492 11.257 9.492s10.329-4.069 11.257-9.492H65.9c.115 0 .229-.016.34-.042.914 5.402 5.615 9.534 11.273 9.534 6.311 0 11.446-5.135 11.446-11.446 0-3.194-1.316-6.142-3.579-8.278ZM68.594 41.331h3.367v5.273h-3.367c-1.454 0-2.637-1.183-2.637-2.637s1.183-2.637 2.637-2.637Zm-54.551-2.518h7.131v6.705a1.5 1.5 0 1 0 3 0v-6.705h7.132v14.534H14.042V38.813Zm15.158 25.244c5.181 0 9.929 3.47 12.096 8.84a1.5 1.5 0 0 0 2.782-1.123c-2.448-6.065-7.685-10.128-13.575-10.655-.31-1.509-.983-3.292-2.152-4.772H39.85c3.47 0 4.101 1.885 5.092 5.806.786 3.111 1.678 6.638 5.18 8.644a1.498 1.498 0 0 0 2.047-.557 1.5 1.5 0 0 0-.556-2.047c-2.397-1.372-3.06-3.997-3.762-6.774-.371-1.466-.784-3.075-1.541-4.47 3.266 1.074 6.869 2.6 7.411 4.045 1.601 4.262 0 13.401 0 13.401v2.785c0 .187.038.364.094.532H15.961c.663-7.655 6.348-13.654 13.239-13.654Zm0 23.146a8.418 8.418 0 0 1-8.204-6.492h16.408a8.417 8.417 0 0 1-8.204 6.492Zm36.325-9.492h-3.489a1.51 1.51 0 0 0-.252-1.333 1.555 1.555 0 0 0-.8-.552l-3.102-.907 3.262-15.161a2.772 2.772 0 0 0-.826-2.62c-1.66-1.539-9.045-5.396-10.919-6.688-2.072-1.428-1.884-7.771-1.696-10.539a.643.643 0 0 1 1.072-.433l1.826 1.638a9.127 9.127 0 0 0 4.268 2.147l8.147 1.658.024-.016c.449 2.662 2.764 4.699 5.552 4.699h.783c3.268 4.24 5.412 9.326 6.392 15.149-2.038.255-4.249 1.106-6.528 2.873a1.5 1.5 0 0 0 1.839 2.371c4.673-3.627 8.567-2.235 10.631-.919l-14.821 7.905c-.032.017-.066.032-.097.052l-1.268.676Zm11.988 9.492c-4.504 0-8.186-3.547-8.423-7.994L82.57 72.02c2.131 1.593 3.39 4.049 3.39 6.736 0 4.657-3.789 8.446-8.446 8.446Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M45.342 38.834c4.586 0 8.318-3.731 8.318-8.317s-3.731-8.318-8.318-8.318-8.317 3.731-8.317 8.318 3.731 8.317 8.317 8.317Zm0-13.636c2.932 0 5.318 2.386 5.318 5.318s-2.386 5.317-5.318 5.317-5.317-2.386-5.317-5.317 2.385-5.318 5.317-5.318Zm2.784 16.06h-5.753c-4.586 0-8.317 3.731-8.317 8.317v12.74c0 .498.248.964.66 1.243l5.534 3.738c.248.167.541.257.84.257h8.709c.317 0 .625-.101.882-.286l5.144-3.738a1.5 1.5 0 0 0 .618-1.214v-12.74c0-4.586-3.731-8.317-8.317-8.317Zm5.317 20.293-2.535 1.842V52.079a1.5 1.5 0 1 0-3 0v12.475h-5.319v-12.41a1.5 1.5 0 1 0-3 0v11.087l-2.534-1.712V49.576a5.323 5.323 0 0 1 5.317-5.317h5.753a5.323 5.323 0 0 1 5.317 5.317v11.976Z"/><path d="M86.116 84.135 68.471 66.49c-.086-.086-.192-.133-.291-.193 5.213-5.633 8.406-13.16 8.406-21.421 0-17.408-14.163-31.571-31.571-31.571S13.444 27.468 13.444 44.876s14.163 31.571 31.571 31.571c8.121 0 15.534-3.084 21.133-8.139.062.104.112.214.201.303l17.645 17.645c.293.293.677.439 1.061.439s.768-.146 1.061-.439a1.5 1.5 0 0 0 0-2.121ZM45.015 73.447c-15.754 0-28.571-12.817-28.571-28.571s12.817-28.571 28.571-28.571 28.571 12.817 28.571 28.571-12.817 28.571-28.571 28.571Z"/></svg>
|