@transferwise/icons 3.7.0 → 3.9.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.
Files changed (83) hide show
  1. package/build/angular/components/arrow-diagonal-down-icon.component.js +19 -0
  2. package/build/angular/components/arrow-diagonal-up-icon.component.js +19 -0
  3. package/build/angular/components/bank-strikethrough-icon.component.js +19 -0
  4. package/build/angular/components/car-icon.component.js +3 -3
  5. package/build/angular/components/click-to-pay-icon.component.js +19 -0
  6. package/build/angular/components/drivers-license-icon.component.js +3 -3
  7. package/build/angular/components/eating-out-icon.component.js +3 -3
  8. package/build/angular/components/gambling-icon.component.js +19 -0
  9. package/build/angular/components/icon.component.js +14 -0
  10. package/build/angular/components/laptop-icon.component.js +19 -0
  11. package/build/angular/components/pause-icon.component.js +19 -0
  12. package/build/angular/components/payments-icon.component.js +3 -3
  13. package/build/angular/components/pets-icon.component.js +19 -0
  14. package/build/angular/components/play-icon.component.js +19 -0
  15. package/build/angular/components/scan-qr-code-icon.component.js +19 -0
  16. package/build/angular/components/slider-icon.component.js +3 -3
  17. package/build/angular/components/speech-bubble-exclamation-icon.component.js +19 -0
  18. package/build/angular/components/stop-icon.component.js +19 -0
  19. package/build/angular/components/takeaway-icon.component.js +19 -0
  20. package/build/angular/components/taxi-icon.component.js +19 -0
  21. package/build/angular/components/transport-icon.component.js +3 -3
  22. package/build/angular/index.js +28 -0
  23. package/build/components/arrow-diagonal-down.tsx +51 -0
  24. package/build/components/arrow-diagonal-up.tsx +51 -0
  25. package/build/components/bank-strikethrough.tsx +53 -0
  26. package/build/components/car.tsx +3 -1
  27. package/build/components/click-to-pay.tsx +48 -0
  28. package/build/components/drivers-license.tsx +3 -1
  29. package/build/components/eating-out.tsx +1 -1
  30. package/build/components/gambling.tsx +52 -0
  31. package/build/components/laptop.tsx +52 -0
  32. package/build/components/pause.tsx +52 -0
  33. package/build/components/payments.tsx +1 -1
  34. package/build/components/pets.tsx +52 -0
  35. package/build/components/play.tsx +52 -0
  36. package/build/components/scan-qr-code.tsx +52 -0
  37. package/build/components/slider.tsx +1 -1
  38. package/build/components/speech-bubble-exclamation.tsx +53 -0
  39. package/build/components/stop.tsx +52 -0
  40. package/build/components/takeaway.tsx +52 -0
  41. package/build/components/taxi.tsx +52 -0
  42. package/build/components/transport.tsx +1 -1
  43. package/build/icons.json +98 -0
  44. package/build/index.ts +14 -0
  45. package/lib/angular/index.js +313 -19
  46. package/lib/angular/index.js.map +1 -1
  47. package/lib/components/arrow-diagonal-down.d.ts +11 -0
  48. package/lib/components/arrow-diagonal-down.d.ts.map +1 -0
  49. package/lib/components/arrow-diagonal-up.d.ts +11 -0
  50. package/lib/components/arrow-diagonal-up.d.ts.map +1 -0
  51. package/lib/components/bank-strikethrough.d.ts +11 -0
  52. package/lib/components/bank-strikethrough.d.ts.map +1 -0
  53. package/lib/components/car.d.ts.map +1 -1
  54. package/lib/components/click-to-pay.d.ts +11 -0
  55. package/lib/components/click-to-pay.d.ts.map +1 -0
  56. package/lib/components/drivers-license.d.ts.map +1 -1
  57. package/lib/components/gambling.d.ts +11 -0
  58. package/lib/components/gambling.d.ts.map +1 -0
  59. package/lib/components/laptop.d.ts +11 -0
  60. package/lib/components/laptop.d.ts.map +1 -0
  61. package/lib/components/pause.d.ts +11 -0
  62. package/lib/components/pause.d.ts.map +1 -0
  63. package/lib/components/pets.d.ts +11 -0
  64. package/lib/components/pets.d.ts.map +1 -0
  65. package/lib/components/play.d.ts +11 -0
  66. package/lib/components/play.d.ts.map +1 -0
  67. package/lib/components/scan-qr-code.d.ts +11 -0
  68. package/lib/components/scan-qr-code.d.ts.map +1 -0
  69. package/lib/components/speech-bubble-exclamation.d.ts +11 -0
  70. package/lib/components/speech-bubble-exclamation.d.ts.map +1 -0
  71. package/lib/components/stop.d.ts +11 -0
  72. package/lib/components/stop.d.ts.map +1 -0
  73. package/lib/components/takeaway.d.ts +11 -0
  74. package/lib/components/takeaway.d.ts.map +1 -0
  75. package/lib/components/taxi.d.ts +11 -0
  76. package/lib/components/taxi.d.ts.map +1 -0
  77. package/lib/index.d.ts +14 -0
  78. package/lib/index.d.ts.map +1 -1
  79. package/lib/{index.mjs → index.esm.js} +518 -14
  80. package/lib/{index.mjs.map → index.esm.js.map} +1 -1
  81. package/lib/index.js +530 -12
  82. package/lib/index.js.map +1 -1
  83. package/package.json +5 -14
package/lib/index.js CHANGED
@@ -109,6 +109,74 @@ const Alert = ({
109
109
  });
110
110
  };
111
111
 
