@transferwise/icons 4.4.6 → 4.5.2
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/README.md +21 -4
- package/build/components/ach.tsx +1 -1
- package/build/components/activity.tsx +1 -1
- package/build/components/arrow-diagonal-down.tsx +1 -1
- package/build/components/arrow-diagonal-up.tsx +1 -1
- package/build/components/arrow-end.tsx +52 -0
- package/build/components/arrow-start.tsx +52 -0
- package/build/components/bank-transfer.tsx +1 -1
- package/build/components/bills.tsx +1 -1
- package/build/components/chair.tsx +52 -0
- package/build/components/chevron-end.tsx +52 -0
- package/build/components/chevron-start.tsx +52 -0
- package/build/components/delivery.tsx +1 -1
- package/build/components/help-circle.tsx +1 -1
- package/build/components/help.tsx +1 -1
- package/build/components/list.tsx +1 -1
- package/build/components/log-in.tsx +1 -1
- package/build/components/log-out.tsx +1 -1
- package/build/components/navigate-away.tsx +1 -1
- package/build/components/question-mark-circle-fill.tsx +1 -1
- package/build/components/question-mark-circle.tsx +1 -1
- package/build/components/question-mark.tsx +1 -1
- package/build/components/sim-card.tsx +52 -0
- package/build/components/switch.tsx +1 -1
- package/build/components/transfer.tsx +1 -1
- package/build/icons.json +143 -18
- package/build/index.ts +6 -0
- package/build/rtl.css +9 -0
- package/lib/components/arrow-end.d.ts +13 -0
- package/lib/components/arrow-end.d.ts.map +1 -0
- package/lib/components/arrow-start.d.ts +13 -0
- package/lib/components/arrow-start.d.ts.map +1 -0
- package/lib/components/chair.d.ts +13 -0
- package/lib/components/chair.d.ts.map +1 -0
- package/lib/components/chevron-end.d.ts +13 -0
- package/lib/components/chevron-end.d.ts.map +1 -0
- package/lib/components/chevron-start.d.ts +13 -0
- package/lib/components/chevron-start.d.ts.map +1 -0
- package/lib/components/sim-card.d.ts +13 -0
- package/lib/components/sim-card.d.ts.map +1 -0
- package/lib/index.d.ts +6 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.esm.js +233 -19
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +238 -18
- package/lib/index.js.map +1 -1
- package/lib/styles/main.min.css +1 -1
- package/package.json +29 -26
package/lib/index.js
CHANGED
|
@@ -192,7 +192,7 @@ const ArrowDiagonalDown = ({
|
|
|
192
192
|
console.warn("<ArrowDiagonalDown filled /> is now deprecated, please use <ArrowDiagonalDownFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
193
193
|
}
|
|
194
194
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
195
|
-
className: `tw-icon tw-icon-arrow-diagonal-down ${className ? className : ''}`,
|
|
195
|
+
className: `tw-icon tw-icon-arrow-diagonal-down rtl-ar rtl-he ${className ? className : ''}`,
|
|
196
196
|
"data-testid": restProps['data-testid'] || 'arrow-diagonal-down-icon',
|
|
197
197
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
198
198
|
"aria-label": title,
|
|
@@ -227,7 +227,7 @@ const ArrowDiagonalUp = ({
|
|
|
227
227
|
console.warn("<ArrowDiagonalUp filled /> is now deprecated, please use <ArrowDiagonalUpFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
228
228
|
}
|
|
229
229
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
230
|
-
className: `tw-icon tw-icon-arrow-diagonal-up ${className ? className : ''}`,
|
|
230
|
+
className: `tw-icon tw-icon-arrow-diagonal-up rtl-ar rtl-he ${className ? className : ''}`,
|
|
231
231
|
"data-testid": restProps['data-testid'] || 'arrow-diagonal-up-icon',
|
|
232
232
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
233
233
|
"aria-label": title,
|
|
@@ -284,6 +284,41 @@ const ArrowDown = ({
|
|
|
284
284
|
});
|
|
285
285
|
};
|
|
286
286
|
|
|
287
|
+
const ArrowEnd = ({
|
|
288
|
+
className = undefined,
|
|
289
|
+
isFocusable = false,
|
|
290
|
+
filled = undefined,
|
|
291
|
+
title = undefined,
|
|
292
|
+
role = undefined,
|
|
293
|
+
size = 16,
|
|
294
|
+
...restProps
|
|
295
|
+
}) => {
|
|
296
|
+
if (filled) {
|
|
297
|
+
console.warn("<ArrowEnd filled /> is now deprecated, please use <ArrowEndFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
298
|
+
}
|
|
299
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
300
|
+
className: `tw-icon tw-icon-arrow-end rtl-ar rtl-he ${className ? className : ''}`,
|
|
301
|
+
"data-testid": restProps['data-testid'] || 'arrow-end-icon',
|
|
302
|
+
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
303
|
+
"aria-label": title,
|
|
304
|
+
"aria-hidden": !title ? true : undefined,
|
|
305
|
+
focusable: isFocusable,
|
|
306
|
+
role: role ?? (title ? 'graphics-symbol img' : 'none'),
|
|
307
|
+
width: String(size),
|
|
308
|
+
height: String(size),
|
|
309
|
+
fill: "currentColor",
|
|
310
|
+
viewBox: "0 0 24 24",
|
|
311
|
+
children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
312
|
+
children: /*#__PURE__*/jsxRuntime.jsx("path", {
|
|
313
|
+
fillRule: "evenodd",
|
|
314
|
+
d: "m18.586 11-6.293-6.293 1.414-1.414 7.993 7.993a1.01 1.01 0 0 1 0 1.428l-7.993 7.993-1.414-1.414L18.586 13H2v-2z",
|
|
315
|
+
clipRule: "evenodd"
|
|
316
|
+
})
|
|
317
|
+
})
|
|
318
|
+
})
|
|
319
|
+
});
|
|
320
|
+
};
|
|
321
|
+
|
|
287
322
|
const ArrowLeft = ({
|
|
288
323
|
className = undefined,
|
|
289
324
|
isFocusable = false,
|
|
@@ -354,6 +389,41 @@ const ArrowRight = ({
|
|
|
354
389
|
});
|
|
355
390
|
};
|
|
356
391
|
|
|
392
|
+
const ArrowStart = ({
|
|
393
|
+
className = undefined,
|
|
394
|
+
isFocusable = false,
|
|
395
|
+
filled = undefined,
|
|
396
|
+
title = undefined,
|
|
397
|
+
role = undefined,
|
|
398
|
+
size = 16,
|
|
399
|
+
...restProps
|
|
400
|
+
}) => {
|
|
401
|
+
if (filled) {
|
|
402
|
+
console.warn("<ArrowStart filled /> is now deprecated, please use <ArrowStartFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
403
|
+
}
|
|
404
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
405
|
+
className: `tw-icon tw-icon-arrow-start rtl-ar rtl-he ${className ? className : ''}`,
|
|
406
|
+
"data-testid": restProps['data-testid'] || 'arrow-start-icon',
|
|
407
|
+
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
408
|
+
"aria-label": title,
|
|
409
|
+
"aria-hidden": !title ? true : undefined,
|
|
410
|
+
focusable: isFocusable,
|
|
411
|
+
role: role ?? (title ? 'graphics-symbol img' : 'none'),
|
|
412
|
+
width: String(size),
|
|
413
|
+
height: String(size),
|
|
414
|
+
fill: "currentColor",
|
|
415
|
+
viewBox: "0 0 24 24",
|
|
416
|
+
children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
417
|
+
children: /*#__PURE__*/jsxRuntime.jsx("path", {
|
|
418
|
+
fillRule: "evenodd",
|
|
419
|
+
d: "m5.414 11 6.293-6.293-1.414-1.414L2.3 11.286a1.01 1.01 0 0 0 0 1.428l7.993 7.993 1.414-1.414L5.414 13H22v-2z",
|
|
420
|
+
clipRule: "evenodd"
|
|
421
|
+
})
|
|
422
|
+
})
|
|
423
|
+
})
|
|
424
|
+
});
|
|
425
|
+
};
|
|
426
|
+
|
|
357
427
|
const ArrowUp = ({
|
|
358
428
|
className = undefined,
|
|
359
429
|
isFocusable = false,
|
|
@@ -585,7 +655,7 @@ const BankTransfer = ({
|
|
|
585
655
|
console.warn("<BankTransfer filled /> is now deprecated, please use <BankTransferFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
586
656
|
}
|
|
587
657
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
588
|
-
className: `tw-icon tw-icon-bank-transfer ${className ? className : ''}`,
|
|
658
|
+
className: `tw-icon tw-icon-bank-transfer rtl-ar rtl-he ${className ? className : ''}`,
|
|
589
659
|
"data-testid": restProps['data-testid'] || 'bank-transfer-icon',
|
|
590
660
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
591
661
|
"aria-label": title,
|
|
@@ -620,7 +690,7 @@ const Ach = ({
|
|
|
620
690
|
console.warn("<Ach filled /> is now deprecated, please use <AchFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
621
691
|
}
|
|
622
692
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
623
|
-
className: `tw-icon tw-icon-ach ${className ? className : ''}`,
|
|
693
|
+
className: `tw-icon tw-icon-ach rtl-ar rtl-he ${className ? className : ''}`,
|
|
624
694
|
"data-testid": restProps['data-testid'] || 'ach-icon',
|
|
625
695
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
626
696
|
"aria-label": title,
|
|
@@ -970,7 +1040,7 @@ const Bills = ({
|
|
|
970
1040
|
console.warn("<Bills filled /> is now deprecated, please use <BillsFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
971
1041
|
}
|
|
972
1042
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
973
|
-
className: `tw-icon tw-icon-bills ${className ? className : ''}`,
|
|
1043
|
+
className: `tw-icon tw-icon-bills rtl-ar rtl-he ${className ? className : ''}`,
|
|
974
1044
|
"data-testid": restProps['data-testid'] || 'bills-icon',
|
|
975
1045
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
976
1046
|
"aria-label": title,
|
|
@@ -1947,6 +2017,41 @@ const SalesAndRoyalties = ({
|
|
|
1947
2017
|
});
|
|
1948
2018
|
};
|
|
1949
2019
|
|
|
2020
|
+
const Chair = ({
|
|
2021
|
+
className = undefined,
|
|
2022
|
+
isFocusable = false,
|
|
2023
|
+
filled = undefined,
|
|
2024
|
+
title = undefined,
|
|
2025
|
+
role = undefined,
|
|
2026
|
+
size = 16,
|
|
2027
|
+
...restProps
|
|
2028
|
+
}) => {
|
|
2029
|
+
if (filled) {
|
|
2030
|
+
console.warn("<Chair filled /> is now deprecated, please use <ChairFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
2031
|
+
}
|
|
2032
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
2033
|
+
className: `tw-icon tw-icon-chair ${className ? className : ''}`,
|
|
2034
|
+
"data-testid": restProps['data-testid'] || 'chair-icon',
|
|
2035
|
+
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
2036
|
+
"aria-label": title,
|
|
2037
|
+
"aria-hidden": !title ? true : undefined,
|
|
2038
|
+
focusable: isFocusable,
|
|
2039
|
+
role: role ?? (title ? 'graphics-symbol img' : 'none'),
|
|
2040
|
+
width: String(size),
|
|
2041
|
+
height: String(size),
|
|
2042
|
+
fill: "currentColor",
|
|
2043
|
+
viewBox: "0 0 24 24",
|
|
2044
|
+
children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
2045
|
+
children: /*#__PURE__*/jsxRuntime.jsx("path", {
|
|
2046
|
+
fillRule: "evenodd",
|
|
2047
|
+
d: "M17 3a2 2 0 0 1 2 2v3a2 2 0 0 1 2 2v7a2 2 0 0 1-1.796 1.99L19 19v2h-2v-2H7v2H5v-2l-.204-.01A2 2 0 0 1 3 17v-7a2 2 0 0 1 2-2V5a2 2 0 0 1 2-2zM5 17h14v-7h-2v4h-.005a1.1 1.1 0 0 1-1.095 1H8.1a1.1 1.1 0 0 1-1.095-1H7v-4H5zm2-9a2 2 0 0 1 2 2v3h6v-3a2 2 0 0 1 2-2V5H7z",
|
|
2048
|
+
clipRule: "evenodd"
|
|
2049
|
+
})
|
|
2050
|
+
})
|
|
2051
|
+
})
|
|
2052
|
+
});
|
|
2053
|
+
};
|
|
2054
|
+
|
|
1950
2055
|
const Charity = ({
|
|
1951
2056
|
className = undefined,
|
|
1952
2057
|
isFocusable = false,
|
|
@@ -2157,6 +2262,41 @@ const ChevronDown = ({
|
|
|
2157
2262
|
});
|
|
2158
2263
|
};
|
|
2159
2264
|
|
|
2265
|
+
const ChevronEnd = ({
|
|
2266
|
+
className = undefined,
|
|
2267
|
+
isFocusable = false,
|
|
2268
|
+
filled = undefined,
|
|
2269
|
+
title = undefined,
|
|
2270
|
+
role = undefined,
|
|
2271
|
+
size = 16,
|
|
2272
|
+
...restProps
|
|
2273
|
+
}) => {
|
|
2274
|
+
if (filled) {
|
|
2275
|
+
console.warn("<ChevronEnd filled /> is now deprecated, please use <ChevronEndFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
2276
|
+
}
|
|
2277
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
2278
|
+
className: `tw-icon tw-icon-chevron-end rtl-ar rtl-he ${className ? className : ''}`,
|
|
2279
|
+
"data-testid": restProps['data-testid'] || 'chevron-end-icon',
|
|
2280
|
+
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
2281
|
+
"aria-label": title,
|
|
2282
|
+
"aria-hidden": !title ? true : undefined,
|
|
2283
|
+
focusable: isFocusable,
|
|
2284
|
+
role: role ?? (title ? 'graphics-symbol img' : 'none'),
|
|
2285
|
+
width: String(size),
|
|
2286
|
+
height: String(size),
|
|
2287
|
+
fill: "currentColor",
|
|
2288
|
+
viewBox: "0 0 24 24",
|
|
2289
|
+
children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
2290
|
+
children: /*#__PURE__*/jsxRuntime.jsx("path", {
|
|
2291
|
+
fillRule: "evenodd",
|
|
2292
|
+
d: "M15.586 12 8.293 4.707l1.414-1.414 7.993 7.993a1.01 1.01 0 0 1 0 1.428l-7.993 7.993-1.414-1.414z",
|
|
2293
|
+
clipRule: "evenodd"
|
|
2294
|
+
})
|
|
2295
|
+
})
|
|
2296
|
+
})
|
|
2297
|
+
});
|
|
2298
|
+
};
|
|
2299
|
+
|
|
2160
2300
|
const ChevronLeft = ({
|
|
2161
2301
|
className = undefined,
|
|
2162
2302
|
isFocusable = false,
|
|
@@ -2227,6 +2367,41 @@ const ChevronRight = ({
|
|
|
2227
2367
|
});
|
|
2228
2368
|
};
|
|
2229
2369
|
|
|
2370
|
+
const ChevronStart = ({
|
|
2371
|
+
className = undefined,
|
|
2372
|
+
isFocusable = false,
|
|
2373
|
+
filled = undefined,
|
|
2374
|
+
title = undefined,
|
|
2375
|
+
role = undefined,
|
|
2376
|
+
size = 16,
|
|
2377
|
+
...restProps
|
|
2378
|
+
}) => {
|
|
2379
|
+
if (filled) {
|
|
2380
|
+
console.warn("<ChevronStart filled /> is now deprecated, please use <ChevronStartFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
2381
|
+
}
|
|
2382
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
2383
|
+
className: `tw-icon tw-icon-chevron-start rtl-ar rtl-he ${className ? className : ''}`,
|
|
2384
|
+
"data-testid": restProps['data-testid'] || 'chevron-start-icon',
|
|
2385
|
+
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
2386
|
+
"aria-label": title,
|
|
2387
|
+
"aria-hidden": !title ? true : undefined,
|
|
2388
|
+
focusable: isFocusable,
|
|
2389
|
+
role: role ?? (title ? 'graphics-symbol img' : 'none'),
|
|
2390
|
+
width: String(size),
|
|
2391
|
+
height: String(size),
|
|
2392
|
+
fill: "currentColor",
|
|
2393
|
+
viewBox: "0 0 24 24",
|
|
2394
|
+
children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
2395
|
+
children: /*#__PURE__*/jsxRuntime.jsx("path", {
|
|
2396
|
+
fillRule: "evenodd",
|
|
2397
|
+
d: "m8.414 12 7.293-7.293-1.414-1.414L6.3 11.286a1.01 1.01 0 0 0 0 1.428l7.993 7.993 1.414-1.414z",
|
|
2398
|
+
clipRule: "evenodd"
|
|
2399
|
+
})
|
|
2400
|
+
})
|
|
2401
|
+
})
|
|
2402
|
+
});
|
|
2403
|
+
};
|
|
2404
|
+
|
|
2230
2405
|
const ChevronUp = ({
|
|
2231
2406
|
className = undefined,
|
|
2232
2407
|
isFocusable = false,
|
|
@@ -2975,7 +3150,7 @@ const Delivery = ({
|
|
|
2975
3150
|
console.warn("<Delivery filled /> is now deprecated, please use <DeliveryFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
2976
3151
|
}
|
|
2977
3152
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
2978
|
-
className: `tw-icon tw-icon-delivery ${className ? className : ''}`,
|
|
3153
|
+
className: `tw-icon tw-icon-delivery rtl-ar rtl-he ${className ? className : ''}`,
|
|
2979
3154
|
"data-testid": restProps['data-testid'] || 'delivery-icon',
|
|
2980
3155
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
2981
3156
|
"aria-label": title,
|
|
@@ -5508,7 +5683,7 @@ const List = ({
|
|
|
5508
5683
|
console.warn("<List filled /> is now deprecated, please use <ListFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
5509
5684
|
}
|
|
5510
5685
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
5511
|
-
className: `tw-icon tw-icon-list ${className ? className : ''}`,
|
|
5686
|
+
className: `tw-icon tw-icon-list rtl-ar rtl-he ${className ? className : ''}`,
|
|
5512
5687
|
"data-testid": restProps['data-testid'] || 'list-icon',
|
|
5513
5688
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
5514
5689
|
"aria-label": title,
|
|
@@ -5543,7 +5718,7 @@ const Activity = ({
|
|
|
5543
5718
|
console.warn("<Activity filled /> is now deprecated, please use <ActivityFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
5544
5719
|
}
|
|
5545
5720
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
5546
|
-
className: `tw-icon tw-icon-activity ${className ? className : ''}`,
|
|
5721
|
+
className: `tw-icon tw-icon-activity rtl-ar rtl-he ${className ? className : ''}`,
|
|
5547
5722
|
"data-testid": restProps['data-testid'] || 'activity-icon',
|
|
5548
5723
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
5549
5724
|
"aria-label": title,
|
|
@@ -5613,7 +5788,7 @@ const LogIn = ({
|
|
|
5613
5788
|
console.warn("<LogIn filled /> is now deprecated, please use <LogInFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
5614
5789
|
}
|
|
5615
5790
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
5616
|
-
className: `tw-icon tw-icon-log-in ${className ? className : ''}`,
|
|
5791
|
+
className: `tw-icon tw-icon-log-in rtl-ar rtl-he ${className ? className : ''}`,
|
|
5617
5792
|
"data-testid": restProps['data-testid'] || 'log-in-icon',
|
|
5618
5793
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
5619
5794
|
"aria-label": title,
|
|
@@ -5648,7 +5823,7 @@ const LogOut = ({
|
|
|
5648
5823
|
console.warn("<LogOut filled /> is now deprecated, please use <LogOutFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
5649
5824
|
}
|
|
5650
5825
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
5651
|
-
className: `tw-icon tw-icon-log-out ${className ? className : ''}`,
|
|
5826
|
+
className: `tw-icon tw-icon-log-out rtl-ar rtl-he ${className ? className : ''}`,
|
|
5652
5827
|
"data-testid": restProps['data-testid'] || 'log-out-icon',
|
|
5653
5828
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
5654
5829
|
"aria-label": title,
|
|
@@ -6206,7 +6381,7 @@ const NavigateAway = ({
|
|
|
6206
6381
|
console.warn("<NavigateAway filled /> is now deprecated, please use <NavigateAwayFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
6207
6382
|
}
|
|
6208
6383
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
6209
|
-
className: `tw-icon tw-icon-navigate-away ${className ? className : ''}`,
|
|
6384
|
+
className: `tw-icon tw-icon-navigate-away rtl-ar rtl-he ${className ? className : ''}`,
|
|
6210
6385
|
"data-testid": restProps['data-testid'] || 'navigate-away-icon',
|
|
6211
6386
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
6212
6387
|
"aria-label": title,
|
|
@@ -7614,7 +7789,7 @@ const QuestionMarkCircleFill = ({
|
|
|
7614
7789
|
console.warn("<QuestionMarkCircleFill filled /> is now deprecated, please use <QuestionMarkCircleFillFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
7615
7790
|
}
|
|
7616
7791
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
7617
|
-
className: `tw-icon tw-icon-question-mark-circle-fill ${className ? className : ''}`,
|
|
7792
|
+
className: `tw-icon tw-icon-question-mark-circle-fill rtl-ar ${className ? className : ''}`,
|
|
7618
7793
|
"data-testid": restProps['data-testid'] || 'question-mark-circle-fill-icon',
|
|
7619
7794
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
7620
7795
|
"aria-label": title,
|
|
@@ -7649,7 +7824,7 @@ const QuestionMarkCircle = ({
|
|
|
7649
7824
|
console.warn("<QuestionMarkCircle filled /> is now deprecated, please use <QuestionMarkCircleFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
7650
7825
|
}
|
|
7651
7826
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
7652
|
-
className: `tw-icon tw-icon-question-mark-circle ${className ? className : ''}`,
|
|
7827
|
+
className: `tw-icon tw-icon-question-mark-circle rtl-ar ${className ? className : ''}`,
|
|
7653
7828
|
"data-testid": restProps['data-testid'] || 'question-mark-circle-icon',
|
|
7654
7829
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
7655
7830
|
"aria-label": title,
|
|
@@ -7684,7 +7859,7 @@ const HelpCircle = ({
|
|
|
7684
7859
|
console.warn("<HelpCircle filled /> is now deprecated, please use <HelpCircleFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
7685
7860
|
}
|
|
7686
7861
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
7687
|
-
className: `tw-icon tw-icon-help-circle ${className ? className : ''}`,
|
|
7862
|
+
className: `tw-icon tw-icon-help-circle rtl-ar ${className ? className : ''}`,
|
|
7688
7863
|
"data-testid": restProps['data-testid'] || 'help-circle-icon',
|
|
7689
7864
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
7690
7865
|
"aria-label": title,
|
|
@@ -7719,7 +7894,7 @@ const QuestionMark = ({
|
|
|
7719
7894
|
console.warn("<QuestionMark filled /> is now deprecated, please use <QuestionMarkFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
7720
7895
|
}
|
|
7721
7896
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
7722
|
-
className: `tw-icon tw-icon-question-mark ${className ? className : ''}`,
|
|
7897
|
+
className: `tw-icon tw-icon-question-mark rtl-ar ${className ? className : ''}`,
|
|
7723
7898
|
"data-testid": restProps['data-testid'] || 'question-mark-icon',
|
|
7724
7899
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
7725
7900
|
"aria-label": title,
|
|
@@ -7754,7 +7929,7 @@ const Help = ({
|
|
|
7754
7929
|
console.warn("<Help filled /> is now deprecated, please use <HelpFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
7755
7930
|
}
|
|
7756
7931
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
7757
|
-
className: `tw-icon tw-icon-help ${className ? className : ''}`,
|
|
7932
|
+
className: `tw-icon tw-icon-help rtl-ar ${className ? className : ''}`,
|
|
7758
7933
|
"data-testid": restProps['data-testid'] || 'help-icon',
|
|
7759
7934
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
7760
7935
|
"aria-label": title,
|
|
@@ -8589,6 +8764,45 @@ const ECommerce = ({
|
|
|
8589
8764
|
});
|
|
8590
8765
|
};
|
|
8591
8766
|
|
|
8767
|
+
const SimCard = ({
|
|
8768
|
+
className = undefined,
|
|
8769
|
+
isFocusable = false,
|
|
8770
|
+
filled = undefined,
|
|
8771
|
+
title = undefined,
|
|
8772
|
+
role = undefined,
|
|
8773
|
+
size = 16,
|
|
8774
|
+
...restProps
|
|
8775
|
+
}) => {
|
|
8776
|
+
if (filled) {
|
|
8777
|
+
console.warn("<SimCard filled /> is now deprecated, please use <SimCardFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
8778
|
+
}
|
|
8779
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
8780
|
+
className: `tw-icon tw-icon-sim-card ${className ? className : ''}`,
|
|
8781
|
+
"data-testid": restProps['data-testid'] || 'sim-card-icon',
|
|
8782
|
+
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
8783
|
+
"aria-label": title,
|
|
8784
|
+
"aria-hidden": !title ? true : undefined,
|
|
8785
|
+
focusable: isFocusable,
|
|
8786
|
+
role: role ?? (title ? 'graphics-symbol img' : 'none'),
|
|
8787
|
+
width: String(size),
|
|
8788
|
+
height: String(size),
|
|
8789
|
+
fill: "currentColor",
|
|
8790
|
+
viewBox: "0 0 24 24",
|
|
8791
|
+
children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
8792
|
+
children: [/*#__PURE__*/jsxRuntime.jsx("path", {
|
|
8793
|
+
fillRule: "evenodd",
|
|
8794
|
+
d: "M14.9 8A1.1 1.1 0 0 1 16 9.1v5.8a1.1 1.1 0 0 1-1.1 1.1H7.1A1.1 1.1 0 0 1 6 14.9V9.1A1.1 1.1 0 0 1 7.1 8zM12 14h2v-4h-2zm-4 0h2v-4H8z",
|
|
8795
|
+
clipRule: "evenodd"
|
|
8796
|
+
}), /*#__PURE__*/jsxRuntime.jsx("path", {
|
|
8797
|
+
fillRule: "evenodd",
|
|
8798
|
+
d: "M16.586 4A2 2 0 0 1 18 4.586L21.414 8A2 2 0 0 1 22 9.414V18a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zM4 18h16V9.414L16.586 6H4z",
|
|
8799
|
+
clipRule: "evenodd"
|
|
8800
|
+
})]
|
|
8801
|
+
})
|
|
8802
|
+
})
|
|
8803
|
+
});
|
|
8804
|
+
};
|
|
8805
|
+
|
|
8592
8806
|
const Slider = ({
|
|
8593
8807
|
className = undefined,
|
|
8594
8808
|
isFocusable = false,
|
|
@@ -10222,7 +10436,7 @@ const Switch = ({
|
|
|
10222
10436
|
console.warn("<Switch filled /> is now deprecated, please use <SwitchFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
10223
10437
|
}
|
|
10224
10438
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
10225
|
-
className: `tw-icon tw-icon-switch ${className ? className : ''}`,
|
|
10439
|
+
className: `tw-icon tw-icon-switch rtl-ar rtl-he ${className ? className : ''}`,
|
|
10226
10440
|
"data-testid": restProps['data-testid'] || 'switch-icon',
|
|
10227
10441
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
10228
10442
|
"aria-label": title,
|
|
@@ -10506,7 +10720,7 @@ const Transfer = ({
|
|
|
10506
10720
|
console.warn("<Transfer filled /> is now deprecated, please use <TransferFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
|
10507
10721
|
}
|
|
10508
10722
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
10509
|
-
className: `tw-icon tw-icon-transfer ${className ? className : ''}`,
|
|
10723
|
+
className: `tw-icon tw-icon-transfer rtl-ar rtl-he ${className ? className : ''}`,
|
|
10510
10724
|
"data-testid": restProps['data-testid'] || 'transfer-icon',
|
|
10511
10725
|
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
10512
10726
|
"aria-label": title,
|
|
@@ -11090,8 +11304,10 @@ exports.AngryEmoji = AngryEmoji;
|
|
|
11090
11304
|
exports.ArrowDiagonalDown = ArrowDiagonalDown;
|
|
11091
11305
|
exports.ArrowDiagonalUp = ArrowDiagonalUp;
|
|
11092
11306
|
exports.ArrowDown = ArrowDown;
|
|
11307
|
+
exports.ArrowEnd = ArrowEnd;
|
|
11093
11308
|
exports.ArrowLeft = ArrowLeft;
|
|
11094
11309
|
exports.ArrowRight = ArrowRight;
|
|
11310
|
+
exports.ArrowStart = ArrowStart;
|
|
11095
11311
|
exports.ArrowUp = ArrowUp;
|
|
11096
11312
|
exports.Atm = Atm;
|
|
11097
11313
|
exports.AutoConvert = AutoConvert;
|
|
@@ -11130,14 +11346,17 @@ exports.CardTransferwise = CardTransferwise;
|
|
|
11130
11346
|
exports.CardWise = CardWise;
|
|
11131
11347
|
exports.CashApp = CashApp;
|
|
11132
11348
|
exports.CashRegister = CashRegister;
|
|
11349
|
+
exports.Chair = Chair;
|
|
11133
11350
|
exports.Charity = Charity;
|
|
11134
11351
|
exports.Chat = Chat;
|
|
11135
11352
|
exports.Check = Check;
|
|
11136
11353
|
exports.CheckCircle = CheckCircle;
|
|
11137
11354
|
exports.CheckCircleFill = CheckCircleFill;
|
|
11138
11355
|
exports.ChevronDown = ChevronDown;
|
|
11356
|
+
exports.ChevronEnd = ChevronEnd;
|
|
11139
11357
|
exports.ChevronLeft = ChevronLeft;
|
|
11140
11358
|
exports.ChevronRight = ChevronRight;
|
|
11359
|
+
exports.ChevronStart = ChevronStart;
|
|
11141
11360
|
exports.ChevronUp = ChevronUp;
|
|
11142
11361
|
exports.Chip = Chip;
|
|
11143
11362
|
exports.ChipPin = ChipPin;
|
|
@@ -11327,6 +11546,7 @@ exports.ShareAndroid = ShareAndroid;
|
|
|
11327
11546
|
exports.ShareIos = ShareIos;
|
|
11328
11547
|
exports.Shield = Shield;
|
|
11329
11548
|
exports.ShoppingBag = ShoppingBag;
|
|
11549
|
+
exports.SimCard = SimCard;
|
|
11330
11550
|
exports.Slider = Slider;
|
|
11331
11551
|
exports.Sofort = Sofort;
|
|
11332
11552
|
exports.SoftwareAndHosting = SoftwareAndHosting;
|