@sumup-oss/icons 6.10.2 → 6.11.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.
@@ -0,0 +1,68 @@
1
+ const _excluded = ["size"];
2
+ function _objectWithoutProperties(e, t) {
3
+ if (null == e) return {};
4
+ var o,
5
+ r,
6
+ i = _objectWithoutPropertiesLoose(e, t);
7
+ if (Object.getOwnPropertySymbols) {
8
+ var n = Object.getOwnPropertySymbols(e);
9
+ for (r = 0; r < n.length; r++)
10
+ (o = n[r]),
11
+ -1 === t.indexOf(o) &&
12
+ {}.propertyIsEnumerable.call(e, o) &&
13
+ (i[o] = e[o]);
14
+ }
15
+ return i;
16
+ }
17
+ function _objectWithoutPropertiesLoose(r, e) {
18
+ if (null == r) return {};
19
+ var t = {};
20
+ for (var n in r)
21
+ if ({}.hasOwnProperty.call(r, n)) {
22
+ if (-1 !== e.indexOf(n)) continue;
23
+ t[n] = r[n];
24
+ }
25
+ return t;
26
+ }
27
+ import React from "react";
28
+ import { jsx as _jsx } from "react/jsx-runtime";
29
+ var CashDrawer24 = function CashDrawer24(props) {
30
+ return /*#__PURE__*/ _jsx("svg", {
31
+ width: "24",
32
+ height: "24",
33
+ viewBox: "0 0 24 24",
34
+ fill: "none",
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ ...props,
37
+ children: /*#__PURE__*/ _jsx("path", {
38
+ d: "M4 18H20V14.7617H4V18ZM8.15625 5.61915C8.15625 5.06729 8.20533 4.52612 8.29883 4H6.1875L4.66699 9.04396L8.82227 8.9961C8.39714 7.96706 8.15626 6.83411 8.15625 5.61915ZM15.1816 2C17.1899 2 18.8184 3.6204 18.8184 5.61915V7.95899L19.9932 6.78907C20.3482 6.43574 20.9243 6.43574 21.2793 6.78907C21.6341 7.1424 21.6342 7.71509 21.2793 8.06837L18.5518 10.7822C18.1967 11.1356 17.6216 11.1356 17.2666 10.7822L14.5391 8.06837C14.1841 7.71507 14.1841 7.14241 14.5391 6.78907C14.8941 6.43576 15.4692 6.43582 15.8242 6.78907L17 7.95899V5.61915C17 4.6824 16.2848 3.91223 15.3682 3.81934L15.1816 3.80957H14.7275L14.6348 3.80469C14.1761 3.75855 13.8184 3.3729 13.8184 2.9043C13.8186 2.43591 14.1763 2.05101 14.6348 2.00488L14.7275 2H15.1816ZM22 18.1905C22 19.1898 21.1858 20 20.1816 20H3.81836L3.63184 19.9903C2.71524 19.8974 2 19.1272 2 18.1905V14.5713C2.00009 13.572 2.81426 12.7617 3.81836 12.7617H20.1816C21.1857 12.7617 21.9999 13.572 22 14.5713V18.1905ZM10.168 6.02051C10.2809 8.00926 11.2282 9.70878 12.6436 10.9522L4.41797 11.0479C3.20016 11.0477 2.32681 9.87873 2.67676 8.71778L4.31348 3.29004C4.52978 2.57245 5.16504 2.06622 5.90527 2.00586L6.05469 2H11.1289C10.5102 3.06459 10.1562 4.30084 10.1562 5.61915L10.168 6.02051Z",
39
+ fill: "currentColor",
40
+ }),
41
+ });
42
+ };
43
+ const CashDrawerSizeMap = {
44
+ 24: CashDrawer24,
45
+ };
46
+ export function CashDrawer(_ref) {
47
+ let _ref$size = _ref.size,
48
+ size = _ref$size === void 0 ? "24" : _ref$size,
49
+ props = _objectWithoutProperties(_ref, _excluded);
50
+ const Icon = CashDrawerSizeMap[size] || CashDrawerSizeMap["24"];
51
+ if (
52
+ process.env.NODE_ENV !== "production" &&
53
+ process.env.NODE_ENV !== "test" &&
54
+ !CashDrawerSizeMap[size]
55
+ ) {
56
+ console.warn(
57
+ new Error(
58
+ "The '".concat(
59
+ size,
60
+ "' size is not supported by the 'CashDrawer' icon. Please use one of the available sizes: '24'.",
61
+ ),
62
+ ),
63
+ );
64
+ }
65
+ return /*#__PURE__*/ _jsx(Icon, {
66
+ ...props,
67
+ });
68
+ }
package/dist/SumUpLogo.js CHANGED
@@ -45,7 +45,7 @@ const SumUpLogoSizeMap = {
45
45
  };
46
46
 
47
47
  /**
48
- * @deprecated Use the `SumUpLogo` component instead.
48
+ * @deprecated Use the SumUpLogo component from '@sumup-oss/circuit-ui' instead.
49
49
  */