112
+ const ArrowDiagonalDown = ({
113
+ size = 16,
114
+ className = undefined,
115
+ title = undefined,
116
+ filled = undefined,
117
+ ...restProps
118
+ }) => {
119
+ if (filled) {
120
+ console.warn('<ArrowDiagonalDown filled /> is now deprecated, please use <ArrowDiagonalDownFill /> or refer to https://transferwise.github.io/icons/ for more info.');
121
+ }
122
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
123
+ className: `tw-icon tw-icon-arrow-diagonal-down ${className ? className : ''}`,
124
+ "aria-hidden": !title ? 'true' : undefined,
125
+ role: !title ? 'presentation' : undefined,
126
+ "data-testid": restProps['data-testid'] || 'arrow-diagonal-down-icon',
127
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
128
+ width: String(size),
129
+ height: String(size),
130
+ fill: "currentColor",
131
+ focusable: "false",
132
+ viewBox: "0 0 24 24",
133
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
134
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
135
+ d: "M18.857 20.357h-12v-1.714H16.8L4.07 5.914l1.2-1.2L18 17.443V7.5h1.714v12a.86.86 0 0 1-.857.857Z",
136
+ style: "fill:#f0f;fill:color(display-p3 1 0 1);fill-opacity:1"
137
+ })
138
+ })
139
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
140
+ className: "sr-only",
141
+ children: title
142
+ })]
143
+ });
144
+ };
145
+
146
+ const ArrowDiagonalUp = ({
147
+ size = 16,
148
+ className = undefined,
149
+ title = undefined,
150
+ filled = undefined,
151
+ ...restProps
152
+ }) => {
153
+ if (filled) {
154
+ console.warn('<ArrowDiagonalUp filled /> is now deprecated, please use <ArrowDiagonalUpFill /> or refer to https://transferwise.github.io/icons/ for more info.');
155
+ }
156
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
157
+ className: `tw-icon tw-icon-arrow-diagonal-up ${className ? className : ''}`,
158
+ "aria-hidden": !title ? 'true' : undefined,
159
+ role: !title ? 'presentation' : undefined,
160
+ "data-testid": restProps['data-testid'] || 'arrow-diagonal-up-icon',
161
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
162
+ width: String(size),
163
+ height: String(size),
164
+ fill: "currentColor",
165
+ focusable: "false",
166
+ viewBox: "0 0 24 24",
167
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
168
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
169
+ d: "M18.857 4.714h-12V6.43H16.8L4.07 19.157l1.2 1.2L18 7.63v9.942h1.714v-12a.86.86 0 0 0-.857-.857Z",
170
+ style: "fill:#f0f;fill:color(display-p3 1 0 1);fill-opacity:1"
171
+ })
172
+ })
173
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
174
+ className: "sr-only",
175
+ children: title
176
+ })]
177
+ });
178
+ };
179
+
112
180
  const ArrowDown = ({
113
181
  size = 16,
114
182
  className = undefined,
@@ -276,6 +344,42 @@ const AutoConvert = ({
276
344
  });
277
345
  };
278
346
 
347
+ const BankStrikethrough = ({
348
+ size = 16,
349
+ className = undefined,
350
+ title = undefined,
351
+ filled = undefined,
352
+ ...restProps
353
+ }) => {
354
+ if (filled) {
355
+ console.warn('<BankStrikethrough filled /> is now deprecated, please use <BankStrikethroughFill /> or refer to https://transferwise.github.io/icons/ for more info.');
356
+ }
357
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
358
+ className: `tw-icon tw-icon-bank-strikethrough ${className ? className : ''}`,
359
+ "aria-hidden": !title ? 'true' : undefined,
360
+ role: !title ? 'presentation' : undefined,
361
+ "data-testid": restProps['data-testid'] || 'bank-strikethrough-icon',
362
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
363
+ width: String(size),
364
+ height: String(size),
365
+ fill: "currentColor",
366
+ focusable: "false",
367
+ viewBox: "0 0 24 24",
368
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
369
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
370
+ fillRule: "evenodd",
371
+ d: "m1.965 20.608 2.32-2.32V9.857H3.019a.857.857 0 0 1-.462-1.59l8.983-5.434a1.286 1.286 0 0 1 1.354.014l4.183 2.65 3.532-3.532 1.072 1.072L3.037 21.68l-1.072-1.072Zm3.747.82H21.43v-1.714h-1.715V9.857h1.27a.857.857 0 0 0 .475-1.581L19.871 7.27l-2.587 2.587H18v9.857h-5.143v-5.43l-1.714 1.714v3.716H7.427l-1.715 1.714ZM6 16.573l5.143-5.142V9.857H6v6.716Zm8.43-8.43 1.403-1.403L12.2 4.437 6.073 8.143h8.358Z",
372
+ clipRule: "evenodd",
373
+ style: "fill:#f0f;fill:color(display-p3 1 0 1);fill-opacity:1"
374
+ })
375
+ })
376
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
377
+ className: "sr-only",
378
+ children: title
379
+ })]
380
+ });
381
+ };
382
+
279
383
  const BankTransfer = ({
280
384
  size = 16,
281
385
  className = undefined,
@@ -1154,12 +1258,20 @@ const Car = ({
1154
1258
  fill: "currentColor",
1155
1259
  focusable: "false",
1156
1260
  viewBox: "0 0 24 24",
1157
- children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1158
- children: /*#__PURE__*/jsxRuntime.jsx("path", {
1261
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1262
+ children: [/*#__PURE__*/jsxRuntime.jsx("circle", {
1263
+ cx: "6.428",
1264
+ cy: "13.286",
1265
+ r: ".857"
1266
+ }), /*#__PURE__*/jsxRuntime.jsx("circle", {
1267
+ cx: "17.572",
1268
+ cy: "13.286",
1269
+ r: ".857"
1270
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
1159
1271
  fillRule: "evenodd",
1160
- d: "M22.297 7.713v.857c0 .472-.386.857-.857.815h-.558c.343.385.558.857.643 1.414l.772 6.214a.79.79 0 0 1-.215.686.771.771 0 0 1-.642.3h-.858v2.571a.86.86 0 0 1-.857.857h-1.714a.86.86 0 0 1-.857-.857V18H6.868v2.571a.86.86 0 0 1-.857.857H4.297a.86.86 0 0 1-.857-.857V18h-.858c-.257 0-.471-.043-.642-.257-.172-.215-.258-.429-.215-.686l.772-6.214c.043-.557.3-1.029.643-1.415h-.558a.86.86 0 0 1-.857-.857v-.857a.86.86 0 0 1 .857-.857H4.468l1.629-3.771a.847.847 0 0 1 .771-.515h10.286c.343 0 .643.215.771.515l1.629 3.771H21.44a.86.86 0 0 1 .857.857Zm-5.7-3.428H7.425L5.582 8.57H18.44l-1.843-4.285ZM4.21 11.056l-.643 5.229h16.886l-.6-5.229a.877.877 0 0 0-.857-.771H5.068a.877.877 0 0 0-.857.771ZM6.44 14.57a1.286 1.286 0 1 0 0-2.572 1.286 1.286 0 0 0 0 2.572Zm11.143 0a1.286 1.286 0 1 0 0-2.572 1.286 1.286 0 0 0 0 2.572Z",
1272
+ d: "M6.69 2.571a.861.861 0 0 0-.8.542L4.047 7.714H2.143a.429.429 0 0 0-.429.429V9c0 .237.192.429.429.429h.903c-.346.386-.578.88-.64 1.43l-.686 6.184a.861.861 0 0 0 .856.957H3v2.567c0 .476.386.862.861.862h2.992a.861.861 0 0 0 .861-.862V18h8.572v2.567c0 .476.385.862.861.862h2.992a.861.861 0 0 0 .86-.862V18h.424a.861.861 0 0 0 .857-.957l-.688-6.184a2.563 2.563 0 0 0-.639-1.43h.904A.429.429 0 0 0 22.285 9v-.857a.429.429 0 0 0-.428-.429h-1.905L18.11 3.113a.861.861 0 0 0-.8-.542H6.69Zm12.347 7.715H4.963a.857.857 0 0 0-.852.762l-.582 5.238H20.47l-.582-5.238a.857.857 0 0 0-.852-.762Zm-.589-1.715-1.715-4.285H7.267L5.552 8.57h12.896ZM4.714 19.714V18H6v1.714H4.714Zm13.286 0V18h1.286v1.714H18Z",
1161
1273
  clipRule: "evenodd"
1162
- })
1274
+ })]
1163
1275
  })
1164
1276
  }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
1165
1277
  className: "sr-only",
@@ -1189,12 +1301,20 @@ const DriversLicense = ({
1189
1301
  fill: "currentColor",
1190
1302
  focusable: "false",
1191
1303
  viewBox: "0 0 24 24",
1192
- children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1193
- children: /*#__PURE__*/jsxRuntime.jsx("path", {
1304
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1305
+ children: [/*#__PURE__*/jsxRuntime.jsx("circle", {
1306
+ cx: "6.428",
1307
+ cy: "13.286",
1308
+ r: ".857"
1309
+ }), /*#__PURE__*/jsxRuntime.jsx("circle", {
1310
+ cx: "17.572",
1311
+ cy: "13.286",
1312
+ r: ".857"
1313
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
1194
1314
  fillRule: "evenodd",
1195
- d: "M22.297 7.713v.857c0 .472-.386.857-.857.815h-.558c.343.385.558.857.643 1.414l.772 6.214a.79.79 0 0 1-.215.686.771.771 0 0 1-.642.3h-.858v2.571a.86.86 0 0 1-.857.857h-1.714a.86.86 0 0 1-.857-.857V18H6.868v2.571a.86.86 0 0 1-.857.857H4.297a.86.86 0 0 1-.857-.857V18h-.858c-.257 0-.471-.043-.642-.257-.172-.215-.258-.429-.215-.686l.772-6.214c.043-.557.3-1.029.643-1.415h-.558a.86.86 0 0 1-.857-.857v-.857a.86.86 0 0 1 .857-.857H4.468l1.629-3.771a.847.847 0 0 1 .771-.515h10.286c.343 0 .643.215.771.515l1.629 3.771H21.44a.86.86 0 0 1 .857.857Zm-5.7-3.428H7.425L5.582 8.57H18.44l-1.843-4.285ZM4.21 11.056l-.643 5.229h16.886l-.6-5.229a.877.877 0 0 0-.857-.771H5.068a.877.877 0 0 0-.857.771ZM6.44 14.57a1.286 1.286 0 1 0 0-2.572 1.286 1.286 0 0 0 0 2.572Zm11.143 0a1.286 1.286 0 1 0 0-2.572 1.286 1.286 0 0 0 0 2.572Z",
1315
+ d: "M6.69 2.571a.861.861 0 0 0-.8.542L4.047 7.714H2.143a.429.429 0 0 0-.429.429V9c0 .237.192.429.429.429h.903c-.346.386-.578.88-.64 1.43l-.686 6.184a.861.861 0 0 0 .856.957H3v2.567c0 .476.386.862.861.862h2.992a.861.861 0 0 0 .861-.862V18h8.572v2.567c0 .476.385.862.861.862h2.992a.861.861 0 0 0 .86-.862V18h.424a.861.861 0 0 0 .857-.957l-.688-6.184a2.563 2.563 0 0 0-.639-1.43h.904A.429.429 0 0 0 22.285 9v-.857a.429.429 0 0 0-.428-.429h-1.905L18.11 3.113a.861.861 0 0 0-.8-.542H6.69Zm12.347 7.715H4.963a.857.857 0 0 0-.852.762l-.582 5.238H20.47l-.582-5.238a.857.857 0 0 0-.852-.762Zm-.589-1.715-1.715-4.285H7.267L5.552 8.57h12.896ZM4.714 19.714V18H6v1.714H4.714Zm13.286 0V18h1.286v1.714H18Z",
1196
1316
  clipRule: "evenodd"
1197
- })
1317
+ })]
1198
1318
  })
1199
1319
  }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
