@pretto/picto 4.32.0 → 4.33.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/esm/picto.js ADDED
@@ -0,0 +1,4342 @@
1
+ import React, { useRef, cloneElement, useState, useCallback, createContext, useContext, useEffect } from 'react';
2
+ import _extends from '@babel/runtime/helpers/esm/extends';
3
+
4
+ const PictoContext = /*#__PURE__*/createContext({
5
+ optimise: (id, node) => node,
6
+ refresh: () => {}
7
+ });
8
+ const PictoProvider = ({
9
+ children
10
+ }) => {
11
+ const forceUpdate = useForceUpdate();
12
+ const cache = useRef({});
13
+ const isPending = useRef(false);
14
+ const value = {
15
+ optimise(id, node) {
16
+ if (!(id in cache.current)) {
17
+ cache.current = { ...cache.current,
18
+ [id]: node
19
+ };
20
+ isPending.current = true;
21
+ }
22
+
23
+ return /*#__PURE__*/cloneElement(node, {
24
+ fill: null,
25
+ xmlnsXlink: 'http://www.w3.org/1999/xlink'
26
+ }, /*#__PURE__*/React.createElement("use", {
27
+ xlinkHref: '#' + id
28
+ }));
29
+ },
30
+
31
+ refresh() {
32
+ if (!isPending) {
33
+ return;
34
+ }
35
+
36
+ forceUpdate();
37
+ isPending.current = false;
38
+ }
39
+
40
+ };
41
+ return /*#__PURE__*/React.createElement(PictoContext.Provider, {
42
+ value: value
43
+ }, /*#__PURE__*/React.createElement(React.Fragment, null, children, /*#__PURE__*/React.createElement(Symbols, {
44
+ cache: cache
45
+ })));
46
+ };
47
+
48
+ const Symbols = ({
49
+ cache
50
+ }) => {
51
+ const entries = Object.entries(cache.current);
52
+
53
+ if (entries.length < 1) {
54
+ return null;
55
+ }
56
+
57
+ return /*#__PURE__*/React.createElement("svg", {
58
+ style: {
59
+ display: 'none'
60
+ },
61
+ xmlns: "http://www.w3.org/2000/svg"
62
+ }, Object.entries(cache.current).map(([id, node]) => /*#__PURE__*/cloneElement(node, {
63
+ as: 'symbol',
64
+ className: null,
65
+ height: null,
66
+ id,
67
+ key: id,
68
+ width: null,
69
+ xmlns: null
70
+ })));
71
+ };
72
+
73
+ const useForceUpdate = () => {
74
+ const [, updateState] = useState();
75
+ const forceUpdate = useCallback(() => updateState({}), []);
76
+ return forceUpdate;
77
+ };
78
+
79
+ var SVGComponent$2C = (({
80
+ as: Component = "svg",
81
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
82
+ d: "M24,7H23V23H1V7H0V1H24ZM22,7H2V22H22Zm-6,8H8V11h8Zm-1-3H9v2h6ZM23,2H1V6H23Z"
83
+ })),
84
+ ...props
85
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
86
+ height: "24",
87
+ viewBox: "0 0 24 24",
88
+ width: "24",
89
+ xmlns: "http://www.w3.org/2000/svg",
90
+ fill: "currentColor"
91
+ }, props), children));
92
+
93
+ const Archive = props => {
94
+ const {
95
+ optimise,
96
+ refresh
97
+ } = useContext(PictoContext);
98
+ useEffect(() => {
99
+ refresh();
100
+ }, []);
101
+ return optimise('p_15c0G2', /*#__PURE__*/React.createElement(SVGComponent$2C, props));
102
+ };
103
+
104
+ var SVGComponent$2B = (({
105
+ as: Component = "svg",
106
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
107
+ d: "M28.21,30.65l3.99-3.98-8.65-8.66-8.66,8.66L0,11.77l3.12-3.12,11.77,11.78,8.66-8.66,11.77,11.78,3.99-3.99,.69,11.79-11.79-.7Z"
108
+ })),
109
+ ...props
110
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
111
+ xmlns: "http://www.w3.org/2000/svg",
112
+ width: "40",
113
+ height: "40",
114
+ viewBox: "0 0 40 40",
115
+ fill: "currentColor"
116
+ }, props), children));
117
+
118
+ const ArrowDirectionDown = props => {
119
+ const {
120
+ optimise,
121
+ refresh
122
+ } = useContext(PictoContext);
123
+ useEffect(() => {
124
+ refresh();
125
+ }, []);
126
+ return optimise('p_1uVN2t', /*#__PURE__*/React.createElement(SVGComponent$2B, props));
127
+ };
128
+
129
+ var SVGComponent$2A = (({
130
+ as: Component = "svg",
131
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
132
+ d: "M40,20l-8.82-7.85v5.65H0S0,22.2,0,22.2H31.18s-.01,5.65-.01,5.65l8.83-7.85Z"
133
+ })),
134
+ ...props
135
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
136
+ xmlns: "http://www.w3.org/2000/svg",
137
+ width: "40",
138
+ height: "40",
139
+ viewBox: "0 0 40 40",
140
+ fill: "currentColor"
141
+ }, props), children));
142
+
143
+ const ArrowDirectionEgal = props => {
144
+ const {
145
+ optimise,
146
+ refresh
147
+ } = useContext(PictoContext);
148
+ useEffect(() => {
149
+ refresh();
150
+ }, []);
151
+ return optimise('p_1uVSMB', /*#__PURE__*/React.createElement(SVGComponent$2A, props));
152
+ };
153
+
154
+ var SVGComponent$2z = (({
155
+ as: Component = "svg",
156
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
157
+ d: "M28.21,9.35l3.99,3.98-8.65,8.66L14.89,13.33,0,28.23l3.12,3.12,11.77-11.78,8.66,8.66,11.77-11.78,3.99,3.99,.69-11.79-11.79,.7Z"
158
+ })),
159
+ ...props
160
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
161
+ xmlns: "http://www.w3.org/2000/svg",
162
+ width: "40",
163
+ height: "40",
164
+ viewBox: "0 0 40 40",
165
+ fill: "currentColor"
166
+ }, props), children));
167
+
168
+ const ArrowDirectionUp = props => {
169
+ const {
170
+ optimise,
171
+ refresh
172
+ } = useContext(PictoContext);
173
+ useEffect(() => {
174
+ refresh();
175
+ }, []);
176
+ return optimise('p_ZDUIq2', /*#__PURE__*/React.createElement(SVGComponent$2z, props));
177
+ };
178
+
179
+ var SVGComponent$2y = (({
180
+ as: Component = "svg",
181
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
182
+ d: "M23,11h1V3H16V4h6.29L10.65,15.65l.7.7L23,4.71ZM1,13H0v8H8V20H1.71L13.35,8.35l-.7-.7L1,19.29Z"
183
+ })),
184
+ ...props
185
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
186
+ xmlns: "http://www.w3.org/2000/svg",
187
+ width: "24",
188
+ height: "24",
189
+ viewBox: "0 0 24 24",
190
+ fill: "currentColor"
191
+ }, props), children));
192
+
193
+ const ArrowDouble = props => {
194
+ const {
195
+ optimise,
196
+ refresh
197
+ } = useContext(PictoContext);
198
+ useEffect(() => {
199
+ refresh();
200
+ }, []);
201
+ return optimise('p_Z1oHpFA', /*#__PURE__*/React.createElement(SVGComponent$2y, props));
202
+ };
203
+
204
+ var SVGComponent$2x = (({
205
+ as: Component = "svg",
206
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
207
+ d: "m12.83,15.3l2.49-2.51,1.18,1.18-4.5,4.53-4.5-4.53,1.18-1.18,2.49,2.51V5.5h1.66v9.8Z"
208
+ })),
209
+ ...props
210
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
211
+ xmlns: "http://www.w3.org/2000/svg",
212
+ width: "24",
213
+ height: "24",
214
+ viewBox: "0 0 24 24",
215
+ fill: "currentColor"
216
+ }, props), children));
217
+
218
+ const ArrowDown = props => {
219
+ const {
220
+ optimise,
221
+ refresh
222
+ } = useContext(PictoContext);
223
+ useEffect(() => {
224
+ refresh();
225
+ }, []);
226
+ return optimise('p_19AFBf', /*#__PURE__*/React.createElement(SVGComponent$2x, props));
227
+ };
228
+
229
+ var SVGComponent$2w = (({
230
+ as: Component = "svg",
231
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
232
+ d: "M3.51,20.49a12,12,0,1,1,17,0A12,12,0,0,1,3.51,20.49Zm.71-.71a11,11,0,1,1,15.56,0A11,11,0,0,1,4.22,19.78Zm11.55-4.72-.6-5.92,1,0L17,17l-7.86-.79.06-1,5.91.61L6.7,7.4l.7-.7Z",
233
+ fillRule: "evenodd"
234
+ })),
235
+ ...props
236
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
237
+ height: "24",
238
+ viewBox: "0 0 24 24",
239
+ width: "24",
240
+ xmlns: "http://www.w3.org/2000/svg",
241
+ fill: "currentColor"
242
+ }, props), children));
243
+
244
+ const ArrowDownRightCircle = props => {
245
+ const {
246
+ optimise,
247
+ refresh
248
+ } = useContext(PictoContext);
249
+ useEffect(() => {
250
+ refresh();
251
+ }, []);
252
+ return optimise('p_ZmSCts', /*#__PURE__*/React.createElement(SVGComponent$2w, props));
253
+ };
254
+
255
+ var SVGComponent$2v = (({
256
+ as: Component = "svg",
257
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
258
+ d: "m8.7,12.83l2.51,2.49-1.18,1.18-4.53-4.5,4.53-4.5,1.18,1.18-2.51,2.49h9.8v1.66h-9.8Z"
259
+ })),
260
+ ...props
261
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
262
+ xmlns: "http://www.w3.org/2000/svg",
263
+ width: "24",
264
+ height: "24",
265
+ viewBox: "0 0 24 24",
266
+ fill: "currentColor"
267
+ }, props), children));
268
+
269
+ const ArrowLeft = props => {
270
+ const {
271
+ optimise,
272
+ refresh
273
+ } = useContext(PictoContext);
274
+ useEffect(() => {
275
+ refresh();
276
+ }, []);
277
+ return optimise('p_19BFVb', /*#__PURE__*/React.createElement(SVGComponent$2v, props));
278
+ };
279
+
280
+ var SVGComponent$2u = (({
281
+ as: Component = "svg",
282
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
283
+ d: "m11.25,17.11l3.58,3.57-1.57,1.57-6.26-6.25,6.26-6.25,1.57,1.57-3.58,3.57h13.75v2.22h-13.75Z"
284
+ })),
285
+ ...props
286
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
287
+ xmlns: "http://www.w3.org/2000/svg",
288
+ width: "32",
289
+ height: "32",
290
+ viewBox: "0 0 32 32",
291
+ fill: "currentColor"
292
+ }, props), children));
293
+
294
+ const ArrowLeftBold = props => {
295
+ const {
296
+ optimise,
297
+ refresh
298
+ } = useContext(PictoContext);
299
+ useEffect(() => {
300
+ refresh();
301
+ }, []);
302
+ return optimise('p_Z2ipaWS', /*#__PURE__*/React.createElement(SVGComponent$2u, props));
303
+ };
304
+
305
+ var SVGComponent$2t = (({
306
+ as: Component = "svg",
307
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
308
+ d: "m15.3,11.17l-2.51-2.49,1.18-1.18,4.53,4.5-4.53,4.5-1.18-1.18,2.51-2.49H5.5v-1.66h9.8Z"
309
+ })),
310
+ ...props
311
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
312
+ xmlns: "http://www.w3.org/2000/svg",
313
+ width: "24",
314
+ height: "24",
315
+ viewBox: "0 0 24 24",
316
+ fill: "currentColor"
317
+ }, props), children));
318
+
319
+ const ArrowRight = props => {
320
+ const {
321
+ optimise,
322
+ refresh
323
+ } = useContext(PictoContext);
324
+ useEffect(() => {
325
+ refresh();
326
+ }, []);
327
+ return optimise('p_iaeGf', /*#__PURE__*/React.createElement(SVGComponent$2t, props));
328
+ };
329
+
330
+ var SVGComponent$2s = (({
331
+ as: Component = "svg",
332
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
333
+ d: "m20.75,14.89l-3.58-3.57,1.57-1.57,6.26,6.25-6.26,6.25-1.57-1.57,3.58-3.57H7v-2.22h13.75Z"
334
+ })),
335
+ ...props
336
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
337
+ xmlns: "http://www.w3.org/2000/svg",
338
+ width: "32",
339
+ height: "32",
340
+ viewBox: "0 0 32 32",
341
+ fill: "currentColor"
342
+ }, props), children));
343
+
344
+ const ArrowRightBold = props => {
345
+ const {
346
+ optimise,
347
+ refresh
348
+ } = useContext(PictoContext);
349
+ useEffect(() => {
350
+ refresh();
351
+ }, []);
352
+ return optimise('p_11WmGg', /*#__PURE__*/React.createElement(SVGComponent$2s, props));
353
+ };
354
+
355
+ var SVGComponent$2r = (({
356
+ as: Component = "svg",
357
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
358
+ d: "m16.5,10.03l-1.18,1.18-2.49-2.51v9.8h-1.66v-9.8l-2.49,2.51-1.18-1.18,4.5-4.53,4.5,4.53Z"
359
+ })),
360
+ ...props
361
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
362
+ xmlns: "http://www.w3.org/2000/svg",
363
+ width: "24",
364
+ height: "24",
365
+ viewBox: "0 0 24 24",
366
+ fill: "currentColor"
367
+ }, props), children));
368
+
369
+ const ArrowUp = props => {
370
+ const {
371
+ optimise,
372
+ refresh
373
+ } = useContext(PictoContext);
374
+ useEffect(() => {
375
+ refresh();
376
+ }, []);
377
+ return optimise('p_16d0VX', /*#__PURE__*/React.createElement(SVGComponent$2r, props));
378
+ };
379
+
380
+ var SVGComponent$2q = (({
381
+ as: Component = "svg",
382
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
383
+ d: "M20.49,20.49a12,12,0,1,1,0-17A12,12,0,0,1,20.49,20.49Zm-.71-.71a11,11,0,1,1,0-15.56A11,11,0,0,1,19.78,19.78ZM15.06,8.23l-5.92.6,0-1L17,7.05l-.79,7.86-1-.06.61-5.91L7.4,17.3l-.7-.7Z",
384
+ fillRule: "evenodd"
385
+ })),
386
+ ...props
387
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
388
+ height: "24",
389
+ viewBox: "0 0 24 24",
390
+ width: "24",
391
+ xmlns: "http://www.w3.org/2000/svg",
392
+ fill: "currentColor"
393
+ }, props), children));
394
+
395
+ const ArrowUpRightCircle = props => {
396
+ const {
397
+ optimise,
398
+ refresh
399
+ } = useContext(PictoContext);
400
+ useEffect(() => {
401
+ refresh();
402
+ }, []);
403
+ return optimise('p_Z76OT6', /*#__PURE__*/React.createElement(SVGComponent$2q, props));
404
+ };
405
+
406
+ var SVGComponent$2p = (({
407
+ as: Component = "svg",
408
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
409
+ fillRule: "evenodd",
410
+ clipRule: "evenodd",
411
+ d: "M23 9.5V5L12 0.5L10.57 1L1 5V9.5H3V19.58C2.46957 19.58 1.96086 19.7907 1.58579 20.1658C1.21071 20.5409 1 21.0496 1 21.58V23.5H23V21.58C23 21.0496 22.7893 20.5409 22.4142 20.1658C22.0391 19.7907 21.5304 19.58 21 19.58V9.5H23ZM22 21.58V22.5H2V21.58C2 21.3148 2.10536 21.0604 2.29289 20.8729C2.48043 20.6854 2.73478 20.58 3 20.58H21C21.2652 20.58 21.5196 20.6854 21.7071 20.8729C21.8946 21.0604 22 21.3148 22 21.58ZM4 19.58V9.5H6V19.58H4ZM7 19.58V9.5H10V19.58H7ZM11 19.58V9.5H13V19.58H11ZM14 19.58V9.5H17V19.58H14ZM18 19.58V9.5H20V19.58H18ZM2 8.5V5.68L12 1.57L22 5.68V8.5H2ZM12 3.42C11.6044 3.42 11.2178 3.5373 10.8889 3.75706C10.56 3.97682 10.3036 4.28918 10.1522 4.65463C10.0009 5.02009 9.96126 5.42222 10.0384 5.81018C10.1156 6.19814 10.3061 6.55451 10.5858 6.83421C10.8655 7.11392 11.2219 7.3044 11.6098 7.38157C11.9978 7.45874 12.3999 7.41913 12.7654 7.26776C13.1308 7.11638 13.4432 6.86004 13.6629 6.53114C13.8827 6.20224 14 5.81556 14 5.42C14 4.88957 13.7893 4.38086 13.4142 4.00579C13.0391 3.63071 12.5304 3.42 12 3.42ZM12 6.42C11.8022 6.42 11.6089 6.36135 11.4444 6.25147C11.28 6.14159 11.1518 5.98541 11.0761 5.80268C11.0004 5.61996 10.9806 5.41889 11.0192 5.22491C11.0578 5.03093 11.153 4.85275 11.2929 4.71289C11.4327 4.57304 11.6109 4.4778 11.8049 4.43921C11.9989 4.40063 12.2 4.42043 12.3827 4.49612C12.5654 4.57181 12.7216 4.69998 12.8315 4.86443C12.9414 5.02888 13 5.22222 13 5.42C13 5.68522 12.8946 5.93957 12.7071 6.12711C12.5196 6.31464 12.2652 6.42 12 6.42Z"
412
+ })),
413
+ ...props
414
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
415
+ width: "24",
416
+ height: "24",
417
+ viewBox: "0 0 24 24",
418
+ xmlns: "http://www.w3.org/2000/svg",
419
+ fill: "currentColor"
420
+ }, props), children));
421
+
422
+ const Bank = props => {
423
+ const {
424
+ optimise,
425
+ refresh
426
+ } = useContext(PictoContext);
427
+ useEffect(() => {
428
+ refresh();
429
+ }, []);
430
+ return optimise('p_95oG', /*#__PURE__*/React.createElement(SVGComponent$2p, props));
431
+ };
432
+
433
+ var SVGComponent$2o = (({
434
+ as: Component = "svg",
435
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
436
+ d: "M21.19,7H24V22H3V17H.19V2h21ZM23,8H4V21H23ZM13.5,9A5.5,5.5,0,1,1,8,14.5,5.5,5.5,0,0,1,13.5,9Zm0,1A4.5,4.5,0,1,1,9,14.5,4.51,4.51,0,0,1,13.5,10Zm.5,8H13v-.8a1.7,1.7,0,0,1-1.48-1.71h1c0,.59.33.89,1,.89.82,0,1.33-.92-.17-1.44-.76-.27-1.68-.68-1.68-1.69A1.49,1.49,0,0,1,13,11.8V11h1v.81a1.57,1.57,0,0,1,1.31,1.59h-1a.74.74,0,0,0-.81-.77c-.55,0-.79.29-.79.62s.14.5,1,.77c1.06.34,1.66.84,1.66,1.74A1.42,1.42,0,0,1,14,17.21ZM20.19,7V3h-19V16H3V7Z",
437
+ fillRule: "evenodd"
438
+ })),
439
+ ...props
440
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
441
+ xmlns: "http://www.w3.org/2000/svg",
442
+ width: "24",
443
+ height: "24",
444
+ viewBox: "0 0 24 24",
445
+ fill: "currentColor"
446
+ }, props), children));
447
+
448
+ const BankNote = props => {
449
+ const {
450
+ optimise,
451
+ refresh
452
+ } = useContext(PictoContext);
453
+ useEffect(() => {
454
+ refresh();
455
+ }, []);
456
+ return optimise('p_Z27BwJf', /*#__PURE__*/React.createElement(SVGComponent$2o, props));
457
+ };
458
+
459
+ var SVGComponent$2n = (({
460
+ as: Component = "svg",
461
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
462
+ d: "M24,19H0V18H24Zm0-6H0V12H24Zm0-6H0V6H24Z"
463
+ })),
464
+ ...props
465
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
466
+ height: "24",
467
+ viewBox: "0 0 24 24",
468
+ width: "24",
469
+ xmlns: "http://www.w3.org/2000/svg",
470
+ fill: "currentColor"
471
+ }, props), children));
472
+
473
+ const Bars = props => {
474
+ const {
475
+ optimise,
476
+ refresh
477
+ } = useContext(PictoContext);
478
+ useEffect(() => {
479
+ refresh();
480
+ }, []);
481
+ return optimise('p_95qQ', /*#__PURE__*/React.createElement(SVGComponent$2n, props));
482
+ };
483
+
484
+ var SVGComponent$2m = (({
485
+ as: Component = "svg",
486
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
487
+ d: "M1,20V17.05C3,16.4,3.58,14.9,4.67,11c.9-3.22,1.89-6.79,4.87-8a2.22,2.22,0,0,1,0-.45,2.5,2.5,0,0,1,5,0,2.32,2.32,0,0,1,0,.46c3,1.24,4,4.81,4.88,8,1.1,3.95,1.7,5.42,3.66,6.06V20H16a4,4,0,0,1-8,0Zm14,0H9a3,3,0,0,0,6,0ZM2,19H22V17.76c-2.06-.92-2.82-3.63-3.62-6.5C17.31,7.45,16.21,3.5,12,3.5S6.69,7.44,5.63,11.24c-.8,2.88-1.56,5.6-3.63,6.52ZM13.49,2.65V2.5a1.5,1.5,0,0,0-3,0v.15A6.87,6.87,0,0,1,12,2.5,7,7,0,0,1,13.49,2.65Z"
488
+ })),
489
+ ...props
490
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
491
+ height: "24",
492
+ viewBox: "0 0 24 24",
493
+ width: "24",
494
+ xmlns: "http://www.w3.org/2000/svg",
495
+ fill: "currentColor"
496
+ }, props), children));
497
+
498
+ const Bell = props => {
499
+ const {
500
+ optimise,
501
+ refresh
502
+ } = useContext(PictoContext);
503
+ useEffect(() => {
504
+ refresh();
505
+ }, []);
506
+ return optimise('p_96pH', /*#__PURE__*/React.createElement(SVGComponent$2m, props));
507
+ };
508
+
509
+ var SVGComponent$2l = (({
510
+ as: Component = "svg",
511
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
512
+ d: "M5,0V24l7-6,7,6V0ZM6,1H18V21.83l-6-5.15L6,21.83Z"
513
+ })),
514
+ ...props
515
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
516
+ height: "24",
517
+ viewBox: "0 0 24 24",
518
+ width: "24",
519
+ xmlns: "http://www.w3.org/2000/svg",
520
+ fill: "currentColor"
521
+ }, props), children));
522
+
523
+ const Bookmark = props => {
524
+ const {
525
+ optimise,
526
+ refresh
527
+ } = useContext(PictoContext);
528
+ useEffect(() => {
529
+ refresh();
530
+ }, []);
531
+ return optimise('p_2ruN6Q', /*#__PURE__*/React.createElement(SVGComponent$2l, props));
532
+ };
533
+
534
+ var SVGComponent$2k = (({
535
+ as: Component = "svg",
536
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
537
+ d: "m8,5.04c-.55,0-1,.45-1,1v20c0,.55.45,1,1,1h3.5c.55,0,1-.45,1-1V6.04c0-.55-.45-1-1-1h-3.5Zm11.5,0c-.55,0-1,.45-1,1v20c0,.55.45,1,1,1h3.5c.55,0,1-.45,1-1V6.04c0-.55-.45-1-1-1h-3.5Z"
538
+ })),
539
+ ...props
540
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
541
+ xmlns: "http://www.w3.org/2000/svg",
542
+ width: "32",
543
+ height: "32",
544
+ viewBox: "0 0 32 32",
545
+ fill: "currentColor"
546
+ }, props), children));
547
+
548
+ const BreakBold = props => {
549
+ const {
550
+ optimise,
551
+ refresh
552
+ } = useContext(PictoContext);
553
+ useEffect(() => {
554
+ refresh();
555
+ }, []);
556
+ return optimise('p_7BImG', /*#__PURE__*/React.createElement(SVGComponent$2k, props));
557
+ };
558
+
559
+ var SVGComponent$2j = (({
560
+ as: Component = "svg",
561
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
562
+ d: "M16,4h8V23H0V4H8V2A1,1,0,0,1,9,1h6a1,1,0,0,1,1,1Zm7,1H1V22H23ZM20,9v1H4V9ZM15,2.5a.47.47,0,0,0-.15-.35A.47.47,0,0,0,14.5,2h-5a.47.47,0,0,0-.35.15A.47.47,0,0,0,9,2.5V4h6Z",
563
+ fillRule: "evenodd"
564
+ })),
565
+ ...props
566
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
567
+ xmlns: "http://www.w3.org/2000/svg",
568
+ width: "24",
569
+ height: "24",
570
+ viewBox: "0 0 24 24",
571
+ fill: "currentColor"
572
+ }, props), children));
573
+
574
+ const Briefcase = props => {
575
+ const {
576
+ optimise,
577
+ refresh
578
+ } = useContext(PictoContext);
579
+ useEffect(() => {
580
+ refresh();
581
+ }, []);
582
+ return optimise('p_ZCaOqa', /*#__PURE__*/React.createElement(SVGComponent$2j, props));
583
+ };
584
+
585
+ var SVGComponent$2i = (({
586
+ as: Component = "svg",
587
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
588
+ d: "M20,15a1,1,0,1,1-1-1A1,1,0,0,1,20,15Zm-3,0a1,1,0,1,1-1-1A1,1,0,0,1,17,15Zm-3,0a1,1,0,1,1-1-1A1,1,0,0,1,14,15ZM19.42,20a12.75,12.75,0,0,1-3.33.48C12.63,20.43,9,18.36,9,15c0-3.13,3.14-5.68,7-5.68s7,2.55,7,5.68a5.07,5.07,0,0,1-1.48,3.52l.84,2.69ZM6,16.57l-4.39,1.9,1.26-4A6.82,6.82,0,0,1,1,9.76C1,5.48,5.26,2,10.5,2c5,0,9.13,3.19,9.47,7.22a9.35,9.35,0,0,0-4-.89c-4.2,0-8,2.8-8,6.68a5.42,5.42,0,0,0,.41,2A17.1,17.1,0,0,1,6,16.57ZM24,15A6.25,6.25,0,0,0,21,9.8v0C21,4.67,16,1,10.5,1S0,4.7,0,9.76a7.75,7.75,0,0,0,1.79,4.92L.05,20.25l6.07-2.63A17,17,0,0,0,9,18.11a8.35,8.35,0,0,0,7.11,3.32A13.08,13.08,0,0,0,19.33,21L24,23l-1.32-4.25A5.87,5.87,0,0,0,24,15Z",
589
+ fillRule: "evenodd"
590
+ })),
591
+ ...props
592
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
593
+ xmlns: "http://www.w3.org/2000/svg",
594
+ width: "24",
595
+ height: "24",
596
+ viewBox: "0 0 24 24",
597
+ fill: "currentColor"
598
+ }, props), children));
599
+
600
+ const BubbleDouble = props => {
601
+ const {
602
+ optimise,
603
+ refresh
604
+ } = useContext(PictoContext);
605
+ useEffect(() => {
606
+ refresh();
607
+ }, []);
608
+ return optimise('p_2qOs6B', /*#__PURE__*/React.createElement(SVGComponent$2i, props));
609
+ };
610
+
611
+ var SVGComponent$2h = (({
612
+ as: Component = "svg",
613
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
614
+ d: "M12,2h2V4h2V7.7l7,2.62V23h1v1H0V23H1V12H7V4H9V2h2V0h1Zm3,3H8V23H9V21h5v2h1ZM13,22H10v1h3Zm8,1h1V11L16,8.77V23h1V21h4ZM7,13H2V23H3V21H6v2H7ZM5,22H4v1H5Zm15,0H18v1h2ZM4,17v2H3V17Zm2,0v2H5V17ZM11,7V19H10V7ZM21,18v1H17V18ZM13,7V19H12V7Zm8,9v1H17V16ZM4,14v2H3V14Zm2,0v2H5V14Zm15,0v1H17V14Zm0-2v1H17V12ZM13,3H10V4h3Z"
615
+ })),
616
+ ...props
617
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
618
+ height: "24",
619
+ viewBox: "0 0 24 24",
620
+ width: "24",
621
+ xmlns: "http://www.w3.org/2000/svg",
622
+ fill: "currentColor"
623
+ }, props), children));
624
+
625
+ const Building = props => {
626
+ const {
627
+ optimise,
628
+ refresh
629
+ } = useContext(PictoContext);
630
+ useEffect(() => {
631
+ refresh();
632
+ }, []);
633
+ return optimise('p_Z1BE88O', /*#__PURE__*/React.createElement(SVGComponent$2h, props));
634
+ };
635
+
636
+ var SVGComponent$2g = (({
637
+ as: Component = "svg",
638
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
639
+ d: "M13,24H11a1,1,0,0,1-.75-.34L9.67,23h4.66l-.58.66A1,1,0,0,1,13,24Zm1.87-3a.5.5,0,1,1,0,1H9.13a.5.5,0,1,1,0-1ZM12,4c3,0,6,2,6,5.73A10.74,10.74,0,0,1,16.09,15a10.41,10.41,0,0,0-1.84,5h1c0-3.29,3.75-6.1,3.75-10.27C19,5.39,15.5,3,12,3S5,5.39,5,9.73c0,4.17,3.75,7,3.75,10.27h1a10.41,10.41,0,0,0-1.84-5A10.74,10.74,0,0,1,6,9.73C6,6,9,4,12,4Zm9.42,8a.49.49,0,0,1,.25.66.5.5,0,0,1-.66.25l-.91-.42a.5.5,0,0,1-.25-.66.49.49,0,0,1,.66-.24ZM2.58,12a.49.49,0,0,0-.25.66.5.5,0,0,0,.66.25l.91-.42a.5.5,0,0,0,.25-.66.49.49,0,0,0-.66-.24ZM21.5,9h-1a.5.5,0,0,1,0-1h1a.5.5,0,0,1,0,1ZM3.5,8a.5.5,0,0,1,0,1h-1a.5.5,0,0,1,0-1ZM20.32,4.91a.5.5,0,0,0-.57-.82l-.82.57a.5.5,0,0,0-.13.7.51.51,0,0,0,.7.12Zm-16.64,0a.5.5,0,0,1,.57-.82l.82.57a.5.5,0,0,1,.13.7.51.51,0,0,1-.7.12ZM17,1.88a.5.5,0,0,0-.87-.49l-.49.87a.51.51,0,0,0,.2.68.5.5,0,0,0,.68-.19Zm-10,0a.5.5,0,0,1,.87-.49l.49.87a.51.51,0,0,1-.2.68.5.5,0,0,1-.68-.19ZM12.5.5a.5.5,0,0,0-1,0v1a.5.5,0,0,0,1,0Z"
640
+ })),
641
+ ...props
642
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
643
+ height: "24",
644
+ viewBox: "0 0 24 24",
645
+ width: "24",
646
+ xmlns: "http://www.w3.org/2000/svg",
647
+ fill: "currentColor"
648
+ }, props), children));
649
+
650
+ const Bulb = props => {
651
+ const {
652
+ optimise,
653
+ refresh
654
+ } = useContext(PictoContext);
655
+ useEffect(() => {
656
+ refresh();
657
+ }, []);
658
+ return optimise('p_9axB', /*#__PURE__*/React.createElement(SVGComponent$2g, props));
659
+ };
660
+
661
+ var SVGComponent$2f = (({
662
+ as: Component = "svg",
663
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("circle", {
664
+ cx: "8",
665
+ cy: "8",
666
+ r: "4"
667
+ })),
668
+ ...props
669
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
670
+ height: "16",
671
+ viewBox: "0 0 16 16",
672
+ width: "16",
673
+ xmlns: "http://www.w3.org/2000/svg",
674
+ fill: "currentColor"
675
+ }, props), children));
676
+
677
+ const BulletBold = props => {
678
+ const {
679
+ optimise,
680
+ refresh
681
+ } = useContext(PictoContext);
682
+ useEffect(() => {
683
+ refresh();
684
+ }, []);
685
+ return optimise('p_Z27pwP4', /*#__PURE__*/React.createElement(SVGComponent$2f, props));
686
+ };
687
+
688
+ var SVGComponent$2e = (({
689
+ as: Component = "svg",
690
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("circle", {
691
+ cx: "12",
692
+ cy: "12",
693
+ r: "4"
694
+ })),
695
+ ...props
696
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
697
+ xmlns: "http://www.w3.org/2000/svg",
698
+ width: "24",
699
+ height: "24",
700
+ viewBox: "0 0 24 24",
701
+ fill: "currentColor"
702
+ }, props), children));
703
+
704
+ const BulletBook = props => {
705
+ const {
706
+ optimise,
707
+ refresh
708
+ } = useContext(PictoContext);
709
+ useEffect(() => {
710
+ refresh();
711
+ }, []);
712
+ return optimise('p_Z27pwNq', /*#__PURE__*/React.createElement(SVGComponent$2e, props));
713
+ };
714
+
715
+ var SVGComponent$2d = (({
716
+ as: Component = "svg",
717
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
718
+ d: "M12.23,18.06a2.49,2.49,0,0,0,2.68-2.43l1.05.14A3.46,3.46,0,0,1,12.23,19a3.81,3.81,0,0,1-3.91-3.12H7V15H8.18c0-.16,0-.32,0-.48s0-.27,0-.41H7v-.9H8.3A3.88,3.88,0,0,1,12.23,10a3.5,3.5,0,0,1,3.69,3l-1,.16a2.54,2.54,0,0,0-2.7-2.23,2.82,2.82,0,0,0-2.88,2.25H13v.9H9.19c0,.14,0,.27,0,.41a3.87,3.87,0,0,0,0,.48h2.87v.9H9.36A2.82,2.82,0,0,0,12.23,18.06ZM15.5,5a3.93,3.93,0,0,1-.29,1.5h2.65l5.33,16H.85l4.27-16H7.79A3.93,3.93,0,0,1,7.5,5a4,4,0,0,1,8,0ZM8.9,6.5h5.2a3,3,0,1,0-5.2,0Zm-3,1-3.73,14H21.81l-4.67-14Z"
719
+ })),
720
+ ...props
721
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
722
+ xmlns: "http://www.w3.org/2000/svg",
723
+ width: "24",
724
+ height: "24",
725
+ viewBox: "0 0 24 24",
726
+ fill: "currentColor"
727
+ }, props), children));
728
+
729
+ const Burden = props => {
730
+ const {
731
+ optimise,
732
+ refresh
733
+ } = useContext(PictoContext);
734
+ useEffect(() => {
735
+ refresh();
736
+ }, []);
737
+ return optimise('p_2mw1QN', /*#__PURE__*/React.createElement(SVGComponent$2d, props));
738
+ };
739
+
740
+ var SVGComponent$2c = (({
741
+ as: Component = "svg",
742
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
743
+ d: "m4.5,7c0-.28.22-.5.5-.5h22c.28,0,.5.22.5.5v2c0,.28-.22.5-.5.5H5c-.28,0-.5-.22-.5-.5v-2Zm0,8c0-.28.22-.5.5-.5h22c.28,0,.5.22.5.5v2c0,.28-.22.5-.5.5H5c-.28,0-.5-.22-.5-.5v-2Zm.5,7.5c-.28,0-.5.22-.5.5v2c0,.28.22.5.5.5h22c.28,0,.5-.22.5-.5v-2c0-.28-.22-.5-.5-.5H5Z"
744
+ })),
745
+ ...props
746
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
747
+ xmlns: "http://www.w3.org/2000/svg",
748
+ width: "32",
749
+ height: "32",
750
+ viewBox: "0 0 32 32",
751
+ fill: "currentColor"
752
+ }, props), children));
753
+
754
+ const BurgerBold = props => {
755
+ const {
756
+ optimise,
757
+ refresh
758
+ } = useContext(PictoContext);
759
+ useEffect(() => {
760
+ refresh();
761
+ }, []);
762
+ return optimise('p_Z50ELm', /*#__PURE__*/React.createElement(SVGComponent$2c, props));
763
+ };
764
+
765
+ var SVGComponent$2b = (({
766
+ as: Component = "svg",
767
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
768
+ d: "M22,24H2V0H22ZM3,23H21V1H3ZM20,7H4V2H20ZM5,6H19V3H5Zm4,6H5V8H9ZM6,11H8V9H6Zm8,1H10V8h4Zm-3-1h2V9H11Zm3,6H10V13h4Zm-3-1h2V14H11ZM9,17H5V13H9ZM6,16H8V14H6Zm3,6H5V18H9ZM6,21H8V19H6Zm13-9H15V8h4Zm-3-1h2V9H16Zm3,6H15V13h4Zm-3-1h2V14H16Zm3,6H10V18h9Zm-8-1h7V19H11Z"
769
+ })),
770
+ ...props
771
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
772
+ height: "24",
773
+ viewBox: "0 0 24 24",
774
+ width: "24",
775
+ xmlns: "http://www.w3.org/2000/svg",
776
+ fill: "currentColor"
777
+ }, props), children));
778
+
779
+ const Calculator = props => {
780
+ const {
781
+ optimise,
782
+ refresh
783
+ } = useContext(PictoContext);
784
+ useEffect(() => {
785
+ refresh();
786
+ }, []);
787
+ return optimise('p_10Jxyh', /*#__PURE__*/React.createElement(SVGComponent$2b, props));
788
+ };
789
+
790
+ var SVGComponent$2a = (({
791
+ as: Component = "svg",
792
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
793
+ d: "M23.9,23H-.1V4h4V1h4V4h8V1h4V4h4Zm-1-15H.9V22h22ZM6.4,16.8l1-.1c.2.9.7,1.5,1.6,1.5a1.61,1.61,0,0,0,1.7-1.6c0-1-.8-1.8-2.4-1.4l.1-.8c.9.1,1.9-.3,1.9-1.3,0-.7-.5-1.2-1.4-1.2a1.45,1.45,0,0,0-1.5,1.4l-1-.2a2.39,2.39,0,0,1,2.5-2,2.28,2.28,0,0,1,2.5,2,1.88,1.88,0,0,1-1.2,1.6,1.85,1.85,0,0,1,1.6,1.9C11.9,18,10.6,19,9,19A2.39,2.39,0,0,1,6.4,16.8ZM15.9,19h-1V12.7a8.17,8.17,0,0,1-2,1.2V13a4.69,4.69,0,0,0,2.3-2h.7Zm7-14H.9V7h22ZM6.9,2h-2V4h2Zm12,0h-2V4h2Z"
794
+ })),
795
+ ...props
796
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
797
+ height: "24",
798
+ viewBox: "0 0 24 24",
799
+ width: "24",
800
+ xmlns: "http://www.w3.org/2000/svg",
801
+ fill: "currentColor"
802
+ }, props), children));
803
+
804
+ const Calendar = props => {
805
+ const {
806
+ optimise,
807
+ refresh
808
+ } = useContext(PictoContext);
809
+ useEffect(() => {
810
+ refresh();
811
+ }, []);
812
+ return optimise('p_Z8cP4v', /*#__PURE__*/React.createElement(SVGComponent$2a, props));
813
+ };
814
+
815
+ var SVGComponent$29 = (({
816
+ as: Component = "svg",
817
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
818
+ d: "M13,2V0H11V2H5V0H3V2H0V15H16V2Zm2,12H1V5H15ZM15,4H1V3H15ZM10.43,7.68,9,8.56v-1l1.53-.91.9,0v5.88h-1ZM7.27,10.74c0-.63-.4-.92-1.19-.92h-.5V9H6c.7,0,1.09-.3,1.09-.83a.9.9,0,0,0-1-.84h0a1.11,1.11,0,0,0-1.16,1l-1-.15A2,2,0,0,1,6,6.5c1.15,0,2,.67,2,1.62a1.4,1.4,0,0,1-.72,1.22,1.52,1.52,0,0,1,.93,1.51c0,1.07-.84,1.78-2.1,1.78a2.11,2.11,0,0,1-2.3-1.9,1.34,1.34,0,0,1,0-.2l1-.14c.08.88.54,1.35,1.34,1.35S7.27,11.37,7.27,10.74Z"
819
+ })),
820
+ ...props
821
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
822
+ xmlns: "http://www.w3.org/2000/svg",
823
+ width: "16",
824
+ height: "16",
825
+ viewBox: "0 0 16 16",
826
+ fill: "currentColor"
827
+ }, props), children));
828
+
829
+ const CalendarBold = props => {
830
+ const {
831
+ optimise,
832
+ refresh
833
+ } = useContext(PictoContext);
834
+ useEffect(() => {
835
+ refresh();
836
+ }, []);
837
+ return optimise('p_ZdD3T7', /*#__PURE__*/React.createElement(SVGComponent$29, props));
838
+ };
839
+
840
+ var SVGComponent$28 = (({
841
+ as: Component = "svg",
842
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
843
+ d: "M15,3a2,2,0,0,1,2,2V9l7-4V19l-7-4v4a2,2,0,0,1-2,2H2a2,2,0,0,1-2-2V5A2,2,0,0,1,2,3Zm0,17a1,1,0,0,0,1-1V5a1,1,0,0,0-1-1H2A1,1,0,0,0,1,5V19a1,1,0,0,0,1,1Zm2-9.85v3.7l6,3.43V6.72Z"
844
+ })),
845
+ ...props
846
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
847
+ xmlns: "http://www.w3.org/2000/svg",
848
+ width: "24",
849
+ height: "24",
850
+ viewBox: "0 0 24 24",
851
+ fill: "currentColor"
852
+ }, props), children));
853
+
854
+ const Camera = props => {
855
+ const {
856
+ optimise,
857
+ refresh
858
+ } = useContext(PictoContext);
859
+ useEffect(() => {
860
+ refresh();
861
+ }, []);
862
+ return optimise('p_2nf8iD', /*#__PURE__*/React.createElement(SVGComponent$28, props));
863
+ };
864
+
865
+ var SVGComponent$27 = (({
866
+ as: Component = "svg",
867
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
868
+ d: "M6,4.4H5V3H24V19H16.3L19,23H17.7L15,19H13l-2.7,4H9l2.7-4H9V18h8V17h3v1h3V4H6ZM8.2,21.8A1.16,1.16,0,0,1,7,23a1.38,1.38,0,0,1-1.3-1.2l-.4-4-.3,4A1.22,1.22,0,0,1,3.8,23a1.3,1.3,0,0,1-1.3-1.2l-.3-6.5-.3.6a1.23,1.23,0,0,1-1.3.5,1.09,1.09,0,0,1-.7-1v-.3L1.2,11a1.41,1.41,0,0,1,1.4-1H6.7A4.15,4.15,0,0,0,8,9.7l3.1-1.8a1.06,1.06,0,0,1,1.2.2.94.94,0,0,1-.1,1.3l-3,2.9a1.82,1.82,0,0,0-.6,1.4C8.5,15.1,8.2,21.8,8.2,21.8ZM2.5,11c-.2,0-.3.1-.4.3-.3,1-1,3.7-1.1,4.1l1.5-2.6a.32.32,0,0,1,.6.2l.3,8.8c.1.2.6.2.6,0,0,0,.3-3.4.3-3.9a.94.94,0,0,1,1-1,1,1,0,0,1,1,1c0,.3.3,3.4.4,3.9s.5.3.5,0c0,0,.2-6.7.3-8.1a3.33,3.33,0,0,1,.9-2.1l3-2.9c-.7.5-2.4,1.5-3.1,1.9a3.53,3.53,0,0,1-1.7.4ZM19,12H14V11h5Zm2-2H14V9h7ZM5.3,5A2.26,2.26,0,0,0,3,7.3,2.26,2.26,0,0,0,5.3,9.6,2.26,2.26,0,0,0,7.6,7.3,2.26,2.26,0,0,0,5.3,5Zm0,1a1.3,1.3,0,0,1,0,2.6A1.26,1.26,0,0,1,4,7.3,1.26,1.26,0,0,1,5.3,6ZM21,8H14V7h7Z"
869
+ })),
870
+ ...props
871
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
872
+ height: "24",
873
+ viewBox: "0 0 24 24",
874
+ width: "24",
875
+ xmlns: "http://www.w3.org/2000/svg",
876
+ fill: "currentColor"
877
+ }, props), children));
878
+
879
+ const ChalkboardTeacher = props => {
880
+ const {
881
+ optimise,
882
+ refresh
883
+ } = useContext(PictoContext);
884
+ useEffect(() => {
885
+ refresh();
886
+ }, []);
887
+ return optimise('p_2vUgaA', /*#__PURE__*/React.createElement(SVGComponent$27, props));
888
+ };
889
+
890
+ var SVGComponent$26 = (({
891
+ as: Component = "svg",
892
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
893
+ d: "M0,22H1V17H5v5H7V12h4V22h2V7h4V22h2V1h4V22h1v1H0Zm4-4H2v4H4Zm6-5H8v9h2Zm6-5H14V22h2Zm6-6H20V22h2Z"
894
+ })),
895
+ ...props
896
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
897
+ height: "24",
898
+ viewBox: "0 0 24 24",
899
+ width: "24",
900
+ xmlns: "http://www.w3.org/2000/svg",
901
+ fill: "currentColor"
902
+ }, props), children));
903
+
904
+ const ChartBar = props => {
905
+ const {
906
+ optimise,
907
+ refresh
908
+ } = useContext(PictoContext);
909
+ useEffect(() => {
910
+ refresh();
911
+ }, []);
912
+ return optimise('p_1Lpmv3', /*#__PURE__*/React.createElement(SVGComponent$26, props));
913
+ };
914
+
915
+ var SVGComponent$25 = (({
916
+ as: Component = "svg",
917
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
918
+ d: "M24,4.68,7.67,22,0,13l.76-.65,7,8.2L23.27,4Z"
919
+ })),
920
+ ...props
921
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
922
+ height: "24",
923
+ viewBox: "0 0 24 24",
924
+ width: "24",
925
+ xmlns: "http://www.w3.org/2000/svg",
926
+ fill: "currentColor"
927
+ }, props), children));
928
+
929
+ const Check = props => {
930
+ const {
931
+ optimise,
932
+ refresh
933
+ } = useContext(PictoContext);
934
+ useEffect(() => {
935
+ refresh();
936
+ }, []);
937
+ return optimise('p_4GGpz', /*#__PURE__*/React.createElement(SVGComponent$25, props));
938
+ };
939
+
940
+ var SVGComponent$24 = (({
941
+ as: Component = "svg",
942
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
943
+ d: "M5.8,11.6l8-8.29,1.44,1.38L5.88,14.4.32,9.23,1.68,7.77Z",
944
+ fillRule: "evenodd"
945
+ })),
946
+ ...props
947
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
948
+ xmlns: "http://www.w3.org/2000/svg",
949
+ width: "16",
950
+ height: "16",
951
+ viewBox: "0 0 16 16",
952
+ fill: "currentColor"
953
+ }, props), children));
954
+
955
+ const CheckBold = props => {
956
+ const {
957
+ optimise,
958
+ refresh
959
+ } = useContext(PictoContext);
960
+ useEffect(() => {
961
+ refresh();
962
+ }, []);
963
+ return optimise('p_Z2eHEHd', /*#__PURE__*/React.createElement(SVGComponent$24, props));
964
+ };
965
+
966
+ var SVGComponent$23 = (({
967
+ as: Component = "svg",
968
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
969
+ d: "m6.52,10.72l5.99-6.22,1.08,1.04-7.01,7.28-4.17-3.88,1.02-1.1,3.09,2.87Z"
970
+ })),
971
+ ...props
972
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
973
+ xmlns: "http://www.w3.org/2000/svg",
974
+ width: "16",
975
+ height: "16",
976
+ viewBox: "0 0 16 16",
977
+ fill: "currentColor"
978
+ }, props), children));
979
+
980
+ const CheckBoldMini = props => {
981
+ const {
982
+ optimise,
983
+ refresh
984
+ } = useContext(PictoContext);
985
+ useEffect(() => {
986
+ refresh();
987
+ }, []);
988
+ return optimise('p_XYUds', /*#__PURE__*/React.createElement(SVGComponent$23, props));
989
+ };
990
+
991
+ var SVGComponent$22 = (({
992
+ as: Component = "svg",
993
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
994
+ d: "M18.63,4.23c-.16-.16-.41-.32-.57-.16-.56.56-1.49.58-1.92,1.35v0c-.57.67-1.38,1.08-1.63,2a.35.35,0,0,0,.08,0l-.08,0c-.15.08-.16.23-.16.38l0,0a11.4,11.4,0,0,1-.89,1.08h0c-.08.15-.15.24-.23.37l-.09,0c-.23.41-.55.76-.8,1.17h0a10.34,10.34,0,0,1-.53,1l-.2.2a1.54,1.54,0,0,0-.05.17,2.6,2.6,0,0,0-.62,1.39l0,.05c-.09.07-.16.23-.25.32l0,.06a3.05,3.05,0,0,0-.7.88.18.18,0,0,0-.07.05.73.73,0,0,0-.16.41.06.06,0,0,0,0,0,4.53,4.53,0,0,0-.79,1.11l.08.08-.06,0c-.25.07-.09.67-.57.57l-.14-.09c-.23-.38-.44-.81-.66-1.27a.43.43,0,0,1,0-.11v-.12h0a.08.08,0,0,0,0,0,.3.3,0,0,1,0-.13c-.07-.22-.18-.47-.27-.72l-.09-.28A2.18,2.18,0,0,1,7,13.46a1.89,1.89,0,0,0-.8-1l0,0a.81.81,0,0,0-1.07-.24c-.39.25-.16.67.09.92a0,0,0,0,1,0,0,.91.91,0,0,0,.15.38h0A19.54,19.54,0,0,0,7,18.09a1,1,0,0,0,.07-.15,1,1,0,0,1,0,.17,1.15,1.15,0,0,0,.23.55l0,0H7.29c.51.67,1.08,1.17,2.05.76v0a1.26,1.26,0,0,0,.68-.78l.12-.1c0-.25.09-.41.09-.57.74-.48.9-1.31,1.31-2.07A6,6,0,0,1,12,15a3.86,3.86,0,0,0,.8-2.12l-.08,0,0,0c.07,0,.08-.07.09-.11l0,0c.48-.07.48-.51.57-.83l-.12.08.12-.17.16-.16v0l0,0a9.67,9.67,0,0,0,2.11-3,.56.56,0,0,1,.05-.08s0,.06,0,.08c.32-.41,1.06-.64.64-1.4h0c.9-.25,1.22-1,1.7-1.59h0c.07-.16.16-.25.23-.41h0c.09-.09.25-.16.34-.25V5C19,4.78,18.87,4.47,18.63,4.23ZM16.2,6l0,0-.11,0ZM7.54,16.87h0l-.08.06Zm-.13.34s0,0,0,.05h0S7.4,17.23,7.41,17.21Z"
995
+ })),
996
+ ...props
997
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
998
+ height: "24",
999
+ viewBox: "0 0 24 24",
1000
+ width: "24",
1001
+ xmlns: "http://www.w3.org/2000/svg",
1002
+ fill: "currentColor"
1003
+ }, props), children));
1004
+
1005
+ const CheckHandwrite = props => {
1006
+ const {
1007
+ optimise,
1008
+ refresh
1009
+ } = useContext(PictoContext);
1010
+ useEffect(() => {
1011
+ refresh();
1012
+ }, []);
1013
+ return optimise('p_14TK4O', /*#__PURE__*/React.createElement(SVGComponent$22, props));
1014
+ };
1015
+
1016
+ var SVGComponent$21 = (({
1017
+ as: Component = "svg",
1018
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1019
+ d: "m7.43,10.57l1.13-1.13,3.43,3.43,3.43-3.43,1.13,1.13-4.57,4.57-4.57-4.57Z"
1020
+ })),
1021
+ ...props
1022
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1023
+ xmlns: "http://www.w3.org/2000/svg",
1024
+ width: "24",
1025
+ height: "24",
1026
+ viewBox: "0 0 24 24",
1027
+ fill: "currentColor"
1028
+ }, props), children));
1029
+
1030
+ const ChevronDown = props => {
1031
+ const {
1032
+ optimise,
1033
+ refresh
1034
+ } = useContext(PictoContext);
1035
+ useEffect(() => {
1036
+ refresh();
1037
+ }, []);
1038
+ return optimise('p_ZslpJA', /*#__PURE__*/React.createElement(SVGComponent$21, props));
1039
+ };
1040
+
1041
+ var SVGComponent$20 = (({
1042
+ as: Component = "svg",
1043
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1044
+ d: "M1.94,5.86l1.29-1.3L7.44,8.84l4.2-4.28,1.3,1.3-5.5,5.58Z"
1045
+ })),
1046
+ ...props
1047
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1048
+ height: "16",
1049
+ viewBox: "0 0 16 16",
1050
+ width: "16",
1051
+ xmlns: "http://www.w3.org/2000/svg",
1052
+ fill: "currentColor"
1053
+ }, props), children));
1054
+
1055
+ const ChevronDownBold = props => {
1056
+ const {
1057
+ optimise,
1058
+ refresh
1059
+ } = useContext(PictoContext);
1060
+ useEffect(() => {
1061
+ refresh();
1062
+ }, []);
1063
+ return optimise('p_126jrr', /*#__PURE__*/React.createElement(SVGComponent$20, props));
1064
+ };
1065
+
1066
+ var SVGComponent$1$ = (({
1067
+ as: Component = "svg",
1068
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1069
+ d: "M9.58,2.5l1.3,1.3L6.59,8l4.29,4.2-1.3,1.3L4,8Z"
1070
+ })),
1071
+ ...props
1072
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1073
+ height: "16",
1074
+ viewBox: "0 0 16 16",
1075
+ width: "16",
1076
+ xmlns: "http://www.w3.org/2000/svg",
1077
+ fill: "currentColor"
1078
+ }, props), children));
1079
+
1080
+ const ChevronLeftBold = props => {
1081
+ const {
1082
+ optimise,
1083
+ refresh
1084
+ } = useContext(PictoContext);
1085
+ useEffect(() => {
1086
+ refresh();
1087
+ }, []);
1088
+ return optimise('p_1n8MkT', /*#__PURE__*/React.createElement(SVGComponent$1$, props));
1089
+ };
1090
+
1091
+ var SVGComponent$1_ = (({
1092
+ as: Component = "svg",
1093
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1094
+ d: "M6.3,2.5,5,3.8,9.28,8,5,12.2l1.3,1.3L11.88,8Z"
1095
+ })),
1096
+ ...props
1097
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1098
+ height: "16",
1099
+ viewBox: "0 0 16 16",
1100
+ width: "16",
1101
+ xmlns: "http://www.w3.org/2000/svg",
1102
+ fill: "currentColor"
1103
+ }, props), children));
1104
+
1105
+ const ChevronRightBold = props => {
1106
+ const {
1107
+ optimise,
1108
+ refresh
1109
+ } = useContext(PictoContext);
1110
+ useEffect(() => {
1111
+ refresh();
1112
+ }, []);
1113
+ return optimise('p_Z1NlNzP', /*#__PURE__*/React.createElement(SVGComponent$1_, props));
1114
+ };
1115
+
1116
+ var SVGComponent$1Z = (({
1117
+ as: Component = "svg",
1118
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1119
+ d: "m16.56,13.44l-1.13,1.13-3.43-3.43-3.43,3.43-1.13-1.13,4.57-4.57,4.57,4.57Z"
1120
+ })),
1121
+ ...props
1122
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1123
+ xmlns: "http://www.w3.org/2000/svg",
1124
+ width: "24",
1125
+ height: "24",
1126
+ viewBox: "0 0 24 24",
1127
+ fill: "currentColor"
1128
+ }, props), children));
1129
+
1130
+ const ChevronUp = props => {
1131
+ const {
1132
+ optimise,
1133
+ refresh
1134
+ } = useContext(PictoContext);
1135
+ useEffect(() => {
1136
+ refresh();
1137
+ }, []);
1138
+ return optimise('p_Z1zQNF8', /*#__PURE__*/React.createElement(SVGComponent$1Z, props));
1139
+ };
1140
+
1141
+ var SVGComponent$1Y = (({
1142
+ as: Component = "svg",
1143
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1144
+ d: "M1.94,10.14l1.29,1.3L7.44,7.16l4.2,4.28,1.3-1.3L7.44,4.56Z"
1145
+ })),
1146
+ ...props
1147
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1148
+ height: "16",
1149
+ viewBox: "0 0 16 16",
1150
+ width: "16",
1151
+ xmlns: "http://www.w3.org/2000/svg",
1152
+ fill: "currentColor"
1153
+ }, props), children));
1154
+
1155
+ const ChevronUpBold = props => {
1156
+ const {
1157
+ optimise,
1158
+ refresh
1159
+ } = useContext(PictoContext);
1160
+ useEffect(() => {
1161
+ refresh();
1162
+ }, []);
1163
+ return optimise('p_1q8qOU', /*#__PURE__*/React.createElement(SVGComponent$1Y, props));
1164
+ };
1165
+
1166
+ var SVGComponent$1X = (({
1167
+ as: Component = "svg",
1168
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1169
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm0,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1Zm0,11h6v1H11V4h1Z",
1170
+ fillRule: "evenodd"
1171
+ })),
1172
+ ...props
1173
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1174
+ height: "24",
1175
+ viewBox: "0 0 24 24",
1176
+ width: "24",
1177
+ xmlns: "http://www.w3.org/2000/svg",
1178
+ fill: "currentColor"
1179
+ }, props), children));
1180
+
1181
+ const Clock = props => {
1182
+ const {
1183
+ optimise,
1184
+ refresh
1185
+ } = useContext(PictoContext);
1186
+ useEffect(() => {
1187
+ refresh();
1188
+ }, []);
1189
+ return optimise('p_4Hg1C', /*#__PURE__*/React.createElement(SVGComponent$1X, props));
1190
+ };
1191
+
1192
+ var SVGComponent$1W = (({
1193
+ as: Component = "svg",
1194
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1195
+ d: "M8.5,8.17h2.67v1.5H7V4.83H8.5Zm6-.17A6.5,6.5,0,1,1,8,1.5,6.51,6.51,0,0,1,14.5,8ZM13,8a5,5,0,1,0-5,5A5,5,0,0,0,13,8Z"
1196
+ })),
1197
+ ...props
1198
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1199
+ xmlns: "http://www.w3.org/2000/svg",
1200
+ width: "16",
1201
+ height: "16",
1202
+ viewBox: "0 0 16 16",
1203
+ fill: "currentColor"
1204
+ }, props), children));
1205
+
1206
+ const ClockBold = props => {
1207
+ const {
1208
+ optimise,
1209
+ refresh
1210
+ } = useContext(PictoContext);
1211
+ useEffect(() => {
1212
+ refresh();
1213
+ }, []);
1214
+ return optimise('p_1ga8eC', /*#__PURE__*/React.createElement(SVGComponent$1W, props));
1215
+ };
1216
+
1217
+ var SVGComponent$1V = (({
1218
+ as: Component = "svg",
1219
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1220
+ d: "m16,17.73l5.27,5.27,1.73-1.73-5.27-5.27,5.27-5.27-1.73-1.73-5.27,5.27-5.27-5.27-1.73,1.73,5.27,5.27-5.27,5.27,1.73,1.73,5.27-5.27Z"
1221
+ })),
1222
+ ...props
1223
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1224
+ xmlns: "http://www.w3.org/2000/svg",
1225
+ width: "32",
1226
+ height: "32",
1227
+ viewBox: "0 0 32 32",
1228
+ fill: "currentColor"
1229
+ }, props), children));
1230
+
1231
+ const CloseBold = props => {
1232
+ const {
1233
+ optimise,
1234
+ refresh
1235
+ } = useContext(PictoContext);
1236
+ useEffect(() => {
1237
+ refresh();
1238
+ }, []);
1239
+ return optimise('p_1MPN80', /*#__PURE__*/React.createElement(SVGComponent$1V, props));
1240
+ };
1241
+
1242
+ var SVGComponent$1U = (({
1243
+ as: Component = "svg",
1244
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1245
+ d: "M18.5,20H5.5a4.5,4.5,0,0,1-.8-8.92l.78-.14,0-.79a6.49,6.49,0,0,1,13,0l0,.79.78.14A4.5,4.5,0,0,1,18.5,20Zm1-9.91a7.49,7.49,0,0,0-15,0A5.5,5.5,0,0,0,5.5,21h13a5.5,5.5,0,0,0,1-10.91Z"
1246
+ })),
1247
+ ...props
1248
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1249
+ height: "24",
1250
+ viewBox: "0 0 24 24",
1251
+ width: "24",
1252
+ xmlns: "http://www.w3.org/2000/svg",
1253
+ fill: "currentColor"
1254
+ }, props), children));
1255
+
1256
+ const Cloud = props => {
1257
+ const {
1258
+ optimise,
1259
+ refresh
1260
+ } = useContext(PictoContext);
1261
+ useEffect(() => {
1262
+ refresh();
1263
+ }, []);
1264
+ return optimise('p_4HgaE', /*#__PURE__*/React.createElement(SVGComponent$1U, props));
1265
+ };
1266
+
1267
+ var SVGComponent$1T = (({
1268
+ as: Component = "svg",
1269
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1270
+ d: "M11.49,10.17,9,13.24l-.73-.68L12,8l3.75,4.58-.75.67-2.5-3.08V18h-1Zm7,9.83H5.5a4.5,4.5,0,0,1-.8-8.92l.78-.14,0-.79a6.49,6.49,0,0,1,13,0l0,.79.78.14A4.5,4.5,0,0,1,18.5,20Zm1-9.91a7.49,7.49,0,0,0-15,0A5.5,5.5,0,0,0,5.5,21h13a5.5,5.5,0,0,0,1-10.91Z",
1271
+ fillRule: "evenodd"
1272
+ })),
1273
+ ...props
1274
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1275
+ xmlns: "http://www.w3.org/2000/svg",
1276
+ width: "24",
1277
+ height: "24",
1278
+ viewBox: "0 0 24 24",
1279
+ fill: "currentColor"
1280
+ }, props), children));
1281
+
1282
+ const CloudUpload = props => {
1283
+ const {
1284
+ optimise,
1285
+ refresh
1286
+ } = useContext(PictoContext);
1287
+ useEffect(() => {
1288
+ refresh();
1289
+ }, []);
1290
+ return optimise('p_efIsB', /*#__PURE__*/React.createElement(SVGComponent$1T, props));
1291
+ };
1292
+
1293
+ var SVGComponent$1S = (({
1294
+ as: Component = "svg",
1295
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1296
+ d: "m8,0C3.59,0,0,3.59,0,8s3.59,8,8,8,8-3.59,8-8S12.41,0,8,0Zm1.72,5.49c0,.05-.01.1-.1.05-.27-.1-.57-.16-1.08-.16-1.19,0-1.87.74-2.03,1.59h2.17s.05.01.05.05v.55c0,.05-.03.05-.05.05h-2.24c-.01.19-.01.44-.01.6h2.25s.05.01.05.07v.54s-.01.07-.05.07h-2.17c.17,1.01.94,1.69,2.03,1.69.47,0,.75-.02,1.09-.14.03-.01.07,0,.07.05v.99s-.02.1-.07.12c-.29.12-.66.15-1.26.15-1.74,0-2.94-1.19-3.14-2.85h-.57s-.05-.01-.05-.07v-.54s.01-.07.05-.07h.5c0-.2,0-.4.01-.6h-.49c-.05,0-.07-.01-.07-.05v-.54c0-.05.02-.07.05-.07h.58c.3-1.58,1.54-2.74,3.25-2.74.56,0,.89.03,1.15.14.05.01.07.05.07.12v.99Z"
1297
+ })),
1298
+ ...props
1299
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1300
+ height: "16",
1301
+ viewBox: "0 0 16 16",
1302
+ width: "16",
1303
+ xmlns: "http://www.w3.org/2000/svg",
1304
+ fill: "currentColor"
1305
+ }, props), children));
1306
+
1307
+ const CoinBold = props => {
1308
+ const {
1309
+ optimise,
1310
+ refresh
1311
+ } = useContext(PictoContext);
1312
+ useEffect(() => {
1313
+ refresh();
1314
+ }, []);
1315
+ return optimise('p_ZL7gXF', /*#__PURE__*/React.createElement(SVGComponent$1S, props));
1316
+ };
1317
+
1318
+ var SVGComponent$1R = (({
1319
+ as: Component = "svg",
1320
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1321
+ d: "M16.87,14.63l1,.14A3.45,3.45,0,0,1,14.19,18a3.82,3.82,0,0,1-3.92-3.12H9V14h1.17c0-.16,0-.32,0-.48s0-.27,0-.41H9v-.9h1.3A3.87,3.87,0,0,1,14.19,9a3.49,3.49,0,0,1,3.68,3l-1,.16a2.54,2.54,0,0,0-2.69-2.23,2.84,2.84,0,0,0-2.89,2.25h3.61v.9H11.15c0,.14,0,.27,0,.41s0,.32,0,.48H14v.9H11.31a2.83,2.83,0,0,0,2.88,2.18A2.49,2.49,0,0,0,16.87,14.63ZM24,13.5A10.43,10.43,0,0,1,4.93,19.42h0A10.48,10.48,0,1,1,19.08,4.59,10.51,10.51,0,0,1,24,13.5ZM3.79,17.24h0A10.73,10.73,0,0,1,3.1,13.5,10.49,10.49,0,0,1,13.55,3a10.26,10.26,0,0,1,3.34.55A9.48,9.48,0,0,0,3.79,17.24ZM23,13.5A9.46,9.46,0,1,0,13.55,23,9.49,9.49,0,0,0,23,13.5Z",
1322
+ fillRule: "evenodd"
1323
+ })),
1324
+ ...props
1325
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1326
+ xmlns: "http://www.w3.org/2000/svg",
1327
+ width: "24",
1328
+ height: "24",
1329
+ viewBox: "0 0 24 24",
1330
+ fill: "currentColor"
1331
+ }, props), children));
1332
+
1333
+ const Coins = props => {
1334
+ const {
1335
+ optimise,
1336
+ refresh
1337
+ } = useContext(PictoContext);
1338
+ useEffect(() => {
1339
+ refresh();
1340
+ }, []);
1341
+ return optimise('p_4HCzW', /*#__PURE__*/React.createElement(SVGComponent$1R, props));
1342
+ };
1343
+
1344
+ var SVGComponent$1Q = (({
1345
+ as: Component = "svg",
1346
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1347
+ d: "M11,2H21l3,3V7H19v5h1v3a7.86,7.86,0,0,0-2.08,0A2.21,2.21,0,0,0,16,17a2,2,0,0,0,3.68,1.09.51.51,0,1,1,.88.51A3.06,3.06,0,0,1,18,20a3,3,0,0,1-1-5.83V12h1V7H11V24H5V7H4V9H0V2H5V0h6ZM10,7H6V23h4ZM9,20,7,21v1l2-1Zm0-3L7,18v1l2-1Zm0-3L7,15v1l2-1Zm10-1H18v1h1ZM9,11,7,12v1l2-1ZM9,8,7,9v1L9,9Zm1-7H6V3H1V8H3V6H23V5.41L20.59,3H10Z",
1348
+ fillRule: "evenodd"
1349
+ })),
1350
+ ...props
1351
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1352
+ xmlns: "http://www.w3.org/2000/svg",
1353
+ width: "24",
1354
+ height: "24",
1355
+ viewBox: "0 0 24 24",
1356
+ fill: "currentColor"
1357
+ }, props), children));
1358
+
1359
+ const Crane = props => {
1360
+ const {
1361
+ optimise,
1362
+ refresh
1363
+ } = useContext(PictoContext);
1364
+ useEffect(() => {
1365
+ refresh();
1366
+ }, []);
1367
+ return optimise('p_4HYwO', /*#__PURE__*/React.createElement(SVGComponent$1Q, props));
1368
+ };
1369
+
1370
+ var SVGComponent$1P = (({
1371
+ as: Component = "svg",
1372
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1373
+ d: "M12,1A2.8,2.8,0,0,0,9.2,3.8a3.16,3.16,0,0,0,1.1,2.3C9.8,8.9,8.4,9.2,7.4,9.2A3.09,3.09,0,0,1,4.9,7.5a2.94,2.94,0,0,0,.7-1.9A2.86,2.86,0,0,0,2.8,2.8,2.88,2.88,0,0,0,0,5.7,3.06,3.06,0,0,0,2,8.5V23H22V8.4a2.92,2.92,0,0,0,2-2.8,2.8,2.8,0,0,0-5.6,0,2.94,2.94,0,0,0,.7,1.9,2.82,2.82,0,0,1-2.5,1.7c-.6,0-2.3,0-2.9-3.2a3,3,0,0,0,1-2.9A2.71,2.71,0,0,0,12,1Zm9,21V19H3v3Zm0-4V7.7c1.1-.3,2-.9,2-2.1a1.8,1.8,0,0,0-3.6,0,2.62,2.62,0,0,0,.9,1.8c-.8,1.6-1.9,2.8-3.7,2.8-2.5,0-3.6-1.9-3.9-4.5.7-.7,1.3-1.3,1.1-2.3A1.83,1.83,0,0,0,12,2a1.79,1.79,0,0,0-1.8,1.8c0,.8.5,1.3,1.2,1.9-.3,2.7-1.4,4.5-3.9,4.5-1.9,0-2.9-1.4-3.7-2.7a3,3,0,0,0,1-1.9A1.79,1.79,0,0,0,3,3.8,1.92,1.92,0,0,0,1,5.7c0,1.1.9,1.8,2,2.1V18Z",
1374
+ fillRule: "evenodd"
1375
+ })),
1376
+ ...props
1377
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1378
+ height: "24",
1379
+ viewBox: "0 0 24 24",
1380
+ width: "24",
1381
+ xmlns: "http://www.w3.org/2000/svg",
1382
+ fill: "currentColor"
1383
+ }, props), children));
1384
+
1385
+ const Crown = props => {
1386
+ const {
1387
+ optimise,
1388
+ refresh
1389
+ } = useContext(PictoContext);
1390
+ useEffect(() => {
1391
+ refresh();
1392
+ }, []);
1393
+ return optimise('p_4I3e6', /*#__PURE__*/React.createElement(SVGComponent$1P, props));
1394
+ };
1395
+
1396
+ var SVGComponent$1O = (({
1397
+ as: Component = "svg",
1398
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1399
+ d: "M15.3333 5.33333H16V0H10.6667V0.666667H14.862L7.09733 8.43067L7.56933 8.90267L15.3333 1.138V5.33333Z"
1400
+ }), /*#__PURE__*/React.createElement("path", {
1401
+ d: "M0.666667 6.66667H4.66255e-07L0 12L5.33333 12V11.3333L1.138 11.3333L8.90267 3.56933L8.43067 3.09733L0.666667 10.862L0.666667 6.66667Z"
1402
+ })),
1403
+ ...props
1404
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1405
+ width: "16",
1406
+ height: "12",
1407
+ viewBox: "0 0 16 12",
1408
+ xmlns: "http://www.w3.org/2000/svg",
1409
+ fill: "currentColor"
1410
+ }, props), children));
1411
+
1412
+ const DoubleArrow = props => {
1413
+ const {
1414
+ optimise,
1415
+ refresh
1416
+ } = useContext(PictoContext);
1417
+ useEffect(() => {
1418
+ refresh();
1419
+ }, []);
1420
+ return optimise('p_1Bzbk', /*#__PURE__*/React.createElement(SVGComponent$1O, props));
1421
+ };
1422
+
1423
+ var SVGComponent$1N = (({
1424
+ as: Component = "svg",
1425
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1426
+ d: "M17.7,2.38A11.45,11.45,0,0,1,24,12.5,11.76,11.76,0,0,1,12,24,11.76,11.76,0,0,1,0,12.5,11.45,11.45,0,0,1,6.3,2.38l.63.81A10.47,10.47,0,0,0,1,12.5,10.74,10.74,0,0,0,12,23,10.74,10.74,0,0,0,23,12.5a10.47,10.47,0,0,0-5.89-9.31ZM12.52,0V14.83l3.91-4.61.79.67L12,17,6.78,10.9l.77-.68,3.93,4.61V0Z"
1427
+ })),
1428
+ ...props
1429
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1430
+ height: "24",
1431
+ viewBox: "0 0 24 24",
1432
+ width: "24",
1433
+ xmlns: "http://www.w3.org/2000/svg",
1434
+ fill: "currentColor"
1435
+ }, props), children));
1436
+
1437
+ const Download = props => {
1438
+ const {
1439
+ optimise,
1440
+ refresh
1441
+ } = useContext(PictoContext);
1442
+ useEffect(() => {
1443
+ refresh();
1444
+ }, []);
1445
+ return optimise('p_1KMgPC', /*#__PURE__*/React.createElement(SVGComponent$1N, props));
1446
+ };
1447
+
1448
+ var SVGComponent$1M = (({
1449
+ as: Component = "svg",
1450
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1451
+ d: "M23,7h-6V1H1V17H7v6H23V7Zm-15,1h14v14H8V8ZM16,2V7H7V16H2V2h14Zm-1.5,9h1v3.5h3.5v1h-3.5v3.5h-1v-3.5h-3.5v-1h3.5v-3.5Z",
1452
+ fillRule: "evenodd"
1453
+ })),
1454
+ ...props
1455
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1456
+ xmlns: "http://www.w3.org/2000/svg",
1457
+ width: "24",
1458
+ height: "24",
1459
+ viewBox: "0 0 24 24",
1460
+ fill: "currentColor"
1461
+ }, props), children));
1462
+
1463
+ const Duplicate = props => {
1464
+ const {
1465
+ optimise,
1466
+ refresh
1467
+ } = useContext(PictoContext);
1468
+ useEffect(() => {
1469
+ refresh();
1470
+ }, []);
1471
+ return optimise('p_Z1hF7XI', /*#__PURE__*/React.createElement(SVGComponent$1M, props));
1472
+ };
1473
+
1474
+ var SVGComponent$1L = (({
1475
+ as: Component = "svg",
1476
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1477
+ d: "M24,21H0V3H24ZM1,4.52V20H23V4.52l-11,10ZM22.09,4H1.91L12,13.17Z"
1478
+ })),
1479
+ ...props
1480
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1481
+ height: "24",
1482
+ viewBox: "0 0 24 24",
1483
+ width: "24",
1484
+ xmlns: "http://www.w3.org/2000/svg",
1485
+ fill: "currentColor"
1486
+ }, props), children));
1487
+
1488
+ const Envelope = props => {
1489
+ const {
1490
+ optimise,
1491
+ refresh
1492
+ } = useContext(PictoContext);
1493
+ useEffect(() => {
1494
+ refresh();
1495
+ }, []);
1496
+ return optimise('p_Z2liq9E', /*#__PURE__*/React.createElement(SVGComponent$1L, props));
1497
+ };
1498
+
1499
+ var SVGComponent$1K = (({
1500
+ as: Component = "svg",
1501
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("rect", {
1502
+ height: "2",
1503
+ width: "12",
1504
+ x: "2",
1505
+ y: "9"
1506
+ }), /*#__PURE__*/React.createElement("rect", {
1507
+ height: "2",
1508
+ width: "12",
1509
+ x: "2",
1510
+ y: "5"
1511
+ })),
1512
+ ...props
1513
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1514
+ height: "16",
1515
+ viewBox: "0 0 16 16",
1516
+ width: "16",
1517
+ xmlns: "http://www.w3.org/2000/svg",
1518
+ fill: "currentColor"
1519
+ }, props), children));
1520
+
1521
+ const EqualBold = props => {
1522
+ const {
1523
+ optimise,
1524
+ refresh
1525
+ } = useContext(PictoContext);
1526
+ useEffect(() => {
1527
+ refresh();
1528
+ }, []);
1529
+ return optimise('p_Z1HCd84', /*#__PURE__*/React.createElement(SVGComponent$1K, props));
1530
+ };
1531
+
1532
+ var SVGComponent$1J = (({
1533
+ as: Component = "svg",
1534
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1535
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm0,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1ZM5.22,9.48H18.78v1H5.22Zm13.56,4H5.22v1H18.78v-1Z",
1536
+ fillRule: "evenodd"
1537
+ })),
1538
+ ...props
1539
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1540
+ xmlns: "http://www.w3.org/2000/svg",
1541
+ width: "24",
1542
+ height: "24",
1543
+ viewBox: "0 0 24 24",
1544
+ fill: "currentColor"
1545
+ }, props), children));
1546
+
1547
+ const EqualCircle = props => {
1548
+ const {
1549
+ optimise,
1550
+ refresh
1551
+ } = useContext(PictoContext);
1552
+ useEffect(() => {
1553
+ refresh();
1554
+ }, []);
1555
+ return optimise('p_ZDQwl0', /*#__PURE__*/React.createElement(SVGComponent$1J, props));
1556
+ };
1557
+
1558
+ var SVGComponent$1I = (({
1559
+ as: Component = "svg",
1560
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1561
+ d: "M4.35,8.69C5.5,3.69,9.24.5,14.41.5a9.89,9.89,0,0,1,6.37,2.11A9,9,0,0,1,23.9,8.28l-1,.15a7.93,7.93,0,0,0-2.77-5A8.88,8.88,0,0,0,14.41,1.5c-4.67,0-8,2.83-9.08,7.4l-.09.6H14v1H5.11L5,11.06c0,.3,0,.61,0,.94s0,.76,0,1.12l.06.38H12v1H5.24l.12.78a9.37,9.37,0,0,0,3.16,5.29,9.16,9.16,0,0,0,5.89,1.93,8.83,8.83,0,0,0,6-2A8.19,8.19,0,0,0,23,15.05l1,.11a9.17,9.17,0,0,1-3,6.1,9.82,9.82,0,0,1-6.62,2.24,10.17,10.17,0,0,1-6.52-2.15,10.34,10.34,0,0,1-3.51-5.86v0l-.15-1H0v-1H4.07l0-.27v0c0-.41,0-.82,0-1.2v0c0-.33,0-.68,0-1H4l.07-.45H0v-1H4.23l.11-.79Z"
1562
+ })),
1563
+ ...props
1564
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1565
+ xmlns: "http://www.w3.org/2000/svg",
1566
+ width: "24",
1567
+ height: "24",
1568
+ viewBox: "0 0 24 24",
1569
+ fill: "currentColor"
1570
+ }, props), children));
1571
+
1572
+ const Euro = props => {
1573
+ const {
1574
+ optimise,
1575
+ refresh
1576
+ } = useContext(PictoContext);
1577
+ useEffect(() => {
1578
+ refresh();
1579
+ }, []);
1580
+ return optimise('p_9yC0', /*#__PURE__*/React.createElement(SVGComponent$1I, props));
1581
+ };
1582
+
1583
+ var SVGComponent$1H = (({
1584
+ as: Component = "svg",
1585
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1586
+ d: "M3.18,10.12H1.11v-1H3l0-.27c0-.26,0-.52,0-.77s0-.43,0-.65l0-.27H1.11v-1H3.16l0-.2A6,6,0,0,1,9.28,1a5.37,5.37,0,0,1,5.64,4.47l-1.11.18A4.33,4.33,0,0,0,9.28,2,4.83,4.83,0,0,0,4.39,5.9l-.08.32H10.2v1h-6l0,.23c0,.23,0,.46,0,.69s0,.54,0,.81l0,.23H8.79v1H4.32l.09.32a4.84,4.84,0,0,0,4.87,3.75,4.25,4.25,0,0,0,4.53-3.94L15,10.4a5.33,5.33,0,0,1-5.72,4.83,6,6,0,0,1-6.06-4.92Z"
1587
+ })),
1588
+ ...props
1589
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1590
+ xmlns: "http://www.w3.org/2000/svg",
1591
+ width: "16",
1592
+ height: "16",
1593
+ viewBox: "0 0 16 16",
1594
+ fill: "currentColor"
1595
+ }, props), children));
1596
+
1597
+ const EuroBold = props => {
1598
+ const {
1599
+ optimise,
1600
+ refresh
1601
+ } = useContext(PictoContext);
1602
+ useEffect(() => {
1603
+ refresh();
1604
+ }, []);
1605
+ return optimise('p_ZcuF7g', /*#__PURE__*/React.createElement(SVGComponent$1H, props));
1606
+ };
1607
+
1608
+ var SVGComponent$1G = (({
1609
+ as: Component = "svg",
1610
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1611
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm0,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1Zm-.5,5h1v9h-1ZM12,18a.84.84,0,1,1,.85-.84A.85.85,0,0,1,12,18Z",
1612
+ fillRule: "evenodd"
1613
+ })),
1614
+ ...props
1615
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1616
+ height: "24",
1617
+ viewBox: "0 0 24 24",
1618
+ width: "24",
1619
+ xmlns: "http://www.w3.org/2000/svg",
1620
+ fill: "currentColor"
1621
+ }, props), children));
1622
+
1623
+ const ExclamationMarkCircle = props => {
1624
+ const {
1625
+ optimise,
1626
+ refresh
1627
+ } = useContext(PictoContext);
1628
+ useEffect(() => {
1629
+ refresh();
1630
+ }, []);
1631
+ return optimise('p_mpUd6', /*#__PURE__*/React.createElement(SVGComponent$1G, props));
1632
+ };
1633
+
1634
+ var SVGComponent$1F = (({
1635
+ as: Component = "svg",
1636
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1637
+ d: "M16,8a8,8,0,1,0-8,8A8,8,0,0,0,16,8ZM7,10V3H9v7Zm2.25,2.25A1.25,1.25,0,1,1,8,11,1.25,1.25,0,0,1,9.25,12.25Z",
1638
+ fillRule: "evenodd"
1639
+ })),
1640
+ ...props
1641
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1642
+ xmlns: "http://www.w3.org/2000/svg",
1643
+ width: "16",
1644
+ height: "16",
1645
+ viewBox: "0 0 16 16",
1646
+ fill: "currentColor"
1647
+ }, props), children));
1648
+
1649
+ const ExclamationMarkCircleBold = props => {
1650
+ const {
1651
+ optimise,
1652
+ refresh
1653
+ } = useContext(PictoContext);
1654
+ useEffect(() => {
1655
+ refresh();
1656
+ }, []);
1657
+ return optimise('p_1nrR69', /*#__PURE__*/React.createElement(SVGComponent$1F, props));
1658
+ };
1659
+
1660
+ var SVGComponent$1E = (({
1661
+ as: Component = "svg",
1662
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1663
+ d: "M15,8c0-3.86-3.14-7-7-7S1,4.14,1,8s3.14,7,7,7,7-3.14,7-7ZM8,0c4.42,0,8,3.58,8,8s-3.58,8-8,8S0,12.42,0,8,3.58,0,8,0Zm-1,10V3h2v7h-2Zm2.25,2.25c0,.69-.56,1.25-1.25,1.25s-1.25-.56-1.25-1.25,.56-1.25,1.25-1.25,1.25,.56,1.25,1.25Z"
1664
+ })),
1665
+ ...props
1666
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1667
+ xmlns: "http://www.w3.org/2000/svg",
1668
+ width: "16",
1669
+ height: "16",
1670
+ viewBox: "0 0 16 16",
1671
+ fill: "currentColor"
1672
+ }, props), children));
1673
+
1674
+ const ExclamationMarkCircleLine = props => {
1675
+ const {
1676
+ optimise,
1677
+ refresh
1678
+ } = useContext(PictoContext);
1679
+ useEffect(() => {
1680
+ refresh();
1681
+ }, []);
1682
+ return optimise('p_1nt9Cq', /*#__PURE__*/React.createElement(SVGComponent$1E, props));
1683
+ };
1684
+
1685
+ var SVGComponent$1D = (({
1686
+ as: Component = "svg",
1687
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1688
+ d: "M24,23H0L12,1ZM1.68,22H22.32L12,3.09ZM12,20a.85.85,0,1,0-.85-.84A.85.85,0,0,0,12,20Zm.5-11v8h-1V9Z"
1689
+ })),
1690
+ ...props
1691
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1692
+ height: "24",
1693
+ viewBox: "0 0 24 24",
1694
+ width: "24",
1695
+ xmlns: "http://www.w3.org/2000/svg",
1696
+ fill: "currentColor"
1697
+ }, props), children));
1698
+
1699
+ const ExclamationMarkTriangle = props => {
1700
+ const {
1701
+ optimise,
1702
+ refresh
1703
+ } = useContext(PictoContext);
1704
+ useEffect(() => {
1705
+ refresh();
1706
+ }, []);
1707
+ return optimise('p_QOnNU', /*#__PURE__*/React.createElement(SVGComponent$1D, props));
1708
+ };
1709
+
1710
+ var SVGComponent$1C = (({
1711
+ as: Component = "svg",
1712
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1713
+ d: "M8 0.666504L16 15.3332H0L8 0.666504ZM7 5L7 11H9L9 5H7ZM8 14.5C8.69036 14.5 9.25 13.9404 9.25 13.25C9.25 12.5596 8.69036 12 8 12C7.30964 12 6.75 12.5596 6.75 13.25C6.75 13.9404 7.30964 14.5 8 14.5Z",
1714
+ fillRule: "evenodd"
1715
+ })),
1716
+ ...props
1717
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1718
+ width: "16",
1719
+ height: "16",
1720
+ viewBox: "0 0 16 16",
1721
+ xmlns: "http://www.w3.org/2000/svg",
1722
+ fill: "currentColor"
1723
+ }, props), children));
1724
+
1725
+ const ExclamationMarkTriangleBold = props => {
1726
+ const {
1727
+ optimise,
1728
+ refresh
1729
+ } = useContext(PictoContext);
1730
+ useEffect(() => {
1731
+ refresh();
1732
+ }, []);
1733
+ return optimise('p_KoHeE', /*#__PURE__*/React.createElement(SVGComponent$1C, props));
1734
+ };
1735
+
1736
+ var SVGComponent$1B = (({
1737
+ as: Component = "svg",
1738
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1739
+ d: "M8,.67L0,15.33H16L8,.67Zm0,2.09L1.68,14.33H14.32L8,2.75Zm-.88,2.45v5.37h1.79V5.2h-1.79Zm.89,8.5c.62,0,1.12-.5,1.12-1.12s-.5-1.12-1.12-1.12-1.12,.5-1.12,1.12,.5,1.12,1.12,1.12Z",
1740
+ fillRule: "evenodd"
1741
+ })),
1742
+ ...props
1743
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1744
+ xmlns: "http://www.w3.org/2000/svg",
1745
+ width: "16",
1746
+ height: "16",
1747
+ viewBox: "0 0 16 16",
1748
+ fill: "currentColor"
1749
+ }, props), children));
1750
+
1751
+ const ExclamationMarkTriangleLine = props => {
1752
+ const {
1753
+ optimise,
1754
+ refresh
1755
+ } = useContext(PictoContext);
1756
+ useEffect(() => {
1757
+ refresh();
1758
+ }, []);
1759
+ return optimise('p_KpYKV', /*#__PURE__*/React.createElement(SVGComponent$1B, props));
1760
+ };
1761
+
1762
+ var SVGComponent$1A = (({
1763
+ as: Component = "svg",
1764
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1765
+ d: "M14,4H1V22H21V11h1V23H0V3H14ZM24,9H23V2.71L11.35,14.35l-.7-.7L22.29,2H16V1h8Z",
1766
+ fillRule: "evenodd"
1767
+ })),
1768
+ ...props
1769
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1770
+ xmlns: "http://www.w3.org/2000/svg",
1771
+ width: "24",
1772
+ height: "24",
1773
+ viewBox: "0 0 24 24",
1774
+ fill: "currentColor"
1775
+ }, props), children));
1776
+
1777
+ const ExternalLink = props => {
1778
+ const {
1779
+ optimise,
1780
+ refresh
1781
+ } = useContext(PictoContext);
1782
+ useEffect(() => {
1783
+ refresh();
1784
+ }, []);
1785
+ return optimise('p_Z1rf3Yh', /*#__PURE__*/React.createElement(SVGComponent$1A, props));
1786
+ };
1787
+
1788
+ var SVGComponent$1z = (({
1789
+ as: Component = "svg",
1790
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1791
+ d: "M12,20C7,20,2.42,15.79,0,11.58,2.42,7.47,6.94,4,12,4s9.64,3.45,12,7.56C21.77,16,17.28,20,12,20ZM1.17,11.58C2,12.91,6.19,19,12,19c6.31,0,10.11-6.1,10.85-7.4C22.09,10.4,18.25,5,12,5S2,10.35,1.17,11.58ZM12,7a5,5,0,1,1-5,5A5,5,0,0,1,12,7Zm0,1a4,4,0,1,1-4,4A4,4,0,0,1,12,8Z",
1792
+ fillRule: "evenodd"
1793
+ })),
1794
+ ...props
1795
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1796
+ height: "24",
1797
+ viewBox: "0 0 24 24",
1798
+ width: "24",
1799
+ xmlns: "http://www.w3.org/2000/svg",
1800
+ fill: "currentColor"
1801
+ }, props), children));
1802
+
1803
+ const Eye = props => {
1804
+ const {
1805
+ optimise,
1806
+ refresh
1807
+ } = useContext(PictoContext);
1808
+ useEffect(() => {
1809
+ refresh();
1810
+ }, []);
1811
+ return optimise('p_iQb', /*#__PURE__*/React.createElement(SVGComponent$1z, props));
1812
+ };
1813
+
1814
+ var SVGComponent$1y = (({
1815
+ as: Component = "svg",
1816
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1817
+ d: "M23.05,15a8,8,0,0,1,1.26,16V25.38h1.87l.36-2.33H24.31V21.54a1.17,1.17,0,0,1,1.3-1.26h1v-2a12.14,12.14,0,0,0-1.8-.16h0a2.84,2.84,0,0,0-3,3.14v1.77h-2v2.33h2V31a8,8,0,0,1,1.26-16Z"
1818
+ })),
1819
+ ...props
1820
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1821
+ height: "46",
1822
+ viewBox: "0 0 46 46",
1823
+ width: "46",
1824
+ xmlns: "http://www.w3.org/2000/svg",
1825
+ fill: "currentColor"
1826
+ }, props), children));
1827
+
1828
+ const Facebook = props => {
1829
+ const {
1830
+ optimise,
1831
+ refresh
1832
+ } = useContext(PictoContext);
1833
+ useEffect(() => {
1834
+ refresh();
1835
+ }, []);
1836
+ return optimise('p_EyY0U', /*#__PURE__*/React.createElement(SVGComponent$1y, props));
1837
+ };
1838
+
1839
+ var SVGComponent$1x = (({
1840
+ as: Component = "svg",
1841
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1842
+ d: "M20.1,12.05a8.05,8.05,0,0,1-6.79,8V14.38h1.87l.36-2.33H13.31V10.54a1.16,1.16,0,0,1,1.31-1.26h1v-2a12.14,12.14,0,0,0-1.8-.16,2.84,2.84,0,0,0-3,3.14v1.77h-2v2.33h2V20a8,8,0,1,1,9.31-7.95Z"
1843
+ })),
1844
+ ...props
1845
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1846
+ xmlns: "http://www.w3.org/2000/svg",
1847
+ width: "24",
1848
+ height: "24",
1849
+ viewBox: "0 0 24 24",
1850
+ fill: "currentColor"
1851
+ }, props), children));
1852
+
1853
+ const FacebookSmall = props => {
1854
+ const {
1855
+ optimise,
1856
+ refresh
1857
+ } = useContext(PictoContext);
1858
+ useEffect(() => {
1859
+ refresh();
1860
+ }, []);
1861
+ return optimise('p_Z2eebHf', /*#__PURE__*/React.createElement(SVGComponent$1x, props));
1862
+ };
1863
+
1864
+ var SVGComponent$1w = (({
1865
+ as: Component = "svg",
1866
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1867
+ d: "M22,24H2V0H16l6,6ZM15,1H3V23H21V7H15Zm3,15v1H6V16Zm0-3v1H6V13Zm0-3v1H6V10ZM16,6h4.59L16,1.41Z"
1868
+ })),
1869
+ ...props
1870
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1871
+ height: "24",
1872
+ viewBox: "0 0 24 24",
1873
+ width: "24",
1874
+ xmlns: "http://www.w3.org/2000/svg",
1875
+ fill: "currentColor"
1876
+ }, props), children));
1877
+
1878
+ const File = props => {
1879
+ const {
1880
+ optimise,
1881
+ refresh
1882
+ } = useContext(PictoContext);
1883
+ useEffect(() => {
1884
+ refresh();
1885
+ }, []);
1886
+ return optimise('p_9Dt7', /*#__PURE__*/React.createElement(SVGComponent$1w, props));
1887
+ };
1888
+
1889
+ var SVGComponent$1v = (({
1890
+ as: Component = "svg",
1891
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1892
+ d: "M16.9999 11.0309L11.0079 17.6539L7.33594 13.7229L8.03694 13.0399L11.0449 16.2239L16.2719 10.3459L16.9999 11.0309Z"
1893
+ }), /*#__PURE__*/React.createElement("path", {
1894
+ fillRule: "evenodd",
1895
+ clipRule: "evenodd",
1896
+ d: "M2 24H22V6L16 0H2V24ZM3 1H15V7H21V23H3V1ZM20.586 6H16V1.414L20.586 6Z"
1897
+ })),
1898
+ ...props
1899
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1900
+ width: "24",
1901
+ height: "24",
1902
+ viewBox: "0 0 24 24",
1903
+ xmlns: "http://www.w3.org/2000/svg",
1904
+ fill: "currentColor"
1905
+ }, props), children));
1906
+
1907
+ const FileCheck = props => {
1908
+ const {
1909
+ optimise,
1910
+ refresh
1911
+ } = useContext(PictoContext);
1912
+ useEffect(() => {
1913
+ refresh();
1914
+ }, []);
1915
+ return optimise('p_LLbJ6', /*#__PURE__*/React.createElement(SVGComponent$1v, props));
1916
+ };
1917
+
1918
+ var SVGComponent$1u = (({
1919
+ as: Component = "svg",
1920
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1921
+ d: "M22,24H4V2H16l6,6ZM15,3H5V23H21V9H15ZM14,1H3V22H2V0H14Zm2,7h4.59L16,3.41Z",
1922
+ fillRule: "evenodd"
1923
+ })),
1924
+ ...props
1925
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1926
+ xmlns: "http://www.w3.org/2000/svg",
1927
+ width: "24",
1928
+ height: "24",
1929
+ viewBox: "0 0 24 24",
1930
+ fill: "currentColor"
1931
+ }, props), children));
1932
+
1933
+ const Files = props => {
1934
+ const {
1935
+ optimise,
1936
+ refresh
1937
+ } = useContext(PictoContext);
1938
+ useEffect(() => {
1939
+ refresh();
1940
+ }, []);
1941
+ return optimise('p_4T3Or', /*#__PURE__*/React.createElement(SVGComponent$1u, props));
1942
+ };
1943
+
1944
+ var SVGComponent$1t = (({
1945
+ as: Component = "svg",
1946
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1947
+ d: "M23,0,14,14.15v7.73L10,24V14.15L1,0ZM2.75,1,11,13.85v8.49l2-1.07V13.85L21.23,1Z"
1948
+ })),
1949
+ ...props
1950
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1951
+ height: "24",
1952
+ viewBox: "0 0 24 24",
1953
+ width: "24",
1954
+ xmlns: "http://www.w3.org/2000/svg",
1955
+ fill: "currentColor"
1956
+ }, props), children));
1957
+
1958
+ const Filter = props => {
1959
+ const {
1960
+ optimise,
1961
+ refresh
1962
+ } = useContext(PictoContext);
1963
+ useEffect(() => {
1964
+ refresh();
1965
+ }, []);
1966
+ return optimise('p_2tY0pM', /*#__PURE__*/React.createElement(SVGComponent$1t, props));
1967
+ };
1968
+
1969
+ var SVGComponent$1s = (({
1970
+ as: Component = "svg",
1971
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1972
+ d: "M12.15,7.94H13V16H12V9l-1.81,1.17v-1ZM24,12A12,12,0,1,1,12,0,12,12,0,0,1,24,12Zm-1,0A11,11,0,1,0,12,23,11,11,0,0,0,23,12Z",
1973
+ fillRule: "evenodd"
1974
+ })),
1975
+ ...props
1976
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
1977
+ xmlns: "http://www.w3.org/2000/svg",
1978
+ width: "24",
1979
+ height: "24",
1980
+ viewBox: "0 0 24 24",
1981
+ fill: "currentColor"
1982
+ }, props), children));
1983
+
1984
+ const FirstCircle = props => {
1985
+ const {
1986
+ optimise,
1987
+ refresh
1988
+ } = useContext(PictoContext);
1989
+ useEffect(() => {
1990
+ refresh();
1991
+ }, []);
1992
+ return optimise('p_c1KQd', /*#__PURE__*/React.createElement(SVGComponent$1s, props));
1993
+ };
1994
+
1995
+ var SVGComponent$1r = (({
1996
+ as: Component = "svg",
1997
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
1998
+ d: "M22,1H2V24H3V15H22L16,7.55ZM19.91,14H3V2H19.73L14.68,7.51Z",
1999
+ fillRule: "evenodd"
2000
+ })),
2001
+ ...props
2002
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2003
+ xmlns: "http://www.w3.org/2000/svg",
2004
+ width: "24",
2005
+ height: "24",
2006
+ viewBox: "0 0 24 24",
2007
+ fill: "currentColor"
2008
+ }, props), children));
2009
+
2010
+ const Flag = props => {
2011
+ const {
2012
+ optimise,
2013
+ refresh
2014
+ } = useContext(PictoContext);
2015
+ useEffect(() => {
2016
+ refresh();
2017
+ }, []);
2018
+ return optimise('p_9E9O', /*#__PURE__*/React.createElement(SVGComponent$1r, props));
2019
+ };
2020
+
2021
+ var SVGComponent$1q = (({
2022
+ as: Component = "svg",
2023
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2024
+ d: "M11,5H24V22H0V2H8ZM1,3V21H23V6H10.59l-3-3Z",
2025
+ fillRule: "evenodd"
2026
+ })),
2027
+ ...props
2028
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2029
+ xmlns: "http://www.w3.org/2000/svg",
2030
+ width: "24",
2031
+ height: "24",
2032
+ viewBox: "0 0 24 24",
2033
+ fill: "currentColor"
2034
+ }, props), children));
2035
+
2036
+ const Folder = props => {
2037
+ const {
2038
+ optimise,
2039
+ refresh
2040
+ } = useContext(PictoContext);
2041
+ useEffect(() => {
2042
+ refresh();
2043
+ }, []);
2044
+ return optimise('p_2unlqQ', /*#__PURE__*/React.createElement(SVGComponent$1q, props));
2045
+ };
2046
+
2047
+ var SVGComponent$1p = (({
2048
+ as: Component = "svg",
2049
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2050
+ d: "M0,2H8l3,3H21V9h3L20,22H0Zm22.65,8H4.74L1.35,21H19.26ZM20,9V6H10.59l-3-3H1V18.75L4,9Z"
2051
+ })),
2052
+ ...props
2053
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2054
+ height: "24",
2055
+ viewBox: "0 0 24 24",
2056
+ width: "24",
2057
+ xmlns: "http://www.w3.org/2000/svg",
2058
+ fill: "currentColor"
2059
+ }, props), children));
2060
+
2061
+ const FolderOpen = props => {
2062
+ const {
2063
+ optimise,
2064
+ refresh
2065
+ } = useContext(PictoContext);
2066
+ useEffect(() => {
2067
+ refresh();
2068
+ }, []);
2069
+ return optimise('p_1n9Mxa', /*#__PURE__*/React.createElement(SVGComponent$1p, props));
2070
+ };
2071
+
2072
+ var SVGComponent$1o = (({
2073
+ as: Component = "svg",
2074
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2075
+ d: "M13.85,7.94H12.43l-3.56,5.6v.82h4.05V16h.93V14.36h1v-.83h-1Zm-.93,5.59H9.82l3.07-4.85h0ZM12,0A12,12,0,1,0,24,12,12,12,0,0,0,12,0Zm0,23A11,11,0,1,1,23,12,11,11,0,0,1,12,23Z",
2076
+ fillRule: "evenodd"
2077
+ })),
2078
+ ...props
2079
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2080
+ xmlns: "http://www.w3.org/2000/svg",
2081
+ width: "24",
2082
+ height: "24",
2083
+ viewBox: "0 0 24 24",
2084
+ fill: "currentColor"
2085
+ }, props), children));
2086
+
2087
+ const FourCircle = props => {
2088
+ const {
2089
+ optimise,
2090
+ refresh
2091
+ } = useContext(PictoContext);
2092
+ useEffect(() => {
2093
+ refresh();
2094
+ }, []);
2095
+ return optimise('p_Z25Oev0', /*#__PURE__*/React.createElement(SVGComponent$1o, props));
2096
+ };
2097
+
2098
+ var SVGComponent$1n = (({
2099
+ as: Component = "svg",
2100
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2101
+ d: "M12.1,0A12,12,0,1,1,.1,12a12,12,0,0,1,12-12Zm3.7,16H8.4c.6,4.3,2.2,7,3.7,7S15.2,20.3,15.8,16Zm6.6,0H16.9a13.46,13.46,0,0,1-2.5,6.8A11.43,11.43,0,0,0,22.4,16Zm-15,0H1.9a11.06,11.06,0,0,0,8,6.8A13.46,13.46,0,0,1,7.4,16ZM7.3,9H1.5a11.83,11.83,0,0,0,0,6H7.2A40.69,40.69,0,0,1,7.3,9ZM16,9H8.3a30,30,0,0,0,0,6H16A30,30,0,0,0,16,9Zm6.7,0H17a27.39,27.39,0,0,1,0,6h5.7A11.83,11.83,0,0,0,22.7,9ZM9.9,1.2A11.06,11.06,0,0,0,1.9,8H7.4A13.46,13.46,0,0,1,9.9,1.2ZM15.8,8c-.6-4.3-2.2-7-3.7-7S9,3.7,8.4,8ZM14.4,1.2A14.51,14.51,0,0,1,16.8,8h5.5A11.08,11.08,0,0,0,14.4,1.2Z"
2102
+ })),
2103
+ ...props
2104
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2105
+ height: "24",
2106
+ viewBox: "0 0 24 24",
2107
+ width: "24",
2108
+ xmlns: "http://www.w3.org/2000/svg",
2109
+ fill: "currentColor"
2110
+ }, props), children));
2111
+
2112
+ const Globe = props => {
2113
+ const {
2114
+ optimise,
2115
+ refresh
2116
+ } = useContext(PictoContext);
2117
+ useEffect(() => {
2118
+ refresh();
2119
+ }, []);
2120
+ return optimise('p_4XwLL', /*#__PURE__*/React.createElement(SVGComponent$1n, props));
2121
+ };
2122
+
2123
+ var SVGComponent$1m = (({
2124
+ as: Component = "svg",
2125
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2126
+ d: "M22,9.7l-2,1V18c-1,2-5.6,3-8.5,3C8.3,21,4.1,20,3,18V10.2L0,8.3,12,3,23,9.2V18l1,3H21l1-3ZM4,10.8v6.9C5,19,8.2,20,11.5,20c2.9,0,6.6-1,7.5-2.3V11.2l-7.9,4ZM2.1,8.5l9,5.7,9.8-5L12,4.1Z"
2127
+ })),
2128
+ ...props
2129
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2130
+ height: "24",
2131
+ viewBox: "0 0 24 24",
2132
+ width: "24",
2133
+ xmlns: "http://www.w3.org/2000/svg",
2134
+ fill: "currentColor"
2135
+ }, props), children));
2136
+
2137
+ const GraduationCap = props => {
2138
+ const {
2139
+ optimise,
2140
+ refresh
2141
+ } = useContext(PictoContext);
2142
+ useEffect(() => {
2143
+ refresh();
2144
+ }, []);
2145
+ return optimise('p_1bVjwk', /*#__PURE__*/React.createElement(SVGComponent$1m, props));
2146
+ };
2147
+
2148
+ var SVGComponent$1l = (({
2149
+ as: Component = "svg",
2150
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2151
+ d: "M10.63,8.3H10v-1h.5c0-.16,0-.33,0-.5H10v-1h.68a4.09,4.09,0,0,1,.46-1.08A3.17,3.17,0,0,1,14,3.3a3.16,3.16,0,0,1,2.15.82A2.37,2.37,0,0,1,17,5.8H16a1.45,1.45,0,0,0-.52-.94A2.2,2.2,0,0,0,14,4.3a2.17,2.17,0,0,0-2,1,3,3,0,0,0-.26.54H14.5v1h-3c0,.17,0,.34,0,.5H14v1H11.68a2.45,2.45,0,0,0,.44.73A2.42,2.42,0,0,0,14,9.8a1.92,1.92,0,0,0,2-1.12l1,.24a2.92,2.92,0,0,1-3,1.88,3.37,3.37,0,0,1-2.62-1.11A3.43,3.43,0,0,1,10.63,8.3ZM7,7a7,7,0,1,1,7,7A7,7,0,0,1,7,7ZM8,7a6,6,0,1,0,6-6A6,6,0,0,0,8,7ZM22,17.14a1.87,1.87,0,0,1-.63,1.36C20,19.78,19,20.73,18,21.57l-.21.2c-.48.42-.91.81-1.33,1.2A3.46,3.46,0,0,1,14,24a4.53,4.53,0,0,1-1.3-.2A26.72,26.72,0,0,0,7,22.67V24H2V15H7v1.73a17.51,17.51,0,0,0,1.77-.68,4.61,4.61,0,0,1,1.88-.42,8.57,8.57,0,0,1,2.93.72q.6.22,1.38.48a1.72,1.72,0,0,1,1.17,1.31L19,15.94l.09-.07a1.92,1.92,0,0,1,1.2-.43A1.74,1.74,0,0,1,22,17.14ZM6,16H3v7H6Zm13.69.65S16.73,19,16,19.5a1.92,1.92,0,0,1-1.15.52A1.55,1.55,0,0,1,14.5,20l-.19,0c-.68-.16-1.77-.41-2.56-.66a.45.45,0,1,1,.27-.86c.44.1,1.59.36,2.2.52,1,.29,1.27-.86.42-1.15l-.57-.2-1.32-.46A4.29,4.29,0,0,0,9.16,17,16.15,16.15,0,0,1,7,17.78v3.88a29.74,29.74,0,0,1,6,1.15,2.63,2.63,0,0,0,2.78-.58l1.56-1.41c.93-.82,2-1.78,3.37-3.05C21.53,17,20.53,16,19.69,16.65Z",
2152
+ fillRule: "evenodd"
2153
+ })),
2154
+ ...props
2155
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2156
+ xmlns: "http://www.w3.org/2000/svg",
2157
+ width: "24",
2158
+ height: "24",
2159
+ viewBox: "0 0 24 24",
2160
+ fill: "currentColor"
2161
+ }, props), children));
2162
+
2163
+ const HandCoin = props => {
2164
+ const {
2165
+ optimise,
2166
+ refresh
2167
+ } = useContext(PictoContext);
2168
+ useEffect(() => {
2169
+ refresh();
2170
+ }, []);
2171
+ return optimise('p_4Iz5Q', /*#__PURE__*/React.createElement(SVGComponent$1l, props));
2172
+ };
2173
+
2174
+ var SVGComponent$1k = (({
2175
+ as: Component = "svg",
2176
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2177
+ d: "M12,21.59C6.37,16.05,1,11.3,1,7.19A5.06,5.06,0,0,1,6.28,2c1.31,0,4.15.5,5.72,4.46C13.59,2.49,16.46,2,17.73,2A5,5,0,0,1,23,7.19C23,11.26,17.86,15.82,12,21.59ZM17.73,1A6.53,6.53,0,0,0,12,4.25,6.51,6.51,0,0,0,6.28,1,6,6,0,0,0,0,7.19C0,11.85,5.57,16.62,12,23c6.43-6.38,12-11.15,12-15.81A6,6,0,0,0,17.73,1Z"
2178
+ })),
2179
+ ...props
2180
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2181
+ height: "24",
2182
+ viewBox: "0 0 24 24",
2183
+ width: "24",
2184
+ xmlns: "http://www.w3.org/2000/svg",
2185
+ fill: "currentColor"
2186
+ }, props), children));
2187
+
2188
+ const Heart = props => {
2189
+ const {
2190
+ optimise,
2191
+ refresh
2192
+ } = useContext(PictoContext);
2193
+ useEffect(() => {
2194
+ refresh();
2195
+ }, []);
2196
+ return optimise('p_51CrD', /*#__PURE__*/React.createElement(SVGComponent$1k, props));
2197
+ };
2198
+
2199
+ var SVGComponent$1j = (({
2200
+ as: Component = "svg",
2201
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2202
+ d: "M17.73,1A6.53,6.53,0,0,0,12,4.25,6.51,6.51,0,0,0,6.28,1,6,6,0,0,0,0,7.19C0,11.85,5.57,16.62,12,23c6.43-6.38,12-11.15,12-15.81A6,6,0,0,0,17.73,1Z",
2203
+ fillRule: "evenodd"
2204
+ })),
2205
+ ...props
2206
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2207
+ xmlns: "http://www.w3.org/2000/svg",
2208
+ width: "24",
2209
+ height: "24",
2210
+ viewBox: "0 0 24 24",
2211
+ fill: "currentColor"
2212
+ }, props), children));
2213
+
2214
+ const HeartPlain = props => {
2215
+ const {
2216
+ optimise,
2217
+ refresh
2218
+ } = useContext(PictoContext);
2219
+ useEffect(() => {
2220
+ refresh();
2221
+ }, []);
2222
+ return optimise('p_ZrNxFK', /*#__PURE__*/React.createElement(SVGComponent$1j, props));
2223
+ };
2224
+
2225
+ var SVGComponent$1i = (({
2226
+ as: Component = "svg",
2227
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2228
+ d: "M19.1,24H5.91A2,2,0,0,1,4,22a2,2,0,0,1,1.31-1.88c-.56-3.18,1.63-5.65,3.27-7.38.84-.89,1.64-1.73,1.63-2.28a.73.73,0,0,0-.63-.62c-.71,0-1.85,1.29-3.21,1.29A2.57,2.57,0,0,1,4,8.57a1.79,1.79,0,0,1,.91-1.81A3.79,3.79,0,0,0,6.85,4.38a2.47,2.47,0,0,1,2.27-2c1.14,0,1.75.48,1.4-.54A6.13,6.13,0,0,0,9.35,0c6,0,10.71,4.18,10.71,9.55,0,5.59-3.21,7.56-.89,10.46A2,2,0,0,1,21,22,2,2,0,0,1,19.1,24ZM6.25,21H5.91A1,1,0,0,0,5,22a1,1,0,0,0,.93,1H19.1a1,1,0,1,0-.17-2ZM18.9,8a9.1,9.1,0,0,0-7.62-6.85c1.21,2.28-.51,2.49-1.52,2.31-1.48-.26-1.64.38-2,1.29a4.77,4.77,0,0,1-2.4,2.91C4.64,8,5.11,9.78,6,10.07A2.51,2.51,0,0,0,7.93,9.5a3.26,3.26,0,0,1,1.65-.66,1.71,1.71,0,0,1,1.61,1.6c0,1-.83,1.86-1.91,3C6.37,16.51,6,18.1,6.31,20H18c-.95-1.59-.72-2.95,0-5H16.6a.5.5,0,0,1,0-1h1.69c.11-.32.21-.65.31-1H17.21a.5.5,0,0,1,0-1h1.62A10,10,0,0,0,19,11H17.6a.5.5,0,0,1,0-1h1.47V9.55a5.21,5.21,0,0,0,0-.55H17.38a.5.5,0,0,1,0-1ZM9.78,6.9A1.38,1.38,0,0,1,8.37,5.56a1.42,1.42,0,0,1,2.83,0A1.38,1.38,0,0,1,9.78,6.9Zm0-1.68a.4.4,0,0,0-.43.34.45.45,0,0,0,.87,0A.4.4,0,0,0,9.78,5.22Z",
2229
+ fillRule: "evenodd"
2230
+ })),
2231
+ ...props
2232
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2233
+ xmlns: "http://www.w3.org/2000/svg",
2234
+ width: "24",
2235
+ height: "24",
2236
+ viewBox: "0 0 24 24",
2237
+ fill: "currentColor"
2238
+ }, props), children));
2239
+
2240
+ const HorseChase = props => {
2241
+ const {
2242
+ optimise,
2243
+ refresh
2244
+ } = useContext(PictoContext);
2245
+ useEffect(() => {
2246
+ refresh();
2247
+ }, []);
2248
+ return optimise('p_Z1uLKT0', /*#__PURE__*/React.createElement(SVGComponent$1i, props));
2249
+ };
2250
+
2251
+ var SVGComponent$1h = (({
2252
+ as: Component = "svg",
2253
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2254
+ d: "M22,11.41V24H2V11.41L.71,12.71,0,12,12,0,24,12l-.71.71ZM16,23h5V10.41l-9-9-9,9V23H8V14h8Zm-1-7.89H9v7.78h6Z"
2255
+ })),
2256
+ ...props
2257
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2258
+ height: "24",
2259
+ viewBox: "0 0 24 24",
2260
+ width: "24",
2261
+ xmlns: "http://www.w3.org/2000/svg",
2262
+ fill: "currentColor"
2263
+ }, props), children));
2264
+
2265
+ const House = props => {
2266
+ const {
2267
+ optimise,
2268
+ refresh
2269
+ } = useContext(PictoContext);
2270
+ useEffect(() => {
2271
+ refresh();
2272
+ }, []);
2273
+ return optimise('p_531FK', /*#__PURE__*/React.createElement(SVGComponent$1h, props));
2274
+ };
2275
+
2276
+ var SVGComponent$1g = (({
2277
+ as: Component = "svg",
2278
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2279
+ d: "M20.27,14.69l.73.69L18,18.5l-2-1.78.66-.75L18,17.12Zm3.64,8.52-.82.58-2.21-3.1a5,5,0,0,1-2.57.71H0V8.65L9,.32l9,8.33v2.76h.31a5,5,0,0,1,3.37,8.69ZM10.5,15.5h-3v4.9h3Zm4.81,4.9A5,5,0,0,1,17,11.57V9.09L9,1.68,1,9.09V20.4H6.5V14.5h5v5.9Zm7-4a4,4,0,1,0-4,4A4,4,0,0,0,22.31,16.4Z"
2280
+ })),
2281
+ ...props
2282
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2283
+ xmlns: "http://www.w3.org/2000/svg",
2284
+ width: "24",
2285
+ height: "24",
2286
+ viewBox: "0 0 24 24",
2287
+ fill: "currentColor"
2288
+ }, props), children));
2289
+
2290
+ const HouseMagnifier = props => {
2291
+ const {
2292
+ optimise,
2293
+ refresh
2294
+ } = useContext(PictoContext);
2295
+ useEffect(() => {
2296
+ refresh();
2297
+ }, []);
2298
+ return optimise('p_Z1pRCUl', /*#__PURE__*/React.createElement(SVGComponent$1g, props));
2299
+ };
2300
+
2301
+ var SVGComponent$1f = (({
2302
+ as: Component = "svg",
2303
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2304
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm0,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1Zm.5,17h-1V9h1ZM12,6a.85.85,0,1,1-.85.84A.85.85,0,0,1,12,6Z",
2305
+ fillRule: "evenodd"
2306
+ })),
2307
+ ...props
2308
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2309
+ height: "24",
2310
+ viewBox: "0 0 24 24",
2311
+ width: "24",
2312
+ xmlns: "http://www.w3.org/2000/svg",
2313
+ fill: "currentColor"
2314
+ }, props), children));
2315
+
2316
+ const InfoCircle = props => {
2317
+ const {
2318
+ optimise,
2319
+ refresh
2320
+ } = useContext(PictoContext);
2321
+ useEffect(() => {
2322
+ refresh();
2323
+ }, []);
2324
+ return optimise('p_P93Av', /*#__PURE__*/React.createElement(SVGComponent$1f, props));
2325
+ };
2326
+
2327
+ var SVGComponent$1e = (({
2328
+ as: Component = "svg",
2329
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2330
+ d: "M8,16c4.42,0,8-3.58,8-8S12.42,0,8,0,0,3.58,0,8,3.58,16,8,16Zm.67-4h-1.33V6.67h1.33v5.33Zm-.67-8.17c.46,0,.83,.37,.83,.83s-.37,.83-.83,.83-.83-.37-.83-.83,.37-.83,.83-.83Z"
2331
+ })),
2332
+ ...props
2333
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2334
+ height: "16",
2335
+ viewBox: "0 0 16 16",
2336
+ width: "16",
2337
+ xmlns: "http://www.w3.org/2000/svg",
2338
+ fill: "currentColor"
2339
+ }, props), children));
2340
+
2341
+ const InfoCircleBold = props => {
2342
+ const {
2343
+ optimise,
2344
+ refresh
2345
+ } = useContext(PictoContext);
2346
+ useEffect(() => {
2347
+ refresh();
2348
+ }, []);
2349
+ return optimise('p_Z1oWiq2', /*#__PURE__*/React.createElement(SVGComponent$1e, props));
2350
+ };
2351
+
2352
+ var SVGComponent$1d = (({
2353
+ as: Component = "svg",
2354
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2355
+ d: "M8,15c3.87,0,7-3.13,7-7S11.87,1,8,1,1,4.13,1,8s3.13,7,7,7Zm8-7c0,4.42-3.58,8-8,8S0,12.42,0,8,3.58,0,8,0s8,3.58,8,8Zm-8.67,4h1.33V6.67h-1.33v5.33Zm1.5-7.33c0-.46-.37-.83-.83-.83s-.83,.37-.83,.83,.37,.83,.83,.83,.83-.37,.83-.83Z"
2356
+ })),
2357
+ ...props
2358
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2359
+ xmlns: "http://www.w3.org/2000/svg",
2360
+ width: "16",
2361
+ height: "16",
2362
+ viewBox: "0 0 16 16",
2363
+ fill: "currentColor"
2364
+ }, props), children));
2365
+
2366
+ const InfoCircleLine = props => {
2367
+ const {
2368
+ optimise,
2369
+ refresh
2370
+ } = useContext(PictoContext);
2371
+ useEffect(() => {
2372
+ refresh();
2373
+ }, []);
2374
+ return optimise('p_Z1oV0SK', /*#__PURE__*/React.createElement(SVGComponent$1d, props));
2375
+ };
2376
+
2377
+ var SVGComponent$1c = (({
2378
+ as: Component = "svg",
2379
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2380
+ d: "M23,16.44c2.14,0,2.39,0,3.23,0a4.09,4.09,0,0,1,1.49.28,2.56,2.56,0,0,1,1.51,1.51,4.32,4.32,0,0,1,.28,1.49c0,.84,0,1.09,0,3.23s0,2.39,0,3.23a4,4,0,0,1-.28,1.49,2.42,2.42,0,0,1-.59.92,2.57,2.57,0,0,1-.92.6,4.39,4.39,0,0,1-1.49.27c-.84,0-1.09,0-3.23,0s-2.39,0-3.23,0a4.28,4.28,0,0,1-1.49-.27,2.67,2.67,0,0,1-1.52-1.52,4.28,4.28,0,0,1-.27-1.49c0-.84,0-1.09,0-3.23s0-2.39,0-3.23a4.39,4.39,0,0,1,.27-1.49,2.57,2.57,0,0,1,.6-.92,2.42,2.42,0,0,1,.92-.59,4.21,4.21,0,0,1,1.49-.28C20.61,16.45,20.86,16.44,23,16.44ZM23,15c-2.17,0-2.45,0-3.3.05a5.85,5.85,0,0,0-1.94.37,3.94,3.94,0,0,0-1.42.92,4.17,4.17,0,0,0-.92,1.42,5.85,5.85,0,0,0-.37,1.94c0,.85-.05,1.13-.05,3.3s0,2.44.05,3.3a5.85,5.85,0,0,0,.37,1.94,3.94,3.94,0,0,0,.92,1.42,4.17,4.17,0,0,0,1.42.92A5.85,5.85,0,0,0,19.7,31c.86,0,1.13.05,3.3.05s2.45,0,3.3-.05a5.85,5.85,0,0,0,1.94-.37,3.86,3.86,0,0,0,1.42-.92,4,4,0,0,0,.92-1.42A5.82,5.82,0,0,0,31,26.3c0-.86,0-1.13,0-3.3s0-2.45,0-3.3a5.82,5.82,0,0,0-.38-1.94,4,4,0,0,0-2.34-2.34A5.77,5.77,0,0,0,26.3,15C25.44,15,25.17,15,23,15Z"
2381
+ }), /*#__PURE__*/React.createElement("path", {
2382
+ d: "M23,18.89A4.11,4.11,0,1,0,27.11,23,4.11,4.11,0,0,0,23,18.89Zm0,6.78A2.67,2.67,0,1,1,25.67,23,2.68,2.68,0,0,1,23,25.67Z"
2383
+ }), /*#__PURE__*/React.createElement("path", {
2384
+ d: "M27.27,19.69a1,1,0,1,0-1-1A1,1,0,0,0,27.27,19.69Z"
2385
+ })),
2386
+ ...props
2387
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2388
+ height: "46",
2389
+ viewBox: "0 0 46 46",
2390
+ width: "46",
2391
+ xmlns: "http://www.w3.org/2000/svg",
2392
+ fill: "currentColor"
2393
+ }, props), children));
2394
+
2395
+ const Instagram = props => {
2396
+ const {
2397
+ optimise,
2398
+ refresh
2399
+ } = useContext(PictoContext);
2400
+ useEffect(() => {
2401
+ refresh();
2402
+ }, []);
2403
+ return optimise('p_2oO7Uf', /*#__PURE__*/React.createElement(SVGComponent$1c, props));
2404
+ };
2405
+
2406
+ var SVGComponent$1b = (({
2407
+ as: Component = "svg",
2408
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2409
+ d: "M12,5.44c2.14,0,2.39,0,3.23.05.78.03,1.2.17,1.49.28.37.15.64.32.92.6s.45.55.6.92c.11.28.24.7.28,1.49.04.84.05,1.1.05,3.23s0,2.39-.05,3.23c-.03.78-.17,1.2-.28,1.49-.15.37-.32.64-.6.92s-.55.45-.92.6c-.28.11-.7.24-1.49.28-.84.04-1.1.05-3.23.05s-2.39,0-3.23-.05c-.78-.03-1.2-.17-1.49-.28-.37-.15-.64-.32-.92-.6s-.45-.55-.6-.92c-.11-.28-.24-.7-.28-1.49-.04-.84-.05-1.1-.05-3.23s0-2.39.05-3.23c.03-.78.17-1.2.28-1.49.15-.37.32-.64.6-.92s.55-.45.92-.6c.28-.11.7-.24,1.49-.28.84-.04,1.1-.05,3.23-.05ZM12,4c-2.17,0-2.44,0-3.3.05-.85.04-1.43.17-1.94.37-.53.2-.97.48-1.42.92-.44.44-.72.89-.92,1.42-.2.51-.33,1.09-.37,1.94-.04.85-.05,1.12-.05,3.3s0,2.44.05,3.3c.04.85.17,1.43.37,1.94.2.53.48.97.92,1.42.44.44.89.72,1.42.92.51.2,1.09.33,1.94.37.85.04,1.12.05,3.3.05s2.44,0,3.3-.05c.85-.04,1.43-.17,1.94-.37.53-.2.97-.48,1.42-.92.44-.44.72-.89.92-1.42.2-.51.33-1.09.37-1.94.04-.85.05-1.12.05-3.3s0-2.44-.05-3.3c-.04-.85-.17-1.43-.37-1.94-.2-.53-.48-.97-.92-1.42-.44-.44-.89-.72-1.42-.92-.51-.2-1.09-.33-1.94-.37-.86-.03-1.13-.04-3.3-.04ZM12,7.89c-2.27,0-4.11,1.84-4.11,4.11s1.84,4.11,4.11,4.11,4.11-1.84,4.11-4.11-1.84-4.11-4.11-4.11ZM12,14.67c-1.47,0-2.67-1.19-2.67-2.67s1.19-2.67,2.67-2.67,2.67,1.19,2.67,2.67-1.19,2.67-2.67,2.67ZM16.27,8.69c.53,0,.96-.43.96-.96s-.43-.96-.96-.96-.96.43-.96.96.43.96.96.96Z"
2410
+ })),
2411
+ ...props
2412
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2413
+ height: "24",
2414
+ viewBox: "0 0 24 24",
2415
+ width: "24",
2416
+ xmlns: "http://www.w3.org/2000/svg",
2417
+ fill: "currentColor"
2418
+ }, props), children));
2419
+
2420
+ const InstagramSmall = props => {
2421
+ const {
2422
+ optimise,
2423
+ refresh
2424
+ } = useContext(PictoContext);
2425
+ useEffect(() => {
2426
+ refresh();
2427
+ }, []);
2428
+ return optimise('p_oXJc5', /*#__PURE__*/React.createElement(SVGComponent$1b, props));
2429
+ };
2430
+
2431
+ var SVGComponent$1a = (({
2432
+ as: Component = "svg",
2433
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2434
+ d: "M16,1A8,8,0,0,0,8,9a7.91,7.91,0,0,0,.18,1.7L0,18v5H6V21H8V19h2l3.07-2.56A7.92,7.92,0,0,0,16,17,8,8,0,0,0,16,1ZM9.64,18l3.24-2.7A7.75,7.75,0,0,0,16,16,7,7,0,1,0,9,9a8.77,8.77,0,0,0,.28,2.06L1,18.45V22H5V20H7V18Zm.17-4-.67-.74L2,19.66V21ZM20,7a2,2,0,1,0-2,2A2,2,0,0,0,20,7ZM19,7a1,1,0,1,0-1,1A1,1,0,0,0,19,7Z",
2435
+ fillRule: "evenodd"
2436
+ })),
2437
+ ...props
2438
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2439
+ height: "24",
2440
+ viewBox: "0 0 24 24",
2441
+ width: "24",
2442
+ xmlns: "http://www.w3.org/2000/svg",
2443
+ fill: "currentColor"
2444
+ }, props), children));
2445
+
2446
+ const Key = props => {
2447
+ const {
2448
+ optimise,
2449
+ refresh
2450
+ } = useContext(PictoContext);
2451
+ useEffect(() => {
2452
+ refresh();
2453
+ }, []);
2454
+ return optimise('p_keR', /*#__PURE__*/React.createElement(SVGComponent$1a, props));
2455
+ };
2456
+
2457
+ var SVGComponent$19 = (({
2458
+ as: Component = "svg",
2459
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2460
+ d: "M13,9h9L8,24l3-9H2L16,0ZM4.3,14h8.09l-2,6,9.3-10H11.61l2-6Z"
2461
+ })),
2462
+ ...props
2463
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2464
+ height: "24",
2465
+ viewBox: "0 0 24 24",
2466
+ width: "24",
2467
+ xmlns: "http://www.w3.org/2000/svg",
2468
+ fill: "currentColor"
2469
+ }, props), children));
2470
+
2471
+ const LightningBolt = props => {
2472
+ const {
2473
+ optimise,
2474
+ refresh
2475
+ } = useContext(PictoContext);
2476
+ useEffect(() => {
2477
+ refresh();
2478
+ }, []);
2479
+ return optimise('p_1W7mmN', /*#__PURE__*/React.createElement(SVGComponent$19, props));
2480
+ };
2481
+
2482
+ var SVGComponent$18 = (({
2483
+ as: Component = "svg",
2484
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2485
+ d: "M14.85,11.92a4.06,4.06,0,0,0-1-1.75,4,4,0,0,0-5.66,0l-5,5a4,4,0,0,0,5.66,5.66L12.67,17H13a5.86,5.86,0,0,0,1.19-.12L9.53,21.54a5,5,0,0,1-7.07-7.07l5-5a5,5,0,0,1,7.07,0,4.93,4.93,0,0,1,1.11,1.67Zm-5.7.15a4.1,4.1,0,0,0,1,1.76,4,4,0,0,0,5.66,0l5-5a4,4,0,1,0-5.66-5.66L11.33,7H11a5.86,5.86,0,0,0-1.19.12l4.66-4.66a5,5,0,0,1,7.07,7.07l-5,5a5,5,0,0,1-7.07,0,4.74,4.74,0,0,1-1.11-1.68Z"
2486
+ })),
2487
+ ...props
2488
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2489
+ height: "24",
2490
+ viewBox: "0 0 24 24",
2491
+ width: "24",
2492
+ xmlns: "http://www.w3.org/2000/svg",
2493
+ fill: "currentColor"
2494
+ }, props), children));
2495
+
2496
+ const Link = props => {
2497
+ const {
2498
+ optimise,
2499
+ refresh
2500
+ } = useContext(PictoContext);
2501
+ useEffect(() => {
2502
+ refresh();
2503
+ }, []);
2504
+ return optimise('p_aqwu', /*#__PURE__*/React.createElement(SVGComponent$18, props));
2505
+ };
2506
+
2507
+ var SVGComponent$17 = (({
2508
+ as: Component = "svg",
2509
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2510
+ d: "M16.6667 4H7.33333C5.49267 4 4 5.49267 4 7.33333V16.6667C4 18.5073 5.49267 20 7.33333 20H16.6667C18.508 20 20 18.5073 20 16.6667V7.33333C20 5.49267 18.508 4 16.6667 4ZM9.33333 16.6667H7.33333V9.33333H9.33333V16.6667ZM8.33333 8.488C7.68933 8.488 7.16667 7.96133 7.16667 7.312C7.16667 6.66267 7.68933 6.136 8.33333 6.136C8.97733 6.136 9.5 6.66267 9.5 7.312C9.5 7.96133 8.978 8.488 8.33333 8.488ZM17.3333 16.6667H15.3333V12.9307C15.3333 10.6853 12.6667 10.8553 12.6667 12.9307V16.6667H10.6667V9.33333H12.6667V10.51C13.5973 8.786 17.3333 8.65867 17.3333 12.1607V16.6667Z"
2511
+ })),
2512
+ ...props
2513
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2514
+ xmlns: "http://www.w3.org/2000/svg",
2515
+ width: "24",
2516
+ height: "24",
2517
+ viewBox: "0 0 24 24",
2518
+ fill: "currentColor"
2519
+ }, props), children));
2520
+
2521
+ const LinkedinSmall = props => {
2522
+ const {
2523
+ optimise,
2524
+ refresh
2525
+ } = useContext(PictoContext);
2526
+ useEffect(() => {
2527
+ refresh();
2528
+ }, []);
2529
+ return optimise('p_Z2bLQXQ', /*#__PURE__*/React.createElement(SVGComponent$17, props));
2530
+ };
2531
+
2532
+ var SVGComponent$16 = (({
2533
+ as: Component = "svg",
2534
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2535
+ d: "M6,6A6,6,0,0,1,18,6v4h3V24H3V10H6Zm14,5H4V23H20ZM7,6v4H17V6A5,5,0,0,0,7,6Z"
2536
+ })),
2537
+ ...props
2538
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2539
+ height: "24",
2540
+ viewBox: "0 0 24 24",
2541
+ width: "24",
2542
+ xmlns: "http://www.w3.org/2000/svg",
2543
+ fill: "currentColor"
2544
+ }, props), children));
2545
+
2546
+ const Lock = props => {
2547
+ const {
2548
+ optimise,
2549
+ refresh
2550
+ } = useContext(PictoContext);
2551
+ useEffect(() => {
2552
+ refresh();
2553
+ }, []);
2554
+ return optimise('p_arYq', /*#__PURE__*/React.createElement(SVGComponent$16, props));
2555
+ };
2556
+
2557
+ var SVGComponent$15 = (({
2558
+ as: Component = "svg",
2559
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2560
+ d: "M6.6,5.4,8,7.8l.9-2.6,2.7-.6L9.3,2.9,9.5.2,7.3,1.8,4.8.7l.8,2.6L3.8,5.4ZM6.4,2.5l1,.4.9-.7V3.4l.9.7-1.1.2L7.7,5.4l-.6-1H6l.7-.9ZM21.7,7.3l1.1.8.1-1.4L24,6l-1.3-.5-.4-1.3-.9,1.1H20l.8,1.1-.4,1.3Zm.2-1.1ZM16,1.2a1,1,0,1,1,2,0,1,1,0,0,1-2,0Zm1.7,15.4,1.1.8-1.4.3L17,19l-.7-1.2H14.9l.9-1-.4-1.3,1.3.5,1.1-.8ZM23,13.2a1,1,0,1,1-1-1A.94.94,0,0,1,23,13.2ZM.9,19a2.6,2.6,0,0,0,0,3.8,2.6,2.6,0,0,0,3.8,0L19.6,8,15.8,4.2ZM4,22.1a1.63,1.63,0,0,1-2.4,0,1.82,1.82,0,0,1,0-2.4L12.2,9.1l2.4,2.4ZM15.3,10.8,12.9,8.4l2.9-2.9,2.4,2.4Z"
2561
+ })),
2562
+ ...props
2563
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2564
+ xmlns: "http://www.w3.org/2000/svg",
2565
+ width: "24",
2566
+ height: "24",
2567
+ viewBox: "0 0 24 24",
2568
+ fill: "currentColor"
2569
+ }, props), children));
2570
+
2571
+ const MagicWand = props => {
2572
+ const {
2573
+ optimise,
2574
+ refresh
2575
+ } = useContext(PictoContext);
2576
+ useEffect(() => {
2577
+ refresh();
2578
+ }, []);
2579
+ return optimise('p_ZbIpjk', /*#__PURE__*/React.createElement(SVGComponent$15, props));
2580
+ };
2581
+
2582
+ var SVGComponent$14 = (({
2583
+ as: Component = "svg",
2584
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2585
+ d: "M11.74,12.42A6.43,6.43,0,0,1,7.5,14a6.49,6.49,0,1,1,4.95-2.28l3.43,3.45-.71.71ZM13,7.5A5.5,5.5,0,1,1,7.5,2,5.5,5.5,0,0,1,13,7.5Z",
2586
+ fillRule: "evenodd"
2587
+ })),
2588
+ ...props
2589
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2590
+ xmlns: "http://www.w3.org/2000/svg",
2591
+ width: "16",
2592
+ height: "16",
2593
+ viewBox: "0 0 16 16",
2594
+ fill: "currentColor"
2595
+ }, props), children));
2596
+
2597
+ const MagnifyingBold = props => {
2598
+ const {
2599
+ optimise,
2600
+ refresh
2601
+ } = useContext(PictoContext);
2602
+ useEffect(() => {
2603
+ refresh();
2604
+ }, []);
2605
+ return optimise('p_132rkB', /*#__PURE__*/React.createElement(SVGComponent$14, props));
2606
+ };
2607
+
2608
+ var SVGComponent$13 = (({
2609
+ as: Component = "svg",
2610
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2611
+ d: "M15.8,16.6A9.26,9.26,0,0,1,9.1,19a9.45,9.45,0,0,1-6.5-3A9.21,9.21,0,0,1,0,9.4,9.24,9.24,0,0,1,2.8,2.8,9.07,9.07,0,0,1,9.4,0a9.71,9.71,0,0,1,6.7,2.6,9.43,9.43,0,0,1,.6,13.2l7.4,7.4-.8.8ZM14.2,2.4A8.63,8.63,0,0,0,9.5,1,8.54,8.54,0,0,0,1,9.5a8.63,8.63,0,0,0,1.4,4.7,8.21,8.21,0,0,0,3.8,3.1,9.2,9.2,0,0,0,4.9.5,8.54,8.54,0,0,0,4.4-2.3,8.18,8.18,0,0,0,2.3-4.4,8.23,8.23,0,0,0-.5-4.9A8.74,8.74,0,0,0,14.2,2.4Z"
2612
+ })),
2613
+ ...props
2614
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2615
+ height: "24",
2616
+ viewBox: "0 0 24 24",
2617
+ width: "24",
2618
+ xmlns: "http://www.w3.org/2000/svg",
2619
+ fill: "currentColor"
2620
+ }, props), children));
2621
+
2622
+ const MagnifyingGlassLeft = props => {
2623
+ const {
2624
+ optimise,
2625
+ refresh
2626
+ } = useContext(PictoContext);
2627
+ useEffect(() => {
2628
+ refresh();
2629
+ }, []);
2630
+ return optimise('p_Z2vlwxL', /*#__PURE__*/React.createElement(SVGComponent$13, props));
2631
+ };
2632
+
2633
+ var SVGComponent$12 = (({
2634
+ as: Component = "svg",
2635
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2636
+ d: "M12,10a2,2,0,1,1,2-2A2,2,0,0,1,12,10Zm0-5a3,3,0,1,0,3,3A3,3,0,0,0,12,5ZM5,7.6a7,7,0,0,1,14,0c0,3.46-2.56,7.55-7,14.53C7.51,15.06,5,11.06,5,7.6ZM12,0C7.8,0,4,3.4,4,7.6S7.47,16.81,12,24c4.53-7.19,8-12.2,8-16.4S16.2,0,12,0"
2637
+ })),
2638
+ ...props
2639
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2640
+ height: "24",
2641
+ viewBox: "0 0 24 24",
2642
+ width: "24",
2643
+ xmlns: "http://www.w3.org/2000/svg",
2644
+ fill: "currentColor"
2645
+ }, props), children));
2646
+
2647
+ const Marker = props => {
2648
+ const {
2649
+ optimise,
2650
+ refresh
2651
+ } = useContext(PictoContext);
2652
+ useEffect(() => {
2653
+ refresh();
2654
+ }, []);
2655
+ return optimise('p_Z2mg1CL', /*#__PURE__*/React.createElement(SVGComponent$12, props));
2656
+ };
2657
+
2658
+ var SVGComponent$11 = (({
2659
+ as: Component = "svg",
2660
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2661
+ d: "M0,7V17H5.69L15,23V1L5.69,7Zm5,9H1V8H5ZM6,8l8-5.16V21.17L6,16Zm18,4a10.8,10.8,0,0,1-3.77,8.23l-.71-.71a9.87,9.87,0,0,0,0-15l.71-.71A10.8,10.8,0,0,1,24,12Zm-4.22,0a6.86,6.86,0,0,1-2.48,5.3l-.71-.71a5.91,5.91,0,0,0,0-9.18l.71-.71A6.86,6.86,0,0,1,19.78,12Z"
2662
+ })),
2663
+ ...props
2664
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2665
+ xmlns: "http://www.w3.org/2000/svg",
2666
+ width: "24",
2667
+ height: "24",
2668
+ viewBox: "0 0 24 24",
2669
+ fill: "currentColor"
2670
+ }, props), children));
2671
+
2672
+ const Microphone = props => {
2673
+ const {
2674
+ optimise,
2675
+ refresh
2676
+ } = useContext(PictoContext);
2677
+ useEffect(() => {
2678
+ refresh();
2679
+ }, []);
2680
+ return optimise('p_Z16cO05', /*#__PURE__*/React.createElement(SVGComponent$11, props));
2681
+ };
2682
+
2683
+ var SVGComponent$10 = (({
2684
+ as: Component = "svg",
2685
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("rect", {
2686
+ height: "2",
2687
+ x: "3",
2688
+ width: "10",
2689
+ y: "7"
2690
+ })),
2691
+ ...props
2692
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2693
+ height: "16",
2694
+ viewBox: "0 0 16 16",
2695
+ width: "16",
2696
+ xmlns: "http://www.w3.org/2000/svg",
2697
+ fill: "currentColor"
2698
+ }, props), children));
2699
+
2700
+ const MinusBold = props => {
2701
+ const {
2702
+ optimise,
2703
+ refresh
2704
+ } = useContext(PictoContext);
2705
+ useEffect(() => {
2706
+ refresh();
2707
+ }, []);
2708
+ return optimise('p_Z1kd9CG', /*#__PURE__*/React.createElement(SVGComponent$10, props));
2709
+ };
2710
+
2711
+ var SVGComponent$$ = (({
2712
+ as: Component = "svg",
2713
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2714
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm0,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1ZM5.22,11.48H18.78v1H5.22Z",
2715
+ fillRule: "evenodd"
2716
+ })),
2717
+ ...props
2718
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2719
+ height: "24",
2720
+ viewBox: "0 0 24 24",
2721
+ width: "24",
2722
+ xmlns: "http://www.w3.org/2000/svg",
2723
+ fill: "currentColor"
2724
+ }, props), children));
2725
+
2726
+ const MinusCircle = props => {
2727
+ const {
2728
+ optimise,
2729
+ refresh
2730
+ } = useContext(PictoContext);
2731
+ useEffect(() => {
2732
+ refresh();
2733
+ }, []);
2734
+ return optimise('p_21yah4', /*#__PURE__*/React.createElement(SVGComponent$$, props));
2735
+ };
2736
+
2737
+ var SVGComponent$_ = (({
2738
+ as: Component = "svg",
2739
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2740
+ d: "m13.59,6.72l3.97,3.97,1.14-1.14-1.99-1.99c4.86.36,8.69,4.41,8.69,9.36s-4.2,9.39-9.39,9.39-9.39-4.2-9.39-9.39c0-2.38.89-4.55,2.35-6.21.26-.29.54-.57.83-.83l-1.07-1.21c-.34.3-.67.63-.97.97-1.71,1.94-2.75,4.49-2.75,7.28,0,6.08,4.92,11,11,11s11-4.92,11-11-4.57-10.64-10.34-10.98l2.04-2.04-1.14-1.14-3.97,3.97Zm.15,3.97l-3.97-3.97,3.97-3.97,1.14,1.14-2.83,2.83,2.83,2.83-1.14,1.14Zm.21,2.34v7.92h-1.44v-6.25l-1.91.63v-1.16l3.18-1.15h.16Zm7.31,3.29v1.33c0,.61-.06,1.13-.18,1.56-.12.43-.3.78-.53,1.06-.23.27-.51.47-.83.6-.32.13-.68.19-1.07.19-.31,0-.61-.04-.88-.12-.27-.08-.52-.21-.73-.38-.21-.17-.4-.39-.55-.66-.15-.27-.27-.59-.35-.96-.08-.37-.12-.8-.12-1.29v-1.33c0-.61.06-1.13.18-1.55.13-.43.31-.78.54-1.05.23-.27.51-.47.83-.59.32-.13.68-.19,1.07-.19.32,0,.61.04.88.12.27.08.51.2.73.37.22.17.4.38.55.65.15.26.27.58.35.96.08.37.12.8.12,1.28Zm-1.43,1.53v-1.73c0-.3-.02-.57-.05-.79-.03-.23-.08-.42-.15-.58-.07-.16-.15-.29-.24-.39-.1-.1-.21-.18-.34-.22-.13-.05-.27-.07-.42-.07-.19,0-.36.04-.5.11-.15.07-.27.19-.37.35-.1.16-.18.37-.23.64-.05.26-.08.58-.08.96v1.73c0,.3.02.57.05.8.04.23.09.42.15.59.07.16.15.3.24.4.1.1.21.18.34.23.13.05.27.07.42.07.19,0,.36-.04.5-.11.15-.08.27-.2.37-.36.1-.17.18-.38.23-.65.05-.27.08-.59.08-.97Z"
2741
+ })),
2742
+ ...props
2743
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2744
+ xmlns: "http://www.w3.org/2000/svg",
2745
+ width: "32",
2746
+ height: "32",
2747
+ viewBox: "0 0 32 32",
2748
+ fill: "currentColor"
2749
+ }, props), children));
2750
+
2751
+ const MinusTenBold = props => {
2752
+ const {
2753
+ optimise,
2754
+ refresh
2755
+ } = useContext(PictoContext);
2756
+ useEffect(() => {
2757
+ refresh();
2758
+ }, []);
2759
+ return optimise('p_ZPJARB', /*#__PURE__*/React.createElement(SVGComponent$_, props));
2760
+ };
2761
+
2762
+ var SVGComponent$Z = (({
2763
+ as: Component = "svg",
2764
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2765
+ d: "M17.84,1a3.91,3.91,0,0,1,2.72,6.72L12.1,16.19A2.27,2.27,0,1,1,8.88,13l4.41-4.41L14,9.3l-3.16,3.16h0L9.44,13.88h0a1.26,1.26,0,1,0,2,1.57L19.8,7.07a3,3,0,0,0,.94-2.16,2.9,2.9,0,0,0-4.92-2.08h0L4.29,14.35h0A4.46,4.46,0,0,0,3,17.5,4.51,4.51,0,0,0,7.5,22c.65,0,1.84,0,3.52-1.67L21.29,10.06l.71.71L11.52,21.25A5.5,5.5,0,1,1,3.73,13.5L15,2.2A3.86,3.86,0,0,1,17.84,1Z"
2766
+ })),
2767
+ ...props
2768
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2769
+ height: "24",
2770
+ viewBox: "0 0 24 24",
2771
+ width: "24",
2772
+ xmlns: "http://www.w3.org/2000/svg",
2773
+ fill: "currentColor"
2774
+ }, props), children));
2775
+
2776
+ const Paperclip = props => {
2777
+ const {
2778
+ optimise,
2779
+ refresh
2780
+ } = useContext(PictoContext);
2781
+ useEffect(() => {
2782
+ refresh();
2783
+ }, []);
2784
+ return optimise('p_Z2lTaGS', /*#__PURE__*/React.createElement(SVGComponent$Z, props));
2785
+ };
2786
+
2787
+ var SVGComponent$Y = (({
2788
+ as: Component = "svg",
2789
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2790
+ d: "M8.07,21.59,1,23l1.41-7.07L17.34,1,23,6.66Zm-.49-.92L3.34,16.42,2.28,21.73ZM17.34,2.41,4,15.72,8.28,20,21.59,6.66Z"
2791
+ })),
2792
+ ...props
2793
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2794
+ height: "24",
2795
+ viewBox: "0 0 24 24",
2796
+ width: "24",
2797
+ xmlns: "http://www.w3.org/2000/svg",
2798
+ fill: "currentColor"
2799
+ }, props), children));
2800
+
2801
+ const Pen = props => {
2802
+ const {
2803
+ optimise,
2804
+ refresh
2805
+ } = useContext(PictoContext);
2806
+ useEffect(() => {
2807
+ refresh();
2808
+ }, []);
2809
+ return optimise('p_lws', /*#__PURE__*/React.createElement(SVGComponent$Y, props));
2810
+ };
2811
+
2812
+ var SVGComponent$X = (({
2813
+ as: Component = "svg",
2814
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2815
+ d: "M4.16667 15.7417H5.34517L13.1066 7.98024L11.9281 6.80173L4.16667 14.5632V15.7417ZM17.5 17.4083H2.5V13.8728L13.6958 2.67694C14.0213 2.3515 14.5489 2.3515 14.8743 2.67694L17.2314 5.03396C17.5568 5.35939 17.5568 5.88704 17.2314 6.21247L7.7022 15.7417H17.5V17.4083ZM13.1066 5.62322L14.2851 6.80173L15.4636 5.62322L14.2851 4.4447L13.1066 5.62322Z"
2816
+ })),
2817
+ ...props
2818
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2819
+ xmlns: "http://www.w3.org/2000/svg",
2820
+ width: "20",
2821
+ height: "20",
2822
+ viewBox: "0 0 20 20",
2823
+ fill: "currentColor"
2824
+ }, props), children));
2825
+
2826
+ const PenLine = props => {
2827
+ const {
2828
+ optimise,
2829
+ refresh
2830
+ } = useContext(PictoContext);
2831
+ useEffect(() => {
2832
+ refresh();
2833
+ }, []);
2834
+ return optimise('p_19Ru0M', /*#__PURE__*/React.createElement(SVGComponent$X, props));
2835
+ };
2836
+
2837
+ var SVGComponent$W = (({
2838
+ as: Component = "svg",
2839
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2840
+ d: "M6,10A4,4,0,1,0,2,6,4,4,0,0,0,6,10ZM6,9A3,3,0,1,0,3,6,3,3,0,0,0,6,9ZM18,22a4,4,0,1,0-4-4A4,4,0,0,0,18,22Zm0-1a3,3,0,1,0-3-3A3,3,0,0,0,18,21ZM21,3.67,20.23,3,3,20.33l.77.67Z",
2841
+ fillRule: "evenodd"
2842
+ })),
2843
+ ...props
2844
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2845
+ xmlns: "http://www.w3.org/2000/svg",
2846
+ width: "24",
2847
+ height: "24",
2848
+ viewBox: "0 0 24 24",
2849
+ fill: "currentColor"
2850
+ }, props), children));
2851
+
2852
+ const Percent = props => {
2853
+ const {
2854
+ optimise,
2855
+ refresh
2856
+ } = useContext(PictoContext);
2857
+ useEffect(() => {
2858
+ refresh();
2859
+ }, []);
2860
+ return optimise('p_1abKSr', /*#__PURE__*/React.createElement(SVGComponent$W, props));
2861
+ };
2862
+
2863
+ var SVGComponent$V = (({
2864
+ as: Component = "svg",
2865
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2866
+ d: "M8.26,1.29,6.7,2.06C.9,5.08,9.49,23,16,23a3.08,3.08,0,0,0,1.31-.28L18.86,22,16,16.37l-1.54.76a1.5,1.5,0,0,1-.6.13c-2.56,0-6.84-8.2-4.24-9.6l1.54-.76ZM16,24C10.33,24,3.78,12.89,3.78,6.17c0-2.42.84-4.15,2.46-5L8.62,0l3.86,7.35L10,8.55c-1.44.77,2.41,8.42,4,7.68l2.4-1.18,3.81,7.36-2.47,1.21A4,4,0,0,1,16,24Z"
2867
+ })),
2868
+ ...props
2869
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2870
+ height: "24",
2871
+ viewBox: "0 0 24 24",
2872
+ width: "24",
2873
+ xmlns: "http://www.w3.org/2000/svg",
2874
+ fill: "currentColor"
2875
+ }, props), children));
2876
+
2877
+ const Phone = props => {
2878
+ const {
2879
+ optimise,
2880
+ refresh
2881
+ } = useContext(PictoContext);
2882
+ useEffect(() => {
2883
+ refresh();
2884
+ }, []);
2885
+ return optimise('p_5yCzy', /*#__PURE__*/React.createElement(SVGComponent$V, props));
2886
+ };
2887
+
2888
+ var SVGComponent$U = (({
2889
+ as: Component = "svg",
2890
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2891
+ d: "M24,23H4a4,4,0,0,1-4-4V3.31A3.09,3.09,0,0,1,3,1,3,3,0,0,1,6,3.31V5H24ZM23,6H6V19a2.49,2.49,0,0,0-2-1,2,2,0,0,0,0,4H23ZM5,3.32A2.17,2.17,0,0,0,3,2,2.12,2.12,0,0,0,1,3.32V19.5a3.09,3.09,0,0,1,4-2.4ZM20,19H8V9H20Zm-8-9H9v8H19V14H17v3H16V14H13v3H12Zm7,0H13v3h6Z"
2892
+ })),
2893
+ ...props
2894
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2895
+ xmlns: "http://www.w3.org/2000/svg",
2896
+ width: "24",
2897
+ height: "24",
2898
+ viewBox: "0 0 24 24",
2899
+ fill: "currentColor"
2900
+ }, props), children));
2901
+
2902
+ const Plan = props => {
2903
+ const {
2904
+ optimise,
2905
+ refresh
2906
+ } = useContext(PictoContext);
2907
+ useEffect(() => {
2908
+ refresh();
2909
+ }, []);
2910
+ return optimise('p_aXdH', /*#__PURE__*/React.createElement(SVGComponent$U, props));
2911
+ };
2912
+
2913
+ var SVGComponent$T = (({
2914
+ as: Component = "svg",
2915
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2916
+ d: "M10.57,21.5a.45.45,0,0,1-.2,0,.51.51,0,0,1-.3-.46V15.29L.85,12.36a.5.5,0,0,1,0-.94l22-8.88.06,0,.1,0h.14l.15.05h0l.07.06a.52.52,0,0,1,.1.11.38.38,0,0,1,.06.13.36.36,0,0,1,0,.1.61.61,0,0,1,0,.14h0l-3.83,18a.51.51,0,0,1-.3.37.49.49,0,0,1-.47-.06l-4.63-3.27-3.35,3.22A.49.49,0,0,1,10.57,21.5Zm3.93-4.41,4.34,3.06L22.17,4.49,11.35,14.86l3.14,2.22Zm-3.43-1.2v3.93l2.35-2.27Zm-8.6-4.06,8,2.53L20.78,4.44Z"
2917
+ })),
2918
+ ...props
2919
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2920
+ xmlns: "http://www.w3.org/2000/svg",
2921
+ width: "24",
2922
+ height: "24",
2923
+ viewBox: "0 0 24 24",
2924
+ fill: "currentColor"
2925
+ }, props), children));
2926
+
2927
+ const Plane = props => {
2928
+ const {
2929
+ optimise,
2930
+ refresh
2931
+ } = useContext(PictoContext);
2932
+ useEffect(() => {
2933
+ refresh();
2934
+ }, []);
2935
+ return optimise('p_5z5Yv', /*#__PURE__*/React.createElement(SVGComponent$T, props));
2936
+ };
2937
+
2938
+ var SVGComponent$S = (({
2939
+ as: Component = "svg",
2940
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2941
+ d: "M12,24A12,12,0,1,0,0,12,12,12,0,0,0,12,24ZM9.79,6.76a.67.67,0,0,0-1,.57v9.34a.67.67,0,0,0,1,.57l7.71-4.67a.66.66,0,0,0,0-1.14Z",
2942
+ fillRule: "evenodd"
2943
+ })),
2944
+ ...props
2945
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2946
+ height: "24",
2947
+ viewBox: "0 0 24 24",
2948
+ width: "24",
2949
+ xmlns: "http://www.w3.org/2000/svg",
2950
+ fill: "currentColor"
2951
+ }, props), children));
2952
+
2953
+ const Play = props => {
2954
+ const {
2955
+ optimise,
2956
+ refresh
2957
+ } = useContext(PictoContext);
2958
+ useEffect(() => {
2959
+ refresh();
2960
+ }, []);
2961
+ return optimise('p_aXdS', /*#__PURE__*/React.createElement(SVGComponent$S, props));
2962
+ };
2963
+
2964
+ var SVGComponent$R = (({
2965
+ as: Component = "svg",
2966
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2967
+ d: "m7,25.98V6.1c0-.88.98-1.4,1.71-.91l14.82,9.94c.65.44.65,1.39,0,1.83l-14.82,9.94c-.73.49-1.71-.03-1.71-.91Z"
2968
+ })),
2969
+ ...props
2970
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2971
+ xmlns: "http://www.w3.org/2000/svg",
2972
+ width: "32",
2973
+ height: "32",
2974
+ viewBox: "0 0 32 32",
2975
+ fill: "currentColor"
2976
+ }, props), children));
2977
+
2978
+ const PlayBold = props => {
2979
+ const {
2980
+ optimise,
2981
+ refresh
2982
+ } = useContext(PictoContext);
2983
+ useEffect(() => {
2984
+ refresh();
2985
+ }, []);
2986
+ return optimise('p_2ijCln', /*#__PURE__*/React.createElement(SVGComponent$R, props));
2987
+ };
2988
+
2989
+ var SVGComponent$Q = (({
2990
+ as: Component = "svg",
2991
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
2992
+ d: "m9.75,23.5c0,.28.22.5.5.5h1c.28,0,.5-.22.5-.5v-6.53l9.73,6.28c.33.21.77-.02.77-.42v-13.66c0-.4-.44-.63-.77-.42l-9.73,6.28v-6.53c0-.28-.22-.5-.5-.5h-1c-.28,0-.5.22-.5.5v15Z"
2993
+ })),
2994
+ ...props
2995
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
2996
+ xmlns: "http://www.w3.org/2000/svg",
2997
+ width: "32",
2998
+ height: "32",
2999
+ viewBox: "0 0 32 32",
3000
+ fill: "currentColor"
3001
+ }, props), children));
3002
+
3003
+ const PlayerBeginBold = props => {
3004
+ const {
3005
+ optimise,
3006
+ refresh
3007
+ } = useContext(PictoContext);
3008
+ useEffect(() => {
3009
+ refresh();
3010
+ }, []);
3011
+ return optimise('p_BJcrY', /*#__PURE__*/React.createElement(SVGComponent$Q, props));
3012
+ };
3013
+
3014
+ var SVGComponent$P = (({
3015
+ as: Component = "svg",
3016
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3017
+ d: "m22.25,23.5c0,.28-.22.5-.5.5h-1c-.28,0-.5-.22-.5-.5v-6.53l-9.73,6.28c-.33.21-.77-.02-.77-.42v-13.66c0-.4.44-.63.77-.42l9.73,6.28v-6.53c0-.28.22-.5.5-.5h1c.28,0,.5.22.5.5v15Z"
3018
+ })),
3019
+ ...props
3020
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3021
+ xmlns: "http://www.w3.org/2000/svg",
3022
+ width: "32",
3023
+ height: "32",
3024
+ viewBox: "0 0 32 32",
3025
+ fill: "currentColor"
3026
+ }, props), children));
3027
+
3028
+ const PlayerEndBold = props => {
3029
+ const {
3030
+ optimise,
3031
+ refresh
3032
+ } = useContext(PictoContext);
3033
+ useEffect(() => {
3034
+ refresh();
3035
+ }, []);
3036
+ return optimise('p_2bbJn3', /*#__PURE__*/React.createElement(SVGComponent$P, props));
3037
+ };
3038
+
3039
+ var SVGComponent$O = (({
3040
+ as: Component = "svg",
3041
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("polygon", {
3042
+ points: "14 7 14 9 9 9 9 14 7 14 7 9 2 9 2 7 7 7 7 2 9 2 9 7 14 7"
3043
+ })),
3044
+ ...props
3045
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3046
+ height: "16",
3047
+ viewBox: "0 0 16 16",
3048
+ width: "16",
3049
+ xmlns: "http://www.w3.org/2000/svg",
3050
+ fill: "currentColor"
3051
+ }, props), children));
3052
+
3053
+ const PlusBold = props => {
3054
+ const {
3055
+ optimise,
3056
+ refresh
3057
+ } = useContext(PictoContext);
3058
+ useEffect(() => {
3059
+ refresh();
3060
+ }, []);
3061
+ return optimise('p_Z26UjNN', /*#__PURE__*/React.createElement(SVGComponent$O, props));
3062
+ };
3063
+
3064
+ var SVGComponent$N = (({
3065
+ as: Component = "svg",
3066
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3067
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm0,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1Zm.52,10.44h6.26v1H12.52v6.26h-1V12.52H5.22v-1h6.26V5.22h1Z",
3068
+ fillRule: "evenodd"
3069
+ })),
3070
+ ...props
3071
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3072
+ height: "24",
3073
+ viewBox: "0 0 24 24",
3074
+ width: "24",
3075
+ xmlns: "http://www.w3.org/2000/svg",
3076
+ fill: "currentColor"
3077
+ }, props), children));
3078
+
3079
+ const PlusCircle = props => {
3080
+ const {
3081
+ optimise,
3082
+ refresh
3083
+ } = useContext(PictoContext);
3084
+ useEffect(() => {
3085
+ refresh();
3086
+ }, []);
3087
+ return optimise('p_Z22dYtQ', /*#__PURE__*/React.createElement(SVGComponent$N, props));
3088
+ };
3089
+
3090
+ var SVGComponent$M = (({
3091
+ as: Component = "svg",
3092
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3093
+ d: "m13.94,13.03v7.92h-1.44v-6.25l-1.9.63v-1.16l3.18-1.15h.16Zm7.31,3.29v1.33c0,.61-.06,1.13-.18,1.56-.12.43-.3.78-.53,1.06-.23.27-.51.47-.83.6-.32.13-.68.19-1.07.19-.31,0-.61-.04-.88-.12-.27-.08-.52-.21-.73-.38-.21-.17-.4-.39-.55-.66-.15-.27-.27-.59-.35-.96-.08-.37-.12-.8-.12-1.29v-1.33c0-.61.06-1.13.18-1.55.13-.43.31-.78.54-1.05.23-.27.51-.47.83-.59.32-.13.68-.19,1.07-.19.32,0,.61.04.88.12.27.08.51.2.73.37.22.17.4.38.55.65.15.26.27.58.35.96.08.37.12.8.12,1.28Zm-1.43,1.53v-1.73c0-.3-.02-.57-.05-.79-.03-.23-.08-.42-.15-.58-.07-.16-.15-.29-.24-.39-.1-.1-.21-.18-.34-.22-.13-.05-.27-.07-.42-.07-.19,0-.36.04-.5.11-.15.07-.27.19-.37.35-.1.16-.18.37-.23.63-.05.26-.08.58-.08.96v1.73c0,.3.02.57.05.8.04.23.09.42.15.59.07.16.15.3.24.4.1.1.21.18.34.23.13.05.27.07.42.07.19,0,.36-.04.5-.11.15-.08.27-.2.37-.36.1-.17.18-.38.23-.65.05-.27.08-.59.08-.97Zm-1.4-11.13l-3.97,3.97-1.14-1.14,1.99-1.99c-4.86.36-8.69,4.41-8.69,9.36s4.2,9.39,9.39,9.39,9.39-4.2,9.39-9.39c0-2.38-.89-4.55-2.35-6.21-.26-.29-.54-.57-.83-.83l1.07-1.21c.34.3.67.63.97.97,1.71,1.94,2.75,4.49,2.75,7.28,0,6.08-4.92,11-11,11s-11-4.92-11-11S9.57,6.27,15.34,5.93l-2.04-2.04,1.14-1.14,3.97,3.97Zm-.15,3.97l3.97-3.97-3.97-3.97-1.14,1.14,2.83,2.83-2.83,2.83,1.14,1.14Z"
3094
+ })),
3095
+ ...props
3096
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3097
+ xmlns: "http://www.w3.org/2000/svg",
3098
+ width: "32",
3099
+ height: "32",
3100
+ viewBox: "0 0 32 32",
3101
+ fill: "currentColor"
3102
+ }, props), children));
3103
+
3104
+ const PlusTenBold = props => {
3105
+ const {
3106
+ optimise,
3107
+ refresh
3108
+ } = useContext(PictoContext);
3109
+ useEffect(() => {
3110
+ refresh();
3111
+ }, []);
3112
+ return optimise('p_lK2Ji', /*#__PURE__*/React.createElement(SVGComponent$M, props));
3113
+ };
3114
+
3115
+ var SVGComponent$L = (({
3116
+ as: Component = "svg",
3117
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3118
+ d: "M24,23H0V11H4V1H15.33L20,6v5h4ZM4,12H1V22H23V12H20v5H4ZM14,2H5V16H19V7H14Zm2,12H8V13h8Zm0-2H8V11h8Zm0-2H8V9h8ZM15,2.25V6h3.57Z"
3119
+ })),
3120
+ ...props
3121
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3122
+ height: "24",
3123
+ viewBox: "0 0 24 24",
3124
+ width: "24",
3125
+ xmlns: "http://www.w3.org/2000/svg",
3126
+ fill: "currentColor"
3127
+ }, props), children));
3128
+
3129
+ const Print = props => {
3130
+ const {
3131
+ optimise,
3132
+ refresh
3133
+ } = useContext(PictoContext);
3134
+ useEffect(() => {
3135
+ refresh();
3136
+ }, []);
3137
+ return optimise('p_5zU63', /*#__PURE__*/React.createElement(SVGComponent$L, props));
3138
+ };
3139
+
3140
+ var SVGComponent$K = (({
3141
+ as: Component = "svg",
3142
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3143
+ d: "M15,8c0-3.86-3.14-7-7-7S1,4.14,1,8s3.14,7,7,7,7-3.14,7-7Zm1,0C16,3.58,12.42,0,8,0S0,3.58,0,8s3.58,8,8,8,8-3.58,8-8Zm-7.45,1.86v-.49c0-.49,.21-.73,1.12-1.3,1.12-.69,1.68-1.37,1.68-2.34,0-1.58-1.48-2.74-3.4-2.74-2.16,0-3.56,1.36-3.63,3.44l2.02,.15c.06-1.09,.64-1.71,1.61-1.71,.77,0,1.25,.36,1.25,.92,0,.48-.25,.77-1.16,1.3-.98,.6-1.36,1.13-1.36,2v.76h1.88Zm.22,3.14v-2.17h-2.24v2.17h2.24Z",
3144
+ fillRule: "evenodd"
3145
+ })),
3146
+ ...props
3147
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3148
+ xmlns: "http://www.w3.org/2000/svg",
3149
+ width: "16",
3150
+ height: "16",
3151
+ viewBox: "0 0 16 16",
3152
+ fill: "currentColor"
3153
+ }, props), children));
3154
+
3155
+ const QuestionCircleLine = props => {
3156
+ const {
3157
+ optimise,
3158
+ refresh
3159
+ } = useContext(PictoContext);
3160
+ useEffect(() => {
3161
+ refresh();
3162
+ }, []);
3163
+ return optimise('p_zb1g7', /*#__PURE__*/React.createElement(SVGComponent$K, props));
3164
+ };
3165
+
3166
+ var SVGComponent$J = (({
3167
+ as: Component = "svg",
3168
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3169
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm0,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1Zm.05,17a.85.85,0,1,0-.84-.84A.85.85,0,0,0,12.05,18Zm.47-2.82h-1a4,4,0,0,1,.94-2.95,23.09,23.09,0,0,0,1.95-2.05C15.13,9,14.48,7,12.14,7A2.88,2.88,0,0,0,9.21,9.51l-1-.11A3.74,3.74,0,0,1,12.11,6a3.33,3.33,0,0,1,3.62,3.22c0,1.81-1.83,2.78-2.64,3.87A3.68,3.68,0,0,0,12.52,15.18Z",
3170
+ fillRule: "evenodd"
3171
+ })),
3172
+ ...props
3173
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3174
+ height: "24",
3175
+ viewBox: "0 0 24 24",
3176
+ width: "24",
3177
+ xmlns: "http://www.w3.org/2000/svg",
3178
+ fill: "currentColor"
3179
+ }, props), children));
3180
+
3181
+ const QuestionMarkCircle = props => {
3182
+ const {
3183
+ optimise,
3184
+ refresh
3185
+ } = useContext(PictoContext);
3186
+ useEffect(() => {
3187
+ refresh();
3188
+ }, []);
3189
+ return optimise('p_23956K', /*#__PURE__*/React.createElement(SVGComponent$J, props));
3190
+ };
3191
+
3192
+ var SVGComponent$I = (({
3193
+ as: Component = "svg",
3194
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3195
+ d: "M8,0A8,8,0,1,1,0,8,8,8,0,0,1,8,0Zm.55,9.37v.49H6.68V9.11c0-.87.38-1.4,1.36-2S9.2,6.28,9.2,5.8,8.72,4.88,8,4.88c-1,0-1.55.62-1.61,1.71l-2-.16A3.38,3.38,0,0,1,8,3c1.92,0,3.4,1.16,3.4,2.74,0,1-.56,1.66-1.68,2.34C8.76,8.65,8.55,8.88,8.55,9.37Zm.23,1.46V13H6.54V10.83Z",
3196
+ fillRule: "evenodd"
3197
+ })),
3198
+ ...props
3199
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3200
+ xmlns: "http://www.w3.org/2000/svg",
3201
+ width: "16",
3202
+ height: "16",
3203
+ viewBox: "0 0 16 16",
3204
+ fill: "currentColor"
3205
+ }, props), children));
3206
+
3207
+ const QuestionMarkCircleBold = props => {
3208
+ const {
3209
+ optimise,
3210
+ refresh
3211
+ } = useContext(PictoContext);
3212
+ useEffect(() => {
3213
+ refresh();
3214
+ }, []);
3215
+ return optimise('p_ZN1EMW', /*#__PURE__*/React.createElement(SVGComponent$I, props));
3216
+ };
3217
+
3218
+ var SVGComponent$H = (({
3219
+ as: Component = "svg",
3220
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3221
+ d: "M15,21c5.3-1,9-4.9,9-10.6V3H14V13h4a6.6,6.6,0,0,1-4,5.8ZM1,21c5.3-1,9-4.9,9-10.6V3H0V13H4a6.6,6.6,0,0,1-4,5.8Zm.6-1.2-.2-.5A7.77,7.77,0,0,0,5,13V12H1V4H9v6.4A9.34,9.34,0,0,1,1.6,19.8Zm14,0-.2-.5A7.77,7.77,0,0,0,19.1,13V12h-4V4h8v6.4A9.52,9.52,0,0,1,15.6,19.8Z"
3222
+ })),
3223
+ ...props
3224
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3225
+ height: "24",
3226
+ viewBox: "0 0 24 24",
3227
+ width: "24",
3228
+ xmlns: "http://www.w3.org/2000/svg",
3229
+ fill: "currentColor"
3230
+ }, props), children));
3231
+
3232
+ const QuoteClose = props => {
3233
+ const {
3234
+ optimise,
3235
+ refresh
3236
+ } = useContext(PictoContext);
3237
+ useEffect(() => {
3238
+ refresh();
3239
+ }, []);
3240
+ return optimise('p_Z1eti8e', /*#__PURE__*/React.createElement(SVGComponent$H, props));
3241
+ };
3242
+
3243
+ var SVGComponent$G = (({
3244
+ as: Component = "svg",
3245
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3246
+ d: "M6.61,10.69a5,5,0,0,1,3.31,1.62,4.54,4.54,0,0,1,1.41,3.38,5,5,0,0,1-1.6,3.81A5.2,5.2,0,0,1,5.94,21a5.43,5.43,0,0,1-4.29-1.88A7.52,7.52,0,0,1,0,14.06Q0,7.57,5.76,2l4.1,3A9.24,9.24,0,0,0,6.61,10.69Zm12.68,0a5,5,0,0,1,3.3,1.62A4.54,4.54,0,0,1,24,15.69a5.08,5.08,0,0,1-1.59,3.87A5.42,5.42,0,0,1,18.55,21a5.35,5.35,0,0,1-4.22-1.88,7.47,7.47,0,0,1-1.66-5.06c0-4.41,1.92-8.44,5.76-12.06l4.1,3A8.77,8.77,0,0,0,19.29,10.69Z"
3247
+ })),
3248
+ ...props
3249
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3250
+ height: "24",
3251
+ viewBox: "0 0 24 24",
3252
+ width: "24",
3253
+ xmlns: "http://www.w3.org/2000/svg",
3254
+ fill: "currentColor"
3255
+ }, props), children));
3256
+
3257
+ const QuoteOpenPlain = props => {
3258
+ const {
3259
+ optimise,
3260
+ refresh
3261
+ } = useContext(PictoContext);
3262
+ useEffect(() => {
3263
+ refresh();
3264
+ }, []);
3265
+ return optimise('p_2qnK9W', /*#__PURE__*/React.createElement(SVGComponent$G, props));
3266
+ };
3267
+
3268
+ var SVGComponent$F = (({
3269
+ as: Component = "svg",
3270
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3271
+ d: "M16.27,5.45A4.1,4.1,0,0,1,16,4a4,4,0,1,1,.75,2.33L9.62,10.08a5,5,0,0,1,0,3.84l7.13,3.75A4,4,0,1,1,16,20a4.1,4.1,0,0,1,.27-1.45L9.14,14.8a5,5,0,1,1,0-5.6ZM20,17a3,3,0,1,1-3,3A3,3,0,0,1,20,17ZM5,8a4,4,0,1,1-4,4A4,4,0,0,1,5,8ZM20,1a3,3,0,1,1-3,3A3,3,0,0,1,20,1Z",
3272
+ fillRule: "evenodd"
3273
+ })),
3274
+ ...props
3275
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3276
+ height: "24",
3277
+ viewBox: "0 0 24 24",
3278
+ width: "24",
3279
+ xmlns: "http://www.w3.org/2000/svg",
3280
+ fill: "currentColor"
3281
+ }, props), children));
3282
+
3283
+ const Share = props => {
3284
+ const {
3285
+ optimise,
3286
+ refresh
3287
+ } = useContext(PictoContext);
3288
+ useEffect(() => {
3289
+ refresh();
3290
+ }, []);
3291
+ return optimise('p_5KLz6', /*#__PURE__*/React.createElement(SVGComponent$F, props));
3292
+ };
3293
+
3294
+ var SVGComponent$E = (({
3295
+ as: Component = "svg",
3296
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3297
+ d: "M12,0C8.63,2.87,6.52,3,3,3V14.53c0,4.61,3.2,5.81,9,9.47,5.8-3.66,9-4.86,9-9.47V3C17.48,3,15.37,2.87,12,0Zm0,1.29A11.5,11.5,0,0,0,20,4V14.53c0,3.9-2.64,5-8,8.29-5.38-3.35-8-4.41-8-8.29V4A11.5,11.5,0,0,0,12,1.29ZM17,9l-6,6.62L7.34,11.72,8,11l3,3.18,5.22-5.87Z"
3298
+ })),
3299
+ ...props
3300
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3301
+ height: "24",
3302
+ viewBox: "0 0 24 24",
3303
+ width: "24",
3304
+ xmlns: "http://www.w3.org/2000/svg",
3305
+ fill: "currentColor"
3306
+ }, props), children));
3307
+
3308
+ const ShieldCheck = props => {
3309
+ const {
3310
+ optimise,
3311
+ refresh
3312
+ } = useContext(PictoContext);
3313
+ useEffect(() => {
3314
+ refresh();
3315
+ }, []);
3316
+ return optimise('p_1zniGE', /*#__PURE__*/React.createElement(SVGComponent$E, props));
3317
+ };
3318
+
3319
+ var SVGComponent$D = (({
3320
+ as: Component = "svg",
3321
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3322
+ d: "M18,24H6a2,2,0,0,1-2-2V2A2,2,0,0,1,6,0H18a2,2,0,0,1,2,2V22A2,2,0,0,1,18,24Zm1-5.08H5V22a1,1,0,0,0,1,1H18a1,1,0,0,0,1-1Zm-7,3a1,1,0,1,1,1-1A1,1,0,0,1,12,21.92Zm7-17H5v13H19ZM18,1H6A1,1,0,0,0,5,2V3.92H19V2A1,1,0,0,0,18,1ZM13.5,2.92h-3a.5.5,0,0,1-.5-.5.5.5,0,0,1,.5-.5h3a.5.5,0,0,1,.5.5A.5.5,0,0,1,13.5,2.92Z"
3323
+ })),
3324
+ ...props
3325
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3326
+ height: "24",
3327
+ viewBox: "0 0 24 24",
3328
+ width: "24",
3329
+ xmlns: "http://www.w3.org/2000/svg",
3330
+ fill: "currentColor"
3331
+ }, props), children));
3332
+
3333
+ const Smartphone = props => {
3334
+ const {
3335
+ optimise,
3336
+ refresh
3337
+ } = useContext(PictoContext);
3338
+ useEffect(() => {
3339
+ refresh();
3340
+ }, []);
3341
+ return optimise('p_eE6WD', /*#__PURE__*/React.createElement(SVGComponent$D, props));
3342
+ };
3343
+
3344
+ var SVGComponent$C = (({
3345
+ as: Component = "svg",
3346
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3347
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm0,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1Zm0,14a7.5,7.5,0,0,1,5.12,2.22l-.67.75A6.44,6.44,0,0,0,12,16h0a6.43,6.43,0,0,0-4.4,1.91l-.67-.74A7.41,7.41,0,0,1,12,15ZM8.49,8.5a1,1,0,1,1-1,1A1,1,0,0,1,8.49,8.5Zm7,0a1,1,0,1,1-1,1A1,1,0,0,1,15.5,8.5Z",
3348
+ fillRule: "evenodd"
3349
+ })),
3350
+ ...props
3351
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3352
+ height: "24",
3353
+ viewBox: "0 0 24 24",
3354
+ width: "24",
3355
+ xmlns: "http://www.w3.org/2000/svg",
3356
+ fill: "currentColor"
3357
+ }, props), children));
3358
+
3359
+ const SmileyFrown = props => {
3360
+ const {
3361
+ optimise,
3362
+ refresh
3363
+ } = useContext(PictoContext);
3364
+ useEffect(() => {
3365
+ refresh();
3366
+ }, []);
3367
+ return optimise('p_Z1VUeoP', /*#__PURE__*/React.createElement(SVGComponent$C, props));
3368
+ };
3369
+
3370
+ var SVGComponent$B = (({
3371
+ as: Component = "svg",
3372
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3373
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm0,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1ZM12,18.51h0a7.86,7.86,0,0,1-6.15-3.35l.79-.61a6.88,6.88,0,0,0,5.36,3h0a7,7,0,0,0,5.41-3l.79.61A8,8,0,0,1,12,18.51ZM8.49,8.5a1,1,0,1,1-1,1A1,1,0,0,1,8.49,8.5Zm7,0a1,1,0,1,1-1,1A1,1,0,0,1,15.5,8.5Z",
3374
+ fillRule: "evenodd"
3375
+ })),
3376
+ ...props
3377
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3378
+ height: "24",
3379
+ viewBox: "0 0 24 24",
3380
+ width: "24",
3381
+ xmlns: "http://www.w3.org/2000/svg",
3382
+ fill: "currentColor"
3383
+ }, props), children));
3384
+
3385
+ const SmileyHappy = props => {
3386
+ const {
3387
+ optimise,
3388
+ refresh
3389
+ } = useContext(PictoContext);
3390
+ useEffect(() => {
3391
+ refresh();
3392
+ }, []);
3393
+ return optimise('p_Z1VOjUu', /*#__PURE__*/React.createElement(SVGComponent$B, props));
3394
+ };
3395
+
3396
+ var SVGComponent$A = (({
3397
+ as: Component = "svg",
3398
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3399
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm0,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1ZM8.49,8.5a1,1,0,1,1-1,1A1,1,0,0,1,8.49,8.5Zm7,0a1,1,0,1,1-1,1A1,1,0,0,1,15.5,8.5ZM16,15H8v1h8Z",
3400
+ fillRule: "evenodd"
3401
+ })),
3402
+ ...props
3403
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3404
+ height: "24",
3405
+ viewBox: "0 0 24 24",
3406
+ width: "24",
3407
+ xmlns: "http://www.w3.org/2000/svg",
3408
+ fill: "currentColor"
3409
+ }, props), children));
3410
+
3411
+ const SmileyNeutral = props => {
3412
+ const {
3413
+ optimise,
3414
+ refresh
3415
+ } = useContext(PictoContext);
3416
+ useEffect(() => {
3417
+ refresh();
3418
+ }, []);
3419
+ return optimise('p_JpI4s', /*#__PURE__*/React.createElement(SVGComponent$A, props));
3420
+ };
3421
+
3422
+ var SVGComponent$z = (({
3423
+ as: Component = "svg",
3424
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3425
+ d: "M12,1C5.66,1,0,5.23,0,11a8.79,8.79,0,0,0,2.05,5.62L.05,23l7-3a19.4,19.4,0,0,0,4.86.64C19,20.64,24,16.2,24,11,24,5.2,18.3,1,12,1Zm0,1c6.07,0,11,4,11,9s-4.79,8.63-11.14,8.63A19.19,19.19,0,0,1,6.92,19L1.66,21.22l1.5-4.81A7.94,7.94,0,0,1,1,11C1,6,5.93,2,12,2Z"
3426
+ })),
3427
+ ...props
3428
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3429
+ height: "24",
3430
+ viewBox: "0 0 24 24",
3431
+ width: "24",
3432
+ xmlns: "http://www.w3.org/2000/svg",
3433
+ fill: "currentColor"
3434
+ }, props), children));
3435
+
3436
+ const SpeechBubble = props => {
3437
+ const {
3438
+ optimise,
3439
+ refresh
3440
+ } = useContext(PictoContext);
3441
+ useEffect(() => {
3442
+ refresh();
3443
+ }, []);
3444
+ return optimise('p_Z1P6s6q', /*#__PURE__*/React.createElement(SVGComponent$z, props));
3445
+ };
3446
+
3447
+ var SVGComponent$y = (({
3448
+ as: Component = "svg",
3449
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3450
+ d: "M19.3766 7.90393C19.5844 7.48472 19.9221 7.17031 21.4416 6.39738C23.3507 5.42795 24 4.70742 24 3.43668C24 2.07424 22.7792 1 21.1558 1C19.2597 1 18.0779 2.33624 18 4.0262L18.974 4.1179C19.0779 2.75546 19.8442 1.91703 21.1429 1.91703C22.2078 1.91703 22.987 2.58515 22.987 3.43668C22.987 4.32751 22.4675 4.82533 20.6623 5.76856C19.3506 6.44978 18.7792 6.869 18.4416 7.45852C18.1558 7.96943 18.0779 8.50655 18.0779 9.17467V10H23.8831V9.04367H19.1558C19.1688 8.53275 19.2208 8.19214 19.3766 7.90393Z"
3451
+ }), /*#__PURE__*/React.createElement("path", {
3452
+ d: "M2.42863 9.8789C1.78553 10.3934 1.5 10.9626 1.5 11.3024V20.7908H0.5V8.51172H1.5V9.36393C1.59671 9.27138 1.69835 9.1825 1.80393 9.09803C2.58046 8.4768 3.66522 8.01172 4.90698 8.01172C5.78395 8.01172 6.73842 8.15501 7.48665 8.65383C7.85139 8.89699 8.15144 9.21401 8.36805 9.6106C9.04458 8.72414 10.2922 8.01172 12.1628 8.01172C13.0398 8.01172 13.9942 8.15501 14.7425 8.65383C15.5265 9.17651 16.0116 10.0405 16.0116 11.3024V20.7908H15.0116V11.3024C15.0116 10.3318 14.6596 9.80042 14.1878 9.48588C13.6802 9.1475 12.9602 9.01172 12.1628 9.01172C9.59125 9.01172 8.75581 10.516 8.75581 11.3024V20.7908H7.75581V11.3024C7.75581 10.3318 7.40376 9.80042 6.93195 9.48588C6.42437 9.1475 5.70442 9.01172 4.90698 9.01172C3.91618 9.01172 3.04744 9.38384 2.42863 9.8789Z"
3453
+ })),
3454
+ ...props
3455
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3456
+ viewBox: "0 0 24 24",
3457
+ width: "24",
3458
+ height: "24",
3459
+ xmlns: "http://www.w3.org/2000/svg",
3460
+ fill: "currentColor"
3461
+ }, props), children));
3462
+
3463
+ const SquareMeter = props => {
3464
+ const {
3465
+ optimise,
3466
+ refresh
3467
+ } = useContext(PictoContext);
3468
+ useEffect(() => {
3469
+ refresh();
3470
+ }, []);
3471
+ return optimise('p_2paMIH', /*#__PURE__*/React.createElement(SVGComponent$y, props));
3472
+ };
3473
+
3474
+ var SVGComponent$x = (({
3475
+ as: Component = "svg",
3476
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3477
+ d: "M14.44,5.69c-.95.49-1.15.6-1.26.77a1.12,1.12,0,0,0-.14.66H16V8H12.06V7.27A2,2,0,0,1,12.38,6a3.67,3.67,0,0,1,1.45-1c1-.46,1.27-.77,1.27-1.27a.89.89,0,0,0-1-.88,1.18,1.18,0,0,0-1.2,1.24L12,4a2,2,0,0,1,2.1-2A1.77,1.77,0,0,1,16,3.75C16,4.62,15.63,5.09,14.44,5.69ZM1.26,7.85V14H0V5.22H1.24v.6h0A2.89,2.89,0,0,1,3.35,5,2.81,2.81,0,0,1,5.6,6h0A3.19,3.19,0,0,1,8,5a2.7,2.7,0,0,1,3,2.59V14H9.74V7.73a1.65,1.65,0,0,0-1.8-1.66A1.7,1.7,0,0,0,6.1,7.84V14H4.89V7.73A1.66,1.66,0,0,0,3.08,6.07,1.7,1.7,0,0,0,1.26,7.85Z"
3478
+ })),
3479
+ ...props
3480
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3481
+ xmlns: "http://www.w3.org/2000/svg",
3482
+ width: "16",
3483
+ height: "16",
3484
+ viewBox: "0 0 16 16",
3485
+ fill: "currentColor"
3486
+ }, props), children));
3487
+
3488
+ const SquareMetersBold = props => {
3489
+ const {
3490
+ optimise,
3491
+ refresh
3492
+ } = useContext(PictoContext);
3493
+ useEffect(() => {
3494
+ refresh();
3495
+ }, []);
3496
+ return optimise('p_1lUc9N', /*#__PURE__*/React.createElement(SVGComponent$x, props));
3497
+ };
3498
+
3499
+ var SVGComponent$w = (({
3500
+ as: Component = "svg",
3501
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3502
+ d: "M15.67,8.63,24,9.78l-6.07,5.88L19.42,24,12,20,4.58,24l1.48-8.34L0,9.78,8.33,8.63,12,1ZM9,9.55l-6.82.95,5,4.81L5.93,22.13,12,18.86l6.07,3.27-1.21-6.82,5-4.81L15,9.55,12,3.31Z"
3503
+ })),
3504
+ ...props
3505
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3506
+ height: "24",
3507
+ viewBox: "0 0 24 24",
3508
+ width: "24",
3509
+ xmlns: "http://www.w3.org/2000/svg",
3510
+ fill: "currentColor"
3511
+ }, props), children));
3512
+
3513
+ const Star = props => {
3514
+ const {
3515
+ optimise,
3516
+ refresh
3517
+ } = useContext(PictoContext);
3518
+ useEffect(() => {
3519
+ refresh();
3520
+ }, []);
3521
+ return optimise('p_boiV', /*#__PURE__*/React.createElement(SVGComponent$w, props));
3522
+ };
3523
+
3524
+ var SVGComponent$v = (({
3525
+ as: Component = "svg",
3526
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3527
+ fillRule: "evenodd",
3528
+ clipRule: "evenodd",
3529
+ d: "M15.668 7.626L24 8.785L17.935 14.659L19.415 23L11.999 19.003L4.583 23L6.064 14.659L0 8.785L8.331 7.626L11.999 0L15.668 7.626Z"
3530
+ })),
3531
+ ...props
3532
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3533
+ width: "24",
3534
+ height: "23",
3535
+ viewBox: "0 0 24 23",
3536
+ xmlns: "http://www.w3.org/2000/svg",
3537
+ fill: "currentColor"
3538
+ }, props), children));
3539
+
3540
+ const StarFilled = props => {
3541
+ const {
3542
+ optimise,
3543
+ refresh
3544
+ } = useContext(PictoContext);
3545
+ useEffect(() => {
3546
+ refresh();
3547
+ }, []);
3548
+ return optimise('p_Z136xVM', /*#__PURE__*/React.createElement(SVGComponent$v, props));
3549
+ };
3550
+
3551
+ var SVGComponent$u = (({
3552
+ as: Component = "svg",
3553
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3554
+ fillRule: "evenodd",
3555
+ clipRule: "evenodd",
3556
+ d: "M11.999 19.003L4.583 23L6.064 14.659L0 8.785L8.331 7.626L11.999 0L15.668 7.626L24 8.785L17.935 14.659L19.415 23L11.999 19.003ZM11.999 2.31V17.86L18.068 21.131L16.856 14.305L21.82 9.499L15.001 8.551L11.999 2.31Z"
3557
+ })),
3558
+ ...props
3559
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3560
+ width: "24",
3561
+ height: "23",
3562
+ viewBox: "0 0 24 23",
3563
+ xmlns: "http://www.w3.org/2000/svg",
3564
+ fill: "currentColor"
3565
+ }, props), children));
3566
+
3567
+ const StarHalf = props => {
3568
+ const {
3569
+ optimise,
3570
+ refresh
3571
+ } = useContext(PictoContext);
3572
+ useEffect(() => {
3573
+ refresh();
3574
+ }, []);
3575
+ return optimise('p_1CFnAy', /*#__PURE__*/React.createElement(SVGComponent$u, props));
3576
+ };
3577
+
3578
+ var SVGComponent$t = (({
3579
+ as: Component = "svg",
3580
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3581
+ d: "M17.52,10a.5.5,0,0,1-.15.69l-2.2,1.45a.53.53,0,0,1-.27.08.52.52,0,0,1-.42-.22.51.51,0,0,1,.14-.7l2.21-1.44A.5.5,0,0,1,17.52,10ZM11.27,7.42,12.39,5a.5.5,0,1,1,.9.42L12.18,7.84a.49.49,0,0,1-.45.29l-.21-.05A.5.5,0,0,1,11.27,7.42ZM8.65,8C10,5.38,10.14,2.93,9,.74A.49.49,0,0,1,9.41,0a.49.49,0,0,1,.44.26c1.33,2.49,1.23,5.26-.31,8.22a.51.51,0,0,1-.45.27.53.53,0,0,1-.23-.06A.5.5,0,0,1,8.65,8ZM24,13.56a.5.5,0,0,1-.67.47c-2.81-1-5.25-.83-7.27.61a.52.52,0,0,1-.29.09.49.49,0,0,1-.41-.21.5.5,0,0,1,.12-.7c2.3-1.63,5.06-1.88,8.19-.73A.48.48,0,0,1,24,13.56ZM7.52,11l2.86,7.52-2.25,1L5.38,11.92l.78-2.18Zm3.78,7.12L9.13,12.39l5,4.46ZM3,18.49l1,2.7-2.31,1Zm1.82-5.1,2.36,6.43-2.27,1L3.56,17ZM0,24l16-6.85L5.71,8ZM20.46,8.37,21,7.68l.28.84.83.31-.71.52,0,.89-.72-.51L19.8,10l.27-.84-.5-.74Zm-1.38.89-.64,2,2-.56,1.72,1.23.09-2.12L24,8.56l-2-.74-.67-2L20,7.47l-2.11,0Zm-2.17-4.2c.59,0,.92-.14,1.07-.31s.23-.65.17-1.44a.5.5,0,0,1,1-.08,3,3,0,0,1-.41,2.16A2.43,2.43,0,0,1,17,6c-.7.06-.72.25-.77.88a1.81,1.81,0,0,1-1.84,1.94c-1,.11-1.43.33-1.38,2,0,.28-.21.33-.48.33h0c-.27,0-.49,0-.5-.29-.05-1.47.19-2.66,2.27-2.89.87-.1.9-.41,1-1.07A1.67,1.67,0,0,1,16.91,5.06Zm5.26-3a.83.83,0,1,1-.82.83A.83.83,0,0,1,22.17,2Zm0,2.65a1.83,1.83,0,1,0-1.82-1.82A1.83,1.83,0,0,0,22.17,4.66ZM13.73,1a1,1,0,1,1-1,1A1,1,0,0,1,13.73,1Zm0,3a2,2,0,1,0-2-2A2,2,0,0,0,13.73,4Z"
3582
+ })),
3583
+ ...props
3584
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3585
+ height: "24",
3586
+ viewBox: "0 0 24 24",
3587
+ width: "24",
3588
+ xmlns: "http://www.w3.org/2000/svg",
3589
+ fill: "currentColor"
3590
+ }, props), children));
3591
+
3592
+ const Tada = props => {
3593
+ const {
3594
+ optimise,
3595
+ refresh
3596
+ } = useContext(PictoContext);
3597
+ useEffect(() => {
3598
+ refresh();
3599
+ }, []);
3600
+ return optimise('p_brqe', /*#__PURE__*/React.createElement(SVGComponent$t, props));
3601
+ };
3602
+
3603
+ var SVGComponent$s = (({
3604
+ as: Component = "svg",
3605
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3606
+ d: "M14.75,13.72a2.43,2.43,0,0,1-2.66,2.45,2.81,2.81,0,0,1-2.95-2.85l.91-.15c.15,1.41.83,2.12,2,2.12a1.56,1.56,0,0,0,1.73-1.57c0-1.09-.63-1.61-1.9-1.61h-.58v-.83h.58c1,0,1.69-.57,1.69-1.3A1.37,1.37,0,0,0,12.06,8.6a1.73,1.73,0,0,0-1.81,1.56L9.36,10a2.59,2.59,0,0,1,2.7-2.26A2.22,2.22,0,0,1,14.54,9.9a1.94,1.94,0,0,1-1.24,1.71v0A2.09,2.09,0,0,1,14.75,13.72ZM24,12A12,12,0,1,1,12,0,12,12,0,0,1,24,12Zm-1,0A11,11,0,1,0,12,23,11,11,0,0,0,23,12Z",
3607
+ fillRule: "evenodd"
3608
+ })),
3609
+ ...props
3610
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3611
+ xmlns: "http://www.w3.org/2000/svg",
3612
+ width: "24",
3613
+ height: "24",
3614
+ viewBox: "0 0 24 24",
3615
+ fill: "currentColor"
3616
+ }, props), children));
3617
+
3618
+ const ThreeCircle = props => {
3619
+ const {
3620
+ optimise,
3621
+ refresh
3622
+ } = useContext(PictoContext);
3623
+ useEffect(() => {
3624
+ refresh();
3625
+ }, []);
3626
+ return optimise('p_2gxBlN', /*#__PURE__*/React.createElement(SVGComponent$s, props));
3627
+ };
3628
+
3629
+ var SVGComponent$r = (({
3630
+ as: Component = "svg",
3631
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3632
+ d: "M19.99,11.65c0-.16-.02-.32-.03-.48-.01-.13-.03-.26-.05-.39-.03-.2-.07-.39-.11-.59-.13-.55-.31-1.08-.55-1.59-.84-1.78-2.3-3.19-4.11-3.97-.43-.18-.86-.33-1.31-.43-.15-.03-.3-.06-.45-.09-.09-.02-.19-.03-.29-.04-.1-.01-.2-.02-.3-.03-.08,0-.16-.02-.25-.02-.18,0-.36-.02-.51-.02-.26,0-.38,0-.58.02-.13,0-.25.02-.38.04-.12.01-.24.03-.36.05-.17.03-.34.06-.51.1-.52.12-1.03.29-1.52.51-1.26.58-2.3,1.42-3.12,2.53-.58.78-1,1.63-1.27,2.57-.07.25-.13.5-.18.76-.02.12-.04.24-.06.36-.01.1-.02.21-.03.31-.01.12-.02.24-.03.37,0,.03,0,.05,0,.08-.01.2-.01.39,0,.59,0,.17.01.35.03.52.01.1.02.2.03.3.02.16.05.31.08.47.07.35.16.7.28,1.04.35,1.02.89,1.93,1.61,2.74.88.98,1.95,1.71,3.19,2.17.34.13.69.23,1.04.31.13.03.26.05.4.08.1.02.2.03.3.04.11.01.21.03.32.03.09,0,.19.02.28.02.14,0,.28.01.42.01s.28,0,.42,0c.09,0,.17-.01.26-.02.07,0,.14-.01.21-.02.12-.01.25-.03.37-.05.16-.03.32-.06.49-.09.37-.08.73-.19,1.08-.32.95-.36,1.79-.87,2.54-1.55.69-.62,1.25-1.34,1.69-2.15.32-.59.56-1.21.72-1.86.04-.18.08-.36.11-.54.03-.14.05-.29.06-.43.01-.13.03-.25.04-.38.01-.15.02-.29.02-.44,0-.16,0-.33,0-.49ZM16.33,9.39c-.05.27-.11.55-.16.82-.04.2-.08.4-.12.6,0,0,0,.01,0,.02,0,.01-.01.02-.03.02-.03,0-.05,0-.08-.01-.1-.02-.19-.03-.29-.05-.47-.1-.9-.27-1.3-.54-.15-.1-.3-.22-.43-.35-.01-.01-.02-.02-.04-.03,0,0,0,0-.01,0,0,0,0,0,0,.01,0,.02,0,.03,0,.05,0,.09,0,.18,0,.27v3.32c0,.05,0,.11,0,.16-.01.34-.08.66-.19.97-.33.88-1.06,1.61-2.04,1.89-.14.04-.29.07-.44.09-.21.03-.42.03-.63.02-.28-.02-.56-.07-.83-.17-.95-.34-1.69-1.12-1.96-2.11-.05-.17-.08-.34-.09-.51-.02-.18-.02-.36,0-.54.02-.28.08-.56.18-.83.3-.84.98-1.54,1.86-1.86.18-.07.37-.12.57-.15.16-.03.31-.04.47-.04.17,0,.35,0,.52,0,.02,0,.03,0,.05,0,0,0,.02.01.02.02,0,.02,0,.04,0,.06v1.46s0,.05,0,.07c0,0-.01.02-.02.02-.02,0-.04,0-.06,0h-.49c-.07,0-.13,0-.2.01-.17.02-.33.07-.49.15-.33.17-.65.5-.76.99-.04.16-.04.32-.02.48.05.45.32.86.71,1.09.17.1.34.16.54.19.1.01.19.02.29.01.33-.02.62-.13.88-.35.25-.21.41-.48.49-.8.02-.09.03-.19.03-.29v-3.07h0v-3.08s0-.05,0-.08c0-.01.01-.02.02-.02.02,0,.04,0,.06,0h1.47s.03,0,.05,0c.02,0,.03,0,.03.02.02.03.03.06.05.09.09.16.18.32.28.47.14.2.3.39.48.57.21.2.43.38.69.51.21.11.42.19.65.23.09.02.18.03.26.05.01,0,.02,0,.03,0,.03,0,.03.02.03.04,0,.02,0,.05-.01.07Z"
3633
+ })),
3634
+ ...props
3635
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3636
+ height: "24",
3637
+ viewBox: "0 0 24 24",
3638
+ width: "24",
3639
+ xmlns: "http://www.w3.org/2000/svg",
3640
+ fill: "currentColor"
3641
+ }, props), children));
3642
+
3643
+ const TikTokSmall = props => {
3644
+ const {
3645
+ optimise,
3646
+ refresh
3647
+ } = useContext(PictoContext);
3648
+ useEffect(() => {
3649
+ refresh();
3650
+ }, []);
3651
+ return optimise('p_Z18gf2J', /*#__PURE__*/React.createElement(SVGComponent$r, props));
3652
+ };
3653
+
3654
+ var SVGComponent$q = (({
3655
+ as: Component = "svg",
3656
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3657
+ d: "M12,11.29,22.29,1l.71.71L12.71,12,23,22.29l-.71.71L12,12.71,1.71,23,1,22.29,11.29,12,1,1.71,1.71,1Z"
3658
+ })),
3659
+ ...props
3660
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3661
+ height: "24",
3662
+ viewBox: "0 0 24 24",
3663
+ width: "24",
3664
+ xmlns: "http://www.w3.org/2000/svg",
3665
+ fill: "currentColor"
3666
+ }, props), children));
3667
+
3668
+ const Times = props => {
3669
+ const {
3670
+ optimise,
3671
+ refresh
3672
+ } = useContext(PictoContext);
3673
+ useEffect(() => {
3674
+ refresh();
3675
+ }, []);
3676
+ return optimise('p_5P1KP', /*#__PURE__*/React.createElement(SVGComponent$q, props));
3677
+ };
3678
+
3679
+ var SVGComponent$p = (({
3680
+ as: Component = "svg",
3681
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3682
+ d: "M13.5,12.16,9.29,8l4.17-4.2L12.16,2.5,8,6.71,3.79,2.54,2.5,3.83,6.71,8,2.54,12.21,3.83,13.5,8,9.29l4.2,4.17Z"
3683
+ })),
3684
+ ...props
3685
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3686
+ height: "16",
3687
+ viewBox: "0 0 16 16",
3688
+ width: "16",
3689
+ xmlns: "http://www.w3.org/2000/svg",
3690
+ fill: "currentColor"
3691
+ }, props), children));
3692
+
3693
+ const TimesBold = props => {
3694
+ const {
3695
+ optimise,
3696
+ refresh
3697
+ } = useContext(PictoContext);
3698
+ useEffect(() => {
3699
+ refresh();
3700
+ }, []);
3701
+ return optimise('p_2qB9uD', /*#__PURE__*/React.createElement(SVGComponent$p, props));
3702
+ };
3703
+
3704
+ var SVGComponent$o = (({
3705
+ as: Component = "svg",
3706
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3707
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm0,1A11,11,0,1,1,1,12,11,11,0,0,1,12,1Zm0,10.29L17.29,6l.71.71L12.71,12,18,17.29l-.71.71L12,12.71,6.71,18,6,17.29,11.29,12,6,6.71,6.71,6Z",
3708
+ fillRule: "evenodd"
3709
+ })),
3710
+ ...props
3711
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3712
+ height: "24",
3713
+ viewBox: "0 0 24 24",
3714
+ width: "24",
3715
+ xmlns: "http://www.w3.org/2000/svg",
3716
+ fill: "currentColor"
3717
+ }, props), children));
3718
+
3719
+ const TimesCircle = props => {
3720
+ const {
3721
+ optimise,
3722
+ refresh
3723
+ } = useContext(PictoContext);
3724
+ useEffect(() => {
3725
+ refresh();
3726
+ }, []);
3727
+ return optimise('p_21rHCP', /*#__PURE__*/React.createElement(SVGComponent$o, props));
3728
+ };
3729
+
3730
+ var SVGComponent$n = (({
3731
+ as: Component = "svg",
3732
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3733
+ className: "fe888163-7f93-4aef-8e29-c21bf087d597",
3734
+ d: "M8,0a8,8,0,1,0,8,8A8,8,0,0,0,8,0Zm3.06,12L8,8.94,5,12,4,11.06,7.06,8,4,5,4.94,4,8,7.06,11,4l.94.94L8.94,8,12,11Z",
3735
+ fillRule: "evenodd"
3736
+ })),
3737
+ ...props
3738
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3739
+ xmlns: "http://www.w3.org/2000/svg",
3740
+ width: "16",
3741
+ height: "16",
3742
+ viewBox: "0 0 16 16",
3743
+ fill: "currentColor"
3744
+ }, props), children));
3745
+
3746
+ const TimesCircleBold = props => {
3747
+ const {
3748
+ optimise,
3749
+ refresh
3750
+ } = useContext(PictoContext);
3751
+ useEffect(() => {
3752
+ refresh();
3753
+ }, []);
3754
+ return optimise('p_ZYoFYk', /*#__PURE__*/React.createElement(SVGComponent$n, props));
3755
+ };
3756
+
3757
+ var SVGComponent$m = (({
3758
+ as: Component = "svg",
3759
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3760
+ d: "M15,8c0-3.86-3.14-7-7-7S1,4.14,1,8s3.14,7,7,7,7-3.14,7-7Zm1,0C16,3.58,12.42,0,8,0S0,3.58,0,8s3.58,8,8,8,8-3.58,8-8Zm-4,3.03l-3.06-3.03,3.03-3.06-.94-.94-3.03,3.06-3.06-3.03-.94,.94,3.06,3.03-3.03,3.06,.94,.94,3.04-3.06,3.06,3.03,.94-.94Z",
3761
+ fillRule: "evenodd"
3762
+ })),
3763
+ ...props
3764
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3765
+ xmlns: "http://www.w3.org/2000/svg",
3766
+ width: "16",
3767
+ height: "16",
3768
+ viewBox: "0 0 16 16",
3769
+ fill: "currentColor"
3770
+ }, props), children));
3771
+
3772
+ const TimesCircleLine = props => {
3773
+ const {
3774
+ optimise,
3775
+ refresh
3776
+ } = useContext(PictoContext);
3777
+ useEffect(() => {
3778
+ refresh();
3779
+ }, []);
3780
+ return optimise('p_ZYnos3', /*#__PURE__*/React.createElement(SVGComponent$m, props));
3781
+ };
3782
+
3783
+ var SVGComponent$l = (({
3784
+ as: Component = "svg",
3785
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3786
+ d: "M15.55,14.7a3,3,0,0,0,3.8,1.87h0a3,3,0,0,0,1.86-3.8c-.19-.55-.43-1.14-.7-1.76h-6A35.33,35.33,0,0,0,15.55,14.7Zm2.27-9.23L13.76,6.86c.19,1,.38,2.1.59,3.14h5.73C19.42,8.6,18.64,7.06,17.82,5.47Zm.49-1.23a72.46,72.46,0,0,1,3.86,8.19,4,4,0,0,1-2,4.88l1.21,3.52c.29.82,1.32.93,2.39.81l.25.74L19.27,24,19,23.21c.9-.48,1.69-1.21,1.41-2.05L19.2,17.64A4,4,0,0,1,14.61,15a62.74,62.74,0,0,1-2-8.84ZM9.44,11h-6c-.27.62-.51,1.21-.7,1.76a3,3,0,0,0,1.86,3.8h0a3,3,0,0,0,3.8-1.87A35.33,35.33,0,0,0,9.44,11ZM3.92,10H9.65c.21-1,.4-2.11.59-3.14l-4-1.39C5.36,7.06,4.57,8.6,3.92,10Zm7.45-3.81a62.74,62.74,0,0,1-2,8.84A4,4,0,0,1,4.8,17.64L3.59,21.16C3.31,22,4.1,22.73,5,23.21L4.73,24,0,22.38l.25-.74c1.07.12,2.1,0,2.39-.81l1.22-3.52a4,4,0,0,1-2-4.88A72.46,72.46,0,0,1,5.69,4.24ZM18.5,14a.75.75,0,1,1-.75.75A.76.76,0,0,1,18.5,14ZM4,14.25a.75.75,0,1,0,.75-.75A.76.76,0,0,0,4,14.25ZM7.25,12a.75.75,0,1,1-.75.75A.76.76,0,0,1,7.25,12Zm10.5-.5a.75.75,0,1,1-.75.75A.76.76,0,0,1,17.75,11.5Zm-5.25-8V.5A.5.5,0,0,0,12,0a.5.5,0,0,0-.5.5v3A.5.5,0,0,0,12,4,.5.5,0,0,0,12.5,3.52ZM14.43,4,16.07,1.2A.49.49,0,0,0,15.9.51a.51.51,0,0,0-.69.18L13.57,3.48a.5.5,0,0,0,.18.68.45.45,0,0,0,.25.07A.5.5,0,0,0,14.43,4Zm-4.55.25A.5.5,0,0,1,9.45,4L7.81,1.2A.51.51,0,0,1,8,.51a.51.51,0,0,1,.69.18l1.64,2.79a.5.5,0,0,1-.18.68A.45.45,0,0,1,9.88,4.23Z"
3787
+ })),
3788
+ ...props
3789
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3790
+ height: "24",
3791
+ viewBox: "0 0 24 24",
3792
+ width: "24",
3793
+ xmlns: "http://www.w3.org/2000/svg",
3794
+ fill: "currentColor"
3795
+ }, props), children));
3796
+
3797
+ const Toast = props => {
3798
+ const {
3799
+ optimise,
3800
+ refresh
3801
+ } = useContext(PictoContext);
3802
+ useEffect(() => {
3803
+ refresh();
3804
+ }, []);
3805
+ return optimise('p_5PKOb', /*#__PURE__*/React.createElement(SVGComponent$l, props));
3806
+ };
3807
+
3808
+ var SVGComponent$k = (({
3809
+ as: Component = "svg",
3810
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3811
+ d: "M9,3h6V1.25a.29.29,0,0,0-.07-.18A.29.29,0,0,0,14.75,1H9.25a.29.29,0,0,0-.18.07A.29.29,0,0,0,9,1.25ZM20,4H4V22a1,1,0,0,0,1,1H19a1,1,0,0,0,1-1ZM10,7.5a.5.5,0,0,0-1,0v12a.5.5,0,0,0,1,0Zm5,0a.5.5,0,0,0-1,0v12a.5.5,0,0,0,1,0ZM23,3V4H21V22a2,2,0,0,1-2,2H5a2,2,0,0,1-2-2V4H1V3H8V1A1,1,0,0,1,9,0h6a1,1,0,0,1,1,1V3Z"
3812
+ })),
3813
+ ...props
3814
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3815
+ height: "24",
3816
+ viewBox: "0 0 24 24",
3817
+ width: "24",
3818
+ xmlns: "http://www.w3.org/2000/svg",
3819
+ fill: "currentColor"
3820
+ }, props), children));
3821
+
3822
+ const Trash = props => {
3823
+ const {
3824
+ optimise,
3825
+ refresh
3826
+ } = useContext(PictoContext);
3827
+ useEffect(() => {
3828
+ refresh();
3829
+ }, []);
3830
+ return optimise('p_5Q9P7', /*#__PURE__*/React.createElement(SVGComponent$k, props));
3831
+ };
3832
+
3833
+ var SVGComponent$j = (({
3834
+ as: Component = "svg",
3835
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3836
+ d: "M14.1667 4.99996H18.3334V6.66663H16.6667V17.5C16.6667 17.9602 16.2937 18.3333 15.8334 18.3333H4.16675C3.70651 18.3333 3.33341 17.9602 3.33341 17.5V6.66663H1.66675V4.99996H5.83342V2.49996C5.83342 2.03973 6.20651 1.66663 6.66675 1.66663H13.3334C13.7937 1.66663 14.1667 2.03973 14.1667 2.49996V4.99996ZM15.0001 6.66663H5.00008V16.6666H15.0001V6.66663ZM7.50008 9.16663H9.16675V14.1666H7.50008V9.16663ZM10.8334 9.16663H12.5001V14.1666H10.8334V9.16663ZM7.50008 3.33329V4.99996H12.5001V3.33329H7.50008Z"
3837
+ })),
3838
+ ...props
3839
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3840
+ xmlns: "http://www.w3.org/2000/svg",
3841
+ width: "20",
3842
+ height: "20",
3843
+ viewBox: "0 0 20 20",
3844
+ fill: "currentColor"
3845
+ }, props), children));
3846
+
3847
+ const TrashBold = props => {
3848
+ const {
3849
+ optimise,
3850
+ refresh
3851
+ } = useContext(PictoContext);
3852
+ useEffect(() => {
3853
+ refresh();
3854
+ }, []);
3855
+ return optimise('p_Z1iTujY', /*#__PURE__*/React.createElement(SVGComponent$j, props));
3856
+ };
3857
+
3858
+ var SVGComponent$i = (({
3859
+ as: Component = "svg",
3860
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3861
+ d: "M10.51,19v5h3V19A4.17,4.17,0,0,0,15,18a5.37,5.37,0,0,0,1.73.29A5.31,5.31,0,0,0,22,13a5.38,5.38,0,0,0-1.36-3.5A4,4,0,0,0,21,7.73a3.83,3.83,0,0,0-3.32-3.82,6.18,6.18,0,0,0-11.46,0A3.83,3.83,0,0,0,3,7.69a4,4,0,0,0,.4,1.72,5.3,5.3,0,0,0,3.9,8.84A5.43,5.43,0,0,0,9,18,4.16,4.16,0,0,0,10.51,19Zm2,4.05v-4.8l.66-.24a3,3,0,0,0,1.16-.76l.45-.45.6.21a4.15,4.15,0,0,0,1.39.24,4.3,4.3,0,0,0,3.15-7.17l-.45-.5.3-.61a2.86,2.86,0,0,0-1.28-3.84h0a3.06,3.06,0,0,0-.89-.27L17,4.78l-.22-.53a5.18,5.18,0,0,0-9.62,0L7,4.78l-.57.08A2.86,2.86,0,0,0,4,8.06,2.79,2.79,0,0,0,4.25,9l.3.61-.45.5a4.3,4.3,0,0,0,3.15,7.17A4.1,4.1,0,0,0,8.64,17l.6-.21.45.45a3,3,0,0,0,1.16.76l.66.24V23Z",
3862
+ fillRule: "evenodd"
3863
+ })),
3864
+ ...props
3865
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3866
+ xmlns: "http://www.w3.org/2000/svg",
3867
+ width: "24",
3868
+ height: "24",
3869
+ viewBox: "0 0 24 24",
3870
+ fill: "currentColor"
3871
+ }, props), children));
3872
+
3873
+ const Tree = props => {
3874
+ const {
3875
+ optimise,
3876
+ refresh
3877
+ } = useContext(PictoContext);
3878
+ useEffect(() => {
3879
+ refresh();
3880
+ }, []);
3881
+ return optimise('p_bvOC', /*#__PURE__*/React.createElement(SVGComponent$i, props));
3882
+ };
3883
+
3884
+ var SVGComponent$h = (({
3885
+ as: Component = "svg",
3886
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3887
+ d: "M10.51,19V24h3V19A4.08,4.08,0,0,0,15,18a5.37,5.37,0,0,0,1.73.29,5.3,5.3,0,0,0,3.9-8.84,3.91,3.91,0,0,0,.4-1.72,3.84,3.84,0,0,0-3.32-3.82,6.18,6.18,0,0,0-11.46,0A3.84,3.84,0,0,0,3,7.69a3.91,3.91,0,0,0,.4,1.72,5.3,5.3,0,0,0,3.9,8.84A5.37,5.37,0,0,0,9,18,4.08,4.08,0,0,0,10.51,19Z"
3888
+ })),
3889
+ ...props
3890
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3891
+ xmlns: "http://www.w3.org/2000/svg",
3892
+ width: "24",
3893
+ height: "24",
3894
+ viewBox: "0 0 24 24",
3895
+ fill: "currentColor"
3896
+ }, props), children));
3897
+
3898
+ const TreePlain = props => {
3899
+ const {
3900
+ optimise,
3901
+ refresh
3902
+ } = useContext(PictoContext);
3903
+ useEffect(() => {
3904
+ refresh();
3905
+ }, []);
3906
+ return optimise('p_2o1C6h', /*#__PURE__*/React.createElement(SVGComponent$h, props));
3907
+ };
3908
+
3909
+ var SVGComponent$g = (({
3910
+ as: Component = "svg",
3911
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3912
+ d: "M7.0941,16h10v1H7.0941v-1Zm0-3.5h10v-1H7.0941v1Zm0-4.5h10v-1H7.0941v1Zm16.9059,4c0,6.63-5.37,12-12,12S0,18.63,0,12,5.37,0,12,0s12,5.37,12,12Zm-1,0c0-6.08-4.92-11-11-11S1,5.92,1,12s4.92,11,11,11,11-4.92,11-11Z"
3913
+ })),
3914
+ ...props
3915
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3916
+ xmlns: "http://www.w3.org/2000/svg",
3917
+ width: "24",
3918
+ height: "24",
3919
+ viewBox: "0 0 24 24",
3920
+ fill: "currentColor"
3921
+ }, props), children));
3922
+
3923
+ const TribarCircle = props => {
3924
+ const {
3925
+ optimise,
3926
+ refresh
3927
+ } = useContext(PictoContext);
3928
+ useEffect(() => {
3929
+ refresh();
3930
+ }, []);
3931
+ return optimise('p_QPSmx', /*#__PURE__*/React.createElement(SVGComponent$g, props));
3932
+ };
3933
+
3934
+ var SVGComponent$f = (({
3935
+ as: Component = "svg",
3936
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3937
+ d: "M14,0H2A2,2,0,0,0,0,2V14a2,2,0,0,0,2,2H14a2,2,0,0,0,2-2V2A2,2,0,0,0,14,0ZM8,10.36l2.16-.61.92,2.87ZM9.91,9,8,10.35H8L4.91,12.62,6.09,9,3,6.67H6.82L8,3,9.18,6.68H13Z"
3938
+ })),
3939
+ ...props
3940
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3941
+ height: "16",
3942
+ viewBox: "0 0 16 16",
3943
+ width: "16",
3944
+ xmlns: "http://www.w3.org/2000/svg",
3945
+ fill: "currentColor"
3946
+ }, props), children));
3947
+
3948
+ const Trustpilot = props => {
3949
+ const {
3950
+ optimise,
3951
+ refresh
3952
+ } = useContext(PictoContext);
3953
+ useEffect(() => {
3954
+ refresh();
3955
+ }, []);
3956
+ return optimise('p_176VV8', /*#__PURE__*/React.createElement(SVGComponent$f, props));
3957
+ };
3958
+
3959
+ var SVGComponent$e = (({
3960
+ as: Component = "svg",
3961
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3962
+ d: "M10,7a2.5,2.5,0,0,1-4.9,0H.88V6H5.05A2.5,2.5,0,0,1,10,6H24.88V7ZM9,6.5A1.5,1.5,0,1,1,7.5,5,1.5,1.5,0,0,1,9,6.5ZM7.5,16a2.5,2.5,0,0,0-2.45,2H.88v1H5.05A2.5,2.5,0,0,0,10,19H24.88V18H10A2.5,2.5,0,0,0,7.5,16Zm0,4A1.5,1.5,0,1,0,6,18.5,1.5,1.5,0,0,0,7.5,20Zm8.55-7H.88V12H16.05A2.5,2.5,0,0,1,21,12h3.93v1H21a2.5,2.5,0,0,1-4.9,0ZM20,12.5A1.5,1.5,0,1,1,18.5,11,1.5,1.5,0,0,1,20,12.5Z",
3963
+ fillRule: "evenodd"
3964
+ })),
3965
+ ...props
3966
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3967
+ xmlns: "http://www.w3.org/2000/svg",
3968
+ width: "25",
3969
+ height: "24",
3970
+ viewBox: "0 0 25 24",
3971
+ fill: "currentColor"
3972
+ }, props), children));
3973
+
3974
+ const Tune = props => {
3975
+ const {
3976
+ optimise,
3977
+ refresh
3978
+ } = useContext(PictoContext);
3979
+ useEffect(() => {
3980
+ refresh();
3981
+ }, []);
3982
+ return optimise('p_bwFs', /*#__PURE__*/React.createElement(SVGComponent$e, props));
3983
+ };
3984
+
3985
+ var SVGComponent$d = (({
3986
+ as: Component = "svg",
3987
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
3988
+ d: "M32,16.78a8,8,0,0,1-2.24.59,3.86,3.86,0,0,0,1.72-2.09A8.12,8.12,0,0,1,29,16.2,3.93,3.93,0,0,0,26.15,15a3.82,3.82,0,0,0-3.79,4.65,11.22,11.22,0,0,1-8-4,3.73,3.73,0,0,0,1.21,5.06,4.05,4.05,0,0,1-1.77-.47A3.83,3.83,0,0,0,16.89,24a4.15,4.15,0,0,1-1.76.06,3.89,3.89,0,0,0,3.64,2.63A8,8,0,0,1,13,28.3,11.32,11.32,0,0,0,19,30,10.84,10.84,0,0,0,30.05,18.74,7.89,7.89,0,0,0,32,16.78Z"
3989
+ })),
3990
+ ...props
3991
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
3992
+ height: "46",
3993
+ viewBox: "0 0 46 46",
3994
+ width: "46",
3995
+ xmlns: "http://www.w3.org/2000/svg",
3996
+ fill: "currentColor"
3997
+ }, props), children));
3998
+
3999
+ const Twitter = props => {
4000
+ const {
4001
+ optimise,
4002
+ refresh
4003
+ } = useContext(PictoContext);
4004
+ useEffect(() => {
4005
+ refresh();
4006
+ }, []);
4007
+ return optimise('p_S2LJj', /*#__PURE__*/React.createElement(SVGComponent$d, props));
4008
+ };
4009
+
4010
+ var SVGComponent$c = (({
4011
+ as: Component = "svg",
4012
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4013
+ d: "M21,5.78a7.89,7.89,0,0,1-1.95,2A10.84,10.84,0,0,1,8,19a11.32,11.32,0,0,1-6-1.7,8,8,0,0,0,5.77-1.57A3.89,3.89,0,0,1,4.13,13.1,4.15,4.15,0,0,0,5.89,13,3.83,3.83,0,0,1,2.76,9.28a4.05,4.05,0,0,0,1.77.47A3.73,3.73,0,0,1,3.32,4.69a11.22,11.22,0,0,0,8,4A3.82,3.82,0,0,1,15.15,4,3.93,3.93,0,0,1,18,5.2a8.12,8.12,0,0,0,2.48-.92,3.86,3.86,0,0,1-1.72,2.09A8,8,0,0,0,21,5.78Z"
4014
+ })),
4015
+ ...props
4016
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4017
+ xmlns: "http://www.w3.org/2000/svg",
4018
+ width: "24",
4019
+ height: "24",
4020
+ viewBox: "0 0 24 24",
4021
+ fill: "currentColor"
4022
+ }, props), children));
4023
+
4024
+ const TwitterSmall = props => {
4025
+ const {
4026
+ optimise,
4027
+ refresh
4028
+ } = useContext(PictoContext);
4029
+ useEffect(() => {
4030
+ refresh();
4031
+ }, []);
4032
+ return optimise('p_ZP0WuV', /*#__PURE__*/React.createElement(SVGComponent$c, props));
4033
+ };
4034
+
4035
+ var SVGComponent$b = (({
4036
+ as: Component = "svg",
4037
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4038
+ d: "M12,0A12,12,0,1,0,24,12,12,12,0,0,0,12,0Zm0,23A11,11,0,1,1,23,12,11,11,0,0,1,12,23Zm-1.75-9.16a2.25,2.25,0,0,0-.21,1h4.37v.88H9.05V15a3.08,3.08,0,0,1,.33-1.57,4.58,4.58,0,0,1,2.06-1.55c1.66-.86,2.14-1.32,2.14-2.13a1.54,1.54,0,0,0-1.7-1.39,1.92,1.92,0,0,0-2,2L9,10.29a2.79,2.79,0,0,1,2.91-2.77,2.41,2.41,0,0,1,2.63,2.23c0,1.16-.6,1.82-2.36,2.71C10.75,13.17,10.44,13.46,10.25,13.84Z"
4039
+ })),
4040
+ ...props
4041
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4042
+ xmlns: "http://www.w3.org/2000/svg",
4043
+ width: "24",
4044
+ height: "24",
4045
+ viewBox: "0 0 24 24",
4046
+ fill: "currentColor"
4047
+ }, props), children));
4048
+
4049
+ const TwoCircle = props => {
4050
+ const {
4051
+ optimise,
4052
+ refresh
4053
+ } = useContext(PictoContext);
4054
+ useEffect(() => {
4055
+ refresh();
4056
+ }, []);
4057
+ return optimise('p_1JWA84', /*#__PURE__*/React.createElement(SVGComponent$b, props));
4058
+ };
4059
+
4060
+ var SVGComponent$a = (({
4061
+ as: Component = "svg",
4062
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4063
+ fillRule: "evenodd",
4064
+ clipRule: "evenodd",
4065
+ d: "M17.1683 0C15.5123 0 14.1683 1.344 14.1683 2.999C14.1683 4.654 15.5123 5.998 17.1683 5.998C18.8233 5.998 20.1683 4.654 20.1683 2.999C20.1683 1.344 18.8233 0 17.1683 0ZM17.1683 1C18.2713 1 19.1683 1.896 19.1683 2.999C19.1683 4.102 18.2713 4.999 17.1683 4.999C16.0653 4.999 15.1683 4.102 15.1683 2.999C15.1683 1.896 16.0653 1 17.1683 1ZM7.49931 0C5.84331 0 4.49931 1.344 4.49931 2.999C4.49931 4.654 5.84331 5.998 7.49931 5.998C9.15431 5.998 10.4993 4.654 10.4993 2.999C10.4993 1.344 9.15431 0 7.49931 0ZM7.49931 1C8.60231 1 9.49931 1.896 9.49931 2.999C9.49931 4.102 8.60231 4.999 7.49931 4.999C6.39631 4.999 5.49931 4.102 5.49931 2.999C5.49931 1.896 6.39631 1 7.49931 1ZM17.1473 15.828C17.8413 15.828 18.3783 16.352 18.4243 17.073C18.4743 17.814 18.5963 19.274 18.7043 20.562L18.8603 22.458C18.8803 22.709 19.0243 23 19.3683 23C19.7723 23 19.8233 22.575 19.8283 22.444L20.3003 10.997C20.3223 10.485 21.0013 10.342 21.2373 10.775L22.8823 13.752C23.0003 13.967 23.3333 13.877 23.3333 13.635L21.7333 7.96C21.6403 7.625 21.3313 7.393 20.9843 7.393H3.68131C3.33531 7.393 3.02631 7.625 2.93231 7.959L1.34231 13.569C1.32031 13.971 1.70631 13.895 1.78431 13.752L3.42931 10.775C3.67331 10.336 4.34531 10.492 4.36631 10.997L4.83731 22.445C4.84831 22.701 4.98331 23 5.32731 23C5.65631 23 5.82431 22.729 5.84531 22.459L6.00531 20.519C6.11231 19.242 6.23231 17.807 6.28231 17.071C6.32931 16.352 6.86631 15.828 7.55931 15.828C8.14331 15.828 8.77731 16.293 8.82931 17.072C8.87831 17.806 8.99831 19.241 9.10531 20.518L9.26531 22.458C9.28431 22.709 9.42631 23 9.76431 23C10.1463 23 10.2033 22.611 10.2103 22.444C10.3323 19.488 10.8393 10.154 10.8453 10.06C10.8593 9.794 11.0783 9.587 11.3443 9.587H13.3073C13.5733 9.587 13.7923 9.795 13.8063 10.061C13.8123 10.155 14.3003 19.488 14.4233 22.445C14.4353 22.721 14.5973 23 14.9323 23C15.2763 23 15.4223 22.709 15.4403 22.459L15.6053 20.477C15.7103 19.211 15.8283 17.798 15.8773 17.071C15.9293 16.293 16.5643 15.828 17.1473 15.828ZM19.3693 24C18.5623 24 17.9293 23.384 17.8633 22.535C17.8283 22.08 17.7713 21.392 17.7083 20.646C17.6003 19.352 17.4773 17.885 17.4263 17.139C17.4113 16.908 17.2723 16.828 17.1473 16.828C17.0683 16.828 16.8913 16.906 16.8753 17.138C16.8263 17.869 16.7073 19.288 16.6013 20.56C16.5353 21.339 16.4753 22.062 16.4383 22.536C16.3733 23.384 15.7403 24 14.9343 24C14.1083 24 13.4603 23.35 13.4233 22.487C13.3173 19.92 12.9343 12.533 12.8323 10.587H11.8173C11.7123 12.531 11.3153 19.92 11.2093 22.486C11.1713 23.378 10.5783 24 9.76531 24C8.96231 24 8.33331 23.384 8.26831 22.535L8.10831 20.601C8.00131 19.318 7.88031 17.877 7.83131 17.139C7.81531 16.906 7.63731 16.828 7.55931 16.828C7.43431 16.828 7.29431 16.909 7.28031 17.137C7.23031 17.877 7.10931 19.319 7.00231 20.602L6.84231 22.536C6.77731 23.384 6.14031 24 5.32931 24C4.50231 24 3.87631 23.363 3.83831 22.487L3.44031 12.822L2.66031 14.235C2.33731 14.819 1.57231 15.016 1.08731 14.773C0.627313 14.578 0.333313 14.136 0.333313 13.635C0.333313 13.52 0.349313 13.406 0.380313 13.296L1.97031 7.687C2.18531 6.925 2.88931 6.393 3.68131 6.393H20.9843C21.7773 6.393 22.4813 6.926 22.6963 7.687L24.2863 13.297C24.3173 13.406 24.3333 13.52 24.3333 13.635C24.3333 14.138 24.0363 14.582 23.5743 14.775L23.5373 14.792C22.9713 15.01 22.2993 14.764 22.0073 14.234L21.2263 12.822L20.8283 22.486C20.7903 23.378 20.1903 24 19.3693 24Z"
4066
+ })),
4067
+ ...props
4068
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4069
+ width: "24",
4070
+ height: "24",
4071
+ viewBox: "0 0 24 24",
4072
+ xmlns: "http://www.w3.org/2000/svg",
4073
+ fill: "currentColor"
4074
+ }, props), children));
4075
+
4076
+ const TwoPeople = props => {
4077
+ const {
4078
+ optimise,
4079
+ refresh
4080
+ } = useContext(PictoContext);
4081
+ useEffect(() => {
4082
+ refresh();
4083
+ }, []);
4084
+ return optimise('p_2byEUs', /*#__PURE__*/React.createElement(SVGComponent$a, props));
4085
+ };
4086
+
4087
+ var SVGComponent$9 = (({
4088
+ as: Component = "svg",
4089
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4090
+ d: "M21,18.5a10,10,0,0,1-2,.9v-5a14.67,14.67,0,0,0-7,2,17.62,17.62,0,0,0-7-2v5a10,10,0,0,1-2-.9V16.6c0-2,.1-2.5,1.9-2.9,2.3-.5,4.6-.8,5.2-2.3A2.51,2.51,0,0,0,9.6,9C8,6.7,7.6,4.6,8.4,3A4,4,0,0,1,12,1a4.08,4.08,0,0,1,3.6,2c.8,1.6.4,3.7-1.2,6a2.51,2.51,0,0,0-.5,2.4c.6,1.5,2.9,1.8,5.2,2.3,1.8.4,1.9.9,1.9,3ZM18,21a28.54,28.54,0,0,0-5.5,1.6V17.2A14.82,14.82,0,0,1,18,15.5Zm-6.5,1.6A28.54,28.54,0,0,0,6,21V15.5a14.82,14.82,0,0,1,5.5,1.7Zm7.9-9.9c-2.9-.6-5.7-1-4.1-3.1C19.1,4,15.9,0,12,0S4.9,4,8.8,9.5c1.6,2.2-1.3,2.5-4.1,3.1-2.6.6-2.7,1.9-2.7,4v2.5a9.53,9.53,0,0,0,3,1.4v1.4A26.41,26.41,0,0,1,12,24a22.68,22.68,0,0,1,7-2.1V20.5a13.4,13.4,0,0,0,3-1.4V16.6C22,14.5,21.9,13.2,19.4,12.7Z"
4091
+ })),
4092
+ ...props
4093
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4094
+ height: "24",
4095
+ viewBox: "0 0 24 24",
4096
+ width: "24",
4097
+ xmlns: "http://www.w3.org/2000/svg",
4098
+ fill: "currentColor"
4099
+ }, props), children));
4100
+
4101
+ const UserBook = props => {
4102
+ const {
4103
+ optimise,
4104
+ refresh
4105
+ } = useContext(PictoContext);
4106
+ useEffect(() => {
4107
+ refresh();
4108
+ }, []);
4109
+ return optimise('p_ZeBy0j', /*#__PURE__*/React.createElement(SVGComponent$9, props));
4110
+ };
4111
+
4112
+ var SVGComponent$8 = (({
4113
+ as: Component = "svg",
4114
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4115
+ d: "M12,0A12,12,0,1,1,0,12,12,12,0,0,1,12,0Zm8.13,19.41a2.6,2.6,0,0,0-1.63-.85c-3.85-.91-4.09-1.5-4.35-2.06a2.18,2.18,0,0,1,.21-2c1.72-3.25,2.09-6,1-7.79A3.74,3.74,0,0,0,12,5,3.79,3.79,0,0,0,8.59,6.76c-1.06,1.79-.69,4.55,1.05,7.76a2.16,2.16,0,0,1,.22,2c-.26.59-.61,1.19-4.37,2.07a2.54,2.54,0,0,0-1.62.85,11,11,0,0,0,16.26,0Zm.65-.78a11,11,0,1,0-17.56,0,3.82,3.82,0,0,1,2-1.05c2-.46,3.38-.83,3.68-1.5A1.24,1.24,0,0,0,8.76,15c-1.92-3.54-2.28-6.65-1-8.75A4.79,4.79,0,0,1,12,4a4.77,4.77,0,0,1,4.24,2.22c1.25,2.08.9,5.19-1,8.77a1.27,1.27,0,0,0-.18,1.1c.31.66,1.64,1,3.67,1.49A3.82,3.82,0,0,1,20.78,18.63Z"
4116
+ })),
4117
+ ...props
4118
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4119
+ height: "24",
4120
+ viewBox: "0 0 24 24",
4121
+ width: "24",
4122
+ xmlns: "http://www.w3.org/2000/svg",
4123
+ fill: "currentColor"
4124
+ }, props), children));
4125
+
4126
+ const UserCircle = props => {
4127
+ const {
4128
+ optimise,
4129
+ refresh
4130
+ } = useContext(PictoContext);
4131
+ useEffect(() => {
4132
+ refresh();
4133
+ }, []);
4134
+ return optimise('p_Z1o37oq', /*#__PURE__*/React.createElement(SVGComponent$8, props));
4135
+ };
4136
+
4137
+ var SVGComponent$7 = (({
4138
+ as: Component = "svg",
4139
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4140
+ d: "M24,22H0V2H24ZM23,3H1V21H23ZM19,16v1H15V16Zm-6,1H2v-.91C2,15,2,14,3.71,13.55c.79-.18,1.75-.4,1.89-.71.05-.1,0-.3-.09-.4C4.4,10.4,4.2,8.6,4.94,7.36A2.88,2.88,0,0,1,7.5,6a2.9,2.9,0,0,1,2.55,1.34c.73,1.22.54,3-.55,5.09-.06.11-.15.3-.1.41.14.31,1.12.53,1.83.7C13,14,13,15,13,16.1ZM3,16h9c0-1-.06-1.27-.94-1.47-1.17-.27-2.22-.52-2.57-1.27A1.44,1.44,0,0,1,8.61,12c.92-1.74,1.13-3.2.58-4.12A1.87,1.87,0,0,0,7.5,7a1.88,1.88,0,0,0-1.7.87c-.54.91-.33,2.4.58,4.09a1.4,1.4,0,0,1,.13,1.3c-.34.75-1.38,1-2.49,1.25C3.06,14.73,3,15,3,16Zm18-3v1H15V13Zm0-3v1H15V10Zm0-3V8H15V7Z",
4141
+ fillRule: "evenodd"
4142
+ })),
4143
+ ...props
4144
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4145
+ xmlns: "http://www.w3.org/2000/svg",
4146
+ width: "24",
4147
+ height: "24",
4148
+ viewBox: "0 0 24 24",
4149
+ fill: "currentColor"
4150
+ }, props), children));
4151
+
4152
+ const UserId = props => {
4153
+ const {
4154
+ optimise,
4155
+ refresh
4156
+ } = useContext(PictoContext);
4157
+ useEffect(() => {
4158
+ refresh();
4159
+ }, []);
4160
+ return optimise('p_Z24xqaH', /*#__PURE__*/React.createElement(SVGComponent$7, props));
4161
+ };
4162
+
4163
+ var SVGComponent$6 = (({
4164
+ as: Component = "svg",
4165
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4166
+ d: "M12,17.92l-1,2-2.21.3,1.61,1.56L10,24l2-1.06L14,24l-.39-2.2,1.61-1.56L13,19.94Zm-7.81,0-1,2L1,20.24,2.62,21.8,2.22,24l2-1.06,2,1.06-.4-2.2,1.62-1.56-2.22-.3Zm15.62,0-1,2-2.22.3,1.62,1.56-.4,2.2,2-1.06,2,1.06-.39-2.2L23,20.24l-2.22-.3ZM11.5,21.44,11,21l.7-.09.31-.64.31.64L13,21l-.51.49.13.7L12,21.81l-.62.33Zm-7.81,0L3.18,21l.7-.09.31-.64.31.64.71.09-.51.49.12.7-.63-.33-.62.33Zm15.62,0L18.8,21l.7-.09.31-.64.31.64.7.09-.51.49.12.7-.62-.33-.63.33ZM21,17H3V15.84c0-2.45.37-3.28,2.94-3.86s3.74-1,3.12-2.12C7.35,6.7,7,3.92,8.15,2A4.32,4.32,0,0,1,12,0a4.32,4.32,0,0,1,3.83,2c1.12,1.86.81,4.65-.89,7.85-.63,1.2.62,1.56,3.16,2.14S21,13.39,21,15.86ZM4,16H20c0-2,.07-2.54-2.12-3-1.79-.4-3.47-.78-4-1.89a1.83,1.83,0,0,1,.15-1.68c1.53-2.88,1.86-5.32.92-6.87A3.3,3.3,0,0,0,12,1,3.32,3.32,0,0,0,9,2.54c-.94,1.57-.61,4,.94,6.84a1.85,1.85,0,0,1,.16,1.69c-.5,1.11-2.26,1.5-3.95,1.89C4,13.45,4,13.9,4,16Z"
4167
+ })),
4168
+ ...props
4169
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4170
+ height: "24",
4171
+ viewBox: "0 0 24 24",
4172
+ width: "24",
4173
+ xmlns: "http://www.w3.org/2000/svg",
4174
+ fill: "currentColor"
4175
+ }, props), children));
4176
+
4177
+ const UserStars = props => {
4178
+ const {
4179
+ optimise,
4180
+ refresh
4181
+ } = useContext(PictoContext);
4182
+ useEffect(() => {
4183
+ refresh();
4184
+ }, []);
4185
+ return optimise('p_Z2jJmzf', /*#__PURE__*/React.createElement(SVGComponent$6, props));
4186
+ };
4187
+
4188
+ var SVGComponent$5 = (({
4189
+ as: Component = "svg",
4190
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4191
+ d: "M15.1,7h4v5h5v6h-5v5H.1V2h15Zm-5,11h-9v4h9Zm8,0h-7v4h7Zm-11-5h-6v4h6Zm9,0h-8v4h8Zm7,0h-6v4h6Zm-12-5v4h7V8Zm-1,0h-9v4h9Zm-3-5h-6V7h6Zm7,0h-6V7h6Z"
4192
+ })),
4193
+ ...props
4194
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4195
+ height: "24",
4196
+ viewBox: "0 0 24 24",
4197
+ width: "24",
4198
+ xmlns: "http://www.w3.org/2000/svg",
4199
+ fill: "currentColor"
4200
+ }, props), children));
4201
+
4202
+ const Wall = props => {
4203
+ const {
4204
+ optimise,
4205
+ refresh
4206
+ } = useContext(PictoContext);
4207
+ useEffect(() => {
4208
+ refresh();
4209
+ }, []);
4210
+ return optimise('p_bPvB', /*#__PURE__*/React.createElement(SVGComponent$5, props));
4211
+ };
4212
+
4213
+ var SVGComponent$4 = (({
4214
+ as: Component = "svg",
4215
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4216
+ d: "M16.06,19.53,9.65,14.16l1.08,2a2,2,0,0,1,.23.79l.38,5.79A1.22,1.22,0,0,1,10.09,24a1.25,1.25,0,0,1-1.23-1l-1.16-5c-.38-.43-1.47-1.59-2.13-2.29C4.85,17.48,3,21.82,2.45,23.23A1.22,1.22,0,0,1,1.28,24,1.27,1.27,0,0,1,0,22.73c0-.09,0-.11.76-3.86.52-2.56,1.17-5.76,1.47-7.39a2.53,2.53,0,0,1,.59-1.19l.94-1.06L.39,6.41A.5.5,0,0,1,1,5.64l1,.8c.33-.63.86-1.65,1.16-2.28a1.28,1.28,0,0,1,1.05-.7l5.25,0A2,2,0,0,1,11,4c.29.29,2.05,2.17,2.41,2.54A1.76,1.76,0,0,1,14,7.83v8.64l2.77,2.32,2.72-3a1.12,1.12,0,0,1,.85-.38,1.15,1.15,0,0,1,1.09.78C22.33,19,24,24,24,24H12l4.06-4.47ZM4.53,9.87,3.57,11a1.48,1.48,0,0,0-.35.72c-.31,1.63-1,4.84-1.48,7.39C1.37,20.89,1,22.62,1,22.78s.43.32.53.08c.73-1.79,3.41-8.18,3.41-8.18a.49.49,0,0,1,.83-.15L8.4,17.31a1.29,1.29,0,0,1,.28.53l1.16,5c.06.29.52.26.5,0L10,17a1,1,0,0,0-.11-.38L7.91,13.07a.51.51,0,0,1,0-.4L4.53,9.87ZM22.61,23c-.56-1.68-1.79-5.4-2.16-6.49a.15.15,0,0,0-.25-.05c-1,1.09-4.26,4.69-5.94,6.54ZM13,15.64V7.83a.79.79,0,0,0-.23-.55c-.71-.72-1.81-1.93-2.42-2.55-.18-.18-.37-.23-.9-.23l-5.2,0A.28.28,0,0,0,4,4.6c-.34.69-.94,1.85-1.25,2.45l.07,0L4.55,5.21A.53.53,0,0,1,5,5.05l2.61.17a.5.5,0,0,1,.34.83L5.19,9.12,8.5,11.89l2.43-2.82a.5.5,0,0,1,.87.23L13,15.63Zm-3.7-3.11.93.79,1.53,1.28L11,10.52ZM3.59,7.78l.83.7L6.49,6.15,5.14,6.06,3.59,7.78ZM14.43,5.69a2.85,2.85,0,1,1,2.85-2.85A2.85,2.85,0,0,1,14.43,5.69Zm0-4.69a1.85,1.85,0,1,0,1.85,1.84A1.84,1.84,0,0,0,14.43,1Z",
4217
+ fillRule: "evenodd"
4218
+ })),
4219
+ ...props
4220
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4221
+ xmlns: "http://www.w3.org/2000/svg",
4222
+ width: "24",
4223
+ height: "24",
4224
+ viewBox: "0 0 24 24",
4225
+ fill: "currentColor"
4226
+ }, props), children));
4227
+
4228
+ const WorkingMan = props => {
4229
+ const {
4230
+ optimise,
4231
+ refresh
4232
+ } = useContext(PictoContext);
4233
+ useEffect(() => {
4234
+ refresh();
4235
+ }, []);
4236
+ return optimise('p_22g4RU', /*#__PURE__*/React.createElement(SVGComponent$4, props));
4237
+ };
4238
+
4239
+ var SVGComponent$3 = (({
4240
+ as: Component = "svg",
4241
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4242
+ d: "M8.62,7.96h1.21l5.56,8.09h-1.21l-5.56-8.09ZM20,12c0,4.42-3.58,8-8,8s-8-3.58-8-8S7.58,4,12,4s8,3.58,8,8ZM12.5,10.78l-2.36-3.43h-2.68l3.55,5.15-3.56,4.14h.77l3.13-3.64,2.51,3.64h2.68l-3.7-5.37,3.37-3.93h-.77l-.66.76-2.29,2.66Z"
4243
+ })),
4244
+ ...props
4245
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4246
+ height: "24",
4247
+ viewBox: "0 0 24 24",
4248
+ width: "24",
4249
+ xmlns: "http://www.w3.org/2000/svg",
4250
+ fill: "currentColor"
4251
+ }, props), children));
4252
+
4253
+ const XSmall = props => {
4254
+ const {
4255
+ optimise,
4256
+ refresh
4257
+ } = useContext(PictoContext);
4258
+ useEffect(() => {
4259
+ refresh();
4260
+ }, []);
4261
+ return optimise('p_Z20sfwA', /*#__PURE__*/React.createElement(SVGComponent$3, props));
4262
+ };
4263
+
4264
+ var SVGComponent$2 = (({
4265
+ as: Component = "svg",
4266
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4267
+ d: "M31.63,18.88A2.19,2.19,0,0,0,30,17.37,54.83,54.83,0,0,0,23,17a57.93,57.93,0,0,0-7,.35,2.25,2.25,0,0,0-1.59,1.53A21.58,21.58,0,0,0,14,23a21.47,21.47,0,0,0,.37,4.12A2.19,2.19,0,0,0,16,28.63,54.91,54.91,0,0,0,23,29a57.93,57.93,0,0,0,7-.35,2.23,2.23,0,0,0,1.59-1.51A21.67,21.67,0,0,0,32,23,20.83,20.83,0,0,0,31.63,18.88ZM21.21,25.57V20.43L25.89,23Z"
4268
+ })),
4269
+ ...props
4270
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4271
+ height: "46",
4272
+ viewBox: "0 0 46 46",
4273
+ width: "46",
4274
+ xmlns: "http://www.w3.org/2000/svg",
4275
+ fill: "currentColor"
4276
+ }, props), children));
4277
+
4278
+ const Youtube = props => {
4279
+ const {
4280
+ optimise,
4281
+ refresh
4282
+ } = useContext(PictoContext);
4283
+ useEffect(() => {
4284
+ refresh();
4285
+ }, []);
4286
+ return optimise('p_MAADg', /*#__PURE__*/React.createElement(SVGComponent$2, props));
4287
+ };
4288
+
4289
+ var SVGComponent$1 = (({
4290
+ as: Component = "svg",
4291
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4292
+ d: "M20.63,7.88c-.21-.73-.82-1.31-1.59-1.51-1.41-.37-7.04-.37-7.04-.37,0,0-5.63,0-7.04.35-.76.2-1.38.79-1.59,1.52-.37,1.34-.37,4.12-.37,4.12,0,0,0,2.8.37,4.12.21.73.82,1.31,1.59,1.51,1.42.37,7.04.37,7.04.37,0,0,5.63,0,7.04-.35.77-.2,1.38-.78,1.59-1.51.37-1.34.37-4.12.37-4.12,0,0,.01-2.8-.37-4.14ZM10.21,14.57v-5.14l4.69,2.57-4.69,2.57Z"
4293
+ })),
4294
+ ...props
4295
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4296
+ height: "24",
4297
+ viewBox: "0 0 24 24",
4298
+ width: "24",
4299
+ xmlns: "http://www.w3.org/2000/svg",
4300
+ fill: "currentColor"
4301
+ }, props), children));
4302
+
4303
+ const YoutubeSmall = props => {
4304
+ const {
4305
+ optimise,
4306
+ refresh
4307
+ } = useContext(PictoContext);
4308
+ useEffect(() => {
4309
+ refresh();
4310
+ }, []);
4311
+ return optimise('p_2rPnaf', /*#__PURE__*/React.createElement(SVGComponent$1, props));
4312
+ };
4313
+
4314
+ var SVGComponent = (({
4315
+ as: Component = "svg",
4316
+ children = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
4317
+ d: "M8.33.5a6.75,6.75,0,0,0-5.7,3.15A14.79,14.79,0,0,0,.5,12a14.79,14.79,0,0,0,2.13,8.35,6.75,6.75,0,0,0,5.7,3.15,6.52,6.52,0,0,0,4.46-1.71L12.12,21A5.47,5.47,0,0,1,8.33,22.5a5.75,5.75,0,0,1-4.87-2.71A13.85,13.85,0,0,1,1.5,12a13.85,13.85,0,0,1,2-7.79,5.74,5.74,0,0,1,9.75,0,13.85,13.85,0,0,1,2,7.79,20.06,20.06,0,0,1-.12,2.24l1,.11A22.05,22.05,0,0,0,16.17,12,14.87,14.87,0,0,0,14,3.65,6.75,6.75,0,0,0,8.33.5ZM15.4,15.75a1.65,1.65,0,1,0,1.65,1.65A1.65,1.65,0,0,0,15.4,15.75Zm-.8,1.65a.8.8,0,1,1,.8.8A.8.8,0,0,1,14.6,17.4ZM21,16.57,20.37,16,14,22.43l.65.56ZM19.6,20a1.65,1.65,0,1,0,1.65,1.65A1.65,1.65,0,0,0,19.6,20Zm-.8,1.65a.8.8,0,1,1,.8.8A.8.8,0,0,1,18.8,21.6Z"
4318
+ })),
4319
+ ...props
4320
+ }) => /*#__PURE__*/React.createElement(Component, _extends({
4321
+ xmlns: "http://www.w3.org/2000/svg",
4322
+ width: "24",
4323
+ height: "24",
4324
+ viewBox: "0 0 24 24",
4325
+ fill: "currentColor"
4326
+ }, props), children));
4327
+
4328
+ const ZeroPercent = props => {
4329
+ const {
4330
+ optimise,
4331
+ refresh
4332
+ } = useContext(PictoContext);
4333
+ useEffect(() => {
4334
+ refresh();
4335
+ }, []);
4336
+ return optimise('p_6lhot', /*#__PURE__*/React.createElement(SVGComponent, props));
4337
+ };
4338
+
4339
+ const manifest = ["Archive", "ArrowDirectionDown", "ArrowDirectionEgal", "ArrowDirectionUp", "ArrowDouble", "ArrowDown", "ArrowDownRightCircle", "ArrowLeft", "ArrowLeftBold", "ArrowRight", "ArrowRightBold", "ArrowUp", "ArrowUpRightCircle", "Bank", "BankNote", "Bars", "Bell", "Bookmark", "BreakBold", "Briefcase", "BubbleDouble", "Building", "Bulb", "BulletBold", "BulletBook", "Burden", "BurgerBold", "Calculator", "Calendar", "CalendarBold", "Camera", "ChalkboardTeacher", "ChartBar", "Check", "CheckBold", "CheckBoldMini", "CheckHandwrite", "ChevronDown", "ChevronDownBold", "ChevronLeftBold", "ChevronRightBold", "ChevronUp", "ChevronUpBold", "Clock", "ClockBold", "CloseBold", "Cloud", "CloudUpload", "CoinBold", "Coins", "Crane", "Crown", "DoubleArrow", "Download", "Duplicate", "Envelope", "EqualBold", "EqualCircle", "Euro", "EuroBold", "ExclamationMarkCircle", "ExclamationMarkCircleBold", "ExclamationMarkCircleLine", "ExclamationMarkTriangle", "ExclamationMarkTriangleBold", "ExclamationMarkTriangleLine", "ExternalLink", "Eye", "Facebook", "FacebookSmall", "File", "FileCheck", "Files", "Filter", "FirstCircle", "Flag", "Folder", "FolderOpen", "FourCircle", "Globe", "GraduationCap", "HandCoin", "Heart", "HeartPlain", "HorseChase", "House", "HouseMagnifier", "InfoCircle", "InfoCircleBold", "InfoCircleLine", "Instagram", "InstagramSmall", "Key", "LightningBolt", "Link", "LinkedinSmall", "Lock", "MagicWand", "MagnifyingBold", "MagnifyingGlassLeft", "Marker", "Microphone", "MinusBold", "MinusCircle", "MinusTenBold", "Paperclip", "Pen", "PenLine", "Percent", "Phone", "Plan", "Plane", "Play", "PlayBold", "PlayerBeginBold", "PlayerEndBold", "PlusBold", "PlusCircle", "PlusTenBold", "Print", "QuestionCircleLine", "QuestionMarkCircle", "QuestionMarkCircleBold", "QuoteClose", "QuoteOpenPlain", "Share", "ShieldCheck", "Smartphone", "SmileyFrown", "SmileyHappy", "SmileyNeutral", "SpeechBubble", "SquareMeter", "SquareMetersBold", "Star", "StarFilled", "StarHalf", "Tada", "ThreeCircle", "TikTokSmall", "Times", "TimesBold", "TimesCircle", "TimesCircleBold", "TimesCircleLine", "Toast", "Trash", "TrashBold", "Tree", "TreePlain", "TribarCircle", "Trustpilot", "Tune", "Twitter", "TwitterSmall", "TwoCircle", "TwoPeople", "UserBook", "UserCircle", "UserId", "UserStars", "Wall", "WorkingMan", "XSmall", "Youtube", "YoutubeSmall", "ZeroPercent"];
4340
+
4341
+ export { Archive, ArrowDirectionDown, ArrowDirectionEgal, ArrowDirectionUp, ArrowDouble, ArrowDown, ArrowDownRightCircle, ArrowLeft, ArrowLeftBold, ArrowRight, ArrowRightBold, ArrowUp, ArrowUpRightCircle, Bank, BankNote, Bars, Bell, Bookmark, BreakBold, Briefcase, BubbleDouble, Building, Bulb, BulletBold, BulletBook, Burden, BurgerBold, Calculator, Calendar, CalendarBold, Camera, ChalkboardTeacher, ChartBar, Check, CheckBold, CheckBoldMini, CheckHandwrite, ChevronDown, ChevronDownBold, ChevronLeftBold, ChevronRightBold, ChevronUp, ChevronUpBold, Clock, ClockBold, CloseBold, Cloud, CloudUpload, CoinBold, Coins, Crane, Crown, DoubleArrow, Download, Duplicate, Envelope, EqualBold, EqualCircle, Euro, EuroBold, ExclamationMarkCircle, ExclamationMarkCircleBold, ExclamationMarkCircleLine, ExclamationMarkTriangle, ExclamationMarkTriangleBold, ExclamationMarkTriangleLine, ExternalLink, Eye, Facebook, FacebookSmall, File, FileCheck, Files, Filter, FirstCircle, Flag, Folder, FolderOpen, FourCircle, Globe, GraduationCap, HandCoin, Heart, HeartPlain, HorseChase, House, HouseMagnifier, InfoCircle, InfoCircleBold, InfoCircleLine, Instagram, InstagramSmall, Key, LightningBolt, Link, LinkedinSmall, Lock, MagicWand, MagnifyingBold, MagnifyingGlassLeft, Marker, Microphone, MinusBold, MinusCircle, MinusTenBold, Paperclip, Pen, PenLine, Percent, Phone, PictoProvider, Plan, Plane, Play, PlayBold, PlayerBeginBold, PlayerEndBold, PlusBold, PlusCircle, PlusTenBold, Print, QuestionCircleLine, QuestionMarkCircle, QuestionMarkCircleBold, QuoteClose, QuoteOpenPlain, Share, ShieldCheck, Smartphone, SmileyFrown, SmileyHappy, SmileyNeutral, SpeechBubble, SquareMeter, SquareMetersBold, Star, StarFilled, StarHalf, Tada, ThreeCircle, TikTokSmall, Times, TimesBold, TimesCircle, TimesCircleBold, TimesCircleLine, Toast, Trash, TrashBold, Tree, TreePlain, TribarCircle, Trustpilot, Tune, Twitter, TwitterSmall, TwoCircle, TwoPeople, UserBook, UserCircle, UserId, UserStars, Wall, WorkingMan, XSmall, Youtube, YoutubeSmall, ZeroPercent, manifest };
4342
+ //# sourceMappingURL=picto.js.map