@sumup-oss/icons 5.23.0 → 5.24.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.
- package/dist/Bancomat.js +1 -1
- package/dist/SumupScheme.js +60 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1 -0
- package/manifest.json +5 -0
- package/package.json +2 -2
- package/web/v2/bancomat_32.svg +1 -1
- package/web/v2/sumup_scheme_32.svg +3 -0
package/dist/Bancomat.js
CHANGED
|
@@ -37,7 +37,7 @@ var Bancomat32 = function Bancomat32(props) {
|
|
|
37
37
|
}),
|
|
38
38
|
/*#__PURE__*/ React.createElement("path", {
|
|
39
39
|
fill: "#41b6e6",
|
|
40
|
-
d: "
|
|
40
|
+
d: "m21.56 10.194-1.3.002-.025-.117c1.794-.568 2.516-1.741 2.516-3.1 0-1.745-1.19-2.977-3.153-2.979h-4.229l-1.42 2.717h3.482c.984 0 1.851.274 1.851 1.517 0 1.483-1.235 1.967-2.497 1.967h-4.66l-1.446 2.765h4.502c1.566 0 1.967.751 1.967 1.632 0 1.122-.65 2.114-2.399 2.114H8.72L7 20h8.531c3.432 0 5.159-1.76 5.159-4.145 0-1.612-.789-2.435-1.908-2.777l.029-.124L24 12.953v-.26c0-1.487-.755-2.5-2.44-2.499",
|
|
41
41
|
}),
|
|
42
42
|
);
|
|
43
43
|
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
function _extends() {
|
|
2
|
+
return (
|
|
3
|
+
(_extends = Object.assign
|
|
4
|
+
? Object.assign.bind()
|
|
5
|
+
: function (n) {
|
|
6
|
+
for (var e = 1; e < arguments.length; e++) {
|
|
7
|
+
var t = arguments[e];
|
|
8
|
+
for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
|
|
9
|
+
}
|
|
10
|
+
return n;
|
|
11
|
+
}),
|
|
12
|
+
_extends.apply(null, arguments)
|
|
13
|
+
);
|
|
14
|
+
}
|
|
15
|
+
import React from "react";
|
|
16
|
+
var SumupScheme32 = function SumupScheme32(props) {
|
|
17
|
+
return /*#__PURE__*/ React.createElement(
|
|
18
|
+
"svg",
|
|
19
|
+
_extends(
|
|
20
|
+
{
|
|
21
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
22
|
+
width: "32",
|
|
23
|
+
height: "24",
|
|
24
|
+
fill: "none",
|
|
25
|
+
viewBox: "0 0 32 24",
|
|
26
|
+
},
|
|
27
|
+
props,
|
|
28
|
+
),
|
|
29
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
d: "M27.488 0A4.51 4.51 0 0 1 32 4.512v14.976A4.51 4.51 0 0 1 27.488 24H4.512A4.51 4.51 0 0 1 0 19.488V4.512A4.51 4.51 0 0 1 4.512 0zm-16.18 17.855a5.4 5.4 0 0 0 7.649 0 5.424 5.424 0 0 0 0-7.662zm9.384-11.71a5.4 5.4 0 0 0-7.649 0 5.424 5.424 0 0 0 0 7.663z",
|
|
32
|
+
}),
|
|
33
|
+
);
|
|
34
|
+
};
|
|
35
|
+
const sizeMap = {
|
|
36
|
+
32: SumupScheme32,
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* @deprecated This icon is too heavy to be inlined as a React component. [Load it from a URL instead](https://circuit.sumup.com/?path=/docs/packages-icons--docs#load-from-a-url).
|
|
41
|
+
*/
|
|
42
|
+
export function SumupScheme(_ref) {
|
|
43
|
+
let { size = "32", ...props } = _ref;
|
|
44
|
+
const Icon = sizeMap[size] || sizeMap["32"];
|
|
45
|
+
if (
|
|
46
|
+
process.env.NODE_ENV !== "production" &&
|
|
47
|
+
process.env.NODE_ENV !== "test" &&
|
|
48
|
+
!sizeMap[size]
|
|
49
|
+
) {
|
|
50
|
+
console.warn(
|
|
51
|
+
new Error(
|
|
52
|
+
"The '".concat(
|
|
53
|
+
size,
|
|
54
|
+
"' size is not supported by the 'SumupScheme' icon. Please use one of the available sizes: '32'.",
|
|
55
|
+
),
|
|
56
|
+
),
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
return /*#__PURE__*/ React.createElement(Icon, props);
|
|
60
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -304,6 +304,11 @@ declare const Vr: IconComponentType<"24" | "32">;
|
|
|
304
304
|
*/
|
|
305
305
|
declare const SumupPay: IconComponentType<"32">;
|
|
306
306
|
|
|
307
|
+
/**
|
|
308
|
+
* @deprecated This icon is too heavy to be inlined as a React component. [Load it from a URL instead](https://circuit.sumup.com/?path=/docs/packages-icons--docs#load-from-a-url).
|
|
309
|
+
*/
|
|
310
|
+
declare const SumupScheme: IconComponentType<"32">;
|
|
311
|
+
|
|
307
312
|
declare const Callback: IconComponentType<"24">;
|
|
308
313
|
|
|
309
314
|
declare const Email: IconComponentType<"24">;
|
|
@@ -1120,6 +1125,7 @@ export {
|
|
|
1120
1125
|
Vpay,
|
|
1121
1126
|
Vr,
|
|
1122
1127
|
SumupPay,
|
|
1128
|
+
SumupScheme,
|
|
1123
1129
|
Callback,
|
|
1124
1130
|
Email,
|
|
1125
1131
|
EmailChat,
|
|
@@ -1467,6 +1473,7 @@ export type IconName =
|
|
|
1467
1473
|
| "vpay"
|
|
1468
1474
|
| "vr"
|
|
1469
1475
|
| "sumup_pay"
|
|
1476
|
+
| "sumup_scheme"
|
|
1470
1477
|
| "callback"
|
|
1471
1478
|
| "email"
|
|
1472
1479
|
| "email_chat"
|
|
@@ -2036,6 +2043,7 @@ type Icons = {
|
|
|
2036
2043
|
vpay: "24" | "32";
|
|
2037
2044
|
vr: "24" | "32";
|
|
2038
2045
|
sumup_pay: "32";
|
|
2046
|
+
sumup_scheme: "32";
|
|
2039
2047
|
callback: "24";
|
|
2040
2048
|
email: "24";
|
|
2041
2049
|
email_chat: "24";
|
package/dist/index.js
CHANGED
|
@@ -91,6 +91,7 @@ export { VisaElectron } from "./VisaElectron.js";
|
|
|
91
91
|
export { Vpay } from "./Vpay.js";
|
|
92
92
|
export { Vr } from "./Vr.js";
|
|
93
93
|
export { SumupPay } from "./SumupPay.js";
|
|
94
|
+
export { SumupScheme } from "./SumupScheme.js";
|
|
94
95
|
export { Callback } from "./Callback.js";
|
|
95
96
|
export { Email } from "./Email.js";
|
|
96
97
|
export { EmailChat } from "./EmailChat.js";
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sumup-oss/icons",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.24.0",
|
|
4
4
|
"description": "A collection of icons by SumUp",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@babel/core": "^7.29.0",
|
|
42
|
-
"@babel/preset-env": "^7.29.
|
|
42
|
+
"@babel/preset-env": "^7.29.2",
|
|
43
43
|
"@babel/preset-react": "^7.28.5",
|
|
44
44
|
"@biomejs/js-api": "^3.0.0",
|
|
45
45
|
"@types/babel__core": "^7.20.5",
|
package/web/v2/bancomat_32.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="24" fill="none" viewBox="0 0 32 24">
|
|
2
2
|
<rect width="31" height="23" x=".5" y=".5" fill="#fff" stroke="#ccc" rx="3.5"/>
|
|
3
|
-
<path fill="#41b6e6" d="
|
|
3
|
+
<path fill="#41b6e6" d="m21.56 10.194-1.3.002-.025-.117c1.794-.568 2.516-1.741 2.516-3.1 0-1.745-1.19-2.977-3.153-2.979h-4.229l-1.42 2.717h3.482c.984 0 1.851.274 1.851 1.517 0 1.483-1.235 1.967-2.497 1.967h-4.66l-1.446 2.765h4.502c1.566 0 1.967.751 1.967 1.632 0 1.122-.65 2.114-2.399 2.114H8.72L7 20h8.531c3.432 0 5.159-1.76 5.159-4.145 0-1.612-.789-2.435-1.908-2.777l.029-.124L24 12.953v-.26c0-1.487-.755-2.5-2.44-2.499"/>
|
|
4
4
|
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="24" fill="none" viewBox="0 0 32 24">
|
|
2
|
+
<path fill="currentColor" d="M27.488 0A4.51 4.51 0 0 1 32 4.512v14.976A4.51 4.51 0 0 1 27.488 24H4.512A4.51 4.51 0 0 1 0 19.488V4.512A4.51 4.51 0 0 1 4.512 0zm-16.18 17.855a5.4 5.4 0 0 0 7.649 0 5.424 5.424 0 0 0 0-7.662zm9.384-11.71a5.4 5.4 0 0 0-7.649 0 5.424 5.424 0 0 0 0 7.663z"/>
|
|
3
|
+
</svg>
|