1200
1320
  className: "sr-only",
@@ -1889,6 +2009,39 @@ const ChipPin = ({
1889
2009
  });
1890
2010
  };
1891
2011
 
2012
+ const ClickToPay = ({
2013
+ size = 16,
2014
+ className = undefined,
2015
+ title = undefined,
2016
+ filled = undefined,
2017
+ ...restProps
2018
+ }) => {
2019
+ if (filled) {
2020
+ console.warn('<ClickToPay filled /> is now deprecated, please use <ClickToPayFill /> or refer to https://transferwise.github.io/icons/ for more info.');
2021
+ }
2022
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
2023
+ className: `tw-icon tw-icon-click-to-pay ${className ? className : ''}`,
2024
+ "aria-hidden": !title ? 'true' : undefined,
2025
+ role: !title ? 'presentation' : undefined,
2026
+ "data-testid": restProps['data-testid'] || 'click-to-pay-icon',
2027
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
2028
+ width: String(size),
2029
+ height: String(size),
2030
+ fill: "currentColor",
2031
+ focusable: "false",
2032
+ viewBox: "0 0 24 24",
2033
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2034
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
2035
+ d: "M16.702 18.453h-3.429c-.244 0-.538-.147-.636-.392-.098-.245-.098-.539.098-.735l4.408-5.29-4.555-5.044h-1.323l3.919 4.457a.62.62 0 0 1 0 .882l-4.212 4.995c-.294.441-1.03 1.127-2.058 1.127H3.87c-.734-.098-2.155-.735-2.155-2.449V7.922c0-.93.588-2.302 2.253-2.302h3.135a.67.67 0 0 1 .686.686.67.67 0 0 1-.686.686H3.967c-.734 0-.832.637-.832.93v8.033c0 .833.685 1.029.881 1.078h4.898c.588 0 .931-.49.931-.49 0-.05.049-.05.049-.098l3.87-4.604-4.507-5.143a.594.594 0 0 1-.098-.735c.098-.245.343-.392.637-.392h3.184c.196 0 .391.098.49.245l5.142 5.73c.245.246.245.638 0 .931l-3.87 4.605h1.666l4.261-5.045-4.457-5.29a.699.699 0 0 1 .098-.98.699.699 0 0 1 .98.098l4.849 5.73a.734.734 0 0 1 0 .882l-4.85 5.731c-.195.147-.342.245-.587.245Z"
2036
+ })
2037
+ })
2038
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
2039
+ className: "sr-only",
2040
+ children: title
2041
+ })]
2042
+ });
2043
+ };
2044
+
1892
2045
  const ClockBorderless = ({
1893
2046
  size = 16,
1894
2047
  className = undefined,
@@ -2747,7 +2900,7 @@ const EatingOut = ({
2747
2900
  children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2748
2901
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2749
2902
  fillRule: "evenodd",
2750
- d: "M15.698 3.859 10.127 9.43h2.932l6.784-6.784 1.212 1.213-5.571 5.571h2.859c.47 0 .857.38.857.857v1.32a7.062 7.062 0 0 1-4.312 6.505l.635 2.22a.861.861 0 0 1-.829 1.098H7.42a.861.861 0 0 1-.828-1.098l.634-2.22a7.062 7.062 0 0 1-4.312-6.505v-1.32c0-.471.382-.857.857-.857h3.931l6.784-6.784 1.212 1.213Zm1.788 7.285H4.629v.463a5.347 5.347 0 0 0 3.878 5.142c.453.13.72.602.589 1.06l-.545 1.907h5.013l-.545-1.908a.857.857 0 0 1 .588-1.06 5.347 5.347 0 0 0 3.879-5.14v-.464Z",
2903
+ d: "M16.212 3.429 10.64 9h3.576L21 2.216l1.212 1.213L16.64 9h4.844c.48 0 .858.39.858.857v.868c0 4.006-2.403 7.599-6.056 9.147V21c0 .71-.576 1.286-1.286 1.286H9c-.71 0-1.286-.576-1.286-1.286v-1.13a9.89 9.89 0 0 1-6-9.093v-.92c0-.475.386-.857.858-.857h5.644L15 2.216l1.212 1.213Zm4.415 7.285H3.43v.063a8.176 8.176 0 0 0 5.426 7.7c.344.123.574.449.574.814v1.28h5.143v-1.28c0-.366.23-.693.576-.815a8.222 8.222 0 0 0 5.48-7.751v-.01Z",
2751
2904
  clipRule: "evenodd"
2752
2905
  })
2753
2906
  })
@@ -3271,6 +3424,41 @@ const Freeze = ({
3271
3424
  });
3272
3425
  };
3273
3426
 
