@transferwise/icons 4.4.4 → 4.4.6

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/lib/index.js CHANGED
@@ -424,6 +424,51 @@ const AutoConvert = ({
424
424
  });
425
425
  };
426
426
 
427
+ const BPay = ({
428
+ className = undefined,
429
+ isFocusable = false,
430
+ filled = undefined,
431
+ title = undefined,
432
+ role = undefined,
433
+ size = 16,
434
+ ...restProps
435
+ }) => {
436
+ if (filled) {
437
+ console.warn("<BPay filled /> is now deprecated, please use <BPayFill /> or refer to https://transferwise.github.io/icons/ for more info.");
438
+ }
439
+ return /*#__PURE__*/jsxRuntime.jsx("span", {
440
+ className: `tw-icon tw-icon-b-pay ${className ? className : ''}`,
441
+ "data-testid": restProps['data-testid'] || 'b-pay-icon',
442
+ children: /*#__PURE__*/jsxRuntime.jsx("svg", {
443
+ "aria-label": title,
444
+ "aria-hidden": !title ? true : undefined,
445
+ focusable: isFocusable,
446
+ role: role ?? (title ? 'graphics-symbol img' : 'none'),
447
+ width: String(size),
448
+ height: String(size),
449
+ fill: "currentColor",
450
+ viewBox: "0 0 24 24",
451
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
452
+ children: [/*#__PURE__*/jsxRuntime.jsx("path", {
453
+ fillRule: "evenodd",
454
+ d: "M12.105 16.423c.163 0 .196.055.242.14h.002c.04.084 1.25 3.074 1.25 3.074.003.006.068.129-.112.129-.184 0-.221.003-.304.003-.084 0-.18-.015-.225-.134-.04-.105-.22-.562-.22-.562H11.04s-.181.457-.22.562c-.046.12-.142.134-.225.134-.08 0-.123-.003-.305-.003-.177 0-.115-.123-.111-.13 0 0 1.209-2.99 1.25-3.073.045-.085.079-.14.243-.14zm-.818 2.102h1.24l-.638-1.554z",
455
+ clipRule: "evenodd"
456
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
457
+ d: "M16.028 16.42c.183 0 .112.128.112.128-.006.009-.68 1.096-1.22 1.975l.004 1.126c0 .112-.101.117-.157.117h-.318c-.086 0-.13-.046-.13-.12l.01-1.122-1.218-1.975s-.075-.129.11-.13c.186 0 .265-.002.348-.002.084 0 .18.014.225.133l.166.272.665 1.073.665-1.073.166-.272c.046-.119.141-.133.225-.133.079 0 .162.003.347.003"
458
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
459
+ fillRule: "evenodd",
460
+ d: "M9.213 16.42c.646.001 1.17.48 1.17 1.07s-.523 1.07-1.17 1.07h-.864v1.104c0 .058-.061.1-.118.1h-.34c-.013 0-.14.006-.141-.12v-3.08c0-.054.017-.141.132-.141h1.332zm-.863.552v1.057h.855c.319 0 .578-.236.578-.529 0-.292-.258-.528-.578-.528z",
461
+ clipRule: "evenodd"
462
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
463
+ fillRule: "evenodd",
464
+ d: "M18.79 2c.39 0 .71.292.71.65v18.7c0 .359-.32.65-.71.65H5.21c-.39 0-.71-.291-.71-.65V2.65c0-.358.32-.65.71-.65zm-8.81.928v2.036h2.106c2.164 0 3.68 1.107 3.68 3.057 0 .733-.424 1.476-.986 1.931.9.523 1.495 1.44 1.495 2.488 0 1.596-1.387 2.892-3.123 2.944H8.075c-.196-.017-.323-.128-.323-.34v-7.54l1.505-.501h-3.74v13.764c0 .162.14.294.315.303l.024.002h12.268c.267-.005.36-.163.36-.33l.003-.003V3.257c0-.162-.082-.33-.36-.33zm-.036 10.034c.01.21.146.319.356.324l2.818-.002c.636-.05 1.14-.535 1.14-1.132 0-.628-.558-1.14-1.25-1.14h-1.04c-.215 0-.352-.107-.368-.313V9.41c.007-.188.125-.309.35-.317l.418-.02c.636 0 1.15-.473 1.15-1.05 0-.576-.512-1.075-1.15-1.075H9.944zM5.827 2.928c-.171.012-.31.143-.31.306v1.73H7.75V2.928z",
465
+ clipRule: "evenodd"
466
+ })]
467
+ })
468
+ })
469
+ });
470
+ };
471
+
427
472
  const Backpack = ({
428
473
  className = undefined,
429
474
  isFocusable = false,
@@ -1622,6 +1667,43 @@ const CardNumber = ({
1622
1667
  });
1623
1668
  };
1624
1669
 
1670
+ const CardPlus = ({
1671
+ className = undefined,
1672
+ isFocusable = false,
1673
+ filled = undefined,
1674
+ title = undefined,
1675
+ role = undefined,
1676
+ size = 16,
1677
+ ...restProps
1678
+ }) => {
1679
+ if (filled) {
1680
+ console.warn("<CardPlus filled /> is now deprecated, please use <CardPlusFill /> or refer to https://transferwise.github.io/icons/ for more info.");
1681
+ }
1682
+ return /*#__PURE__*/jsxRuntime.jsx("span", {
1683
+ className: `tw-icon tw-icon-card-plus ${className ? className : ''}`,
1684
+ "data-testid": restProps['data-testid'] || 'card-plus-icon',
1685
+ children: /*#__PURE__*/jsxRuntime.jsx("svg", {
1686
+ "aria-label": title,
1687
+ "aria-hidden": !title ? true : undefined,
1688
+ focusable: isFocusable,
1689
+ role: role ?? (title ? 'graphics-symbol img' : 'none'),
1690
+ width: String(size),
1691
+ height: String(size),
1692
+ fill: "currentColor",
1693
+ viewBox: "0 0 24 24",
1694
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1695
+ children: [/*#__PURE__*/jsxRuntime.jsx("path", {
1696
+ d: "M20 17h3v2h-3v3h-2v-3h-3v-2h3v-3h2z"
1697
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
1698
+ fillRule: "evenodd",
1699
+ d: "M20 3.996a2 2 0 0 1 2 2v6h-2v-2H4v8h9.016v2H4a2 2 0 0 1-2-2v-12a2 2 0 0 1 2-2zm-16 4h16v-2H4z",
1700
+ clipRule: "evenodd"
1701
+ })]
1702
+ })
1703
+ })
1704
+ });
1705
+ };
1706
+
1625
1707
  const CardStrikethrough = ({
1626
1708
  className = undefined,
1627
1709
  isFocusable = false,
@@ -5310,6 +5392,41 @@ const Limit = ({
5310
5392
  });
5311
5393
  };
5312
5394
 
5395
+ const LinkPlus = ({
5396
+ className = undefined,
5397
+ isFocusable = false,
5398
+ filled = undefined,
5399
+ title = undefined,
5400
+ role = undefined,
5401
+ size = 16,
5402
+ ...restProps
5403
+ }) => {
5404
+ if (filled) {
5405
+ console.warn("<LinkPlus filled /> is now deprecated, please use <LinkPlusFill /> or refer to https://transferwise.github.io/icons/ for more info.");
5406
+ }
5407
+ return /*#__PURE__*/jsxRuntime.jsx("span", {
5408
+ className: `tw-icon tw-icon-link-plus ${className ? className : ''}`,
5409
+ "data-testid": restProps['data-testid'] || 'link-plus-icon',
5410
+ children: /*#__PURE__*/jsxRuntime.jsx("svg", {
5411
+ "aria-label": title,
5412
+ "aria-hidden": !title ? true : undefined,
5413
+ focusable: isFocusable,
5414
+ role: role ?? (title ? 'graphics-symbol img' : 'none'),
5415
+ width: String(size),
5416
+ height: String(size),
5417
+ fill: "currentColor",
5418
+ viewBox: "0 0 24 24",
5419
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
5420
+ children: [/*#__PURE__*/jsxRuntime.jsx("path", {
5421
+ d: "M20 17h3v2h-3v3h-2v-3h-3v-2h3v-3h2zM10 7H9a5 5 0 0 0 0 10h1v2H9A7 7 0 1 1 9 5h1z"
5422
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
5423
+ d: "M16 13H8v-2h8zm-1-8a7 7 0 0 1 6.955 7.778 6 6 0 0 0-1.958-.694L20 12a5 5 0 0 0-5-5h-1V5z"
5424
+ })]
5425
+ })
5426
+ })
5427
+ });
5428
+ };
5429
+
5313
5430
  const Link = ({
5314
5431
  className = undefined,
5315
5432
  isFocusable = false,
@@ -6885,6 +7002,43 @@ const Tax = ({
6885
7002
  });
6886
7003
  };
6887
7004
 
7005
+ const PersonPlus = ({
7006
+ className = undefined,
7007
+ isFocusable = false,
7008
+ filled = undefined,
7009
+ title = undefined,
7010
+ role = undefined,
7011
+ size = 16,
7012
+ ...restProps
7013
+ }) => {
7014
+ if (filled) {
7015
+ console.warn("<PersonPlus filled /> is now deprecated, please use <PersonPlusFill /> or refer to https://transferwise.github.io/icons/ for more info.");
7016
+ }
7017
+ return /*#__PURE__*/jsxRuntime.jsx("span", {
7018
+ className: `tw-icon tw-icon-person-plus ${className ? className : ''}`,
7019
+ "data-testid": restProps['data-testid'] || 'person-plus-icon',
7020
+ children: /*#__PURE__*/jsxRuntime.jsx("svg", {
7021
+ "aria-label": title,
7022
+ "aria-hidden": !title ? true : undefined,
7023
+ focusable: isFocusable,
7024
+ role: role ?? (title ? 'graphics-symbol img' : 'none'),
7025
+ width: String(size),
7026
+ height: String(size),
7027
+ fill: "currentColor",
7028
+ viewBox: "0 0 24 24",
7029
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
7030
+ children: [/*#__PURE__*/jsxRuntime.jsx("path", {
7031
+ d: "M20 18h3v2h-3v3h-2v-3h-3v-2h3v-3h2z"
7032
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
7033
+ fillRule: "evenodd",
7034
+ d: "M12 1a6 6 0 0 1 3.553 10.833c.714.355 1.37.813 1.943 1.357a6 6 0 0 0-1.996.938A6 6 0 0 0 6 19v2H4v-2a8 8 0 0 1 4.445-7.168A6 6 0 0 1 12 1m0 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8",
7035
+ clipRule: "evenodd"
7036
+ })]
7037
+ })
7038
+ })
7039
+ });
7040
+ };
7041
+
6888
7042
  const Person = ({
6889
7043
  className = undefined,
6890
7044
  isFocusable = false,
@@ -10710,7 +10864,7 @@ const Warning = ({
10710
10864
  children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
10711
10865
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
10712
10866
  fillRule: "evenodd",
10713
- d: "M11.107 3.549a1.01 1.01 0 0 1 1.786 0l8.983 16.969A1.01 1.01 0 0 1 20.983 22H3.017a1.01 1.01 0 0 1-.893-1.483zM19.34 20 12 6.137 4.662 20zM12 16.006a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M13 10h-2v5h2z",
10867
+ d: "M11.107 3.549a1.01 1.01 0 0 1 1.786 0l8.983 16.968A1.01 1.01 0 0 1 20.983 22H3.017a1.01 1.01 0 0 1-.893-1.483zm8.232 16.45-7.34-13.862L4.662 20zm-7.34-3.993a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M13 10h-2v5h2z",
10714
10868
  clipRule: "evenodd"
10715
10869
  })
10716
10870
  })
