@transferwise/icons 3.11.0 → 3.13.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 (41) hide show
  1. package/build/angular/components/bank-strikethrough-icon.component.ts +3 -3
  2. package/build/angular/components/card-strikethrough-icon.component.ts +19 -0
  3. package/build/angular/components/equals-icon.component.ts +19 -0
  4. package/build/angular/components/icon.component.ts +4 -0
  5. package/build/angular/components/lightning-bolt-strikethrough-icon.component.ts +19 -0
  6. package/build/angular/components/upi-icon.component.ts +19 -0
  7. package/build/angular/index.ts +8 -0
  8. package/build/components/bank-strikethrough.tsx +1 -1
  9. package/build/components/card-strikethrough.tsx +54 -0
  10. package/build/components/equals.tsx +54 -0
  11. package/build/components/lightning-bolt-strikethrough.tsx +54 -0
  12. package/build/components/upi.tsx +50 -0
  13. package/build/icons.json +28 -0
  14. package/build/index.ts +4 -0
  15. package/lib/angular/components/card-strikethrough-icon.component.d.ts +7 -0
  16. package/lib/angular/components/card-strikethrough-icon.component.d.ts.map +1 -0
  17. package/lib/angular/components/equals-icon.component.d.ts +7 -0
  18. package/lib/angular/components/equals-icon.component.d.ts.map +1 -0
  19. package/lib/angular/components/icon.component.d.ts.map +1 -1
  20. package/lib/angular/components/lightning-bolt-strikethrough-icon.component.d.ts +7 -0
  21. package/lib/angular/components/lightning-bolt-strikethrough-icon.component.d.ts.map +1 -0
  22. package/lib/angular/components/upi-icon.component.d.ts +7 -0
  23. package/lib/angular/components/upi-icon.component.d.ts.map +1 -0
  24. package/lib/angular/index.d.ts.map +1 -1
  25. package/lib/angular/index.js +88 -4
  26. package/lib/angular/index.js.map +1 -1
  27. package/lib/components/card-strikethrough.d.ts +12 -0
  28. package/lib/components/card-strikethrough.d.ts.map +1 -0
  29. package/lib/components/equals.d.ts +12 -0
  30. package/lib/components/equals.d.ts.map +1 -0
  31. package/lib/components/lightning-bolt-strikethrough.d.ts +12 -0
  32. package/lib/components/lightning-bolt-strikethrough.d.ts.map +1 -0
  33. package/lib/components/upi.d.ts +12 -0
  34. package/lib/components/upi.d.ts.map +1 -0
  35. package/lib/index.d.ts +4 -0
  36. package/lib/index.d.ts.map +1 -1
  37. package/lib/index.esm.js +144 -2
  38. package/lib/index.esm.js.map +1 -1
  39. package/lib/index.js +147 -1
  40. package/lib/index.js.map +1 -1
  41. package/package.json +1 -1