3427
+ const Gambling = ({
3428
+ size = 16,
3429
+ className = undefined,
3430
+ title = undefined,
3431
+ filled = undefined,
3432
+ ...restProps
3433
+ }) => {
3434
+ if (filled) {
3435
+ console.warn('<Gambling filled /> is now deprecated, please use <GamblingFill /> or refer to https://transferwise.github.io/icons/ for more info.');
3436
+ }
3437
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
3438
+ className: `tw-icon tw-icon-gambling ${className ? className : ''}`,
3439
+ "aria-hidden": !title ? 'true' : undefined,
3440
+ role: !title ? 'presentation' : undefined,
3441
+ "data-testid": restProps['data-testid'] || 'gambling-icon',
3442
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
3443
+ width: String(size),
3444
+ height: String(size),
3445
+ fill: "currentColor",
3446
+ focusable: "false",
3447
+ viewBox: "0 0 24 24",
3448
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
3449
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
3450
+ fillRule: "evenodd",
3451
+ d: "M11.143 3.471a8.53 8.53 0 0 0-4.449 1.797L7.917 6.49a6.821 6.821 0 0 1 3.226-1.295V3.47Zm-7.648 7.458a8.535 8.535 0 0 1 1.966-4.47l1.217 1.217a6.827 6.827 0 0 0-1.452 3.253H3.495Zm7.648 9.6a8.534 8.534 0 0 1-4.684-1.99l1.217-1.217c.97.79 2.162 1.32 3.467 1.482v1.725Zm-4.652-4.446-1.223 1.223a8.53 8.53 0 0 1-1.816-4.663h1.72a6.82 6.82 0 0 0 1.319 3.44Zm11.05 2.456a8.534 8.534 0 0 1-4.684 1.99v-1.725a6.826 6.826 0 0 0 3.467-1.482l1.218 1.217Zm1.192-1.233a8.53 8.53 0 0 0 1.815-4.663h-1.72a6.82 6.82 0 0 1-1.318 3.44l1.223 1.223ZM17.306 5.268a8.53 8.53 0 0 0-4.449-1.797v1.725a6.821 6.821 0 0 1 3.226 1.294l1.223-1.222Zm1.233 1.19-1.217 1.218a6.827 6.827 0 0 1 1.452 3.253h1.731a8.535 8.535 0 0 0-1.965-4.47ZM1.715 12C1.714 6.32 6.32 1.714 12 1.714c5.68 0 10.286 4.605 10.286 10.286 0 5.68-4.605 10.286-10.286 10.286C6.32 22.286 1.714 17.68 1.714 12ZM12 6.857a5.143 5.143 0 1 0 0 10.286 5.143 5.143 0 0 0 0-10.286Zm.654 1.589a.861.861 0 0 0-1.308 0L8.78 11.439a.861.861 0 0 0 0 1.122l2.566 2.993a.861.861 0 0 0 1.308 0l2.566-2.993a.861.861 0 0 0 0-1.122l-2.566-2.993ZM10.557 12 12 10.317 13.443 12 12 13.683 10.557 12Z",
3452
+ clipRule: "evenodd"
3453
+ })
3454
+ })
3455
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
3456
+ className: "sr-only",
3457
+ children: title
3458
+ })]
3459
+ });
3460
+ };
3461
+
3274
3462
  const GeneralFill = ({
3275
3463
  size = 16,
3276
3464
  className = undefined,
@@ -4474,6 +4662,41 @@ const Klarna = ({
4474
4662
  });
4475
4663
  };
4476
4664
 
4665
+ const Laptop = ({
4666
+ size = 16,
4667
+ className = undefined,
4668
+ title = undefined,
4669
+ filled = undefined,
4670
+ ...restProps
4671
+ }) => {
4672
+ if (filled) {
4673
+ console.warn('<Laptop filled /> is now deprecated, please use <LaptopFill /> or refer to https://transferwise.github.io/icons/ for more info.');
4674
+ }
4675
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
4676
+ className: `tw-icon tw-icon-laptop ${className ? className : ''}`,
4677
+ "aria-hidden": !title ? 'true' : undefined,
4678
+ role: !title ? 'presentation' : undefined,
4679
+ "data-testid": restProps['data-testid'] || 'laptop-icon',
4680
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
4681
+ width: String(size),
4682
+ height: String(size),
4683
+ fill: "currentColor",
4684
+ focusable: "false",
4685
+ viewBox: "0 0 24 24",
4686
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
4687
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
4688
+ fillRule: "evenodd",
4689
+ d: "M3 5.147c0-.476.386-.861.861-.861H20.14c.475 0 .861.385.861.861V15h.424c.476 0 .862.386.862.861v1.71a2.571 2.571 0 0 1-2.572 2.572H4.286a2.571 2.571 0 0 1-2.572-2.572v-1.71c0-.475.386-.861.862-.861H3V5.147ZM4.714 6v9h14.572V6H4.714ZM3.43 16.714v.857c0 .474.383.858.857.858h15.428a.857.857 0 0 0 .858-.858v-.857h-6.43v.429a.429.429 0 0 1-.428.428h-3a.429.429 0 0 1-.428-.428v-.429H3.429Z",
4690
+ clipRule: "evenodd"
4691
+ })
4692
+ })
4693
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
4694
+ className: "sr-only",
4695
+ children: title
4696
+ })]
4697
+ });
4698
+ };
4699
+
4477
4700
  const Leaf = ({
4478
4701
  size = 16,
4479
4702
  className = undefined,
@@ -5681,6 +5904,41 @@ const Passport = ({
5681
5904
  });
5682
5905
  };
5683
5906
 
5907
+ const Pause = ({
5908
+ size = 16,
5909
+ className = undefined,
5910
+ title = undefined,
5911
+ filled = undefined,
5912
+ ...restProps
5913
+ }) => {
5914
+ if (filled) {
5915
+ console.warn('<Pause filled /> is now deprecated, please use <PauseFill /> or refer to https://transferwise.github.io/icons/ for more info.');
5916
+ }
5917
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
5918
+ className: `tw-icon tw-icon-pause ${className ? className : ''}`,
5919
+ "aria-hidden": !title ? 'true' : undefined,
5920
+ role: !title ? 'presentation' : undefined,
5921
+ "data-testid": restProps['data-testid'] || 'pause-icon',
5922
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
5923
+ width: String(size),
5924
+ height: String(size),
5925
+ fill: "currentColor",
5926
+ focusable: "false",
5927
+ viewBox: "0 0 24 24",
5928
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
5929
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
5930
+ fillRule: "evenodd",
5931
+ d: "M12 20.572a8.571 8.571 0 1 0 0-17.143 8.571 8.571 0 0 0 0 17.143Zm0 1.714c5.68 0 10.286-4.605 10.286-10.286C22.286 6.32 17.68 1.714 12 1.714 6.32 1.714 1.714 6.32 1.714 12c0 5.68 4.605 10.286 10.286 10.286Zm.857-13.71c0-.003.002-.005.004-.005h1.706c.002 0 .004.002.004.005v6.848a.004.004 0 0 1-.004.004H12.86a.004.004 0 0 1-.004-.004V8.576ZM9.433 8.57a.004.004 0 0 0-.004.005v6.848c0 .003.002.004.004.004h1.706a.004.004 0 0 0 .004-.004V8.576a.004.004 0 0 0-.004-.005H9.433Z",
5932
+ clipRule: "evenodd"
5933
+ })
5934
+ })
5935
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
5936
+ className: "sr-only",
5937
+ children: title
5938
+ })]
5939
+ });
5940
+ };
5941
+
5684
5942
  const PayIn = ({
5685
5943
  size = 16,
5686
5944
  className = undefined,
@@ -5771,7 +6029,7 @@ const Payments = ({
5771
6029
  children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
5772
6030
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
5773
6031
  fillRule: "evenodd",
5774
- d: "m12 7.37-1.2 1.2-3.085-3.086v15.943H6V5.484L2.915 8.57l-1.2-1.2 4.543-4.543a.829.829 0 0 1 1.2 0L12 7.37Zm0 9.257 1.2-1.2 3.086 3.085V2.57H18v15.942l3.086-3.085 1.2 1.2-4.543 4.543a.829.829 0 0 1-1.2 0L12 16.627Z",
6032
+ d: "M6.857 3.43h4.359l-9.465 9.464 1.212 1.212 9.465-9.465v4.36h1.715V2.576a.861.861 0 0 0-.862-.861H6.857v1.714Zm10.286 17.142h-4.36l9.466-9.466-1.212-1.212-9.466 9.465V15H9.857v6.424c0 .476.386.862.861.862h6.425v-1.714Z",
5775
6033
  clipRule: "evenodd"
5776
6034
  })
5777
6035
  })