50
50
  export function SumUpLogo(_ref) {
51
51
  let _ref$size = _ref.size,
@@ -60,7 +60,7 @@ const SumUpLogomarkSizeMap = {
60
60
  };
61
61
 
62
62
  /**
63
- * @deprecated Use the `SumUpLogo` component's 'short' variant instead.
63
+ * @deprecated Use the SumUpLogo component from '@sumup-oss/circuit-ui' in its 'short' variant instead.
64
64
  */
65
65
  export function SumUpLogomark(_ref) {
66
66
  let _ref$size = _ref.size,
package/dist/index.d.ts CHANGED
@@ -133,12 +133,12 @@ declare const ZoomIn: IconComponentType<"24">;
133
133
  declare const ZoomOut: IconComponentType<"24">;
134
134
 
135
135
  /**
136
- * @deprecated Use the `SumUpLogo` component instead.
136
+ * @deprecated Use the SumUpLogo component from '@sumup-oss/circuit-ui' instead.
137
137
  */
138
138
  declare const SumUpLogo: IconComponentType<"24">;
139
139
 
140
140
  /**
141
- * @deprecated Use the `SumUpLogo` component's 'short' variant instead.
141
+ * @deprecated Use the SumUpLogo component from '@sumup-oss/circuit-ui' in its 'short' variant instead.
142
142
  */
143
143
  declare const SumUpLogomark: IconComponentType<"24" | "32">;
144
144
 
@@ -1016,6 +1016,8 @@ declare const CashAdvance: IconComponentType<"24">;
1016
1016
 
1017
1017
  declare const CashAdvanceFilled: IconComponentType<"24">;
1018
1018
 
1019
+ declare const CashDrawer: IconComponentType<"24">;
1020
+
1019
1021
  declare const Challenge: IconComponentType<"24">;
1020
1022
 
1021
1023
  declare const Checkout: IconComponentType<"24">;
@@ -1530,6 +1532,7 @@ export {
1530
1532
  CardSecurity,
1531
1533
  CashAdvance,
1532
1534
  CashAdvanceFilled,
1535
+ CashDrawer,
1533
1536
  Challenge,
1534
1537
  Checkout,
1535
1538
  ContactPicker,
@@ -1940,6 +1943,7 @@ export type IconName =
1940
1943
  | "card_security"
1941
1944
  | "cash_advance"
1942
1945
  | "cash_advance_filled"
1946
+ | "cash_drawer"
1943
1947
  | "challenge"
1944
1948
  | "checkout"
1945
1949
  | "contact_picker"
@@ -2360,6 +2364,7 @@ type Icons = {
2360
2364
  card_security: "24";
2361
2365
  cash_advance: "24";
2362
2366
  cash_advance_filled: "24";
2367
+ cash_drawer: "24";
2363
2368
  challenge: "24";
2364
2369
  checkout: "24";
2365
2370
  contact_picker: "24";
package/dist/index.js CHANGED
@@ -318,6 +318,7 @@ export { Apps } from "./Apps.js";
318
318
  export { CardSecurity } from "./CardSecurity.js";
319
319
  export { CashAdvance } from "./CashAdvance.js";
320
320
  export { CashAdvanceFilled } from "./CashAdvanceFilled.js";
321
+ export { CashDrawer } from "./CashDrawer.js";
321
322
  export { Challenge } from "./Challenge.js";
322
323
  export { Checkout } from "./Checkout.js";
323
324
  export { ContactPicker } from "./ContactPicker.js";
package/manifest.json CHANGED
@@ -19,6 +19,7 @@
19
19
  "name": "add_items",
20
20
  "category": "Action",
21
21
  "size": "24",
22
+ "alternative": ["Add", "Items"],
22
23
  "deprecation": "Use the `Add` or `Items` icons instead."
23
24
  },
24
25
  {
@@ -80,6 +81,7 @@
80
81
  "name": "copy",
81
82
  "category": "Action",
82
83
  "size": "24",
84
+ "alternative": ["CopyPaste"],
83
85
  "deprecation": "Use the `CopyPaste` icon instead."
84
86
  },
85
87
  {
@@ -436,19 +438,19 @@
436
438
  "name": "sum_up_logo",
437
439
  "category": "Brand",
438
440
  "size": "24",
439
- "deprecation": "Use the `SumUpLogo` component instead."
441
+ "deprecation": "Use the SumUpLogo component from '@sumup-oss/circuit-ui' instead."
440
442
  },
441
443
  {
442
444
  "name": "sum_up_logomark",
443
445
  "category": "Brand",
444
446
  "size": "24",
445
- "deprecation": "Use the `SumUpLogo` component's 'short' variant instead."
447
+ "deprecation": "Use the SumUpLogo component from '@sumup-oss/circuit-ui' in its 'short' variant instead."
446
448
  },
447
449
  {
448
450
  "name": "sum_up_logomark",
449
451
  "category": "Brand",
450
452
  "size": "32",
451
- "deprecation": "Use the `SumUpLogo` component's 'short' variant instead."
453
+ "deprecation": "Use the SumUpLogo component from '@sumup-oss/circuit-ui' in its 'short' variant instead."
452
454
  },
453
455
  {
454
456
  "name": "plus_tier",
@@ -484,6 +486,7 @@
484
486
  "name": "apm",
485
487
  "category": "Card scheme",
486
488
  "size": "32",
489
+ "alternative": ["AlternativePaymentMethod"],
487
490
  "deprecation": "Use the `AlternativePaymentMethod` icon instead."
488
491
  },
489
492
  {
@@ -670,6 +673,7 @@
670
673
  "name": "email_chat",
671
674
  "category": "Communication",
672
675
  "size": "24",
676
+ "alternative": ["Email"],
673
677
  "deprecation": "Use the `Email` icon instead."
674
678
  },
675
679
  {
@@ -686,6 +690,7 @@
686
690
  "name": "phone_chat",
687
691
  "category": "Communication",
688
692
  "size": "24",
693
+ "alternative": ["Phone"],
689
694
  "deprecation": "Use the `Phone` icon instead."
690
695
  },
691
696
  {
@@ -693,6 +698,11 @@
693
698
  "category": "Country flag",
694
699
  "keywords": ["United Arab Emirates"],
695
700
  "size": "16",
701
+ "alternative": ["Flag"],
702
+ "alternativeProps": {
703
+ "countryCode": "AE",
704
+ "width": "16"
705
+ },
696
706
  "deprecation": "Use the Flag component instead."
697
707
  },
698
708
  {
@@ -700,6 +710,11 @@
700
710
  "category": "Country flag",
701
711
  "keywords": ["Argentina"],
702
712
  "size": "16",
713
+ "alternative": ["Flag"],
714
+ "alternativeProps": {
715
+ "countryCode": "AR",
716
+ "width": "16"
717
+ },
703
718
  "deprecation": "Use the Flag component instead."
704
719
  },
705
720
  {
@@ -707,6 +722,11 @@
707
722
  "category": "Country flag",
708
723
  "keywords": ["Austria"],
709
724
  "size": "16",
725
+ "alternative": ["Flag"],
726
+ "alternativeProps": {
727
+ "countryCode": "AT",
728
+ "width": "16"
729
+ },
710
730
  "deprecation": "Use the Flag component instead."
711
731
  },
712
732
  {
@@ -714,6 +734,11 @@
714
734
  "category": "Country flag",
715
735
  "keywords": ["Australia"],
716
736
  "size": "16",
737
+ "alternative": ["Flag"],
738
+ "alternativeProps": {
739
+ "countryCode": "AU",
740
+ "width": "16"
741
+ },
717
742
  "deprecation": "Use the Flag component instead."
718
743
  },
719
744
  {
@@ -721,6 +746,11 @@
721
746
  "category": "Country flag",
722
747
  "keywords": ["Belgium"],
723
748
  "size": "16",
749
+ "alternative": ["Flag"],
750
+ "alternativeProps": {
751
+ "countryCode": "BE",
752
+ "width": "16"
753
+ },
724
754
  "deprecation": "Use the Flag component instead."
725
755
  },
726
756
  {
@@ -728,6 +758,11 @@
728
758
  "category": "Country flag",
729
759
  "keywords": ["Bulgaria"],
730
760
  "size": "16",
761
+ "alternative": ["Flag"],
762
+ "alternativeProps": {
763
+ "countryCode": "BG",
764
+ "width": "16"
765
+ },
731
766
  "deprecation": "Use the Flag component instead."
732
767
  },
733
768
  {
@@ -735,6 +770,11 @@
735
770
  "category": "Country flag",
736
771
  "keywords": ["Brazil"],
737
772
  "size": "16",
773
+ "alternative": ["Flag"],
774
+ "alternativeProps": {
775
+ "countryCode": "BR",
776
+ "width": "16"
777
+ },
738
778
  "deprecation": "Use the Flag component instead."
739
779
  },
740
780
  {
@@ -742,6 +782,11 @@
742
782
  "category": "Country flag",
743
783
  "keywords": ["Canada"],
744
784
  "size": "16",
785
+ "alternative": ["Flag"],
786
+ "alternativeProps": {
787
+ "countryCode": "CA",
788
+ "width": "16"
789
+ },
745
790
  "deprecation": "Use the Flag component instead."
746
791
  },
747
792
  {
@@ -749,6 +794,11 @@
749
794
  "category": "Country flag",
750
795
  "keywords": ["Switzerland"],
751
796
  "size": "16",
797
+ "alternative": ["Flag"],
798
+ "alternativeProps": {
799
+ "countryCode": "CH",
800
+ "width": "16"
801
+ },
752
802
  "deprecation": "Use the Flag component instead."
753
803
  },
754
804
  {
@@ -756,6 +806,11 @@
756
806
  "category": "Country flag",
757
807
  "keywords": ["Chile"],
758
808
  "size": "16",
809
+ "alternative": ["Flag"],
810
+ "alternativeProps": {
811
+ "countryCode": "CL",
812
+ "width": "16"
813
+ },
759
814
  "deprecation": "Use the Flag component instead."
760
815
  },
761
816
  {
@@ -763,6 +818,11 @@
763
818
  "category": "Country flag",
764
819
  "keywords": ["Colombia"],
765
820
  "size": "16",
821
+ "alternative": ["Flag"],
822
+ "alternativeProps": {
823
+ "countryCode": "CO",
824
+ "width": "16"
825
+ },
766
826
  "deprecation": "Use the Flag component instead."
767
827
  },
768
828
  {
@@ -770,6 +830,11 @@
770
830
  "category": "Country flag",
771
831
  "keywords": ["Cypress"],
772
832
  "size": "16",
833
+ "alternative": ["Flag"],
834
+ "alternativeProps": {
835
+ "countryCode": "CY",
836
+ "width": "16"
837
+ },
773
838
  "deprecation": "Use the Flag component instead."
774
839
  },
775
840
  {
@@ -777,6 +842,11 @@
777
842
  "category": "Country flag",
778
843
  "keywords": ["Czech Republic"],
779
844
  "size": "16",
845
+ "alternative": ["Flag"],
846
+ "alternativeProps": {
847
+ "countryCode": "CZ",
848
+ "width": "16"
849
+ },
780
850
  "deprecation": "Use the Flag component instead."
781
851
  },
782
852
  {
@@ -784,6 +854,11 @@
784
854
  "category": "Country flag",
785
855
  "keywords": ["Germany"],
786
856
  "size": "16",
857
+ "alternative": ["Flag"],
858
+ "alternativeProps": {
859
+ "countryCode": "DE",
860
+ "width": "16"
861
+ },
787
862
  "deprecation": "Use the Flag component instead."
788
863
  },
789
864
  {
@@ -791,6 +866,11 @@
791
866
  "category": "Country flag",
792
867
  "keywords": ["Denmark"],
793
868
  "size": "16",
869
+ "alternative": ["Flag"],
870
+ "alternativeProps": {
871
+ "countryCode": "DK",
872
+ "width": "16"
873
+ },
794
874
  "deprecation": "Use the Flag component instead."
795
875
  },
796
876
  {
@@ -798,6 +878,11 @@
798
878
  "category": "Country flag",
799
879
  "keywords": ["Estonia"],
800
880
  "size": "16",
881
+ "alternative": ["Flag"],
882
+ "alternativeProps": {
883
+ "countryCode": "EE",
884
+ "width": "16"
885
+ },
801
886
  "deprecation": "Use the Flag component instead."
802
887
  },
803
888
  {
@@ -805,6 +890,11 @@
805
890
  "category": "Country flag",
806
891
  "keywords": ["Spain"],
807
892
  "size": "16",
893
+ "alternative": ["Flag"],
894
+ "alternativeProps": {
895
+ "countryCode": "ES",
896
+ "width": "16"
897
+ },
808
898
  "deprecation": "Use the Flag component instead."
809
899
  },
810
900
  {
@@ -812,6 +902,11 @@
812
902
  "category": "Country flag",
813
903
  "keywords": ["Finland"],
814
904
  "size": "16",
905
+ "alternative": ["Flag"],
906
+ "alternativeProps": {
907
+ "countryCode": "FI",
908
+ "width": "16"
909
+ },
815
910
  "deprecation": "Use the Flag component instead."
816
911
  },
817
912
  {
@@ -819,6 +914,11 @@
819
914
  "category": "Country flag",
820
915
  "keywords": ["France"],
821
916
  "size": "16",
917
+ "alternative": ["Flag"],
918
+ "alternativeProps": {
919
+ "countryCode": "FR",
920
+ "width": "16"
921
+ },
822
922
  "deprecation": "Use the Flag component instead."
823
923
  },
824
924
  {
@@ -826,6 +926,11 @@
826
926
  "category": "Country flag",
827
927
  "keywords": ["Great Britain", "United Kingdom", "UK", "England"],
828
928
  "size": "16",
929
+ "alternative": ["Flag"],
930
+ "alternativeProps": {
931
+ "countryCode": "GB",
932
+ "width": "16"
933
+ },
829
934
  "deprecation": "Use the Flag component instead."
830
935
  },
831
936
  {
@@ -833,6 +938,11 @@
833
938
  "category": "Country flag",
834
939
  "keywords": ["Greece"],
835
940
  "size": "16",
941
+ "alternative": ["Flag"],
942
+ "alternativeProps": {
943
+ "countryCode": "GR",
944
+ "width": "16"
945
+ },
836
946
  "deprecation": "Use the Flag component instead."
837
947
  },
838
948
  {
@@ -840,6 +950,11 @@
840
950
  "category": "Country flag",
841
951
  "keywords": ["Hong Kong"],
842
952
  "size": "16",
953
+ "alternative": ["Flag"],
954
+ "alternativeProps": {
955
+ "countryCode": "HK",
956
+ "width": "16"
957
+ },
843
958
  "deprecation": "Use the Flag component instead."
844
959
  },
845
960
  {
@@ -847,6 +962,11 @@
847
962
  "category": "Country flag",
848
963
  "keywords": ["Croatia"],
849
964
  "size": "16",
965
+ "alternative": ["Flag"],
966
+ "alternativeProps": {
967
+ "countryCode": "HR",
968
+ "width": "16"
969
+ },
850
970
  "deprecation": "Use the Flag component instead."
851
971
  },
852
972
  {
@@ -854,6 +974,11 @@
854
974
  "category": "Country flag",
855
975
  "keywords": ["Hungary"],
856
976
  "size": "16",
977
+ "alternative": ["Flag"],
978
+ "alternativeProps": {
979
+ "countryCode": "HU",
980
+ "width": "16"
981
+ },
857
982
  "deprecation": "Use the Flag component instead."
858
983
  },
859
984
  {
@@ -861,6 +986,11 @@
861
986
  "category": "Country flag",
862
987
  "keywords": ["Ireland"],
863
988
  "size": "16",
989
+ "alternative": ["Flag"],
990
+ "alternativeProps": {
991
+ "countryCode": "IE",
992
+ "width": "16"
993
+ },
864
994
  "deprecation": "Use the Flag component instead."
865
995
  },
866
996
  {
@@ -868,6 +998,11 @@
868
998
  "category": "Country flag",
869
999
  "keywords": ["Italy"],
870
1000
  "size": "16",
1001
+ "alternative": ["Flag"],
1002
+ "alternativeProps": {
1003
+ "countryCode": "IT",
1004
+ "width": "16"
1005
+ },
871
1006
  "deprecation": "Use the Flag component instead."
872
1007
  },
873
1008
  {
@@ -875,6 +1010,11 @@
875
1010
  "category": "Country flag",
876
1011
  "keywords": ["Japan"],
877
1012
  "size": "16",
1013
+ "alternative": ["Flag"],
1014
+ "alternativeProps": {
1015
+ "countryCode": "JP",
1016
+ "width": "16"
1017
+ },
878
1018
  "deprecation": "Use the Flag component instead."
879
1019
  },
880
1020
  {
@@ -882,6 +1022,11 @@
882
1022
  "category": "Country flag",
883
1023
  "keywords": ["Japan"],
884
1024
  "size": "16",
1025
+ "alternative": ["Flag"],
1026
+ "alternativeProps": {
1027
+ "countryCode": "JP",
1028
+ "width": "16"
1029
+ },
885
1030
  "deprecation": "Use the Flag component instead."
886
1031
  },
887
1032
  {
@@ -889,6 +1034,11 @@
889
1034
  "category": "Country flag",
890
1035
  "keywords": ["Lithuania"],
891
1036
  "size": "16",
1037
+ "alternative": ["Flag"],
1038
+ "alternativeProps": {
1039
+ "countryCode": "LT",
1040
+ "width": "16"
1041
+ },
892
1042
  "deprecation": "Use the Flag component instead."
893
1043
  },
894
1044
  {
@@ -896,6 +1046,11 @@
896
1046
  "category": "Country flag",
897
1047
  "keywords": ["Luxembourg"],
898
1048
  "size": "16",
1049
+ "alternative": ["Flag"],
1050
+ "alternativeProps": {
1051
+ "countryCode": "LU",
1052
+ "width": "16"
1053
+ },
899
1054
  "deprecation": "Use the Flag component instead."
900
1055
  },
901
1056
  {
@@ -903,6 +1058,11 @@
903
1058
  "category": "Country flag",
904
1059
  "keywords": ["Latvia"],
905
1060
  "size": "16",
1061
+ "alternative": ["Flag"],
1062
+ "alternativeProps": {
1063
+ "countryCode": "LV",
1064
+ "width": "16"
1065
+ },
906
1066
  "deprecation": "Use the Flag component instead."
907
1067
  },
908
1068
  {
@@ -910,6 +1070,11 @@
910
1070
  "category": "Country flag",
911
1071
  "keywords": ["Montenegro"],
912
1072
  "size": "16",
1073
+ "alternative": ["Flag"],
1074
+ "alternativeProps": {
1075
+ "countryCode": "MT",
1076
+ "width": "16"
1077
+ },
913
1078
  "deprecation": "Use the Flag component instead."
914
1079
  },
915
1080
  {
@@ -917,6 +1082,11 @@
917
1082
  "category": "Country flag",
918
1083
  "keywords": ["Mexico"],
919
1084
  "size": "16",
1085
+ "alternative": ["Flag"],
1086
+ "alternativeProps": {
1087
+ "countryCode": "MX",
1088
+ "width": "16"
1089
+ },
920
1090
  "deprecation": "Use the Flag component instead."
921
1091
  },
922
1092
  {
@@ -924,6 +1094,11 @@
924
1094
  "category": "Country flag",
925
1095
  "keywords": ["Malaysia"],
926
1096
  "size": "16",
1097
+ "alternative": ["Flag"],
1098
+ "alternativeProps": {
1099
+ "countryCode": "MY",
1100
+ "width": "16"
1101
+ },
927
1102
  "deprecation": "Use the Flag component instead."
928
1103
  },
929
1104
  {
@@ -931,6 +1106,11 @@
931
1106
  "category": "Country flag",
932
1107
  "keywords": ["Netherlands"],
933
1108
  "size": "16",
1109
+ "alternative": ["Flag"],
1110
+ "alternativeProps": {
1111
+ "countryCode": "NL",
1112
+ "width": "16"
1113
+ },
934
1114
  "deprecation": "Use the Flag component instead."
935
1115
  },
936
1116
  {
@@ -938,6 +1118,11 @@
938
1118
  "category": "Country flag",
939
1119
  "keywords": ["Norway"],
940
1120
  "size": "16",
1121
+ "alternative": ["Flag"],
1122
+ "alternativeProps": {
1123
+ "countryCode": "NO",
1124
+ "width": "16"
1125
+ },
941
1126
  "deprecation": "Use the Flag component instead."
942
1127
  },
943
1128
  {
@@ -945,6 +1130,11 @@
945
1130
  "category": "Country flag",
946
1131
  "keywords": ["New Zeland"],
947
1132
  "size": "16",
1133
+ "alternative": ["Flag"],
1134
+ "alternativeProps": {
1135
+ "countryCode": "NZ",
1136
+ "width": "16"
1137
+ },
948
1138
  "deprecation": "Use the Flag component instead."
949
1139
  },
950
1140
  {
@@ -952,6 +1142,11 @@
952
1142
  "category": "Country flag",
953
1143
  "keywords": ["Peru"],
954
1144
  "size": "16",
1145
+ "alternative": ["Flag"],
1146
+ "alternativeProps": {
1147
+ "countryCode": "PE",
1148
+ "width": "16"
1149
+ },
955
1150
  "deprecation": "Use the Flag component instead."
956
1151
  },
957
1152
  {
@@ -959,6 +1154,11 @@
959
1154
  "category": "Country flag",
960
1155
  "keywords": ["Poland"],
961
1156
  "size": "16",
1157
+ "alternative": ["Flag"],
1158
+ "alternativeProps": {
1159
+ "countryCode": "PL",
1160
+ "width": "16"
1161
+ },
962
1162
  "deprecation": "Use the Flag component instead."
963
1163
  },
964
1164
  {
@@ -966,6 +1166,11 @@
966
1166
  "category": "Country flag",
967
1167
  "keywords": ["Portugal"],
968
1168
  "size": "16",
1169
+ "alternative": ["Flag"],
1170
+ "alternativeProps": {
1171
+ "countryCode": "PT",
1172
+ "width": "16"
1173
+ },
969
1174
  "deprecation": "Use the Flag component instead."
970
1175
  },
971
1176
  {
@@ -973,6 +1178,11 @@
973
1178
  "category": "Country flag",
974
1179
  "keywords": ["Romania"],
975
1180
  "size": "16",
1181
+ "alternative": ["Flag"],
1182
+ "alternativeProps": {
1183
+ "countryCode": "RO",
1184
+ "width": "16"
1185
+ },
976
1186
  "deprecation": "Use the Flag component instead."
977
1187
  },
978
1188
  {
@@ -980,6 +1190,11 @@
980
1190
  "category": "Country flag",
981
1191
  "keywords": ["Sweden"],
982
1192
  "size": "16",
1193
+ "alternative": ["Flag"],
1194
+ "alternativeProps": {
1195
+ "countryCode": "SE",
1196
+ "width": "16"
1197
+ },
983
1198
  "deprecation": "Use the Flag component instead."
984
1199
  },
985
1200
  {
@@ -987,6 +1202,11 @@
987
1202
  "category": "Country flag",
988
1203
  "keywords": ["Singapore"],
989
1204
  "size": "16",
1205
+ "alternative": ["Flag"],
1206
+ "alternativeProps": {
1207
+ "countryCode": "SG",
1208
+ "width": "16"
1209
+ },
990
1210
  "deprecation": "Use the Flag component instead."
991
1211
  },
992
1212
  {
@@ -994,6 +1214,11 @@
994
1214
  "category": "Country flag",
995
1215
  "keywords": ["Slovenia"],
996
1216
  "size": "16",
1217
+ "alternative": ["Flag"],
1218
+ "alternativeProps": {
1219
+ "countryCode": "SI",
1220
+ "width": "16"
1221
+ },
997
1222
  "deprecation": "Use the Flag component instead."
998
1223
  },
999
1224
  {
@@ -1001,6 +1226,11 @@
1001
1226
  "category": "Country flag",
1002
1227
  "keywords": ["Slovakia"],
1003
1228
  "size": "16",
1229
+ "alternative": ["Flag"],
1230
+ "alternativeProps": {
1231
+ "countryCode": "SK",
1232
+ "width": "16"
1233
+ },
1004
1234
  "deprecation": "Use the Flag component instead."
1005
1235
  },
1006
1236
  {
@@ -1008,6 +1238,11 @@
1008
1238
  "category": "Country flag",
1009
1239
  "keywords": ["United States of America", "USA"],
1010
1240
  "size": "16",
1241
+ "alternative": ["Flag"],
1242
+ "alternativeProps": {
1243
+ "countryCode": "US",
1244
+ "width": "16"
1245
+ },
1011
1246
  "deprecation": "Use the Flag component instead."
1012
1247
  },
1013
1248
 
@@ -2856,6 +3091,7 @@
2856
3091
  "name": "mobile_phone",
2857
3092
  "category": "Device",
2858
3093
  "size": "24",
3094
+ "alternative": ["Mobile"],
2859
3095
  "deprecation": "Use the 'Mobile' icon instead."
2860
3096
  },
2861
3097
  {
@@ -3164,6 +3400,7 @@
3164
3400
  "name": "color_correction",
3165
3401
  "category": "Miscellaneous",
3166
3402
  "size": "24",
3403
+ "alternative": ["ColorPicker"],
3167
3404
  "deprecation": "Use the `ColorPicker` icon instead."
3168
3405
  },
3169
3406
  {
@@ -3191,6 +3428,7 @@
3191
3428
  "name": "cookie_preferences",
3192
3429
  "category": "Miscellaneous",
3193
3430
  "size": "24",
3431
+ "alternative": ["Cookie"],
3194
3432
  "deprecation": "Use the `Cookie` icon instead."
3195
3433
  },
3196
3434
  {
@@ -3202,6 +3440,7 @@
3202
3440
  "name": "customize",
3203
3441
  "category": "Miscellaneous",
3204
3442
  "size": "24",
3443
+ "alternative": ["Customise"],
3205
3444
  "deprecation": "Use the `Customise` icon instead."
3206
3445
  },
3207
3446
  {
@@ -3213,6 +3452,7 @@
3213
3452
  "name": "favorite",
3214
3453
  "category": "Miscellaneous",
3215
3454
  "size": "24",
3455
+ "alternative": ["Favourite"],
3216
3456
  "deprecation": "Use the `Favourite` icon instead."
3217
3457
  },
3218
3458
  {
@@ -3224,6 +3464,7 @@
3224
3464
  "name": "favorite",
3225
3465
  "category": "Miscellaneous",
3226
3466
  "size": "16",
3467
+ "alternative": ["Favourite"],
3227
3468
  "deprecation": "Use the `Favourite` icon instead."
3228
3469
  },
3229
3470
  {
@@ -3320,6 +3561,7 @@
3320
3561
  "name": "no_sim",
3321
3562
  "category": "Miscellaneous",
3322
3563
  "size": "24",
3564
+ "alternative": ["NoSimcard"],
3323
3565
  "deprecation": "Use the `NoSimcard` icon instead."
3324
3566
  },
3325
3567
  {
@@ -3366,6 +3608,7 @@
3366
3608
  "name": "print_failed",
3367
3609
  "category": "Miscellaneous",
3368
3610
  "size": "24",
3611
+ "alternative": ["PrinterFailed"],
3369
3612
  "deprecation": "Use the `PrinterFailed` icon instead."
3370
3613
  },
3371
3614
  {
@@ -3377,6 +3620,7 @@
3377
3620
  "name": "print_failed",
3378
3621
  "category": "Miscellaneous",
3379
3622
  "size": "16",
3623
+ "alternative": ["PrinterFailed"],
3380
3624
  "deprecation": "Use the `PrinterFailed` icon instead."
3381
3625
  },
3382
3626
  {
@@ -3485,6 +3729,7 @@
3485
3729
  "name": "unfavorite",
3486
3730
  "category": "Miscellaneous",
3487
3731
  "size": "24",
3732
+ "alternative": ["Unfavourite"],
3488
3733
  "deprecation": "Use the `Unfavourite` icon instead."
3489
3734
  },
3490
3735
  {
@@ -3501,6 +3746,7 @@
3501
3746
  "name": "contractors",
3502
3747
  "category": "Miscellaneous",
3503
3748
  "size": "16",
3749
+ "alternative": ["Contractor"],
3504
3750
  "deprecation": "Use the `Contractor` icon instead."
3505
3751
  },
3506
3752
  {
@@ -3512,6 +3758,7 @@
3512
3758
  "name": "contractors",
3513
3759
  "category": "Miscellaneous",
3514
3760
  "size": "24",
3761
+ "alternative": ["Contractor"],
3515
3762
  "deprecation": "Use the `Contractor` icon instead."
3516
3763
  },
3517
3764
  {
@@ -3686,12 +3933,14 @@
3686
3933
  "name": "notify_circle",
3687
3934
  "category": "Notification",
3688
3935
  "size": "24",
3936
+ "alternative": ["Notify"],
3689
3937
  "deprecation": "Use the `Notify` icon instead."
3690
3938
  },
3691
3939
  {
3692
3940
  "name": "notify_circle",
3693
3941
  "category": "Notification",
3694
3942
  "size": "16",
3943
+ "alternative": ["Notify"],
3695
3944
  "deprecation": "Use the `Notify` icon instead."
3696
3945
  },
3697
3946
  {
@@ -4025,6 +4274,11 @@
4025
4274
  "category": "Filled",
4026
4275
  "size": "24"
4027
4276
  },
4277
+ {
4278
+ "name": "cash_drawer",
4279
+ "category": "Product and feature",
4280
+ "size": "24"
4281
+ },
4028
4282
  {
4029
4283
  "name": "challenge",
4030
4284
  "category": "Product and feature",
@@ -4077,6 +4331,7 @@
4077
4331
  {
4078
4332
  "name": "general_settings",
4079
4333
  "category": "Product and feature",
4334
+ "alternative": ["Settings"],
4080
4335
  "deprecation": "Use the `Settings` icon instead.",
4081
4336
  "size": "24"
4082
4337
  },
@@ -4084,6 +4339,7 @@
4084
4339
  "name": "gift_card",
4085
4340
  "category": "Product and feature",
4086
4341
  "size": "24",
4342
+ "alternative": ["GiftCards"],
4087
4343
  "deprecation": "Use the `GiftCards` icon instead."
4088
4344
  },
4089
4345
  {
@@ -4233,6 +4489,7 @@
4233
4489
  "name": "payment_link",
4234
4490
  "category": "Product and feature",
4235
4491
  "size": "24",
4492
+ "alternative": ["PaymentLinks"],
4236
4493
  "deprecation": "Use the `PaymentLinks` icon instead."
4237
4494
  },
4238
4495
  {
@@ -4351,6 +4608,7 @@
4351
4608
  "name": "refer",
4352
4609
  "category": "Product and feature",
4353
4610
  "size": "24",
4611
+ "alternative": ["ReferAFriend", "Reward"],
4354
4612
  "deprecation": "Use the `ReferAFriend` or `Reward` icons instead."
4355
4613
  },
4356
4614
  {
@@ -4379,6 +4637,7 @@
4379
4637
  "name": "sales",
4380
4638
  "category": "Product and feature",
4381
4639
  "size": "24",
4640
+ "alternative": ["Receipt"],
4382
4641
  "deprecation": "Use the `Receipt` icon instead."
4383
4642
  },
4384
4643
  {
@@ -4496,6 +4755,7 @@
4496
4755
  "name": "messenger",
4497
4756
  "category": "Social media",
4498
4757
  "size": "24",
4758
+ "alternative": ["FacebookMessenger"],
4499
4759
  "deprecation": "Use the `FacebookMessenger` icon instead."
4500
4760
  },
4501
4761
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sumup-oss/icons",
3
- "version": "6.10.2",
3
+ "version": "6.11.0",
4
4
  "description": "A collection of icons by SumUp",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -41,9 +41,9 @@
41
41
  "@babel/core": "^7.29.7",
42
42
  "@babel/preset-env": "^7.29.5",
43
43
  "@babel/preset-react": "^7.28.5",
44
- "@biomejs/js-api": "^3.0.0",
44
+ "@biomejs/js-api": "^6.0.0",
45
45
  "@types/babel__core": "^7.20.5",
46
- "fast-xml-parser": "^5.7.1",
46
+ "fast-xml-parser": "^5.9.3",
47
47
  "tsx": "^4.22.3",
48
48
  "typescript": "^6.0.3",
49
49
  "vitest": "^4.1.5"
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4 18H20V14.7617H4V18ZM8.15625 5.61915C8.15625 5.06729 8.20533 4.52612 8.29883 4H6.1875L4.66699 9.04396L8.82227 8.9961C8.39714 7.96706 8.15626 6.83411 8.15625 5.61915ZM15.1816 2C17.1899 2 18.8184 3.6204 18.8184 5.61915V7.95899L19.9932 6.78907C20.3482 6.43574 20.9243 6.43574 21.2793 6.78907C21.6341 7.1424 21.6342 7.71509 21.2793 8.06837L18.5518 10.7822C18.1967 11.1356 17.6216 11.1356 17.2666 10.7822L14.5391 8.06837C14.1841 7.71507 14.1841 7.14241 14.5391 6.78907C14.8941 6.43576 15.4692 6.43582 15.8242 6.78907L17 7.95899V5.61915C17 4.6824 16.2848 3.91223 15.3682 3.81934L15.1816 3.80957H14.7275L14.6348 3.80469C14.1761 3.75855 13.8184 3.3729 13.8184 2.9043C13.8186 2.43591 14.1763 2.05101 14.6348 2.00488L14.7275 2H15.1816ZM22 18.1905C22 19.1898 21.1858 20 20.1816 20H3.81836L3.63184 19.9903C2.71524 19.8974 2 19.1272 2 18.1905V14.5713C2.00009 13.572 2.81426 12.7617 3.81836 12.7617H20.1816C21.1857 12.7617 21.9999 13.572 22 14.5713V18.1905ZM10.168 6.02051C10.2809 8.00926 11.2282 9.70878 12.6436 10.9522L4.41797 11.0479C3.20016 11.0477 2.32681 9.87873 2.67676 8.71778L4.31348 3.29004C4.52978 2.57245 5.16504 2.06622 5.90527 2.00586L6.05469 2H11.1289C10.5102 3.06459 10.1562 4.30084 10.1562 5.61915L10.168 6.02051Z" fill="currentColor"/>
3
+ </svg>