@transferwise/icons 3.19.1 → 3.20.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/build/angular/components/backslash-circle-icon.component.ts +20 -0
- package/build/angular/components/icon.component.ts +1 -0
- package/build/angular/index.ts +2 -0
- package/build/components/backslash-circle.tsx +52 -0
- package/build/icons.json +7 -0
- package/build/index.ts +1 -0
- package/lib/angular/components/backslash-circle-icon.component.d.ts +7 -0
- package/lib/angular/components/backslash-circle-icon.component.d.ts.map +1 -0
- package/lib/angular/components/icon.component.d.ts.map +1 -1
- package/lib/angular/index.d.ts.map +1 -1
- package/lib/angular/index.js +22 -1
- package/lib/angular/index.js.map +1 -1
- package/lib/components/backslash-circle.d.ts +13 -0
- package/lib/components/backslash-circle.d.ts.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.esm.js +36 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +36 -0
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
@@ -387,6 +387,41 @@ const AutoConvert = ({
|
|
387
387
|
});
|
388
388
|
};
|
389
389
|
|
390
|
+
const BackslashCircle = ({
|
391
|
+
className = undefined,
|
392
|
+
isFocusable = false,
|
393
|
+
filled = undefined,
|
394
|
+
title = undefined,
|
395
|
+
role = undefined,
|
396
|
+
size = 16,
|
397
|
+
...restProps
|
398
|
+
}) => {
|
399
|
+
if (filled) {
|
400
|
+
console.warn("<BackslashCircle filled /> is now deprecated, please use <BackslashCircleFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
401
|
+
}
|
402
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
403
|
+
className: `tw-icon tw-icon-backslash-circle ${className ? className : ''}`,
|
404
|
+
"data-testid": restProps['data-testid'] || 'backslash-circle-icon',
|
405
|
+
children: /*#__PURE__*/jsxRuntime.jsx("svg", {
|
406
|
+
"aria-label": title,
|
407
|
+
"aria-hidden": !title ? true : undefined,
|
408
|
+
focusable: isFocusable,
|
409
|
+
role: role ?? (title ? 'graphics-symbol img' : 'none'),
|
410
|
+
width: String(size),
|
411
|
+
height: String(size),
|
412
|
+
fill: "currentColor",
|
413
|
+
viewBox: "0 0 24 24",
|
414
|
+
children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
415
|
+
children: /*#__PURE__*/jsxRuntime.jsx("path", {
|
416
|
+
fillRule: "evenodd",
|
417
|
+
d: "M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2M7.094 5.68A8 8 0 0 1 18.32 16.905zM5.68 7.094A8 8 0 0 0 16.905 18.32z",
|
418
|
+
clipRule: "evenodd"
|
419
|
+
})
|
420
|
+
})
|
421
|
+
})
|
422
|
+
});
|
423
|
+
};
|
424
|
+
|
390
425
|
const BankStrikethrough = ({
|
391
426
|
className = undefined,
|
392
427
|
isFocusable = false,
|
@@ -10440,6 +10475,7 @@ exports.ArrowRight = ArrowRight;
|
|
10440
10475
|
exports.ArrowUp = ArrowUp;
|
10441
10476
|
exports.Atm = Atm;
|
10442
10477
|
exports.AutoConvert = AutoConvert;
|
10478
|
+
exports.BackslashCircle = BackslashCircle;
|
10443
10479
|
exports.Balance = Balance;
|
10444
10480
|
exports.Bank = Bank;
|
10445
10481
|
exports.BankStrikethrough = BankStrikethrough;
|