@@ -6060,6 +6318,41 @@ const PersonalCare = ({
6060
6318
  });
6061
6319
  };
6062
6320
 
6321
+ const Pets = ({
6322
+ size = 16,
6323
+ className = undefined,
6324
+ title = undefined,
6325
+ filled = undefined,
6326
+ ...restProps
6327
+ }) => {
6328
+ if (filled) {
6329
+ console.warn('<Pets filled /> is now deprecated, please use <PetsFill /> or refer to https://transferwise.github.io/icons/ for more info.');
6330
+ }
6331
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
6332
+ className: `tw-icon tw-icon-pets ${className ? className : ''}`,
6333
+ "aria-hidden": !title ? 'true' : undefined,
6334
+ role: !title ? 'presentation' : undefined,
6335
+ "data-testid": restProps['data-testid'] || 'pets-icon',
6336
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
6337
+ width: String(size),
6338
+ height: String(size),
6339
+ fill: "currentColor",
6340
+ focusable: "false",
6341
+ viewBox: "0 0 24 24",
6342
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
6343
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
6344
+ fillRule: "evenodd",
6345
+ d: "M15.166 5.143c-.28 0-.848.384-.848 1.334 0 .95.568 1.335.848 1.335s.847-.385.847-1.335-.567-1.334-.847-1.334Zm-2.562 1.334c0-1.47.959-3.048 2.562-3.048 1.602 0 2.561 1.578 2.561 3.048 0 1.471-.959 3.05-2.561 3.05-1.603 0-2.562-1.579-2.562-3.05Zm6.945 4.023c-.28 0-.848.385-.848 1.335s.568 1.334.848 1.334.847-.385.847-1.334c0-.95-.567-1.335-.847-1.335Zm-2.562 1.335c0-1.471.959-3.05 2.562-3.05 1.602 0 2.561 1.579 2.561 3.05 0 1.47-.959 3.048-2.561 3.048-1.603 0-2.562-1.578-2.562-3.048Zm-13.383 0c0-.95.567-1.335.847-1.335s.848.385.848 1.335-.568 1.334-.848 1.334-.847-.385-.847-1.334Zm.847-3.05c-1.602 0-2.561 1.579-2.561 3.05 0 1.47.959 3.048 2.561 3.048 1.603 0 2.562-1.578 2.562-3.048 0-1.471-.959-3.05-2.562-3.05Zm4.383-3.642c-.28 0-.847.384-.847 1.334 0 .95.567 1.335.847 1.335s.848-.385.848-1.335-.568-1.334-.848-1.334ZM6.273 6.477c0-1.47.959-3.048 2.561-3.048 1.603 0 2.562 1.578 2.562 3.048 0 1.471-.959 3.05-2.562 3.05-1.602 0-2.561-1.579-2.561-3.05Zm8.379 5.305c-.87-2.521-4.435-2.521-5.304 0l-.784 2.274c-.058.168-.157.32-.287.441l-1.241 1.16c-2.07 1.933-.297 5.365 2.477 4.798l2.268-.464c.144-.03.293-.03.437 0l2.269.464c2.774.567 4.546-2.865 2.477-4.798l-1.241-1.16a1.092 1.092 0 0 1-.287-.441l-.784-2.274Zm-3.683.559c.338-.98 1.724-.98 2.062 0l.784 2.273c.15.433.403.823.737 1.136l1.242 1.16c.804.751.115 2.086-.964 1.865l-2.268-.464a2.804 2.804 0 0 0-1.124 0l-2.269.464c-1.079.221-1.768-1.114-.963-1.866l1.241-1.16c.335-.312.588-.702.737-1.135l.785-2.273Z",
6346
+ clipRule: "evenodd"
6347
+ })
6348
+ })
6349
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
6350
+ className: "sr-only",
6351
+ children: title
6352
+ })]
6353
+ });
6354
+ };
6355
+
6063
6356
  const Phone = ({
6064
6357
  size = 16,
6065
6358
  className = undefined,
@@ -6299,6 +6592,41 @@ const Plane = ({
6299
6592
  });
6300
6593
  };
6301
6594
 
6595
+ const Play = ({
6596
+ size = 16,
6597
+ className = undefined,
6598
+ title = undefined,
6599
+ filled = undefined,
6600
+ ...restProps
6601
+ }) => {
6602
+ if (filled) {
6603
+ console.warn('<Play filled /> is now deprecated, please use <PlayFill /> or refer to https://transferwise.github.io/icons/ for more info.');
6604
+ }
6605
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
6606
+ className: `tw-icon tw-icon-play ${className ? className : ''}`,
6607
+ "aria-hidden": !title ? 'true' : undefined,
6608
+ role: !title ? 'presentation' : undefined,
6609
+ "data-testid": restProps['data-testid'] || 'play-icon',
6610
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
6611
+ width: String(size),
6612
+ height: String(size),
6613
+ fill: "currentColor",
6614
+ focusable: "false",
6615
+ viewBox: "0 0 24 24",
6616
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
6617
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
6618
+ fillRule: "evenodd",
6619
+ d: "M20.572 12a8.571 8.571 0 1 1-17.143 0 8.571 8.571 0 0 1 17.143 0Zm1.714 0c0 5.68-4.605 10.286-10.286 10.286C6.32 22.286 1.714 17.68 1.714 12 1.714 6.32 6.32 1.714 12 1.714c5.68 0 10.286 4.605 10.286 10.286Zm-6.263.805a.429.429 0 0 0 0-.753L9.848 8.691a.429.429 0 0 0-.634.376v6.723c0 .325.348.532.634.376l6.175-3.361Z",
6620
+ clipRule: "evenodd"
6621
+ })
6622
+ })
6623
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
6624
+ className: "sr-only",
6625
+ children: title
6626
+ })]
6627
+ });
6628
+ };
6629
+
6302
6630
  const PlusCircle = ({
6303
6631
  size = 16,
6304
6632
  className = undefined,
@@ -6997,6 +7325,41 @@ const Dont = ({
6997
7325
  });
6998
7326
  };
6999
7327
 
7328
+ const ScanQrCode = ({
7329
+ size = 16,
7330
+ className = undefined,
7331
+ title = undefined,
7332
+ filled = undefined,
7333
+ ...restProps
7334
+ }) => {
7335
+ if (filled) {
7336
+ console.warn('<ScanQrCode filled /> is now deprecated, please use <ScanQrCodeFill /> or refer to https://transferwise.github.io/icons/ for more info.');
7337
+ }
7338
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
7339
+ className: `tw-icon tw-icon-scan-qr-code ${className ? className : ''}`,
7340
+ "aria-hidden": !title ? 'true' : undefined,
7341
+ role: !title ? 'presentation' : undefined,
7342
+ "data-testid": restProps['data-testid'] || 'scan-qr-code-icon',
7343
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
7344
+ width: String(size),
7345
+ height: String(size),
7346
+ fill: "currentColor",
7347
+ focusable: "false",
7348
+ viewBox: "0 0 24 24",
7349
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
7350
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
7351
+ fillRule: "evenodd",
7352
+ d: "M2.576 1.714a.861.861 0 0 0-.862.862V8.57H3.43V3.43h5.143V1.714H2.575Zm18.848 20.572a.861.861 0 0 0 .862-.862V15.43H20.57v5.142h-5.143v1.715h5.996Zm0-20.572c.476 0 .862.386.862.862V8.57H20.57V3.43h-5.143V1.714h5.996Zm-19.71 19.71c0 .476.386.862.862.862H8.57V20.57H3.43v-5.143H1.714v5.996Zm12.857-13.71V9.43h1.714V7.714h-1.714ZM13.286 6a.429.429 0 0 0-.43.429v4.285c0 .237.193.429.43.429h4.285a.429.429 0 0 0 .429-.429V6.43A.429.429 0 0 0 17.57 6h-4.286ZM7.714 9.429V7.714H9.43V9.43H7.714ZM6 6.429C6 6.192 6.192 6 6.429 6h4.285c.237 0 .429.192.429.429v4.285a.429.429 0 0 1-.429.429H6.43A.429.429 0 0 1 6 10.714V6.43Zm1.714 8.142v1.714H9.43v-1.714H7.714ZM6.43 12.857a.429.429 0 0 0-.429.429v4.285c0 .237.192.429.429.429h4.285a.429.429 0 0 0 .429-.429v-4.286a.429.429 0 0 0-.429-.428H6.43ZM15 15h-2.143v-2.143H15V15Zm0 3h-2.143v-2.143H15V18Zm.857-3H18v-2.143h-2.143V15ZM18 18h-2.143v-2.143H18V18Z",
7353
+ clipRule: "evenodd"
7354
+ })
7355
+ })
7356
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
7357
+ className: "sr-only",
7358
+ children: title
7359
+ })]
7360
+ });
7361
+ };
7362
+
7000
7363
  const Search = ({
7001
7364
  size = 16,
7002
7365
  className = undefined,
@@ -7258,7 +7621,7 @@ const Slider = ({
7258
7621
  children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
7259
7622
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
7260
7623
  fillRule: "evenodd",
7261
- d: "M6 6.856a.857.857 0 0 0 .857-.837v-.04A.857.857 0 1 0 6 6.856Zm0 1.715c1.12 0 2.072-.716 2.425-1.714H21V5.143H8.425a2.572 2.572 0 0 0-4.85 0H3v1.714h.575A2.573 2.573 0 0 0 6 8.57Zm8.717 2.572a2.573 2.573 0 0 1 4.851 0H21v1.714h-1.432a2.572 2.572 0 0 1-4.85 0H3v-1.714h11.717ZM6.576 17.14a2.573 2.573 0 0 1 4.849 0H21v1.714h-9.574a2.572 2.572 0 0 1-4.851 0H3V17.14h3.576ZM18 11.999a.857.857 0 1 1-1.714 0A.857.857 0 0 1 18 12Zm-8.143 6a.857.857 0 1 1-1.714 0 .857.857 0 0 1 1.714 0Z",
7624
+ d: "M8.143 9.428a2.143 2.143 0 1 0 0-4.285 2.143 2.143 0 0 0 0 4.285Zm0 1.715a3.859 3.859 0 0 0 3.761-3H21V6.428h-9.095a3.859 3.859 0 0 0-7.524 0h-1.38v1.715h1.38c.39 1.717 1.926 3 3.762 3Zm7.714 7.714a2.143 2.143 0 1 0 0-4.286 2.143 2.143 0 0 0 0 4.286Zm0 1.714a3.859 3.859 0 0 0 3.762-3H21v-1.714H19.62a3.859 3.859 0 0 0-7.523 0H3v1.714h9.096c.39 1.718 1.925 3 3.761 3Z",
7262
7625
  clipRule: "evenodd"
7263
7626
  })
7264
7627
  })
