@transferwise/icons 3.19.1 → 3.21.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 (33) hide show
  1. package/build/angular/components/backslash-circle-icon.component.ts +20 -0
  2. package/build/angular/components/fido-passkey-icon.component.ts +20 -0
  3. package/build/angular/components/icon.component.ts +3 -0
  4. package/build/angular/components/tags-icon.component.ts +20 -0
  5. package/build/angular/index.ts +6 -0
  6. package/build/components/backslash-circle.tsx +52 -0
  7. package/build/components/fido-passkey.tsx +52 -0
  8. package/build/components/tags.tsx +52 -0
  9. package/build/icons.json +21 -0
  10. package/build/index.ts +3 -0
  11. package/lib/angular/components/backslash-circle-icon.component.d.ts +7 -0
  12. package/lib/angular/components/backslash-circle-icon.component.d.ts.map +1 -0
  13. package/lib/angular/components/fido-passkey-icon.component.d.ts +7 -0
  14. package/lib/angular/components/fido-passkey-icon.component.d.ts.map +1 -0
  15. package/lib/angular/components/icon.component.d.ts.map +1 -1
  16. package/lib/angular/components/tags-icon.component.d.ts +7 -0
  17. package/lib/angular/components/tags-icon.component.d.ts.map +1 -0
  18. package/lib/angular/index.d.ts.map +1 -1
  19. package/lib/angular/index.js +64 -1
  20. package/lib/angular/index.js.map +1 -1
  21. package/lib/components/backslash-circle.d.ts +13 -0
  22. package/lib/components/backslash-circle.d.ts.map +1 -0
  23. package/lib/components/fido-passkey.d.ts +13 -0
  24. package/lib/components/fido-passkey.d.ts.map +1 -0
  25. package/lib/components/tags.d.ts +13 -0
  26. package/lib/components/tags.d.ts.map +1 -0
  27. package/lib/index.d.ts +3 -0
  28. package/lib/index.d.ts.map +1 -1
  29. package/lib/index.esm.js +112 -1
  30. package/lib/index.esm.js.map +1 -1
  31. package/lib/index.js +114 -0
  32. package/lib/index.js.map +1 -1
  33. 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,
@@ -3535,6 +3570,43 @@ const Female = ({
3535
3570
  });
3536
3571
  };
3537
3572
 
