@woosmap/ui 3.86.0 → 3.87.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/Demo/DistanceDemo.js +6 -3
- package/src/components/Demo/DistanceDemo.test.js +22 -2
- package/src/components/Icon/Icon.js +8 -2
- package/src/icons/customers-services.svg +1 -0
- package/src/icons/demo.svg +1 -1
- package/src/icons/equalizer.svg +1 -1
- package/src/icons/lotus.svg +1 -0
- package/src/icons/notification-position.svg +1 -1
- package/src/icons/wheelchair.svg +1 -0
package/package.json
CHANGED
|
@@ -140,7 +140,11 @@ export default class DistanceDemo extends Component {
|
|
|
140
140
|
};
|
|
141
141
|
|
|
142
142
|
requestDistance = () => {
|
|
143
|
-
axios
|
|
143
|
+
const instance = axios.create();
|
|
144
|
+
instance.interceptors.response.use((response) =>
|
|
145
|
+
response.data.status !== 'OK' ? Promise.reject(response) : response
|
|
146
|
+
);
|
|
147
|
+
instance
|
|
144
148
|
.get(this.requestUrl, { params: this.getRequestparams() })
|
|
145
149
|
.then((response) => {
|
|
146
150
|
if (this.mounted) {
|
|
@@ -156,8 +160,7 @@ export default class DistanceDemo extends Component {
|
|
|
156
160
|
}
|
|
157
161
|
})
|
|
158
162
|
.catch((error) => {
|
|
159
|
-
const errorResult =
|
|
160
|
-
|
|
163
|
+
const errorResult = error?.data?.error_message ?? 'Unhandled error';
|
|
161
164
|
this.setState({ error: errorResult });
|
|
162
165
|
});
|
|
163
166
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { fireEvent, render, screen } from '@testing-library/react';
|
|
2
|
+
import { fireEvent, render, screen, waitFor } from '@testing-library/react';
|
|
3
3
|
import '@testing-library/jest-dom/extend-expect';
|
|
4
|
-
|
|
4
|
+
import axios from 'axios';
|
|
5
5
|
import DistanceDemo from './DistanceDemo';
|
|
6
6
|
|
|
7
7
|
it('render distance demo', () => {
|
|
@@ -38,3 +38,23 @@ it('test alternative route checkbox', () => {
|
|
|
38
38
|
fireEvent.click(checkbox);
|
|
39
39
|
expect(screen.getByText('alternatives=true"')).toBeVisible();
|
|
40
40
|
});
|
|
41
|
+
it('catches 200 with error', async () => {
|
|
42
|
+
const backup = axios.create;
|
|
43
|
+
axios.create = () => ({
|
|
44
|
+
...backup(),
|
|
45
|
+
get: () =>
|
|
46
|
+
Promise.resolve({
|
|
47
|
+
data: { status: 'ERROR', error_message: 'Some handled error message' },
|
|
48
|
+
status: 200,
|
|
49
|
+
}),
|
|
50
|
+
});
|
|
51
|
+
const rejectSpy = jest.spyOn(Promise, 'reject');
|
|
52
|
+
const ref = React.createRef();
|
|
53
|
+
render(<DistanceDemo ref={ref} />);
|
|
54
|
+
|
|
55
|
+
await waitFor(() => {
|
|
56
|
+
expect(rejectSpy).toHaveBeenCalled();
|
|
57
|
+
});
|
|
58
|
+
axios.create = backup;
|
|
59
|
+
rejectSpy.mockRestore();
|
|
60
|
+
});
|
|
@@ -9,6 +9,7 @@ import { ReactComponent as Cars } from '../../icons/cars.svg';
|
|
|
9
9
|
import { ReactComponent as CheckBig } from '../../icons/check-big.svg';
|
|
10
10
|
import { ReactComponent as CallToAction } from '../../icons/call-to-action.svg';
|
|
11
11
|
import { ReactComponent as CubeBig } from '../../icons/cube-big.svg';
|
|
12
|
+
import { ReactComponent as CustomersServices } from '../../icons/customers-services.svg';
|
|
12
13
|
import { ReactComponent as Customize } from '../../icons/customize.svg';
|
|
13
14
|
import { ReactComponent as DeliveryTime } from '../../icons/delivery-time.svg';
|
|
14
15
|
import { ReactComponent as Demo } from '../../icons/demo.svg';
|
|
@@ -23,6 +24,7 @@ import { ReactComponent as IndoorOutdoor } from '../../icons/indoor-outdoor.svg'
|
|
|
23
24
|
import { ReactComponent as Integrations } from '../../icons/integrations.svg';
|
|
24
25
|
import { ReactComponent as Like } from '../../icons/like.svg';
|
|
25
26
|
import { ReactComponent as Logistics } from '../../icons/logistics.svg';
|
|
27
|
+
import { ReactComponent as Lotus } from '../../icons/lotus.svg';
|
|
26
28
|
import { ReactComponent as Map3d } from '../../icons/map-3d.svg';
|
|
27
29
|
import { ReactComponent as MapHd } from '../../icons/map-hd.svg';
|
|
28
30
|
import { ReactComponent as MapIndoor } from '../../icons/map-indoor.svg';
|
|
@@ -68,6 +70,7 @@ import { ReactComponent as SupportTime } from '../../icons/support-time.svg';
|
|
|
68
70
|
import { ReactComponent as Synchronization } from '../../icons/synchronization.svg';
|
|
69
71
|
import { ReactComponent as Tools } from '../../icons/tools.svg';
|
|
70
72
|
import { ReactComponent as TshirtMarker } from '../../icons/tshirt-marker.svg';
|
|
73
|
+
import { ReactComponent as Wheelchair } from '../../icons/wheelchair.svg';
|
|
71
74
|
import { ReactComponent as World } from '../../icons/world.svg';
|
|
72
75
|
import { ReactComponent as WorldLocation } from '../../icons/world-location.svg';
|
|
73
76
|
import { ReactComponent as WorldTime } from '../../icons/world-time.svg';
|
|
@@ -212,6 +215,7 @@ const WebsiteIcons = {
|
|
|
212
215
|
'call-to-action': CallToAction,
|
|
213
216
|
'check-big': CheckBig,
|
|
214
217
|
'cube-big': CubeBig,
|
|
218
|
+
'customers-services': CustomersServices,
|
|
215
219
|
customize: Customize,
|
|
216
220
|
'delivery-time': DeliveryTime,
|
|
217
221
|
demo: Demo,
|
|
@@ -219,13 +223,14 @@ const WebsiteIcons = {
|
|
|
219
223
|
equalizer: Equalizer,
|
|
220
224
|
gdpr: Gdpr,
|
|
221
225
|
heart: Heart,
|
|
222
|
-
'indoor-outdoor': IndoorOutdoor,
|
|
223
|
-
logistics: Logistics,
|
|
224
226
|
github: Github,
|
|
225
227
|
green: Green,
|
|
226
228
|
'house-insurance': HouseInsurance,
|
|
229
|
+
'indoor-outdoor': IndoorOutdoor,
|
|
227
230
|
integrations: Integrations,
|
|
228
231
|
like: Like,
|
|
232
|
+
lotus: Lotus,
|
|
233
|
+
logistics: Logistics,
|
|
229
234
|
'map-3d': Map3d,
|
|
230
235
|
'map-hd': MapHd,
|
|
231
236
|
'map-indoor': MapIndoor,
|
|
@@ -271,6 +276,7 @@ const WebsiteIcons = {
|
|
|
271
276
|
synchronization: Synchronization,
|
|
272
277
|
tools: Tools,
|
|
273
278
|
'tshirt-marker': TshirtMarker,
|
|
279
|
+
whellchair: Wheelchair,
|
|
274
280
|
world: World,
|
|
275
281
|
'world-location': WorldLocation,
|
|
276
282
|
'world-time': WorldTime,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 37.486c3.248 0 6.546-1.2 8.401-3.057a1.501 1.501 0 0 0-2.122-2.121c-1.301 1.302-3.824 2.177-6.278 2.177s-4.978-.875-6.278-2.177a1.5 1.5 0 1 0-2.122 2.121c1.855 1.857 5.153 3.057 8.401 3.057Z" style="fill:#5586ff"/><path d="M64.111 37.855c2.279-2.987 3.649-6.702 3.649-10.741a17.64 17.64 0 0 0-1.154-6.252c.238-.244.45-.516.594-.839a2.894 2.894 0 0 0-.245-2.809l-.724-1.073 1.565-4.669a2.93 2.93 0 0 0-.343-2.577 2.929 2.929 0 0 0-2.248-1.306L50.104 6.523a1.486 1.486 0 0 0-.211 0L34.792 7.589a2.932 2.932 0 0 0-2.248 1.306 2.928 2.928 0 0 0-.343 2.576l1.565 4.67-.724 1.073a2.894 2.894 0 0 0-.245 2.809c.144.323.356.595.594.839a17.64 17.64 0 0 0-1.154 6.252c0 4.038 1.37 7.754 3.649 10.741-9.402 1.748-16.514 10.121-16.514 19.855v32.243a3.533 3.533 0 0 0 3.529 3.529h8.783a5.193 5.193 0 0 0 4.963-3.684H64.13a5.195 5.195 0 0 0 4.963 3.684h7.999a3.533 3.533 0 0 0 3.529-3.529V57.71c0-9.734-7.112-18.107-16.514-19.855ZM35.615 18.771l.609-.904h27.574l.634.898L50 20.804l-14.386-2.032Zm14.389-9.249 14.95.996-1.458 4.349H36.502l-1.453-4.289 14.955-1.056ZM36.212 21.885l13.579 1.918a1.473 1.473 0 0 0 .42 0l13.579-1.918c.636 1.672.971 3.428.971 5.23 0 8.139-6.621 14.76-14.76 14.76s-14.76-6.621-14.76-14.76c0-1.802.335-3.557.971-5.23Zm12.541 28.734c.12-.806.825-1.414 1.641-1.414s1.521.608 1.632 1.345l1.718 16.84a1.967 1.967 0 0 1-.39 1.489l-2.129 2.748a1.033 1.033 0 0 1-.832.408c-.192 0-.557-.053-.831-.408l-2.129-2.748c-.325-.42-.468-.963-.381-1.558l1.701-16.702Zm3.068-5.745-1.264 1.263a.234.234 0 0 1-.138.07l-.026-.002c-.009 0-.018.003-.028.003a.24.24 0 0 1-.138-.071l-1.263-1.263h2.856Zm25.805 45.079a.53.53 0 0 1-.529.529h-7.999a2.187 2.187 0 0 1-2.184-2.184V60.882a1.5 1.5 0 1 0-3 0v25.916H36.873V60.882a1.5 1.5 0 1 0-3 0v27.416c0 1.204-.98 2.184-2.185 2.184h-8.783a.53.53 0 0 1-.529-.529V57.71c0-8.843 6.892-16.366 15.688-17.126.112-.01.218-.033.321-.066a17.707 17.707 0 0 0 6.789 3.672 2.41 2.41 0 0 0 .695 1.831l1.409 1.409a4.744 4.744 0 0 0-1.502 2.815l-1.701 16.703a4.987 4.987 0 0 0 .985 3.769l2.129 2.748c.772.998 1.94 1.57 3.202 1.57s2.431-.572 3.203-1.57l2.129-2.748c.825-1.065 1.185-2.439.994-3.7l-1.718-16.84a4.64 4.64 0 0 0-1.489-2.751l1.404-1.404a2.405 2.405 0 0 0 .673-2.062 17.737 17.737 0 0 0 6.027-3.442c.103.032.209.056.321.066 8.797.761 15.688 8.284 15.688 17.126v32.243Z"/></svg>
|
package/src/icons/demo.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71.5 79.2"><path d="M22.5 65.8c-3.4 0-6.2-2.8-6.2-6.2s2.8-6.2 6.2-6.2 6.3 2.8 6.3 6.2-2.8 6.2-6.3 6.2Zm0-9.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.3-1.4 3.3-3.2-1.5-3.2-3.3-3.
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71.5 79.2"><path d="M22.5 65.8c-3.4 0-6.2-2.8-6.2-6.2s2.8-6.2 6.2-6.2 6.3 2.8 6.3 6.2-2.8 6.2-6.3 6.2Zm0-9.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.3-1.4 3.3-3.2-1.5-3.2-3.3-3.2ZM49.1 79.2c-3.4 0-6.2-2.8-6.2-6.2s2.8-6.2 6.2-6.2 6.2 2.8 6.2 6.2-2.8 6.2-6.2 6.2Zm0-9.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.4-3.2-3.2-3.2ZM70 61.1H34.3c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5H70c.8 0 1.5.7 1.5 1.5s-.6 1.5-1.5 1.5ZM10.7 61.1H1.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h9.2c.8 0 1.5.7 1.5 1.5s-.6 1.5-1.5 1.5ZM37.3 74.5H1.6C.8 74.5.1 73.8.1 73s.7-1.5 1.5-1.5h35.7c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5ZM70 74.5h-9.2c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5H70c.8 0 1.5.7 1.5 1.5s-.6 1.5-1.5 1.5ZM62.1 48.1H9.5c-5.2 0-9.5-4.2-9.5-9.5V9.5C0 4.3 4.2 0 9.5 0H62c5.2 0 9.5 4.2 9.5 9.5v29.1c0 5.2-4.2 9.5-9.4 9.5ZM9.5 3C5.9 3 3 5.9 3 9.5v29.1c0 3.6 2.9 6.5 6.5 6.5H62c3.6 0 6.5-2.9 6.5-6.5V9.5C68.5 5.9 65.6 3 62 3H9.5Z"/><path d="M26.8 35.7c-.9 0-1.8-.3-2.6-.8-1.4-.9-2.2-2.4-2.2-4V16.4c0-1.6.8-3.1 2.2-4s3.1-1 4.6-.3l16 7.3c1.7.8 2.8 2.4 2.8 4.3s-1.1 3.6-2.8 4.3l-16 7.3c-.7.3-1.3.4-2 .4Zm0-21.1c-.3 0-.7.1-1 .3-.5.3-.8.9-.8 1.5V31c0 .6.3 1.2.8 1.5s1.1.4 1.7.1l16-7.3c.6-.3 1-.9 1-1.6s-.4-1.3-1-1.6l-16-7.3c-.2-.1-.5-.2-.7-.2Z"/></svg>
|
package/src/icons/equalizer.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M84.225 48.5h-9.174c-.186 0-.361.038-.525.1-.693-5.594-5.467-9.942-11.246-9.942S52.728 43.005 52.034 48.6c-.164-.062-.34-.1-.526-.1H15.775a1.5 1.5 0 1 0 0 3h35.733c.186 0 .362-.038.526-.1.693 5.594 5.467 9.942 11.246 9.942s10.553-4.347 11.246-9.942c.164.062.34.1.525.1h9.174a1.5 1.5 0 1 0 0-3Zm-20.946 9.842c-4.6 0-8.341-3.742-8.341-8.342s3.742-8.342 8.341-8.342S71.621 45.4 71.621 50s-3.742 8.342-8.342 8.342ZM15.775 24.501h9.174c.186 0 .361-.038.525-.1.693 5.594 5.467 9.942 11.246 9.942s10.552-4.347 11.246-9.942c.164.062.34.1.526.1h35.733a1.5 1.5 0 1 0 0-3H48.492c-.186 0-.362.038-.526.1-.693-5.594-5.467-9.942-11.246-9.942s-10.553 4.347-11.246 9.942a1.48 1.48 0 0 0-.525-.1h-9.174a1.5 1.5 0 1 0 0 3Zm20.946-9.842c4.6 0 8.341 3.742 8.341 8.342s-3.742 8.342-8.341 8.342-8.342-3.742-8.342-8.342 3.742-8.342 8.342-8.
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M84.225 48.5h-9.174c-.186 0-.361.038-.525.1-.693-5.594-5.467-9.942-11.246-9.942S52.728 43.005 52.034 48.6c-.164-.062-.34-.1-.526-.1H15.775a1.5 1.5 0 1 0 0 3h35.733c.186 0 .362-.038.526-.1.693 5.594 5.467 9.942 11.246 9.942s10.553-4.347 11.246-9.942c.164.062.34.1.525.1h9.174a1.5 1.5 0 1 0 0-3Zm-20.946 9.842c-4.6 0-8.341-3.742-8.341-8.342s3.742-8.342 8.341-8.342S71.621 45.4 71.621 50s-3.742 8.342-8.342 8.342ZM15.775 24.501h9.174c.186 0 .361-.038.525-.1.693 5.594 5.467 9.942 11.246 9.942s10.552-4.347 11.246-9.942c.164.062.34.1.526.1h35.733a1.5 1.5 0 1 0 0-3H48.492c-.186 0-.362.038-.526.1-.693-5.594-5.467-9.942-11.246-9.942s-10.553 4.347-11.246 9.942a1.48 1.48 0 0 0-.525-.1h-9.174a1.5 1.5 0 1 0 0 3Zm20.946-9.842c4.6 0 8.341 3.742 8.341 8.342s-3.742 8.342-8.341 8.342-8.342-3.742-8.342-8.342 3.742-8.342 8.342-8.342Zm47.504 60.84H48.492c-.186 0-.362.038-.526.1-.693-5.594-5.467-9.942-11.246-9.942s-10.553 4.347-11.246 9.942a1.48 1.48 0 0 0-.525-.1h-9.174a1.5 1.5 0 1 0 0 3h9.174c.186 0 .361-.038.525-.1.693 5.594 5.467 9.942 11.246 9.942s10.552-4.347 11.246-9.942c.164.062.34.1.526.1h35.733a1.5 1.5 0 1 0 0-3Zm-47.504 9.842c-4.6 0-8.342-3.742-8.342-8.342s3.742-8.342 8.342-8.342 8.341 3.742 8.341 8.342-3.742 8.342-8.341 8.342Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M91.572 36.498H88.77a12.45 12.45 0 0 0-9.491 4.355V28.126a1.5 1.5 0 0 0-1.5-1.5c-6.272 0-11.742 3.482-14.594 8.61-2.938-12.867-12.092-17.278-12.553-17.493a1.5 1.5 0 0 0-1.281.009c-.46.221-9.574 4.766-12.522 17.504-2.848-5.14-8.325-8.631-14.606-8.631a1.5 1.5 0 0 0-1.5 1.5v12.727a12.447 12.447 0 0 0-9.491-4.354H8.43a1.5 1.5 0 0 0-1.5 1.5v3.391c0 14.035 10.297 25.706 23.733 27.864-2.269 1.971-3.712 4.869-3.712 8.103v3.54a1.499 1.499 0 0 0 1.5 1.498c.4 0 .794-.161 1.083-.46.043-.044 4.353-4.432 11.225-4.432 4.889 0 7.722-2.2 9.243-4.629 1.521 2.429 4.354 4.629 9.243 4.629 6.872 0 11.182 4.387 11.222 4.428a1.502 1.502 0 0 0 1.644.359 1.5 1.5 0 0 0 .943-1.393v-3.54c0-3.234-1.443-6.132-3.712-8.103 13.435-2.159 23.733-13.83 23.733-27.864v-3.391a1.5 1.5 0 0 0-1.5-1.5Zm-27.485 6.819c0-7.042 5.345-12.86 12.191-13.61v14.428c0 12.06-9.548 21.93-21.481 22.454 3.615-3.191 8.375-9.331 9.169-19.886.077-.181.12-.379.12-.589v-2.798ZM50.01 20.811c2.479 1.45 11.077 7.577 11.077 22.798s-8.603 21.353-11.076 22.798c-2.479-1.486-11.098-7.737-11.098-22.798s8.624-21.316 11.097-22.798Zm-26.288 8.896c6.846.75 12.191 6.567 12.191 13.61v2.798c0 .211.044.411.123.593.807 10.499 5.613 16.673 9.228 19.883-11.962-.494-21.542-10.375-21.542-22.456V29.707ZM9.929 41.389v-1.891h1.302a9.453 9.453 0 0 1 9.055 6.638c.105.335.321.601.591.784.93 8.517 6.073 15.785 13.296 19.67-13.456-.518-24.245-11.621-24.245-25.201Zm30.829 33.113c-4.817 0-8.526 1.775-10.808 3.283v-.429c0-4.269 3.473-7.742 7.742-7.742H48.22c-.572 1.848-2.294 4.887-7.461 4.887Zm29.294 2.854v.429c-2.282-1.508-5.991-3.283-10.808-3.283-5.114 0-6.857-3.039-7.446-4.887h10.513c4.269 0 7.742 3.473 7.742 7.742Zm20.021-35.968c0 13.581-10.789 24.683-24.245 25.201 7.231-3.889 12.378-11.168 13.3-19.697.272-.182.49-.449.596-.785a9.457 9.457 0 0 1 9.046-6.61h1.302v1.891Z"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M75.253 7.773H24.747c-7.156 0-12.978 5.822-12.978 12.978v50.506c0 7.156 5.821 12.978 12.978 12.978H35a1.5 1.5 0 1 0 0-3H24.747c-5.502 0-9.978-4.476-9.978-9.978V20.751c0-5.502 4.476-9.978 9.978-9.978h50.506c5.502 0 9.978 4.476 9.978 9.978v50.506c0 5.502-4.476 9.978-9.978 9.978H65a1.5 1.5 0 1 0 0 3h10.253c7.156 0 12.978-5.822 12.978-12.978V20.751c0-7.156-5.821-12.978-12.978-12.978Z"/><path d="M50 44.504c-9.51 0-17.246 7.736-17.246 17.246 0 6.331 3.927 10.963 7.724 15.443 3.365 3.971 6.545 7.722 6.545 12.244 0 1.591 1.28 2.79 2.978 2.79s2.978-1.199 2.978-2.79c0-4.521 3.18-8.272 6.545-12.244 3.797-4.48 7.724-9.113 7.724-15.443 0-9.51-7.736-17.246-17.246-17.246Zm7.234 30.75C53.828 79.272 50.312 83.421 50 88.68c-.313-5.259-3.828-9.408-7.234-13.426-3.605-4.254-7.012-8.273-7.012-13.503 0-7.855 6.391-14.246 14.246-14.246s14.246 6.391 14.246 14.246c0 5.23-3.406 9.249-7.012 13.503Z"/><path d="M50 54.218c-4.313 0-7.823 3.51-7.823 7.824s3.51 7.824 7.823 7.824 7.823-3.51 7.823-7.824-3.51-7.824-7.823-7.824Zm0 12.647c-2.659 0-4.823-2.164-4.823-4.824s2.164-4.824 4.823-4.824 4.823 2.164 4.823 4.824-2.164 4.824-4.823 4.824ZM31.981 39.196a4.133 4.133 0 0 0 4.133-4.133h-8.265a4.133 4.133 0 0 0 4.133 4.
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M75.253 7.773H24.747c-7.156 0-12.978 5.822-12.978 12.978v50.506c0 7.156 5.821 12.978 12.978 12.978H35a1.5 1.5 0 1 0 0-3H24.747c-5.502 0-9.978-4.476-9.978-9.978V20.751c0-5.502 4.476-9.978 9.978-9.978h50.506c5.502 0 9.978 4.476 9.978 9.978v50.506c0 5.502-4.476 9.978-9.978 9.978H65a1.5 1.5 0 1 0 0 3h10.253c7.156 0 12.978-5.822 12.978-12.978V20.751c0-7.156-5.821-12.978-12.978-12.978Z"/><path d="M50 44.504c-9.51 0-17.246 7.736-17.246 17.246 0 6.331 3.927 10.963 7.724 15.443 3.365 3.971 6.545 7.722 6.545 12.244 0 1.591 1.28 2.79 2.978 2.79s2.978-1.199 2.978-2.79c0-4.521 3.18-8.272 6.545-12.244 3.797-4.48 7.724-9.113 7.724-15.443 0-9.51-7.736-17.246-17.246-17.246Zm7.234 30.75C53.828 79.272 50.312 83.421 50 88.68c-.313-5.259-3.828-9.408-7.234-13.426-3.605-4.254-7.012-8.273-7.012-13.503 0-7.855 6.391-14.246 14.246-14.246s14.246 6.391 14.246 14.246c0 5.23-3.406 9.249-7.012 13.503Z"/><path d="M50 54.218c-4.313 0-7.823 3.51-7.823 7.824s3.51 7.824 7.823 7.824 7.823-3.51 7.823-7.824-3.51-7.824-7.823-7.824Zm0 12.647c-2.659 0-4.823-2.164-4.823-4.824s2.164-4.824 4.823-4.824 4.823 2.164 4.823 4.824-2.164 4.824-4.823 4.824ZM31.981 39.196a4.133 4.133 0 0 0 4.133-4.133h-8.265a4.133 4.133 0 0 0 4.133 4.133ZM32.309 17.409a6.777 6.777 0 0 0-7.104 6.769v5.287h-1.464a1.487 1.487 0 0 0 0 2.974h16.481a1.487 1.487 0 0 0 0-2.974h-1.464V24.37c0-3.649-2.804-6.789-6.449-6.96ZM50 24.466h27.746a1.5 1.5 0 1 0 0-3H50a1.5 1.5 0 1 0 0 3ZM50 32.799h18.816a1.5 1.5 0 1 0 0-3H50a1.5 1.5 0 1 0 0 3Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M61.609 76.232a1.5 1.5 0 0 0-2.034.603 21.778 21.778 0 0 1-19.15 11.399c-12.009 0-21.778-9.77-21.778-21.778a21.793 21.793 0 0 1 9.435-17.944 1.5 1.5 0 1 0-1.703-2.47 24.795 24.795 0 0 0-10.731 20.414c0 13.663 11.115 24.778 24.778 24.778a24.779 24.779 0 0 0 21.787-12.967 1.499 1.499 0 0 0-.603-2.034Z"/><path d="M84.27 75.571a1.5 1.5 0 0 0-1.91-.921l-8.036 2.806a1.229 1.229 0 0 1-1.52-.657l-8.76-19.674a5.108 5.108 0 0 0-4.664-3.029H40.304a2.114 2.114 0 0 1-2.1-1.948l-.658-8.783h19.552a1.5 1.5 0 1 0 0-3H37.321l-1.034-13.818a8.161 8.161 0 1 0-3.08-.951l2.005 26.775c.198 2.649 2.435 4.725 5.092 4.725H59.38c.831 0 1.586.49 1.924 1.25l8.76 19.675c.691 1.554 2.248 2.502 3.875 2.502a4.15 4.15 0 0 0 1.374-.233l8.035-2.806a1.5 1.5 0 0 0 .922-1.911Z"/></svg>
|