@@ -7374,6 +7737,42 @@ const SoftwareAndWebHosting = ({
7374
7737
  });
7375
7738
  };
7376
7739
 
7740
+ const SpeechBubbleExclamation = ({
7741
+ size = 16,
7742
+ className = undefined,
7743
+ title = undefined,
7744
+ filled = undefined,
7745
+ ...restProps
7746
+ }) => {
7747
+ if (filled) {
7748
+ console.warn('<SpeechBubbleExclamation filled /> is now deprecated, please use <SpeechBubbleExclamationFill /> or refer to https://transferwise.github.io/icons/ for more info.');
7749
+ }
7750
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
7751
+ className: `tw-icon tw-icon-speech-bubble-exclamation ${className ? className : ''}`,
7752
+ "aria-hidden": !title ? 'true' : undefined,
7753
+ role: !title ? 'presentation' : undefined,
7754
+ "data-testid": restProps['data-testid'] || 'speech-bubble-exclamation-icon',
7755
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
7756
+ width: String(size),
7757
+ height: String(size),
7758
+ fill: "currentColor",
7759
+ focusable: "false",
7760
+ viewBox: "0 0 24 24",
7761
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
7762
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
7763
+ fillRule: "evenodd",
7764
+ d: "M2.571 3H21.43a.86.86 0 0 1 .857.857v12.857a.86.86 0 0 1-.857.857h-8.315l-4.928 3.3a.864.864 0 0 1-.472.129c-.128 0-.257 0-.385-.086a.903.903 0 0 1-.472-.771V17.57H2.572a.86.86 0 0 1-.858-.857V3.857A.86.86 0 0 1 2.571 3Zm10.286 12.857h7.715V4.714H3.428v11.143h4.285a.86.86 0 0 1 .857.857v1.843l3.815-2.571a.864.864 0 0 1 .471-.129Zm0-9.428h-1.714v4.285h1.714V6.43ZM12 14.144a1.286 1.286 0 1 0 0-2.572 1.286 1.286 0 0 0 0 2.572Z",
7765
+ clipRule: "evenodd",
7766
+ style: "fill:#f0f;fill:color(display-p3 1 0 1);fill-opacity:1"
7767
+ })
7768
+ })
7769
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
7770
+ className: "sr-only",
7771
+ children: title
7772
+ })]
7773
+ });
7774
+ };
7775
+
7377
7776
  const SpeechBubbleMessage = ({
7378
7777
  size = 16,
7379
7778
  className = undefined,
@@ -8478,6 +8877,41 @@ const OfficeExpenses = ({
8478
8877
  });
8479
8878
  };
8480
8879
 
8880
+ const Stop = ({
8881
+ size = 16,
8882
+ className = undefined,
8883
+ title = undefined,
8884
+ filled = undefined,
8885
+ ...restProps
8886
+ }) => {
8887
+ if (filled) {
8888
+ console.warn('<Stop filled /> is now deprecated, please use <StopFill /> or refer to https://transferwise.github.io/icons/ for more info.');
8889
+ }
8890
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
8891
+ className: `tw-icon tw-icon-stop ${className ? className : ''}`,
8892
+ "aria-hidden": !title ? 'true' : undefined,
8893
+ role: !title ? 'presentation' : undefined,
8894
+ "data-testid": restProps['data-testid'] || 'stop-icon',
8895
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
8896
+ width: String(size),
8897
+ height: String(size),
8898
+ fill: "currentColor",
8899
+ focusable: "false",
8900
+ viewBox: "0 0 24 24",
8901
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
8902
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
8903
+ fillRule: "evenodd",
8904
+ d: "M20.572 12a8.571 8.571 0 1 1-17.143 0 8.571 8.571 0 0 1 17.143 0Zm1.714 0c0 5.68-4.605 10.286-10.286 10.286C6.32 22.286 1.714 17.68 1.714 12 1.714 6.32 6.32 1.714 12 1.714c5.68 0 10.286 4.605 10.286 10.286ZM9 8.571A.429.429 0 0 0 8.57 9v6c0 .237.192.428.429.428h6a.428.428 0 0 0 .428-.428V9A.429.429 0 0 0 15 8.57H9Z",
8905
+ clipRule: "evenodd"
8906
+ })
8907
+ })
8908
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
8909
+ className: "sr-only",
8910
+ children: title
8911
+ })]
8912
+ });
8913
+ };
8914
+
8481
8915
  const Suitcase = ({
8482
8916
  size = 16,
8483
8917
  className = undefined,
@@ -8618,6 +9052,41 @@ const Switch = ({
8618
9052
  });
8619
9053
  };
8620
9054
 
9055
+ const Takeaway = ({
9056
+ size = 16,
9057
+ className = undefined,
9058
+ title = undefined,
9059
+ filled = undefined,
9060
+ ...restProps
9061
+ }) => {
9062
+ if (filled) {
9063
+ console.warn('<Takeaway filled /> is now deprecated, please use <TakeawayFill /> or refer to https://transferwise.github.io/icons/ for more info.');
9064
+ }
9065
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
9066
+ className: `tw-icon tw-icon-takeaway ${className ? className : ''}`,
9067
+ "aria-hidden": !title ? 'true' : undefined,
9068
+ role: !title ? 'presentation' : undefined,
9069
+ "data-testid": restProps['data-testid'] || 'takeaway-icon',
9070
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
9071
+ width: String(size),
9072
+ height: String(size),
9073
+ fill: "currentColor",
9074
+ focusable: "false",
9075
+ viewBox: "0 0 24 24",
9076
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
9077
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
9078
+ fillRule: "evenodd",
9079
+ d: "M19.483 5.143h.66c.71 0 1.285.576 1.285 1.286v3.428c0 .71-.575 1.286-1.285 1.286h-.546l-1.484 10.045a1.286 1.286 0 0 1-1.272 1.098H7.158a1.286 1.286 0 0 1-1.272-1.098L4.403 11.143h-.546c-.71 0-1.286-.576-1.286-1.286V6.43c0-.71.576-1.286 1.286-1.286h.66l.811-2.535c.17-.532.666-.894 1.225-.894h10.894c.56 0 1.054.362 1.225.894l.81 2.535Zm-1.8 0-.549-1.714H6.866l-.549 1.714h11.366Zm.587 1.714h1.444V9.43H4.286V6.857H18.269ZM7.528 20.572l-1.392-9.43h11.728l-1.393 9.43H7.528Z",
9080
+ clipRule: "evenodd"
9081
+ })
9082
+ })
9083
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
9084
+ className: "sr-only",
9085
+ children: title
9086
+ })]
9087
+ });
9088
+ };
9089
+
8621
9090
  const Target = ({
8622
9091
  size = 16,
8623
9092
  className = undefined,
@@ -8684,6 +9153,41 @@ const Marketing = ({
8684
9153
  });
8685
9154
  };
8686
9155
 
9156
+ const Taxi = ({
9157
+ size = 16,
9158
+ className = undefined,
9159
+ title = undefined,
9160
+ filled = undefined,
9161
+ ...restProps
9162
+ }) => {
9163
+ if (filled) {
9164
+ console.warn('<Taxi filled /> is now deprecated, please use <TaxiFill /> or refer to https://transferwise.github.io/icons/ for more info.');
9165
+ }
9166
+ return /*#__PURE__*/jsxRuntime.jsxs("span", {
9167
+ className: `tw-icon tw-icon-taxi ${className ? className : ''}`,
9168
+ "aria-hidden": !title ? 'true' : undefined,
9169
+ role: !title ? 'presentation' : undefined,
9170
+ "data-testid": restProps['data-testid'] || 'taxi-icon',
9171
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
9172
+ width: String(size),
9173
+ height: String(size),
9174
+ fill: "currentColor",
9175
+ focusable: "false",
9176
+ viewBox: "0 0 24 24",
9177
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
9178
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
9179
+ fillRule: "evenodd",
9180
+ d: "M9 1.714a.429.429 0 0 0-.428.429V3c0 .237.191.429.428.429h6A.429.429 0 0 0 15.43 3v-.857A.429.429 0 0 0 15 1.714H9ZM5.954 4.41a.861.861 0 0 1 .804-.553h10.484c.357 0 .677.22.804.553L19.81 9h2.047c.237 0 .429.192.429.429v.857a.429.429 0 0 1-.429.428h-.962l.047.056 1.064 1.335c.181.228.28.51.28.801v3.48a.862.862 0 0 1-.188.536L21 18.3v3.124a.861.861 0 0 1-.861.862h-2.992a.861.861 0 0 1-.861-.862v-2.567H7.714v2.567a.861.861 0 0 1-.861.862H3.862A.861.861 0 0 1 3 21.424V18.3l-1.098-1.378a.862.862 0 0 1-.188-.537v-3.479c0-.29.1-.573.28-.801l1.064-1.335.047-.056h-.962a.429.429 0 0 1-.429-.428v-.857c0-.237.192-.429.429-.429H4.19l1.763-4.59ZM19.708 12h.022l.841 1.056v3.03l-.841 1.057H4.27l-.841-1.056v-3.03L4.27 12h15.438Zm-3.052-6.428 1.811 4.714H5.533l1.811-4.714h9.312Zm2.63 13.285H18v1.715h1.286v-1.715ZM6 18.857H4.714v1.715H6v-1.715Zm-.428-3.428a.857.857 0 1 0 0-1.715.857.857 0 0 0 0 1.715Zm13.714-.857a.857.857 0 1 1-1.714 0 .857.857 0 0 1 1.714 0Z",
9181
+ clipRule: "evenodd"
9182
+ })
9183
+ })
9184
+ }), title && /*#__PURE__*/jsxRuntime.jsx("span", {
9185
+ className: "sr-only",
9186
+ children: title
9187
+ })]
9188
+ });
9189
+ };
9190
+
8687
9191
  const Team = ({
8688
9192
  size = 16,
8689
9193
  className = undefined,
@@ -8813,7 +9317,7 @@ const Transport = ({
8813
9317
  children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
8814
9318
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
8815
9319
  fillRule: "evenodd",
8816
- d: "M6.214 1.715h11.572c1.543 0 2.786 1.157 2.786 2.571v13.715a.86.86 0 0 1-.858.857v2.571a.86.86 0 0 1-.857.857h-2.571a.86.86 0 0 1-.857-.857v-2.571H8.572v2.571a.86.86 0 0 1-.858.857H5.143a.86.86 0 0 1-.857-.857v-2.571A.86.86 0 0 1 3.429 18V4.286c0-1.414 1.243-2.571 2.785-2.571Zm11.572 1.714H6.214c-.6 0-1.071.386-1.071.857v1.715h13.714V4.286c0-.471-.471-.857-1.071-.857ZM5.143 12.001h13.714V7.715H5.143V12ZM6 20.572h.857v-1.714H6v1.714Zm-.857-6.857v3.428h13.714v-3.428H5.143Zm12 6.857H18v-1.714h-.857v1.714ZM6.857 16.285a.857.857 0 1 0 0-1.715.857.857 0 0 0 0 1.715Zm10.286 0a.857.857 0 1 0 0-1.715.857.857 0 0 0 0 1.715Z",
9320
+ d: "M3.429 4.286A2.571 2.571 0 0 1 6 1.714h12a2.571 2.571 0 0 1 2.572 2.572v13.71c0 .474-.384.859-.858.861v2.567a.861.861 0 0 1-.861.862h-2.991a.861.861 0 0 1-.862-.862v-2.567H9v2.567a.861.861 0 0 1-.861.862H5.147a.861.861 0 0 1-.861-.862v-2.567a.861.861 0 0 1-.857-.861V4.286Zm1.714 12.857v-3.429h13.714v3.429H5.143Zm13.714-9.429V12H5.143V7.714h13.714Zm0-1.714H5.143V4.286c0-.474.384-.857.857-.857h12c.474 0 .857.383.857.857V6ZM6 20.572v-1.715h1.286v1.715H6Zm10.714 0v-1.715H18v1.715h-1.286Zm-9-5.143a.857.857 0 1 1-1.714 0 .857.857 0 0 1 1.714 0Zm10.286 0a.857.857 0 1 1-1.714 0 .857.857 0 0 1 1.714 0Z",
8817
9321
  clipRule: "evenodd"
8818
9322
  })
8819
9323
  })