3573
+ const FidoPasskey = ({
3574
+ className = undefined,
3575
+ isFocusable = false,
3576
+ filled = undefined,
3577
+ title = undefined,
3578
+ role = undefined,
3579
+ size = 16,
3580
+ ...restProps
3581
+ }) => {
3582
+ if (filled) {
3583
+ console.warn("<FidoPasskey filled /> is now deprecated, please use <FidoPasskeyFill /> or refer to https://transferwise.github.io/icons/ for more info.");
3584
+ }
3585
+ return /*#__PURE__*/jsxRuntime.jsx("span", {
3586
+ className: `tw-icon tw-icon-fido-passkey ${className ? className : ''}`,
3587
+ "data-testid": restProps['data-testid'] || 'fido-passkey-icon',
3588
+ children: /*#__PURE__*/jsxRuntime.jsx("svg", {
3589
+ "aria-label": title,
3590
+ "aria-hidden": !title ? true : undefined,
3591
+ focusable: isFocusable,
3592
+ role: role ?? (title ? 'graphics-symbol img' : 'none'),
3593
+ width: String(size),
3594
+ height: String(size),
3595
+ fill: "currentColor",
3596
+ viewBox: "0 0 24 24",
3597
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
3598
+ children: [/*#__PURE__*/jsxRuntime.jsx("path", {
3599
+ fillRule: "evenodd",
3600
+ d: "M16.82 6.574c1.976-.01 3.578 1.673 3.578 3.729 0 1.637-1.006 3.025-2.403 3.533l.845 1.406-1.254 1.54 1.255 1.504L16.82 21l-1.425-1.522v-5.74c-1.264-.578-2.153-1.896-2.153-3.426 0-2.065 1.601-3.738 3.577-3.738m0 2.687c-.48 0-.863.4-.863.9 0 .489.383.898.863.898s.863-.4.863-.899c0-.498-.382-.899-.863-.899",
3601
+ clipRule: "evenodd"
3602
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
3603
+ d: "M12.166 10.347c0 1.602.738 3.186 2.056 4.067v1.3c0 .658-.525 1.192-1.175 1.192h-8.25c-.65 0-1.175-.534-1.175-1.192v-2.982c0-1.317 1.05-2.385 2.35-2.385zM8.472 3.067c.623-.115 1.237-.089 1.843.134.899.338 1.504.979 1.78 1.922.284.952.24 1.914-.187 2.812-.445.944-1.21 1.451-2.19 1.647l-.24.053a3.4 3.4 0 0 1-.854 0c-.285-.053-.57-.107-.846-.222-1.023-.427-1.62-1.22-1.815-2.34-.134-.766-.071-1.532.24-2.244.445-1.023 1.228-1.575 2.27-1.762"
3604
+ })]
3605
+ })
3606
+ })
3607
+ });
3608
+ };
3609
+
3538
3610
  const Fingerprint = ({
3539
3611
  className = undefined,
3540
3612
  isFocusable = false,
@@ -9629,6 +9701,45 @@ const Switch = ({
9629
9701
  });
9630
9702
  };
9631
9703
 
9704
+ const Tags = ({
9705
+ className = undefined,
9706
+ isFocusable = false,
9707
+ filled = undefined,
9708
+ title = undefined,
9709
+ role = undefined,
9710
+ size = 16,
9711
+ ...restProps
9712
+ }) => {
9713
+ if (filled) {
9714
+ console.warn("<Tags filled /> is now deprecated, please use <TagsFill /> or refer to https://transferwise.github.io/icons/ for more info.");
9715
+ }
9716
+ return /*#__PURE__*/jsxRuntime.jsx("span", {
9717
+ className: `tw-icon tw-icon-tags ${className ? className : ''}`,
9718
+ "data-testid": restProps['data-testid'] || 'tags-icon',
9719
+ children: /*#__PURE__*/jsxRuntime.jsx("svg", {
9720
+ "aria-label": title,
9721
+ "aria-hidden": !title ? true : undefined,
9722
+ focusable: isFocusable,
9723
+ role: role ?? (title ? 'graphics-symbol img' : 'none'),
9724
+ width: String(size),
9725
+ height: String(size),
9726
+ fill: "currentColor",
9727
+ viewBox: "0 0 24 24",
9728
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
9729
+ children: [/*#__PURE__*/jsxRuntime.jsx("path", {
9730
+ d: "M9.749 8.894a1.5 1.5 0 1 1-.033-3 1.5 1.5 0 0 1 .033 3"
9731
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
9732
+ fillRule: "evenodd",
9733
+ d: "M4.27 5.328a2 2 0 0 1 .466-1.318l.718-.86a2 2 0 0 1 1.216-.69l4.056-.656a2 2 0 0 1 1.602.44l6.947 5.809a2 2 0 0 1 .251 2.817l-4.701 5.623a2 2 0 0 1-2.818.251L5.06 10.936a2 2 0 0 1-.717-1.5zm2.719-.894-.719.859.073 4.108 6.947 5.81 4.702-5.624-6.947-5.809z",
9734
+ clipRule: "evenodd"
9735
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
9736
+ d: "m10.992 21.134-7.326-6.103 1.28-1.537 7.326 6.104a2 2 0 0 0 2.819-.258l5.257-6.323 1.538 1.279-5.258 6.323a4 4 0 0 1-5.636.515"
9737
+ })]
9738
+ })
9739
+ })
9740
+ });
9741
+ };
9742
+
9632
9743
  const Takeaway = ({
9633
9744
  className = undefined,
9634
9745
  isFocusable = false,
@@ -10440,6 +10551,7 @@ exports.ArrowRight = ArrowRight;
10440
10551
  exports.ArrowUp = ArrowUp;
10441
10552
  exports.Atm = Atm;
10442
10553
  exports.AutoConvert = AutoConvert;
10554
+ exports.BackslashCircle = BackslashCircle;
10443
10555
  exports.Balance = Balance;
10444
10556
  exports.Bank = Bank;
10445
10557
  exports.BankStrikethrough = BankStrikethrough;
@@ -10532,6 +10644,7 @@ exports.Family = Family;
10532
10644
  exports.FastFlag = FastFlag;
10533
10645
  exports.Feedback = Feedback;
10534
10646
  exports.Female = Female;
10647
+ exports.FidoPasskey = FidoPasskey;
10535
10648
  exports.Fingerprint = Fingerprint;
10536
10649
  exports.Fpx = Fpx;
10537
10650
  exports.Freeze = Freeze;
@@ -10699,6 +10812,7 @@ exports.Sun = Sun;
10699
10812
  exports.Sunglasses = Sunglasses;
10700
10813
  exports.Switch = Switch;
10701
10814
  exports.SwitchVertical = SwitchVertical;
10815
+ exports.Tags = Tags;
10702
10816
  exports.Takeaway = Takeaway;
10703
10817
  exports.Target = Target;
10704
10818
  exports.Tax = Tax;