package/lib/index.esm.js CHANGED
@@ -411,7 +411,7 @@ const BankStrikethrough = ({
411
411
  children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsx(Fragment, {
412
412
  children: /*#__PURE__*/jsx("path", {
413
413
  fillRule: "evenodd",
414
- 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",
414
+ d: "M22.212 20.963 21 19.751v-.037h-.037l-1.249-1.249V9.857H21a.856.856 0 0 0 .459-1.581l-8.566-5.43a1.286 1.286 0 0 0-1.354-.014L6.892 5.643 2.926 1.677 1.855 2.75l19.286 19.285 1.071-1.071Zm-4.102.465-1.714-1.714h-3.539v-3.539l-1.714-1.714v5.253H6V9.857h.539L4.047 7.365l-1.49.901A.857.857 0 0 0 3 9.856h1.286v9.858H3v1.714h15.11ZM18 9.857v6.894l-5.143-5.143V9.857H18Zm-6.857 0v.037l-.037-.037h.037Zm6.904-1.714H9.392L8.14 6.892l4.058-2.456 5.848 3.707Z",
415
415
  clipRule: "evenodd"
416
416
  })
417
417
  })
@@ -1500,6 +1500,42 @@ const CardNumber = ({
1500
1500
  });
1501
1501
  };
1502
1502
 
1503
+ const CardStrikethrough = ({
1504
+ size = 16,
1505
+ className = undefined,
1506
+ title = undefined,
1507
+ filled = undefined,
1508
+ role = undefined,
1509
+ ...restProps
1510
+ }) => {
1511
+ if (filled) {
1512
+ console.warn('<CardStrikethrough filled /> is now deprecated, please use <CardStrikethroughFill /> or refer to https://transferwise.github.io/icons/ for more info.');
1513
+ }
1514
+ return /*#__PURE__*/jsxs("span", {
1515
+ className: `tw-icon tw-icon-card-strikethrough ${className ? className : ''}`,
1516
+ "aria-hidden": !title ? 'true' : undefined,
1517
+ role: role ?? (title ? undefined : 'none'),
1518
+ "data-testid": restProps['data-testid'] || 'card-strikethrough-icon',
1519
+ children: [/*#__PURE__*/jsx("svg", {
1520
+ width: String(size),
1521
+ height: String(size),
1522
+ fill: "currentColor",
1523
+ focusable: "false",
1524
+ viewBox: "0 0 24 24",
1525
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsx(Fragment, {
1526
+ children: /*#__PURE__*/jsx("path", {
1527
+ fillRule: "evenodd",
1528
+ d: "m22.212 20.749-1.034-1.035h.246a.861.861 0 0 0 .862-.861V16.247h-.002c-.02-.218-.21-.39-.413-.486a1.294 1.294 0 0 1-.416-.322 1.785 1.785 0 0 1-.33-.568 2.143 2.143 0 0 1-.125-.728c0-.255.044-.503.126-.728.082-.225.197-.416.329-.567.131-.151.275-.257.416-.323.215-.102.415-.288.415-.525V5.576a.861.861 0 0 0-.862-.862H6.178l-3-3-1.072 1.072L21.141 21.82l1.071-1.072Zm-5.602-1.035L14.896 18H3.429V6.533L1.917 5.02a.858.858 0 0 0-.203.555v13.277c0 .476.386.861.862.861H16.61ZM6.325 9.43h-.753v1.714h2.467L6.325 9.429ZM20.572 18h-1.108L7.892 6.43h12.68v4.9a3.135 3.135 0 0 0-.407.39c-.279.318-.5.696-.65 1.112a3.86 3.86 0 0 0-.23 1.312c0 .45.078.896.23 1.312.15.416.371.794.65 1.112.125.144.261.274.407.39V18Z",
1529
+ clipRule: "evenodd"
1530
+ })
1531
+ })
1532
+ }), title && /*#__PURE__*/jsx("span", {
1533
+ className: "sr-only",
1534
+ children: title
1535
+ })]
1536
+ });
1537
+ };
1538
+
1503
1539
  const CardWise = ({
1504
1540
  size = 16,
1505
1541
  className = undefined,
@@ -3240,6 +3276,42 @@ const Entertainment = ({
3240
3276
  });
3241
3277
  };
3242
3278
 
3279
+ const Equals = ({
3280
+ size = 16,
3281
+ className = undefined,
3282
+ title = undefined,
3283
+ filled = undefined,
3284
+ role = undefined,
3285
+ ...restProps
3286
+ }) => {
3287
+ if (filled) {
3288
+ console.warn('<Equals filled /> is now deprecated, please use <EqualsFill /> or refer to https://transferwise.github.io/icons/ for more info.');
3289
+ }
3290
+ return /*#__PURE__*/jsxs("span", {
3291
+ className: `tw-icon tw-icon-equals ${className ? className : ''}`,
3292
+ "aria-hidden": !title ? 'true' : undefined,
3293
+ role: role ?? (title ? undefined : 'none'),
3294
+ "data-testid": restProps['data-testid'] || 'equals-icon',
3295
+ children: [/*#__PURE__*/jsx("svg", {
3296
+ width: String(size),
3297
+ height: String(size),
3298
+ fill: "currentColor",
3299
+ focusable: "false",
3300
+ viewBox: "0 0 24 24",
3301
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsx(Fragment, {
3302
+ children: /*#__PURE__*/jsx("path", {
3303
+ fillRule: "evenodd",
3304
+ d: "M22.286 8.143H1.714v1.714h20.572V8.143Zm0 6H1.714v1.714h20.572v-1.714Z",
3305
+ clipRule: "evenodd"
3306
+ })
3307
+ })
3308
+ }), title && /*#__PURE__*/jsx("span", {
3309
+ className: "sr-only",
3310
+ children: title
3311
+ })]
3312
+ });
3313
+ };
3314
+
3243
3315
  const Expand = ({
3244
3316
  size = 16,
3245
3317
  className = undefined,
@@ -4970,6 +5042,42 @@ const Leaf = ({
4970
5042
  });
4971
5043
  };
4972
5044
 
5045
+ const LightningBoltStrikethrough = ({
5046
+ size = 16,
5047
+ className = undefined,
5048
+ title = undefined,
5049
+ filled = undefined,
5050
+ role = undefined,
5051
+ ...restProps
5052
+ }) => {
5053
+ if (filled) {
5054
+ console.warn('<LightningBoltStrikethrough filled /> is now deprecated, please use <LightningBoltStrikethroughFill /> or refer to https://transferwise.github.io/icons/ for more info.');
5055
+ }
5056
+ return /*#__PURE__*/jsxs("span", {
5057
+ className: `tw-icon tw-icon-lightning-bolt-strikethrough ${className ? className : ''}`,
5058
+ "aria-hidden": !title ? 'true' : undefined,
5059
+ role: role ?? (title ? undefined : 'none'),
5060
+ "data-testid": restProps['data-testid'] || 'lightning-bolt-strikethrough-icon',
5061
+ children: [/*#__PURE__*/jsx("svg", {
5062
+ width: String(size),
5063
+ height: String(size),
5064
+ fill: "currentColor",
5065
+ focusable: "false",
5066
+ viewBox: "0 0 24 24",
5067
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsx(Fragment, {
5068
+ children: /*#__PURE__*/jsx("path", {
5069
+ fillRule: "evenodd",
5070
+ d: "m22.212 20.749-5.986-5.986 4.13-4.82a.862.862 0 0 0-.642-1.414H14.4l3.471-5.528a.875.875 0 0 0 .043-.857c-.171-.258-.429-.429-.729-.429h-6.042c-.3 0-.558.171-.729.429L7.821 6.358 3.177 1.714 2.106 2.786 21.141 21.82l1.07-1.071ZM6.08 9.185l-2.524 4.101a.778.778 0 0 0 0 .857c.171.258.429.43.728.43h5.786l-1.5 6.642a.813.813 0 0 0 .472.943c.128.043.257.085.385.085a.771.771 0 0 0 .643-.3l4.047-4.72L12.897 16l-1.883 2.214.754-3.343-2.057-2.057H5.828l1.477-2.406L6.08 9.185ZM17.828 10.2l-2.833 3.332-5.953-5.954 2.572-4.193H15.6l-3.472 5.529a.875.875 0 0 0-.043.857c.172.257.43.429.73.429h5.013Z",
5071
+ clipRule: "evenodd"
5072
+ })
5073
+ })
5074
+ }), title && /*#__PURE__*/jsx("span", {
5075
+ className: "sr-only",
5076
+ children: title
5077
+ })]
5078
+ });
5079
+ };
5080
+
4973
5081
  const LightningBolt = ({
4974
5082
  size = 16,
4975
5083
  className = undefined,
@@ -9804,6 +9912,40 @@ const Twitter = ({
9804
9912
  });
9805
9913
  };
9806
9914
 
9915
+ const Upi = ({
9916
+ size = 16,
9917
+ className = undefined,
9918
+ title = undefined,
9919
+ filled = undefined,
9920
+ role = undefined,
9921
+ ...restProps
9922
+ }) => {
9923
+ if (filled) {
9924
+ console.warn('<Upi filled /> is now deprecated, please use <UpiFill /> or refer to https://transferwise.github.io/icons/ for more info.');
9925
+ }
9926
+ return /*#__PURE__*/jsxs("span", {
9927
+ className: `tw-icon tw-icon-upi ${className ? className : ''}`,
9928
+ "aria-hidden": !title ? 'true' : undefined,
9929
+ role: role ?? (title ? undefined : 'none'),
9930
+ "data-testid": restProps['data-testid'] || 'upi-icon',
9931
+ children: [/*#__PURE__*/jsx("svg", {
9932
+ width: String(size),
9933
+ height: String(size),
9934
+ fill: "currentColor",
9935
+ focusable: "false",
9936
+ viewBox: "0 0 24 24",
9937
+ children: (Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && /*#__PURE__*/jsx(Fragment, {
9938
+ children: /*#__PURE__*/jsx("path", {
9939
+ d: "M19.431 11.815 14.96 1.977a.446.446 0 0 0-.838.068L12.946 6.39l-2.002-4.413a.446.446 0 0 0-.839.067L4.73 21.72a.447.447 0 0 0 .748.434l4.395-4.395-1.071 3.962a.448.448 0 0 0 .748.432l9.792-9.838a.448.448 0 0 0 .09-.501Zm-8.79-8.34 3.823 8.428-8.427 8.428L10.64 3.475Zm-.537 16.854 1.038-3.839 4.174-4.174a.447.447 0 0 0 .091-.5l-1.894-4.177.02.006 1.127-4.166 3.83 8.425-8.386 8.425Z"
9940
+ })
9941
+ })
9942
+ }), title && /*#__PURE__*/jsx("span", {
9943
+ className: "sr-only",
9944
+ children: title
9945
+ })]
9946
+ });
9947
+ };
9948
+
9807
9949
  const Upload = ({
9808
9950
  size = 16,
9809
9951
  className = undefined,
@@ -10164,5 +10306,5 @@ const OwnersWithdrawal = ({
10164
10306
  });
10165
10307
  };
10166
10308
 
10167
- export { Ach, Activity, Alert, AlertCircle, AlertCircleFill, Alipay, ArrowDiagonalDown, ArrowDiagonalUp, ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Atm, AutoConvert, Balance, Bank, BankStrikethrough, BankTransfer, BarChart, Barcode, Batch, Beach, BillSplit, Bills, Bin, Book, Boxes, Briefcase, Building, Bulb, Calendar, CalendarCheck, CalendarSuccess, Camera, Car, Card, CardCvc, CardDetail, CardNumber, 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, ExchangeRate, Expand, Expenses, Eye, EyeShut, FaceId, Facebook, FacebookSquare, Family, FastFlag, Feedback, Female, Fingerprint, Fpx, Freeze, Gambling, General, GeneralFill, GeneralFilled, 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, Limit, Link, Linkedin, List, LocationMarker, Lock, LogIn, LogOut, Mallet, Marketing, MassPayout, Menu, Messenger, Minus, MinusCircle, MinusCircleFill, Mobile, MobileLock, Money, MoneyBag, More, MultiCurrency, NavigateAway, Nearby, New, Notification, NotificationActive, OfficeExpenses, OwnersWithdrawal, Padlock, PadlockUnlocked, Paperclip, Passport, Pause, PayIn, Payments, Paypal, Pending, PendingCircle, People, PercentageCircle, Person, PersonalCare, Pets, Phone, Picture, PieChart, PiggyBank, PinCode, Pix, Plane, Play, Plus, PlusCircle, Profile, QrCode, QuestionMark, QuestionMarkCircle, Rain, Rainbow, Receipt, Receive, Recipients, Refresh, RefundReceive, RefundSent, Reload, Rent, RequestReceive, RequestSend, Rewards, SadEmoji, Salary, SalesAndRoyalties, Savings, ScanQrCode, Search, Send, Settings, ShareAndroid, ShareIos, Shield, ShoppingBag, Slider, Sofort, SoftwareAndHosting, SoftwareAndWebHosting, SpeechBubble, SpeechBubbleExclamation, SpeechBubbleMessage, SpeechBubblePending, SpeechBubbles, SpendDirham, SpendDollar, SpendEuro, SpendForint, SpendFranc, SpendHryvnia, SpendKoruna, SpendKrone, SpendKuna, SpendLeuLei, SpendLev, SpendLira, SpendPound, SpendReal, SpendRinggit, SpendRupee, SpendRupiah, SpendYen, SpendZloty, SplitMoney, Star, StarFill, Stationery, Stop, Suitcase, Sunglasses, Switch, Takeaway, Target, Tax, Taxi, Team, Theme, Transfer, Transport, Travel, Trustly, Twitter, TwoStep, Unlock, Upload, UpwardGraph, Venmo, Verified, Wallet, Warning, Water, Whatsapp, Withdrawal };
10309
+ export { Ach, Activity, Alert, AlertCircle, AlertCircleFill, Alipay, ArrowDiagonalDown, ArrowDiagonalUp, ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Atm, AutoConvert, Balance, Bank, BankStrikethrough, BankTransfer, BarChart, Barcode, Batch, Beach, BillSplit, Bills, Bin, Book, Boxes, Briefcase, Building, Bulb, Calendar, CalendarCheck, CalendarSuccess, Camera, 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, Fingerprint, Fpx, Freeze, Gambling, General, GeneralFill, GeneralFilled, 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, More, MultiCurrency, NavigateAway, Nearby, New, Notification, NotificationActive, OfficeExpenses, OwnersWithdrawal, Padlock, PadlockUnlocked, Paperclip, Passport, Pause, PayIn, Payments, Paypal, Pending, PendingCircle, People, PercentageCircle, Person, PersonalCare, Pets, Phone, Picture, PieChart, PiggyBank, PinCode, Pix, Plane, Play, Plus, PlusCircle, Profile, QrCode, QuestionMark, QuestionMarkCircle, Rain, Rainbow, Receipt, Receive, Recipients, Refresh, RefundReceive, RefundSent, Reload, Rent, RequestReceive, RequestSend, Rewards, SadEmoji, Salary, SalesAndRoyalties, Savings, ScanQrCode, Search, Send, Settings, ShareAndroid, ShareIos, Shield, ShoppingBag, Slider, Sofort, SoftwareAndHosting, SoftwareAndWebHosting, SpeechBubble, SpeechBubbleExclamation, SpeechBubbleMessage, SpeechBubblePending, SpeechBubbles, SpendDirham, SpendDollar, SpendEuro, SpendForint, SpendFranc, SpendHryvnia, SpendKoruna, SpendKrone, SpendKuna, SpendLeuLei, SpendLev, SpendLira, SpendPound, SpendReal, SpendRinggit, SpendRupee, SpendRupiah, SpendYen, SpendZloty, SplitMoney, Star, StarFill, Stationery, Stop, Suitcase, Sunglasses, Switch, Takeaway, Target, Tax, Taxi, Team, Theme, Transfer, Transport, Travel, Trustly, Twitter, TwoStep, Unlock, Upi, Upload, UpwardGraph, Venmo, Verified, Wallet, Warning, Water, Whatsapp, Withdrawal };
10168
10310
  //# sourceMappingURL=index.esm.js.map