@@ -9210,6 +9714,8 @@ exports.Activity = Activity;
9210
9714
  exports.Alert = Alert;
9211
9715
  exports.AlertCircle = AlertCircle;
9212
9716
  exports.AlertCircleFill = AlertCircleFill;
9717
+ exports.ArrowDiagonalDown = ArrowDiagonalDown;
9718
+ exports.ArrowDiagonalUp = ArrowDiagonalUp;
9213
9719
  exports.ArrowDown = ArrowDown;
9214
9720
  exports.ArrowLeft = ArrowLeft;
9215
9721
  exports.ArrowRight = ArrowRight;
@@ -9218,6 +9724,7 @@ exports.Atm = Atm;
9218
9724
  exports.AutoConvert = AutoConvert;
9219
9725
  exports.Balance = Balance;
9220
9726
  exports.Bank = Bank;
9727
+ exports.BankStrikethrough = BankStrikethrough;
9221
9728
  exports.BankTransfer = BankTransfer;
9222
9729
  exports.BarChart = BarChart;
9223
9730
  exports.Barcode = Barcode;
@@ -9255,6 +9762,7 @@ exports.ChevronRight = ChevronRight;
9255
9762
  exports.ChevronUp = ChevronUp;
9256
9763
  exports.Chip = Chip;