@@ -10941,6 +11095,7 @@ exports.ArrowRight = ArrowRight;
10941
11095
  exports.ArrowUp = ArrowUp;
10942
11096
  exports.Atm = Atm;
10943
11097
  exports.AutoConvert = AutoConvert;
11098
+ exports.BPay = BPay;
10944
11099
  exports.Backpack = Backpack;
10945
11100
  exports.BackslashCircle = BackslashCircle;
10946
11101
  exports.Balance = Balance;
@@ -10969,6 +11124,7 @@ exports.Card = Card;
10969
11124
  exports.CardCvc = CardCvc;
10970
11125
  exports.CardDetail = CardDetail;
10971
11126
  exports.CardNumber = CardNumber;
11127
+ exports.CardPlus = CardPlus;
10972
11128
  exports.CardStrikethrough = CardStrikethrough;
10973
11129
  exports.CardTransferwise = CardTransferwise;
10974
11130
  exports.CardWise = CardWise;
@@ -11080,6 +11236,7 @@ exports.LightningBolt = LightningBolt;
11080
11236
  exports.LightningBoltStrikethrough = LightningBoltStrikethrough;
11081
11237
  exports.Limit = Limit;
11082
11238
  exports.Link = Link;
11239
+ exports.LinkPlus = LinkPlus;
11083
11240
  exports.Linkedin = Linkedin;
11084
11241
  exports.List = List;
11085
11242
  exports.LocationMarker = LocationMarker;
@@ -11124,6 +11281,7 @@ exports.PendingCircle = PendingCircle;
11124
11281
  exports.People = People;
11125
11282
  exports.PercentageCircle = PercentageCircle;
11126
11283
  exports.Person = Person;
11284
+ exports.PersonPlus = PersonPlus;
11127
11285
  exports.PersonalCare = PersonalCare;
11128
11286
  exports.Pets = Pets;
11129
11287
  exports.Phone = Phone;