@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.esm.js CHANGED
@@ -422,6 +422,51 @@ const AutoConvert = ({
422
422
  });
423
423
  };
424
424
 
425
+ const BPay = ({
426
+ className = undefined,
427
+ isFocusable = false,
428
+ filled = undefined,
429
+ title = undefined,
430
+ role = undefined,
431
+ size = 16,
432
+ ...restProps
433
+ }) => {
434
+ if (filled) {
435
+ console.warn("<BPay filled /> is now deprecated, please use <BPayFill /> or refer to https://transferwise.github.io/icons/ for more info.");
436
+ }
437
+ return /*#__PURE__*/jsx("span", {
438
+ className: `tw-icon tw-icon-b-pay ${className ? className : ''}`,
439
+ "data-testid": restProps['data-testid'] || 'b-pay-icon',
440
+ children: /*#__PURE__*/jsx("svg", {
441
+ "aria-label": title,
442
+ "aria-hidden": !title ? true : undefined,
443
+ focusable: isFocusable,
444
+ role: role ?? (title ? 'graphics-symbol img' : 'none'),
445
+ width: String(size),
446
+ height: String(size),
447
+ fill: "currentColor",
448
+ viewBox: "0 0 24 24",
449
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxs(Fragment, {
450
+ children: [/*#__PURE__*/jsx("path", {
451
+ fillRule: "evenodd",
452
+ 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",
453
+ clipRule: "evenodd"
454
+ }), /*#__PURE__*/jsx("path", {
455
+ 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"
456
+ }), /*#__PURE__*/jsx("path", {
457
+ fillRule: "evenodd",
458
+ 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",
459
+ clipRule: "evenodd"
460
+ }), /*#__PURE__*/jsx("path", {
461
+ fillRule: "evenodd",
462
+ 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",
463
+ clipRule: "evenodd"
464
+ })]
465
+ })
466
+ })
467
+ });
468
+ };
469
+
425
470
  const Backpack = ({
426
471
  className = undefined,
427
472
  isFocusable = false,
@@ -1620,6 +1665,43 @@ const CardNumber = ({
1620
1665
  });
1621
1666
  };
1622
1667
 
1668
+ const CardPlus = ({
1669
+ className = undefined,
1670
+ isFocusable = false,
1671
+ filled = undefined,
1672
+ title = undefined,
1673
+ role = undefined,
1674
+ size = 16,
1675
+ ...restProps
1676
+ }) => {
1677
+ if (filled) {
1678
+ console.warn("<CardPlus filled /> is now deprecated, please use <CardPlusFill /> or refer to https://transferwise.github.io/icons/ for more info.");
1679
+ }
1680
+ return /*#__PURE__*/jsx("span", {
1681
+ className: `tw-icon tw-icon-card-plus ${className ? className : ''}`,
1682
+ "data-testid": restProps['data-testid'] || 'card-plus-icon',
1683
+ children: /*#__PURE__*/jsx("svg", {
1684
+ "aria-label": title,
1685
+ "aria-hidden": !title ? true : undefined,
1686
+ focusable: isFocusable,
1687
+ role: role ?? (title ? 'graphics-symbol img' : 'none'),
1688
+ width: String(size),
1689
+ height: String(size),
1690
+ fill: "currentColor",
1691
+ viewBox: "0 0 24 24",
1692
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxs(Fragment, {
1693
+ children: [/*#__PURE__*/jsx("path", {
1694
+ d: "M20 17h3v2h-3v3h-2v-3h-3v-2h3v-3h2z"
1695
+ }), /*#__PURE__*/jsx("path", {
1696
+ fillRule: "evenodd",
1697
+ 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",
1698
+ clipRule: "evenodd"
1699
+ })]
1700
+ })
1701
+ })
1702
+ });
1703
+ };
1704
+
1623
1705
  const CardStrikethrough = ({
1624
1706
  className = undefined,
1625
1707
  isFocusable = false,
@@ -5308,6 +5390,41 @@ const Limit = ({
5308
5390
  });
5309
5391
  };
5310
5392
 
5393
+ const LinkPlus = ({
5394
+ className = undefined,
5395
+ isFocusable = false,
5396
+ filled = undefined,
5397
+ title = undefined,
5398
+ role = undefined,
5399
+ size = 16,
5400
+ ...restProps
5401
+ }) => {
5402
+ if (filled) {
5403
+ console.warn("<LinkPlus filled /> is now deprecated, please use <LinkPlusFill /> or refer to https://transferwise.github.io/icons/ for more info.");
5404
+ }
5405
+ return /*#__PURE__*/jsx("span", {
5406
+ className: `tw-icon tw-icon-link-plus ${className ? className : ''}`,
5407
+ "data-testid": restProps['data-testid'] || 'link-plus-icon',
5408
+ children: /*#__PURE__*/jsx("svg", {
5409
+ "aria-label": title,
5410
+ "aria-hidden": !title ? true : undefined,
5411
+ focusable: isFocusable,
5412
+ role: role ?? (title ? 'graphics-symbol img' : 'none'),
5413
+ width: String(size),
5414
+ height: String(size),
5415
+ fill: "currentColor",
5416
+ viewBox: "0 0 24 24",
5417
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxs(Fragment, {
5418
+ children: [/*#__PURE__*/jsx("path", {
5419
+ d: "M20 17h3v2h-3v3h-2v-3h-3v-2h3v-3h2zM10 7H9a5 5 0 0 0 0 10h1v2H9A7 7 0 1 1 9 5h1z"
5420
+ }), /*#__PURE__*/jsx("path", {
5421
+ 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"
5422
+ })]
5423
+ })
5424
+ })
5425
+ });
5426
+ };
5427
+
5311
5428
  const Link = ({
5312
5429
  className = undefined,
5313
5430
  isFocusable = false,
@@ -6883,6 +7000,43 @@ const Tax = ({
6883
7000
  });
6884
7001
  };
6885
7002
 
7003
+ const PersonPlus = ({
7004
+ className = undefined,
7005
+ isFocusable = false,
7006
+ filled = undefined,
7007
+ title = undefined,
7008
+ role = undefined,
7009
+ size = 16,
7010
+ ...restProps
7011
+ }) => {
7012
+ if (filled) {
7013
+ console.warn("<PersonPlus filled /> is now deprecated, please use <PersonPlusFill /> or refer to https://transferwise.github.io/icons/ for more info.");
7014
+ }
7015
+ return /*#__PURE__*/jsx("span", {
7016
+ className: `tw-icon tw-icon-person-plus ${className ? className : ''}`,
7017
+ "data-testid": restProps['data-testid'] || 'person-plus-icon',
7018
+ children: /*#__PURE__*/jsx("svg", {
7019
+ "aria-label": title,
7020
+ "aria-hidden": !title ? true : undefined,
7021
+ focusable: isFocusable,
7022
+ role: role ?? (title ? 'graphics-symbol img' : 'none'),
7023
+ width: String(size),
7024
+ height: String(size),
7025
+ fill: "currentColor",
7026
+ viewBox: "0 0 24 24",
7027
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsxs(Fragment, {
7028
+ children: [/*#__PURE__*/jsx("path", {
7029
+ d: "M20 18h3v2h-3v3h-2v-3h-3v-2h3v-3h2z"
7030
+ }), /*#__PURE__*/jsx("path", {
7031
+ fillRule: "evenodd",
7032
+ 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",
7033
+ clipRule: "evenodd"
7034
+ })]
7035
+ })
7036
+ })
7037
+ });
7038
+ };
7039
+
6886
7040
  const Person = ({
6887
7041
  className = undefined,
6888
7042
  isFocusable = false,
@@ -10708,7 +10862,7 @@ const Warning = ({
10708
10862
  children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsx(Fragment, {
10709
10863
  children: /*#__PURE__*/jsx("path", {
10710
10864
  fillRule: "evenodd",
10711
- 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",
10865
+ 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",
10712
10866
  clipRule: "evenodd"
10713
10867
  })
10714
10868
  })
@@ -10924,5 +11078,5 @@ const Youtube = ({
10924
11078
  });
10925
11079
  };
10926
11080
 
10927
- export { Ach, Activity, Alert, AlertCircle, AlertCircleFill, Alipay, AngryEmoji, ArrowDiagonalDown, ArrowDiagonalUp, ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Atm, AutoConvert, Backpack, BackslashCircle, Balance, Bank, BankStrikethrough, BankTransfer, BarChart, Barcode, Batch, Beach, BillSplit, Bills, Bin, Book, Boxes, Briefcase, Building, Bulb, Calendar, CalendarCheck, CalendarSuccess, Camera, CameraSparkle, Car, Card, CardCvc, CardDetail, CardNumber, CardStrikethrough, CardTransferwise, CardWise, CashApp, CashRegister, Charity, Chat, Check, CheckCircle, CheckCircleFill, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Chip, ChipPin, ClickToPay, Clock, ClockBorderless, ClockFill, Cog, Coins, Collapse, Comments, CompactMore, Confetti, Contactless, ContractServices, Convert, CostOfGoodsSold, Cross, CrossCircle, CrossCircleFill, CrystalBall, Cs, Defrost, Delivery, Dial, DirectDebits, DiscoBall, Do, Document, Documents, Dont, Download, DriversLicense, ECommerce, EatingOut, Edit, Email, EmailAndMobile, EmailAndPhone, Emoji, Entertainment, Equals, ExchangeRate, Expand, Expenses, Eye, EyeShut, FaceId, Facebook, FacebookSquare, Family, FastFlag, Feedback, Female, FidoPasskey, Fingerprint, Fpx, Freeze, Gambling, General, GeneralFill, GiftBox, Globe, GraduationCap, Graph, Groceries, Handshake, HappyEmoji, Headset, Heart, Help, HelpCircle, Holidays, Home, House, Id, Ideal, Image, Info, InfoCircle, InfoCircleFill, InsertCard, Insights, Instagram, Insurance, Interac, Investments, Invite, Jar, Keep, Klarna, Laptop, Leaf, Lightning, LightningBolt, LightningBoltStrikethrough, Limit, Link, Linkedin, List, LocationMarker, Lock, LogIn, LogOut, Mallet, Marketing, MassPayout, Menu, Messenger, Minus, MinusCircle, MinusCircleFill, Mobile, MobileLock, Money, MoneyBag, Moon, More, MultiCurrency, NavigateAway, Nearby, NeutralEmoji, New, Notification, NotificationActive, OfficeExpenses, OwnersWithdrawal, Padlock, PadlockUnlocked, Paperclip, Passport, Pause, PayIn, PayNow, Payid, Payments, Paypal, Pending, PendingCircle, People, PercentageCircle, Person, PersonalCare, Pets, Phone, PhoneStrikethrough, Picture, PieChart, PiggyBank, PinCode, Pix, Plane, Play, Plus, PlusCircle, PlusCircleFill, Profile, QrCode, QuestionMark, QuestionMarkCircle, QuestionMarkCircleFill, Rain, Rainbow, Receipt, Receive, Recipients, Refresh, RefundReceive, RefundSent, Reload, Rent, RequestReceive, RequestSend, Rewards, SadEmoji, Salary, SalesAndRoyalties, Savings, ScanQrCode, ScanSparkle, Search, Send, Settings, ShareAndroid, ShareIos, Shield, ShoppingBag, Slider, Sofort, SoftwareAndHosting, SoftwareAndWebHosting, Sparkles, SpeechBubble, SpeechBubbleExclamation, SpeechBubbleMessage, SpeechBubblePending, SpeechBubbleSparkle, SpeechBubbles, SpendDirham, SpendDollar, SpendEuro, SpendForint, SpendFranc, SpendHryvnia, SpendKoruna, SpendKrone, SpendKuna, SpendLeuLei, SpendLev, SpendLira, SpendPound, SpendReal, SpendRinggit, SpendRupee, SpendRupiah, SpendYen, SpendZloty, SplitMoney, Star, StarFill, StarstruckEmoji, Stationery, Stop, Suitcase, Sun, Sunglasses, Switch, SwitchVertical, Tags, Takeaway, Target, Tax, Taxi, Team, Theme, Transfer, Transport, Travel, Trustly, Twitter, TwoStep, Unlock, Upi, Upload, UpwardGraph, Venmo, Verified, Wallet, Warning, Water, Whatsapp, Withdrawal, X, Youtube };
11081
+ export { Ach, Activity, Alert, AlertCircle, AlertCircleFill, Alipay, AngryEmoji, ArrowDiagonalDown, ArrowDiagonalUp, ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Atm, AutoConvert, BPay, Backpack, BackslashCircle, Balance, Bank, BankStrikethrough, BankTransfer, BarChart, Barcode, Batch, Beach, BillSplit, Bills, Bin, Book, Boxes, Briefcase, Building, Bulb, Calendar, CalendarCheck, CalendarSuccess, Camera, CameraSparkle, Car, Card, CardCvc, CardDetail, CardNumber, CardPlus, CardStrikethrough, CardTransferwise, CardWise, CashApp, CashRegister, Charity, Chat, Check, CheckCircle, CheckCircleFill, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Chip, ChipPin, ClickToPay, Clock, ClockBorderless, ClockFill, Cog, Coins, Collapse, Comments, CompactMore, Confetti, Contactless, ContractServices, Convert, CostOfGoodsSold, Cross, CrossCircle, CrossCircleFill, CrystalBall, Cs, Defrost, Delivery, Dial, DirectDebits, DiscoBall, Do, Document, Documents, Dont, Download, DriversLicense, ECommerce, EatingOut, Edit, Email, EmailAndMobile, EmailAndPhone, Emoji, Entertainment, Equals, ExchangeRate, Expand, Expenses, Eye, EyeShut, FaceId, Facebook, FacebookSquare, Family, FastFlag, Feedback, Female, FidoPasskey, Fingerprint, Fpx, Freeze, Gambling, General, GeneralFill, GiftBox, Globe, GraduationCap, Graph, Groceries, Handshake, HappyEmoji, Headset, Heart, Help, HelpCircle, Holidays, Home, House, Id, Ideal, Image, Info, InfoCircle, InfoCircleFill, InsertCard, Insights, Instagram, Insurance, Interac, Investments, Invite, Jar, Keep, Klarna, Laptop, Leaf, Lightning, LightningBolt, LightningBoltStrikethrough, Limit, Link, LinkPlus, Linkedin, List, LocationMarker, Lock, LogIn, LogOut, Mallet, Marketing, MassPayout, Menu, Messenger, Minus, MinusCircle, MinusCircleFill, Mobile, MobileLock, Money, MoneyBag, Moon, More, MultiCurrency, NavigateAway, Nearby, NeutralEmoji, New, Notification, NotificationActive, OfficeExpenses, OwnersWithdrawal, Padlock, PadlockUnlocked, Paperclip, Passport, Pause, PayIn, PayNow, Payid, Payments, Paypal, Pending, PendingCircle, People, PercentageCircle, Person, PersonPlus, PersonalCare, Pets, Phone, PhoneStrikethrough, Picture, PieChart, PiggyBank, PinCode, Pix, Plane, Play, Plus, PlusCircle, PlusCircleFill, Profile, QrCode, QuestionMark, QuestionMarkCircle, QuestionMarkCircleFill, Rain, Rainbow, Receipt, Receive, Recipients, Refresh, RefundReceive, RefundSent, Reload, Rent, RequestReceive, RequestSend, Rewards, SadEmoji, Salary, SalesAndRoyalties, Savings, ScanQrCode, ScanSparkle, Search, Send, Settings, ShareAndroid, ShareIos, Shield, ShoppingBag, Slider, Sofort, SoftwareAndHosting, SoftwareAndWebHosting, Sparkles, SpeechBubble, SpeechBubbleExclamation, SpeechBubbleMessage, SpeechBubblePending, SpeechBubbleSparkle, SpeechBubbles, SpendDirham, SpendDollar, SpendEuro, SpendForint, SpendFranc, SpendHryvnia, SpendKoruna, SpendKrone, SpendKuna, SpendLeuLei, SpendLev, SpendLira, SpendPound, SpendReal, SpendRinggit, SpendRupee, SpendRupiah, SpendYen, SpendZloty, SplitMoney, Star, StarFill, StarstruckEmoji, Stationery, Stop, Suitcase, Sun, Sunglasses, Switch, SwitchVertical, Tags, Takeaway, Target, Tax, Taxi, Team, Theme, Transfer, Transport, Travel, Trustly, Twitter, TwoStep, Unlock, Upi, Upload, UpwardGraph, Venmo, Verified, Wallet, Warning, Water, Whatsapp, Withdrawal, X, Youtube };
10928
11082
  //# sourceMappingURL=index.esm.js.map