9257
9764
  exports.ChipPin = ChipPin;
9765
+ exports.ClickToPay = ClickToPay;
9258
9766
  exports.Clock = Clock;
9259
9767
  exports.ClockBorderless = ClockBorderless;
9260
9768
  exports.ClockFill = ClockFill;
@@ -9305,6 +9813,7 @@ exports.Feedback = Feedback;
9305
9813
  exports.Fingerprint = Fingerprint;
9306
9814
  exports.Fpx = Fpx;
9307
9815
  exports.Freeze = Freeze;
9816
+ exports.Gambling = Gambling;
9308
9817
  exports.General = General;
9309
9818
  exports.GeneralFill = GeneralFill;
9310
9819
  exports.GeneralFilled = GeneralFilled;
@@ -9338,6 +9847,7 @@ exports.Invite = Invite;
9338
9847
  exports.Jar = Jar;
9339
9848
  exports.Keep = Keep;
9340
9849
  exports.Klarna = Klarna;
9850
+ exports.Laptop = Laptop;
9341
9851
  exports.Leaf = Leaf;
9342
9852
  exports.Lightning = Lightning;
9343
9853
  exports.LightningBolt = LightningBolt;
@@ -9373,6 +9883,7 @@ exports.Padlock = Padlock;
9373
9883
  exports.PadlockUnlocked = PadlockUnlocked;
9374
9884
  exports.Paperclip = Paperclip;
9375
9885
  exports.Passport = Passport;
9886
+ exports.Pause = Pause;
9376
9887
  exports.PayIn = PayIn;
9377
9888
  exports.Payments = Payments;
9378
9889
  exports.Paypal = Paypal;
@@ -9382,6 +9893,7 @@ exports.People = People;
9382
9893
  exports.PercentageCircle = PercentageCircle;
9383
9894
  exports.Person = Person;
9384
9895
  exports.PersonalCare = PersonalCare;
9896
+ exports.Pets = Pets;
9385
9897
  exports.Phone = Phone;
9386
9898
  exports.Picture = Picture;
9387
9899
  exports.PieChart = PieChart;
@@ -9389,6 +9901,7 @@ exports.PiggyBank = PiggyBank;
9389
9901
  exports.PinCode = PinCode;
9390
9902
  exports.Pix = Pix;
9391
9903
  exports.Plane = Plane;
9904
+ exports.Play = Play;
9392
9905
  exports.Plus = Plus;
9393
9906
  exports.PlusCircle = PlusCircle;
9394
9907
  exports.Profile = Profile;
@@ -9412,6 +9925,7 @@ exports.SadEmoji = SadEmoji;
9412
9925
  exports.Salary = Salary;
9413
9926
  exports.SalesAndRoyalties = SalesAndRoyalties;
9414
9927
  exports.Savings = Savings;
9928
+ exports.ScanQrCode = ScanQrCode;
9415
9929
  exports.Search = Search;
9416
9930
  exports.Send = Send;
9417
9931
  exports.Settings = Settings;
@@ -9424,6 +9938,7 @@ exports.Sofort = Sofort;
9424
9938
  exports.SoftwareAndHosting = SoftwareAndHosting;
9425
9939
  exports.SoftwareAndWebHosting = SoftwareAndWebHosting;
9426
9940
  exports.SpeechBubble = SpeechBubble;
9941
+ exports.SpeechBubbleExclamation = SpeechBubbleExclamation;
9427
9942
  exports.SpeechBubbleMessage = SpeechBubbleMessage;
9428
9943
  exports.SpeechBubblePending = SpeechBubblePending;
9429
9944
  exports.SpeechBubbles = SpeechBubbles;
@@ -9450,11 +9965,14 @@ exports.SplitMoney = SplitMoney;
9450
9965
  exports.Star = Star;
9451
9966
  exports.StarFill = StarFill;
9452
9967
  exports.Stationery = Stationery;
9968
+ exports.Stop = Stop;
9453
9969
  exports.Suitcase = Suitcase;
9454
9970
  exports.Sunglasses = Sunglasses;
9455
9971
  exports.Switch = Switch;
9972
+ exports.Takeaway = Takeaway;
9456
9973
  exports.Target = Target;
9457
9974
  exports.Tax = Tax;
9975
+ exports.Taxi = Taxi;
9458
9976
  exports.Team = Team;
9459
9977
  exports.Theme = Theme;
9460
9978
  exports.Transfer = Transfer;