@sumup-oss/icons 6.5.0 → 6.7.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/FullReturn.js +55 -0
- package/dist/Iris.js +82 -0
- package/dist/OrderPlaced.js +55 -0
- package/dist/PartialReturn.js +55 -0
- package/dist/PiggyBank.js +40 -0
- package/dist/PlusTier.js +1 -1
- package/dist/Pluxee.js +1 -1
- package/dist/Pos.js +3 -3
- package/dist/ZoomIn.js +40 -0
- package/dist/ZoomOut.js +40 -0
- package/dist/index.d.ts +38 -0
- package/dist/index.js +7 -0
- package/manifest.json +50 -0
- package/package.json +1 -1
- package/web/v2/full_return_16.svg +3 -0
- package/web/v2/full_return_24.svg +3 -0
- package/web/v2/iris_24.svg +12 -0
- package/web/v2/order_placed_16.svg +3 -0
- package/web/v2/order_placed_24.svg +3 -0
- package/web/v2/partial_return_16.svg +3 -0
- package/web/v2/partial_return_24.svg +3 -0
- package/web/v2/piggy_bank_24.svg +3 -0
- package/web/v2/plus_tier_16.svg +1 -1
- package/web/v2/pluxee_32.svg +2 -2
- package/web/v2/pos_24.svg +2 -2
- package/web/v2/zoom_in_24.svg +3 -0
- package/web/v2/zoom_out_24.svg +3 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
var FullReturn16 = function FullReturn16(props) {
|
|
3
|
+
return /*#__PURE__*/ _jsx("svg", {
|
|
4
|
+
width: "16",
|
|
5
|
+
height: "16",
|
|
6
|
+
viewBox: "0 0 16 16",
|
|
7
|
+
fill: "none",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
11
|
+
d: "M15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8Z",
|
|
12
|
+
fill: "currentColor",
|
|
13
|
+
}),
|
|
14
|
+
});
|
|
15
|
+
};
|
|
16
|
+
var FullReturn24 = function FullReturn24(props) {
|
|
17
|
+
return /*#__PURE__*/ _jsx("svg", {
|
|
18
|
+
width: "24",
|
|
19
|
+
height: "24",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fill: "none",
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
...props,
|
|
24
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
25
|
+
d: "M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
}),
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
31
|
+
const sizeMap = {
|
|
32
|
+
16: FullReturn16,
|
|
33
|
+
24: FullReturn24,
|
|
34
|
+
};
|
|
35
|
+
export function FullReturn(_ref) {
|
|
36
|
+
let { size = "24", ...props } = _ref;
|
|
37
|
+
const Icon = sizeMap[size] || sizeMap["24"];
|
|
38
|
+
if (
|
|
39
|
+
process.env.NODE_ENV !== "production" &&
|
|
40
|
+
process.env.NODE_ENV !== "test" &&
|
|
41
|
+
!sizeMap[size]
|
|
42
|
+
) {
|
|
43
|
+
console.warn(
|
|
44
|
+
new Error(
|
|
45
|
+
"The '".concat(
|
|
46
|
+
size,
|
|
47
|
+
"' size is not supported by the 'FullReturn' icon. Please use one of the available sizes: '16', '24'.",
|
|
48
|
+
),
|
|
49
|
+
),
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
return /*#__PURE__*/ _jsx(Icon, {
|
|
53
|
+
...props,
|
|
54
|
+
});
|
|
55
|
+
}
|
package/dist/Iris.js
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
var Iris24 = function Iris24(props) {
|
|
4
|
+
return /*#__PURE__*/ _jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "50",
|
|
7
|
+
height: "24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 50 24",
|
|
10
|
+
...props,
|
|
11
|
+
children: [
|
|
12
|
+
/*#__PURE__*/ _jsx("path", {
|
|
13
|
+
fill: "#414042",
|
|
14
|
+
d: "M19.642 20.134h-.407a.3.3 0 0 1-.241-.114v.94a.04.04 0 0 1-.038.04h-.27v-2.53c0-.06.05-.11.114-.11h.842c.283 0 .516.148.516.5v.773c0 .298-.233.5-.516.5m.208-1.275c0-.163-.095-.209-.208-.209h-.609a.04.04 0 0 0-.038.039v.968c.007.093.078.17.17.181h.478a.21.21 0 0 0 .208-.209v-.77M23.742 18.857v1.164c0 .063-.049.114-.113.114H22.8a.516.516 0 0 1-.516-.518v-.11c0-.288.23-.519.516-.519h.598a.04.04 0 0 0 .038-.038v-.089c0-.113-.074-.21-.212-.21h-.704a.04.04 0 0 1-.039-.039v-.252h.743c.286 0 .516.174.516.498zm-.941.975h.601c.022 0 .036-.018.036-.038v-.565c-.018.032-.053.05-.092.053H22.8a.207.207 0 0 0-.209.21v.13c0 .118.093.21.209.21M27.359 18.36c.021 0 .038.014.038.035v2.087a.52.52 0 0 1-.516.518h-.87v-.256a.04.04 0 0 1 .038-.04h.83a.21.21 0 0 0 .21-.209v-.475a.31.31 0 0 1-.245.114h-.4a.52.52 0 0 1-.516-.518v-1.257h.27c.02 0 .038.015.038.036v1.235c0 .113.092.21.208.21h.47a.204.204 0 0 0 .174-.182V18.36h.27M31.742 18.877v1.257h-.27a.04.04 0 0 1-.038-.039V18.86a.21.21 0 0 0-.208-.209h-.46c.035.022.063.057.063.1v1.384h-.268a.04.04 0 0 1-.039-.039v-1.405a.04.04 0 0 0-.038-.039h-.535c-.018 0-.032.014-.035.032v1.413a.04.04 0 0 1-.039.039h-.268v-1.544a.23.23 0 0 1 .23-.23h1.39c.287 0 .517.23.517.517zM33.932 19.616v-.752c0-.33.23-.504.516-.504h.474c.287 0 .517.174.517.504v.408c0 .06-.008.11-.093.11h-.969a.17.17 0 0 1-.138-.067v.316c0 .117.093.21.209.21h.878c.021 0 .038.017.038.038v.256h-.916a.516.516 0 0 1-.516-.518zm.517-.966c-.116 0-.209.068-.209.21v.191c0 .022.015.035.036.039h.824a.04.04 0 0 0 .039-.039v-.192q.001-.211-.205-.209zM39.144 18.877v1.257h-.27a.04.04 0 0 1-.038-.039V18.86a.21.21 0 0 0-.209-.209h-.64a.04.04 0 0 0-.039.039v1.405a.04.04 0 0 1-.038.039h-.27V18.59a.23.23 0 0 1 .23-.23h.757c.287 0 .517.23.517.517M42.226 19.878v.256h-.357a.52.52 0 0 1-.517-.518V17.5h.269c.021 0 .038.018.038.04v.888a.11.11 0 0 1 .103-.064h.375v.256c0 .021-.018.035-.038.035h-.439v.976c0 .117.092.21.209.21h.318c.022 0 .039.017.039.038zM44.263 19.066v-.238c0-.287.198-.469.485-.469h.97v.252a.04.04 0 0 1-.04.04h-.93q-.176 0-.177.174v.103c0 .018.014.033.032.039l1.094.26c.056.01.096.06.096.116v.316c0 .309-.22.476-.506.476h-1.001v-.253c0-.021.017-.038.038-.038h.963c.116 0 .22-.067.22-.185v-.167c0-.018-.015-.031-.033-.035l-1.111-.273a.12.12 0 0 1-.1-.117z",
|
|
15
|
+
}),
|
|
16
|
+
/*#__PURE__*/ _jsx("path", {
|
|
17
|
+
fill: "#2f6fb4",
|
|
18
|
+
d: "m10.365 4-.063.002v3.086l.063-.002a3.296 3.296 0 0 1 3.287 3.282h3.076C16.72 6.855 13.868 4 10.364 4",
|
|
19
|
+
}),
|
|
20
|
+
/*#__PURE__*/ _jsx("path", {
|
|
21
|
+
fill: "#049b95",
|
|
22
|
+
d: "M13.652 10.368v.016a3.296 3.296 0 0 1-3.287 3.298l-.063-.002v3.086l.063.002c3.508 0 6.364-2.863 6.364-6.384v-.016z",
|
|
23
|
+
}),
|
|
24
|
+
/*#__PURE__*/ _jsx("path", {
|
|
25
|
+
fill: "#ef3e37",
|
|
26
|
+
d: "M10.302 7.088V4.002C6.826 4.036 4.009 6.877 4 10.368h3.077a3.297 3.297 0 0 1 3.225-3.28",
|
|
27
|
+
}),
|
|
28
|
+
/*#__PURE__*/ _jsx("path", {
|
|
29
|
+
fill: "#f78d22",
|
|
30
|
+
d: "M7.077 10.384v-.017H4v.017c0 3.498 2.822 6.347 6.302 6.381V13.68a3.296 3.296 0 0 1-3.225-3.297",
|
|
31
|
+
}),
|
|
32
|
+
/*#__PURE__*/ _jsx("path", {
|
|
33
|
+
fill: "#144a8c",
|
|
34
|
+
d: "M10.365 6.216h-.042v2.015h.041c1.18 0 2.142.96 2.147 2.143h2.01c-.007-2.294-1.868-4.158-4.157-4.158",
|
|
35
|
+
}),
|
|
36
|
+
/*#__PURE__*/ _jsx("path", {
|
|
37
|
+
fill: "#02746e",
|
|
38
|
+
d: "M12.511 10.374v.01a2.15 2.15 0 0 1-2.146 2.154l-.042-.001v2.015h.041a4.166 4.166 0 0 0 4.156-4.168v-.01z",
|
|
39
|
+
}),
|
|
40
|
+
/*#__PURE__*/ _jsx("path", {
|
|
41
|
+
fill: "#c72127",
|
|
42
|
+
d: "M10.323 8.231V6.216a4.166 4.166 0 0 0-4.115 4.157h2.01a2.15 2.15 0 0 1 2.105-2.142",
|
|
43
|
+
}),
|
|
44
|
+
/*#__PURE__*/ _jsx("path", {
|
|
45
|
+
fill: "#ce6a28",
|
|
46
|
+
d: "M8.218 10.384v-.011h-2.01v.01a4.167 4.167 0 0 0 4.115 4.168v-2.015a2.15 2.15 0 0 1-2.105-2.152",
|
|
47
|
+
}),
|
|
48
|
+
/*#__PURE__*/ _jsx("path", {
|
|
49
|
+
fill: "#414042",
|
|
50
|
+
d: "M18.59 5.644c0-.82 1.228-.804 1.228 0v9.82c0 .756-1.228.788-1.228 0zM23.502 11.178h3.306c2.145 0 3.078-1.002 3.046-2.233-.017-1.347-1.147-2.43-3.046-2.43h-3.306v4.662m0 1.035v3.185c0 .756-1.195.756-1.195.016V5.99c0-.345.245-.574.606-.574h3.88c2.832 0 4.273 1.609 4.273 3.53 0 1.658-.9 2.857-2.914 3.201l2.653 2.874c.622.624-.279 1.347-.819.788l-3.307-3.596h-3.177M33.29 5.644c0-.82 1.229-.804 1.229 0v9.82c0 .756-1.228.788-1.228 0zM37.335 13.28c.426 1.363 2.242 1.659 3.553 1.659 1.391 0 3.552-.428 3.552-2.085 0-1.43-1.719-1.544-3.52-1.691-2.259-.18-4.681-.394-4.681-2.841 0-2.168 2.488-3.136 4.486-3.136 1.719 0 3.863.41 4.551 2.282.245.657-.868.953-1.113.394-.491-1.247-2.243-1.461-3.422-1.461-1.097 0-3.225.443-3.225 1.938s1.637 1.576 3.536 1.724c2.243.197 4.65.313 4.65 2.775 0 2.463-2.799 3.285-4.812 3.285-1.67 0-4.224-.575-4.765-2.546-.196-.722 1.08-.968 1.212-.295",
|
|
51
|
+
}),
|
|
52
|
+
],
|
|
53
|
+
});
|
|
54
|
+
};
|
|
55
|
+
const sizeMap = {
|
|
56
|
+
24: Iris24,
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @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).
|
|
61
|
+
*/
|
|
62
|
+
export function Iris(_ref) {
|
|
63
|
+
let { size = "24", ...props } = _ref;
|
|
64
|
+
const Icon = sizeMap[size] || sizeMap["24"];
|
|
65
|
+
if (
|
|
66
|
+
process.env.NODE_ENV !== "production" &&
|
|
67
|
+
process.env.NODE_ENV !== "test" &&
|
|
68
|
+
!sizeMap[size]
|
|
69
|
+
) {
|
|
70
|
+
console.warn(
|
|
71
|
+
new Error(
|
|
72
|
+
"The '".concat(
|
|
73
|
+
size,
|
|
74
|
+
"' size is not supported by the 'Iris' icon. Please use one of the available sizes: '24'.",
|
|
75
|
+
),
|
|
76
|
+
),
|
|
77
|
+
);
|
|
78
|
+
}
|
|
79
|
+
return /*#__PURE__*/ _jsx(Icon, {
|
|
80
|
+
...props,
|
|
81
|
+
});
|
|
82
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
var OrderPlaced16 = function OrderPlaced16(props) {
|
|
3
|
+
return /*#__PURE__*/ _jsx("svg", {
|
|
4
|
+
width: "16",
|
|
5
|
+
height: "16",
|
|
6
|
+
viewBox: "0 0 16 16",
|
|
7
|
+
fill: "none",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
11
|
+
d: "M13.6 8C13.6 4.90721 11.0928 2.4 8 2.4C4.90721 2.4 2.4 4.90721 2.4 8C2.4 11.0928 4.90721 13.6 8 13.6C11.0928 13.6 13.6 11.0928 13.6 8ZM15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8Z",
|
|
12
|
+
fill: "currentColor",
|
|
13
|
+
}),
|
|
14
|
+
});
|
|
15
|
+
};
|
|
16
|
+
var OrderPlaced24 = function OrderPlaced24(props) {
|
|
17
|
+
return /*#__PURE__*/ _jsx("svg", {
|
|
18
|
+
width: "24",
|
|
19
|
+
height: "24",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fill: "none",
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
...props,
|
|
24
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
25
|
+
d: "M20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12ZM22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
}),
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
31
|
+
const sizeMap = {
|
|
32
|
+
16: OrderPlaced16,
|
|
33
|
+
24: OrderPlaced24,
|
|
34
|
+
};
|
|
35
|
+
export function OrderPlaced(_ref) {
|
|
36
|
+
let { size = "24", ...props } = _ref;
|
|
37
|
+
const Icon = sizeMap[size] || sizeMap["24"];
|
|
38
|
+
if (
|
|
39
|
+
process.env.NODE_ENV !== "production" &&
|
|
40
|
+
process.env.NODE_ENV !== "test" &&
|
|
41
|
+
!sizeMap[size]
|
|
42
|
+
) {
|
|
43
|
+
console.warn(
|
|
44
|
+
new Error(
|
|
45
|
+
"The '".concat(
|
|
46
|
+
size,
|
|
47
|
+
"' size is not supported by the 'OrderPlaced' icon. Please use one of the available sizes: '16', '24'.",
|
|
48
|
+
),
|
|
49
|
+
),
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
return /*#__PURE__*/ _jsx(Icon, {
|
|
53
|
+
...props,
|
|
54
|
+
});
|
|
55
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
var PartialReturn16 = function PartialReturn16(props) {
|
|
3
|
+
return /*#__PURE__*/ _jsx("svg", {
|
|
4
|
+
width: "16",
|
|
5
|
+
height: "16",
|
|
6
|
+
viewBox: "0 0 16 16",
|
|
7
|
+
fill: "none",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
11
|
+
d: "M13.6 8C13.6 4.90721 11.0928 2.4 8 2.4C8 6 8 4.40721 8 7.5C8 10.5928 8 9.5 8 13.6C11.0928 13.6 13.6 11.0928 13.6 8ZM15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8Z",
|
|
12
|
+
fill: "currentColor",
|
|
13
|
+
}),
|
|
14
|
+
});
|
|
15
|
+
};
|
|
16
|
+
var PartialReturn24 = function PartialReturn24(props) {
|
|
17
|
+
return /*#__PURE__*/ _jsx("svg", {
|
|
18
|
+
width: "24",
|
|
19
|
+
height: "24",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fill: "none",
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
...props,
|
|
24
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
25
|
+
d: "M12 12C12 7.58172 12 7 12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C12 18 12 16.4183 12 12ZM2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12Z",
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
}),
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
31
|
+
const sizeMap = {
|
|
32
|
+
16: PartialReturn16,
|
|
33
|
+
24: PartialReturn24,
|
|
34
|
+
};
|
|
35
|
+
export function PartialReturn(_ref) {
|
|
36
|
+
let { size = "24", ...props } = _ref;
|
|
37
|
+
const Icon = sizeMap[size] || sizeMap["24"];
|
|
38
|
+
if (
|
|
39
|
+
process.env.NODE_ENV !== "production" &&
|
|
40
|
+
process.env.NODE_ENV !== "test" &&
|
|
41
|
+
!sizeMap[size]
|
|
42
|
+
) {
|
|
43
|
+
console.warn(
|
|
44
|
+
new Error(
|
|
45
|
+
"The '".concat(
|
|
46
|
+
size,
|
|
47
|
+
"' size is not supported by the 'PartialReturn' icon. Please use one of the available sizes: '16', '24'.",
|
|
48
|
+
),
|
|
49
|
+
),
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
return /*#__PURE__*/ _jsx(Icon, {
|
|
53
|
+
...props,
|
|
54
|
+
});
|
|
55
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
var PiggyBank24 = function PiggyBank24(props) {
|
|
4
|
+
return /*#__PURE__*/ _jsx("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "24",
|
|
7
|
+
height: "24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
...props,
|
|
11
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
12
|
+
fill: "currentColor",
|
|
13
|
+
d: "m19.52 8.144-.003-.004-.002-.001zm-5.053 11.245h1.208v-.61c0-.1-.015-.425.09-.718.08-.226.202-.414.371-.58l.104-.09c.102-.081.199-.136.264-.17.086-.046.19-.092.278-.133l.278-.14a4.6 4.6 0 0 0 1.592-1.43c.052-.077.207-.322.413-.487.158-.127.325-.213.517-.27.249-.074.514-.063.6-.063h.218v-2.59a1.6 1.6 0 0 1-.37-.07v.001c-.24-.08-.443-.209-.62-.394a1.6 1.6 0 0 1-.248-.353 6 6 0 0 1-.129-.265l-.088-.18a4.6 4.6 0 0 0-.826-1.126c-.051-.052-.217-.206-.328-.387l-.06-.106a1.5 1.5 0 0 1-.124-.337V8.89c-.05-.205-.042-.418-.042-.483v-.643l-1.87.531-.002.001q-.018.005-.065.016a4.36 4.36 0 0 1-4.1 2.868A4.36 4.36 0 0 1 8.053 9.46a4.545 4.545 0 0 0-.284 6.694l.143.146q.046.051.096.113l.09.13.06.105c.054.106.095.215.124.335l.027.154c.019.15.015.282.015.331v1.92h1.208v-.07c0-.114-.002-.264.01-.396a1.5 1.5 0 0 1 .158-.583c.148-.288.382-.52.668-.664l.163-.07c.16-.056.305-.075.412-.084.13-.01.28-.01.395-.01h1.322c.116 0 .264 0 .395.01.143.012.353.042.574.154.25.126.462.32.61.56l.059.104.072.166c.058.161.078.308.087.417.01.132.01.282.01.396zm8.023-3.991a1.5 1.5 0 0 1-.158.583c-.148.288-.382.52-.668.664a1.5 1.5 0 0 1-.575.153c-.13.011-.28.01-.395.01h-.382a6.7 6.7 0 0 1-2.537 2.139v.747c0 .114 0 .263-.01.395a1.5 1.5 0 0 1-.158.583c-.148.288-.382.52-.668.664a1.5 1.5 0 0 1-.575.154c-.13.01-.28.01-.395.01h-1.795c-.115 0-.264 0-.395-.01a1.5 1.5 0 0 1-.575-.154 1.53 1.53 0 0 1-.668-.664 1.5 1.5 0 0 1-.159-.583c-.01-.132-.01-.281-.01-.395v-.07h-.734v.07c0 .114 0 .263-.01.395a1.5 1.5 0 0 1-.16.582c-.129.252-.324.462-.562.607l-.105.058a1.5 1.5 0 0 1-.575.154c-.13.01-.28.01-.395.01H8.031c-.115 0-.264 0-.395-.01a1.5 1.5 0 0 1-.575-.154 1.52 1.52 0 0 1-.668-.664 1.5 1.5 0 0 1-.158-.583c-.01-.132-.01-.281-.01-.395v-2.11a6.66 6.66 0 0 1-1.807-3.591A2.935 2.935 0 0 1 1.5 11.062c0-1.093.6-2.04 1.475-2.542a1.047 1.047 0 0 1 1.432.393c.287.506.113 1.15-.39 1.44a.82.82 0 0 0-.417.709.83.83 0 0 0 .82.82 6.68 6.68 0 0 1 2.793-4.428 4.4 4.4 0 0 1-.043-.614c0-2.41 1.963-4.34 4.357-4.34 2.132 0 3.92 1.53 4.287 3.567l1.552-.44c.145-.04.32-.09.475-.12.16-.03.42-.065.713.017h.001c.317.09.598.28.798.543l.08.117.056.1c.118.228.15.448.162.592.015.157.014.34.014.49v.925a6.7 6.7 0 0 1 1.21 1.718c.07.001.142 0 .209.006.136.01.336.038.55.14.27.13.498.336.652.595l.061.114v.001c.105.217.133.42.144.558.01.125.009.268.009.376v3.204c0 .114 0 .263-.01.395M9.27 6.84c0 1.218.998 2.228 2.257 2.228a2.247 2.247 0 0 0 2.258-2.228c0-1.219-.999-2.229-2.258-2.229A2.243 2.243 0 0 0 9.27 6.84",
|
|
14
|
+
}),
|
|
15
|
+
});
|
|
16
|
+
};
|
|
17
|
+
const sizeMap = {
|
|
18
|
+
24: PiggyBank24,
|
|
19
|
+
};
|
|
20
|
+
export function PiggyBank(_ref) {
|
|
21
|
+
let { size = "24", ...props } = _ref;
|
|
22
|
+
const Icon = sizeMap[size] || sizeMap["24"];
|
|
23
|
+
if (
|
|
24
|
+
process.env.NODE_ENV !== "production" &&
|
|
25
|
+
process.env.NODE_ENV !== "test" &&
|
|
26
|
+
!sizeMap[size]
|
|
27
|
+
) {
|
|
28
|
+
console.warn(
|
|
29
|
+
new Error(
|
|
30
|
+
"The '".concat(
|
|
31
|
+
size,
|
|
32
|
+
"' size is not supported by the 'PiggyBank' icon. Please use one of the available sizes: '24'.",
|
|
33
|
+
),
|
|
34
|
+
),
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
return /*#__PURE__*/ _jsx(Icon, {
|
|
38
|
+
...props,
|
|
39
|
+
});
|
|
40
|
+
}
|
package/dist/PlusTier.js
CHANGED
|
@@ -9,7 +9,7 @@ var PlusTier16 = function PlusTier16(props) {
|
|
|
9
9
|
...props,
|
|
10
10
|
children: /*#__PURE__*/ _jsx("path", {
|
|
11
11
|
fill: "currentColor",
|
|
12
|
-
d: "M32 3.2c0 4.48 0 6.72-.872 8.432a8 8 0 0 1-3.496 3.496C25.92 16 23.68 16 19.2 16H0v-3.2c0-4.48 0-6.72.872-8.432A8 8 0 0 1 4.368.872C6.08 0 8.32 0 12.8 0H32zm-8.955 3.23q-.6 0-1.04.185a1.47 1.47 0 0 0-.675.52 1.4 1.4 0 0 0-.235.805v.05q0 .58.32.915.325.334 1 .445l1.14.19q.354.065.49.195.14.13.14.375v.06a.59.59 0 0 1-.27.515q-.265.185-.75.185-.515 0-.83-.215-.315-.22-.38-.645h-.92q.065.765.614 1.18.555.41 1.495.41.621 0 1.066-.18.45-.185.684-.535.24-.35.24-.835v-.08q0-.59-.324-.92-.326-.335-1.005-.45l-1.13-.18q-.336-.06-.486-.19a.5.5 0 0 1-.144-.38v-.04q0-.31.26-.485.265-.174.73-.175.395 0 .645.135a.74.74 0 0 1 .355.395.56.56 0 0 0 .21.25.6.6 0 0 0 .32.08q.225 0 .345-.095a.35.35 0 0 0 .125-.285.88.88 0 0 0-.25-.615q-.25-.276-.705-.43a3.2 3.2 0 0 0-1.035-.155m-7.082.09v3.55q0 .465.185.81.185.34.525.525.345.185.8.185.5 0 .89-.194a1.
|
|
12
|
+
d: "M32 3.2c0 4.48 0 6.72-.872 8.432a8 8 0 0 1-3.496 3.496C25.92 16 23.68 16 19.2 16H0v-3.2c0-4.48 0-6.72.872-8.432A8 8 0 0 1 4.368.872C6.08 0 8.32 0 12.8 0H32zm-8.955 3.23q-.6 0-1.04.185a1.47 1.47 0 0 0-.675.52 1.4 1.4 0 0 0-.235.805v.05q0 .58.32.915.325.334 1 .445l1.14.19q.354.065.49.195.14.13.14.375v.06a.59.59 0 0 1-.27.515q-.265.185-.75.185-.515 0-.83-.215-.315-.22-.38-.645h-.92q.065.765.614 1.18.555.41 1.495.41.621 0 1.066-.18.45-.185.684-.535.24-.35.24-.835v-.08q0-.59-.324-.92-.326-.335-1.005-.45l-1.13-.18q-.336-.06-.486-.19a.5.5 0 0 1-.144-.38v-.04q0-.31.26-.485.265-.174.73-.175.395 0 .645.135a.74.74 0 0 1 .355.395.56.56 0 0 0 .21.25.6.6 0 0 0 .32.08q.225 0 .345-.095a.35.35 0 0 0 .125-.285.88.88 0 0 0-.25-.615q-.25-.276-.705-.43a3.2 3.2 0 0 0-1.035-.155m-7.082.09v3.55q0 .465.185.81.185.34.525.525.345.185.8.185.5 0 .89-.194a1.5 1.5 0 0 0 .75-.856v.96h1.02V6.52h-1.08v3.07a1.2 1.2 0 0 1-.14.595.93.93 0 0 1-.385.385q-.249.13-.585.13-.43 0-.665-.23-.234-.23-.235-.65v-3.3zM7.5 4.5v7h1.16V8.74h1.95q.7 0 1.21-.24t.78-.685q.27-.45.27-1.065V6.5q0-.615-.27-1.065a1.74 1.74 0 0 0-.78-.695q-.51-.24-1.21-.24zm6.208-.1v7.1h1.07V4.4zm-3.198 1q.57 0 .88.295.31.29.31.815v.23q0 .525-.31.82-.31.29-.88.29H8.66V5.4z",
|
|
13
13
|
}),
|
|
14
14
|
});
|
|
15
15
|
};
|
package/dist/Pluxee.js
CHANGED
|
@@ -20,7 +20,7 @@ var Pluxee32 = function Pluxee32(props) {
|
|
|
20
20
|
}),
|
|
21
21
|
/*#__PURE__*/ _jsx("path", {
|
|
22
22
|
fill: "#211d44",
|
|
23
|
-
d: "M26.491 11.282c.536 0 .752.373.752.63H25.74c0-.26.219-.63.752-.63m.631 1.78c-.1.195-.33.327-.625.327-.56 0-.78-.399-.787-.754h2.778a2 2 0 0 0 .029-.303c0-1.255-.864-1.963-2.03-1.963-1.23 0-2.09.709-2.09 1.963s.86 1.963 2.097 1.963 1.788-.67 1.94-1.
|
|
23
|
+
d: "M26.491 11.282c.536 0 .752.373.752.63H25.74c0-.26.219-.63.752-.63m.631 1.78c-.1.195-.33.327-.625.327-.56 0-.78-.399-.787-.754h2.778a2 2 0 0 0 .029-.303c0-1.255-.864-1.963-2.03-1.963-1.23 0-2.09.709-2.09 1.963s.86 1.963 2.097 1.963 1.788-.67 1.94-1.232zm-19.987.105c-.499 0-.853-.357-.853-.832s.333-.832.853-.832.853.381.853.832-.337.832-.853.832m.373-2.76c-.547 0-1.016.241-1.259.525v-.451H5v5.182h1.288v-1.855c.302.325.723.449 1.149.449 1.276 0 1.868-.965 1.868-1.925 0-1.186-.76-1.925-1.796-1.925M11.022 9H9.73v5.182h1.293zm3.122 1.481v1.925c0 .292-.04.433-.16.575-.116.137-.297.201-.498.201-.2 0-.382-.064-.498-.2-.119-.143-.159-.284-.159-.576v-1.925H11.54v2.04c0 .573.088.947.363 1.265.291.336.736.47 1.171.47.51 0 .863-.191 1.107-.474l.001.4h1.25v-3.701zm5.489 0h-.88l-.97.988-.971-.988h-.88v.88l.987.971-.987.97v.88h.88l.97-.987.97.988h.881v-.88l-.987-.971.987-.97zm2.38.801c.536 0 .752.373.752.63h-1.504c0-.26.219-.63.752-.63m.631 1.78c-.1.195-.33.327-.625.327-.56 0-.78-.399-.786-.754h2.778c.007-.05.028-.192.028-.303 0-1.255-.863-1.963-2.03-1.963-1.23 0-2.09.709-2.09 1.963s.86 1.963 2.097 1.963 1.788-.67 1.94-1.232z",
|
|
24
24
|
}),
|
|
25
25
|
],
|
|
26
26
|
});
|
package/dist/Pos.js
CHANGED
|
@@ -2,15 +2,15 @@ import React from "react";
|
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
3
|
var Pos24 = function Pos24(props) {
|
|
4
4
|
return /*#__PURE__*/ _jsx("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
6
|
width: "24",
|
|
6
7
|
height: "24",
|
|
7
|
-
viewBox: "0 0 24 24",
|
|
8
8
|
fill: "none",
|
|
9
|
-
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
10
|
...props,
|
|
11
11
|
children: /*#__PURE__*/ _jsx("path", {
|
|
12
|
-
d: "M10 19C10.5523 19 11 19.4477 11 20C11 20.5523 10.5523 21 10 21H6C5.44772 21 5 20.5523 5 20C5 19.4477 5.44772 19 6 19H10ZM20 12C21.1046 12 22 12.8954 22 14V19C22 20.0357 21.2128 20.887 20.2041 20.9893L20 21H15L14.7959 20.9893C13.8543 20.8938 13.1062 20.1457 13.0107 19.2041L13 19V14C13 12.8954 13.8954 12 15 12H20ZM15 19H20V14H15V19ZM19 18H16V15H19V18ZM18 4C19.6569 4 21 5.34315 21 7V10H19V7C19 6.44772 18.5523 6 18 6H5C4.44772 6 4 6.44772 4 7V14C4 14.5523 4.44772 15 5 15H11V17H5C3.34315 17 2 15.6569 2 14V7C2 5.34315 3.34315 4 5 4H18Z",
|
|
13
12
|
fill: "currentColor",
|
|
13
|
+
d: "M10 19a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2zm10-7a2 2 0 0 1 2 2v5a2 2 0 0 1-1.796 1.99L20 21h-5l-.204-.01a2 2 0 0 1-1.785-1.786L13 19v-5a2 2 0 0 1 2-2zm-5 7h5v-5h-5zm4-1h-3v-3h3zM18 4a3 3 0 0 1 3 3v3h-2V7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h6v2H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3z",
|
|
14
14
|
}),
|
|
15
15
|
});
|
|
16
16
|
};
|
package/dist/ZoomIn.js
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
var ZoomIn24 = function ZoomIn24(props) {
|
|
4
|
+
return /*#__PURE__*/ _jsx("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "24",
|
|
7
|
+
height: "24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
...props,
|
|
11
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
12
|
+
fill: "currentColor",
|
|
13
|
+
d: "M17.611 11.056a6.556 6.556 0 1 0-2 4.71 1 1 0 0 1 .156-.155 6.53 6.53 0 0 0 1.844-4.555m-7.555 2.833v-1.833H8.223a1 1 0 0 1 0-2h1.833V8.223a1 1 0 1 1 2 0v1.833h1.833a1 1 0 1 1 0 2h-1.833v1.833a1 1 0 0 1-2 0m9.555-2.833c0 2.002-.69 3.841-1.842 5.299l3.438 3.438a1 1 0 1 1-1.414 1.414l-3.438-3.438a8.5 8.5 0 0 1-5.3 1.842 8.556 8.556 0 1 1 8.556-8.555",
|
|
14
|
+
}),
|
|
15
|
+
});
|
|
16
|
+
};
|
|
17
|
+
const sizeMap = {
|
|
18
|
+
24: ZoomIn24,
|
|
19
|
+
};
|
|
20
|
+
export function ZoomIn(_ref) {
|
|
21
|
+
let { size = "24", ...props } = _ref;
|
|
22
|
+
const Icon = sizeMap[size] || sizeMap["24"];
|
|
23
|
+
if (
|
|
24
|
+
process.env.NODE_ENV !== "production" &&
|
|
25
|
+
process.env.NODE_ENV !== "test" &&
|
|
26
|
+
!sizeMap[size]
|
|
27
|
+
) {
|
|
28
|
+
console.warn(
|
|
29
|
+
new Error(
|
|
30
|
+
"The '".concat(
|
|
31
|
+
size,
|
|
32
|
+
"' size is not supported by the 'ZoomIn' icon. Please use one of the available sizes: '24'.",
|
|
33
|
+
),
|
|
34
|
+
),
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
return /*#__PURE__*/ _jsx(Icon, {
|
|
38
|
+
...props,
|
|
39
|
+
});
|
|
40
|
+
}
|
package/dist/ZoomOut.js
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
var ZoomOut24 = function ZoomOut24(props) {
|
|
4
|
+
return /*#__PURE__*/ _jsx("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "24",
|
|
7
|
+
height: "24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
...props,
|
|
11
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
12
|
+
fill: "currentColor",
|
|
13
|
+
d: "M17.611 11.056a6.556 6.556 0 1 0-2 4.71 1 1 0 0 1 .156-.155 6.53 6.53 0 0 0 1.844-4.555m-3.722-1a1 1 0 1 1 0 2H8.223a1 1 0 0 1 0-2zm5.722 1c0 2.002-.69 3.841-1.842 5.299l3.438 3.438a1 1 0 1 1-1.414 1.414l-3.438-3.438a8.5 8.5 0 0 1-5.3 1.842 8.556 8.556 0 1 1 8.556-8.555",
|
|
14
|
+
}),
|
|
15
|
+
});
|
|
16
|
+
};
|
|
17
|
+
const sizeMap = {
|
|
18
|
+
24: ZoomOut24,
|
|
19
|
+
};
|
|
20
|
+
export function ZoomOut(_ref) {
|
|
21
|
+
let { size = "24", ...props } = _ref;
|
|
22
|
+
const Icon = sizeMap[size] || sizeMap["24"];
|
|
23
|
+
if (
|
|
24
|
+
process.env.NODE_ENV !== "production" &&
|
|
25
|
+
process.env.NODE_ENV !== "test" &&
|
|
26
|
+
!sizeMap[size]
|
|
27
|
+
) {
|
|
28
|
+
console.warn(
|
|
29
|
+
new Error(
|
|
30
|
+
"The '".concat(
|
|
31
|
+
size,
|
|
32
|
+
"' size is not supported by the 'ZoomOut' icon. Please use one of the available sizes: '24'.",
|
|
33
|
+
),
|
|
34
|
+
),
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
return /*#__PURE__*/ _jsx(Icon, {
|
|
38
|
+
...props,
|
|
39
|
+
});
|
|
40
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -128,6 +128,10 @@ declare const View: IconComponentType<"16" | "24">;
|
|
|
128
128
|
|
|
129
129
|
declare const WeekView: IconComponentType<"24">;
|
|
130
130
|
|
|
131
|
+
declare const ZoomIn: IconComponentType<"24">;
|
|
132
|
+
|
|
133
|
+
declare const ZoomOut: IconComponentType<"24">;
|
|
134
|
+
|
|
131
135
|
/**
|
|
132
136
|
* @deprecated Use the `SumUpLogo` component instead.
|
|
133
137
|
*/
|
|
@@ -660,6 +664,8 @@ declare const TransferOut: IconComponentType<"24">;
|
|
|
660
664
|
|
|
661
665
|
declare const Wealth: IconComponentType<"16" | "24">;
|
|
662
666
|
|
|
667
|
+
declare const PiggyBank: IconComponentType<"24">;
|
|
668
|
+
|
|
663
669
|
declare const WireTransfer: IconComponentType<"24">;
|
|
664
670
|
|
|
665
671
|
declare const Accessibility: IconComponentType<"24">;
|
|
@@ -728,6 +734,8 @@ declare const Favorite: IconComponentType<"16" | "24">;
|
|
|
728
734
|
|
|
729
735
|
declare const Favourite: IconComponentType<"16" | "24">;
|
|
730
736
|
|
|
737
|
+
declare const FullReturn: IconComponentType<"16" | "24">;
|
|
738
|
+
|
|
731
739
|
declare const Gauge: IconComponentType<"24">;
|
|
732
740
|
|
|
733
741
|
declare const Globe: IconComponentType<"24">;
|
|
@@ -763,10 +771,14 @@ declare const NoSim: IconComponentType<"24">;
|
|
|
763
771
|
|
|
764
772
|
declare const NoSimcard: IconComponentType<"24">;
|
|
765
773
|
|
|
774
|
+
declare const OrderPlaced: IconComponentType<"16" | "24">;
|
|
775
|
+
|
|
766
776
|
declare const Package: IconComponentType<"24">;
|
|
767
777
|
|
|
768
778
|
declare const PaidOut: IconComponentType<"16" | "24">;
|
|
769
779
|
|
|
780
|
+
declare const PartialReturn: IconComponentType<"16" | "24">;
|
|
781
|
+
|
|
770
782
|
/**
|
|
771
783
|
* @deprecated Use the `PrinterFailed` icon instead.
|
|
772
784
|
*/
|
|
@@ -904,6 +916,11 @@ declare const Giropay: IconComponentType<"24">;
|
|
|
904
916
|
*/
|
|
905
917
|
declare const Hiper: IconComponentType<"24">;
|
|
906
918
|
|
|
919
|
+
/**
|
|
920
|
+
* @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).
|
|
921
|
+
*/
|
|
922
|
+
declare const Iris: IconComponentType<"24">;
|
|
923
|
+
|
|
907
924
|
/**
|
|
908
925
|
* @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).
|
|
909
926
|
*/
|
|
@@ -1167,6 +1184,8 @@ export {
|
|
|
1167
1184
|
UploadCloud,
|
|
1168
1185
|
View,
|
|
1169
1186
|
WeekView,
|
|
1187
|
+
ZoomIn,
|
|
1188
|
+
ZoomOut,
|
|
1170
1189
|
SumUpLogo,
|
|
1171
1190
|
SumUpLogomark,
|
|
1172
1191
|
PlusTier,
|
|
@@ -1301,6 +1320,7 @@ export {
|
|
|
1301
1320
|
TransferIn,
|
|
1302
1321
|
TransferOut,
|
|
1303
1322
|
Wealth,
|
|
1323
|
+
PiggyBank,
|
|
1304
1324
|
WireTransfer,
|
|
1305
1325
|
Accessibility,
|
|
1306
1326
|
Alarm,
|
|
@@ -1329,6 +1349,7 @@ export {
|
|
|
1329
1349
|
Customise,
|
|
1330
1350
|
Favorite,
|
|
1331
1351
|
Favourite,
|
|
1352
|
+
FullReturn,
|
|
1332
1353
|
Gauge,
|
|
1333
1354
|
Globe,
|
|
1334
1355
|
Health,
|
|
@@ -1345,8 +1366,10 @@ export {
|
|
|
1345
1366
|
Motorbike,
|
|
1346
1367
|
NoSim,
|
|
1347
1368
|
NoSimcard,
|
|
1369
|
+
OrderPlaced,
|
|
1348
1370
|
Package,
|
|
1349
1371
|
PaidOut,
|
|
1372
|
+
PartialReturn,
|
|
1350
1373
|
PrintFailed,
|
|
1351
1374
|
PrinterFailed,
|
|
1352
1375
|
Profile,
|
|
@@ -1396,6 +1419,7 @@ export {
|
|
|
1396
1419
|
FasterPayments,
|
|
1397
1420
|
Giropay,
|
|
1398
1421
|
Hiper,
|
|
1422
|
+
Iris,
|
|
1399
1423
|
Mybank,
|
|
1400
1424
|
NfcPayment,
|
|
1401
1425
|
PixFull,
|
|
@@ -1532,6 +1556,8 @@ export type IconName =
|
|
|
1532
1556
|
| "upload_cloud"
|
|
1533
1557
|
| "view"
|
|
1534
1558
|
| "week_view"
|
|
1559
|
+
| "zoom_in"
|
|
1560
|
+
| "zoom_out"
|
|
1535
1561
|
| "sum_up_logo"
|
|
1536
1562
|
| "sum_up_logomark"
|
|
1537
1563
|
| "plus_tier"
|
|
@@ -1666,6 +1692,7 @@ export type IconName =
|
|
|
1666
1692
|
| "transfer_in"
|
|
1667
1693
|
| "transfer_out"
|
|
1668
1694
|
| "wealth"
|
|
1695
|
+
| "piggy_bank"
|
|
1669
1696
|
| "wire_transfer"
|
|
1670
1697
|
| "accessibility"
|
|
1671
1698
|
| "alarm"
|
|
@@ -1694,6 +1721,7 @@ export type IconName =
|
|
|
1694
1721
|
| "customise"
|
|
1695
1722
|
| "favorite"
|
|
1696
1723
|
| "favourite"
|
|
1724
|
+
| "full_return"
|
|
1697
1725
|
| "gauge"
|
|
1698
1726
|
| "globe"
|
|
1699
1727
|
| "health"
|
|
@@ -1710,8 +1738,10 @@ export type IconName =
|
|
|
1710
1738
|
| "motorbike"
|
|
1711
1739
|
| "no_sim"
|
|
1712
1740
|
| "no_simcard"
|
|
1741
|
+
| "order_placed"
|
|
1713
1742
|
| "package"
|
|
1714
1743
|
| "paid_out"
|
|
1744
|
+
| "partial_return"
|
|
1715
1745
|
| "print_failed"
|
|
1716
1746
|
| "printer_failed"
|
|
1717
1747
|
| "profile"
|
|
@@ -1761,6 +1791,7 @@ export type IconName =
|
|
|
1761
1791
|
| "faster_payments"
|
|
1762
1792
|
| "giropay"
|
|
1763
1793
|
| "hiper"
|
|
1794
|
+
| "iris"
|
|
1764
1795
|
| "mybank"
|
|
1765
1796
|
| "nfc_payment"
|
|
1766
1797
|
| "pix_full"
|
|
@@ -1907,6 +1938,8 @@ type Icons = {
|
|
|
1907
1938
|
upload_cloud: "24";
|
|
1908
1939
|
view: "16" | "24";
|
|
1909
1940
|
week_view: "24";
|
|
1941
|
+
zoom_in: "24";
|
|
1942
|
+
zoom_out: "24";
|
|
1910
1943
|
sum_up_logo: "24";
|
|
1911
1944
|
sum_up_logomark: "24" | "32";
|
|
1912
1945
|
plus_tier: "16" | "24" | "32";
|
|
@@ -2041,6 +2074,7 @@ type Icons = {
|
|
|
2041
2074
|
transfer_in: "24";
|
|
2042
2075
|
transfer_out: "24";
|
|
2043
2076
|
wealth: "16" | "24";
|
|
2077
|
+
piggy_bank: "24";
|
|
2044
2078
|
wire_transfer: "24";
|
|
2045
2079
|
accessibility: "24";
|
|
2046
2080
|
alarm: "24";
|
|
@@ -2069,6 +2103,7 @@ type Icons = {
|
|
|
2069
2103
|
customise: "24";
|
|
2070
2104
|
favorite: "16" | "24";
|
|
2071
2105
|
favourite: "16" | "24";
|
|
2106
|
+
full_return: "16" | "24";
|
|
2072
2107
|
gauge: "24";
|
|
2073
2108
|
globe: "24";
|
|
2074
2109
|
health: "24";
|
|
@@ -2085,8 +2120,10 @@ type Icons = {
|
|
|
2085
2120
|
motorbike: "24";
|
|
2086
2121
|
no_sim: "24";
|
|
2087
2122
|
no_simcard: "24";
|
|
2123
|
+
order_placed: "16" | "24";
|
|
2088
2124
|
package: "24";
|
|
2089
2125
|
paid_out: "16" | "24";
|
|
2126
|
+
partial_return: "16" | "24";
|
|
2090
2127
|
print_failed: "16" | "24";
|
|
2091
2128
|
printer_failed: "16" | "24";
|
|
2092
2129
|
profile: "16" | "24";
|
|
@@ -2136,6 +2173,7 @@ type Icons = {
|
|
|
2136
2173
|
faster_payments: "24";
|
|
2137
2174
|
giropay: "24";
|
|
2138
2175
|
hiper: "24";
|
|
2176
|
+
iris: "24";
|
|
2139
2177
|
mybank: "24";
|
|
2140
2178
|
nfc_payment: "24";
|
|
2141
2179
|
pix_full: "24";
|
package/dist/index.js
CHANGED
|
@@ -54,6 +54,8 @@ export { Upload } from "./Upload.js";
|
|
|
54
54
|
export { UploadCloud } from "./UploadCloud.js";
|
|
55
55
|
export { View } from "./View.js";
|
|
56
56
|
export { WeekView } from "./WeekView.js";
|
|
57
|
+
export { ZoomIn } from "./ZoomIn.js";
|
|
58
|
+
export { ZoomOut } from "./ZoomOut.js";
|
|
57
59
|
export { SumUpLogo } from "./SumUpLogo.js";
|
|
58
60
|
export { SumUpLogomark } from "./SumUpLogomark.js";
|
|
59
61
|
export { PlusTier } from "./PlusTier.js";
|
|
@@ -188,6 +190,7 @@ export { Percentage } from "./Percentage.js";
|
|
|
188
190
|
export { TransferIn } from "./TransferIn.js";
|
|
189
191
|
export { TransferOut } from "./TransferOut.js";
|
|
190
192
|
export { Wealth } from "./Wealth.js";
|
|
193
|
+
export { PiggyBank } from "./PiggyBank.js";
|
|
191
194
|
export { WireTransfer } from "./WireTransfer.js";
|
|
192
195
|
export { Accessibility } from "./Accessibility.js";
|
|
193
196
|
export { Alarm } from "./Alarm.js";
|
|
@@ -216,6 +219,7 @@ export { Customize } from "./Customize.js";
|
|
|
216
219
|
export { Customise } from "./Customise.js";
|
|
217
220
|
export { Favorite } from "./Favorite.js";
|
|
218
221
|
export { Favourite } from "./Favourite.js";
|
|
222
|
+
export { FullReturn } from "./FullReturn.js";
|
|
219
223
|
export { Gauge } from "./Gauge.js";
|
|
220
224
|
export { Globe } from "./Globe.js";
|
|
221
225
|
export { Health } from "./Health.js";
|
|
@@ -232,8 +236,10 @@ export { Moon } from "./Moon.js";
|
|
|
232
236
|
export { Motorbike } from "./Motorbike.js";
|
|
233
237
|
export { NoSim } from "./NoSim.js";
|
|
234
238
|
export { NoSimcard } from "./NoSimcard.js";
|
|
239
|
+
export { OrderPlaced } from "./OrderPlaced.js";
|
|
235
240
|
export { Package } from "./Package.js";
|
|
236
241
|
export { PaidOut } from "./PaidOut.js";
|
|
242
|
+
export { PartialReturn } from "./PartialReturn.js";
|
|
237
243
|
export { PrintFailed } from "./PrintFailed.js";
|
|
238
244
|
export { PrinterFailed } from "./PrinterFailed.js";
|
|
239
245
|
export { Profile } from "./Profile.js";
|
|
@@ -283,6 +289,7 @@ export { Eps } from "./Eps.js";
|
|
|
283
289
|
export { FasterPayments } from "./FasterPayments.js";
|
|
284
290
|
export { Giropay } from "./Giropay.js";
|
|
285
291
|
export { Hiper } from "./Hiper.js";
|
|
292
|
+
export { Iris } from "./Iris.js";
|
|
286
293
|
export { Mybank } from "./Mybank.js";
|
|
287
294
|
export { NfcPayment } from "./NfcPayment.js";
|
|
288
295
|
export { PixFull } from "./PixFull.js";
|
package/manifest.json
CHANGED
|
@@ -422,6 +422,16 @@
|
|
|
422
422
|
"category": "Action",
|
|
423
423
|
"size": "24"
|
|
424
424
|
},
|
|
425
|
+
{
|
|
426
|
+
"name": "zoom_in",
|
|
427
|
+
"category": "Action",
|
|
428
|
+
"size": "24"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"name": "zoom_out",
|
|
432
|
+
"category": "Action",
|
|
433
|
+
"size": "24"
|
|
434
|
+
},
|
|
425
435
|
{
|
|
426
436
|
"name": "sum_up_logo",
|
|
427
437
|
"category": "Brand",
|
|
@@ -3034,6 +3044,11 @@
|
|
|
3034
3044
|
"category": "Finance",
|
|
3035
3045
|
"size": "24"
|
|
3036
3046
|
},
|
|
3047
|
+
{
|
|
3048
|
+
"name": "piggy_bank",
|
|
3049
|
+
"category": "Finance",
|
|
3050
|
+
"size": "24"
|
|
3051
|
+
},
|
|
3037
3052
|
{
|
|
3038
3053
|
"name": "wire_transfer",
|
|
3039
3054
|
"category": "Finance",
|
|
@@ -3211,6 +3226,16 @@
|
|
|
3211
3226
|
"category": "Miscellaneous",
|
|
3212
3227
|
"size": "16"
|
|
3213
3228
|
},
|
|
3229
|
+
{
|
|
3230
|
+
"name": "full_return",
|
|
3231
|
+
"category": "Miscellaneous",
|
|
3232
|
+
"size": "16"
|
|
3233
|
+
},
|
|
3234
|
+
{
|
|
3235
|
+
"name": "full_return",
|
|
3236
|
+
"category": "Miscellaneous",
|
|
3237
|
+
"size": "24"
|
|
3238
|
+
},
|
|
3214
3239
|
{
|
|
3215
3240
|
"name": "gauge",
|
|
3216
3241
|
"category": "Miscellaneous",
|
|
@@ -3297,6 +3322,16 @@
|
|
|
3297
3322
|
"category": "Miscellaneous",
|
|
3298
3323
|
"size": "24"
|
|
3299
3324
|
},
|
|
3325
|
+
{
|
|
3326
|
+
"name": "order_placed",
|
|
3327
|
+
"category": "Miscellaneous",
|
|
3328
|
+
"size": "16"
|
|
3329
|
+
},
|
|
3330
|
+
{
|
|
3331
|
+
"name": "order_placed",
|
|
3332
|
+
"category": "Miscellaneous",
|
|
3333
|
+
"size": "24"
|
|
3334
|
+
},
|
|
3300
3335
|
{
|
|
3301
3336
|
"name": "package",
|
|
3302
3337
|
"category": "Miscellaneous",
|
|
@@ -3312,6 +3347,16 @@
|
|
|
3312
3347
|
"category": "Miscellaneous",
|
|
3313
3348
|
"size": "16"
|
|
3314
3349
|
},
|
|
3350
|
+
{
|
|
3351
|
+
"name": "partial_return",
|
|
3352
|
+
"category": "Miscellaneous",
|
|
3353
|
+
"size": "16"
|
|
3354
|
+
},
|
|
3355
|
+
{
|
|
3356
|
+
"name": "partial_return",
|
|
3357
|
+
"category": "Miscellaneous",
|
|
3358
|
+
"size": "24"
|
|
3359
|
+
},
|
|
3315
3360
|
{
|
|
3316
3361
|
"name": "print_failed",
|
|
3317
3362
|
"category": "Miscellaneous",
|
|
@@ -3749,6 +3794,11 @@
|
|
|
3749
3794
|
"category": "Payment method",
|
|
3750
3795
|
"size": "24"
|
|
3751
3796
|
},
|
|
3797
|
+
{
|
|
3798
|
+
"name": "iris",
|
|
3799
|
+
"category": "Payment method",
|
|
3800
|
+
"size": "24"
|
|
3801
|
+
},
|
|
3752
3802
|
{
|
|
3753
3803
|
"name": "jcb",
|
|
3754
3804
|
"category": "Payment method",
|
package/package.json
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="24" fill="none" viewBox="0 0 50 24">
|
|
2
|
+
<path fill="#414042" d="M19.642 20.134h-.407a.3.3 0 0 1-.241-.114v.94a.04.04 0 0 1-.038.04h-.27v-2.53c0-.06.05-.11.114-.11h.842c.283 0 .516.148.516.5v.773c0 .298-.233.5-.516.5m.208-1.275c0-.163-.095-.209-.208-.209h-.609a.04.04 0 0 0-.038.039v.968c.007.093.078.17.17.181h.478a.21.21 0 0 0 .208-.209v-.77M23.742 18.857v1.164c0 .063-.049.114-.113.114H22.8a.516.516 0 0 1-.516-.518v-.11c0-.288.23-.519.516-.519h.598a.04.04 0 0 0 .038-.038v-.089c0-.113-.074-.21-.212-.21h-.704a.04.04 0 0 1-.039-.039v-.252h.743c.286 0 .516.174.516.498zm-.941.975h.601c.022 0 .036-.018.036-.038v-.565c-.018.032-.053.05-.092.053H22.8a.207.207 0 0 0-.209.21v.13c0 .118.093.21.209.21M27.359 18.36c.021 0 .038.014.038.035v2.087a.52.52 0 0 1-.516.518h-.87v-.256a.04.04 0 0 1 .038-.04h.83a.21.21 0 0 0 .21-.209v-.475a.31.31 0 0 1-.245.114h-.4a.52.52 0 0 1-.516-.518v-1.257h.27c.02 0 .038.015.038.036v1.235c0 .113.092.21.208.21h.47a.204.204 0 0 0 .174-.182V18.36h.27M31.742 18.877v1.257h-.27a.04.04 0 0 1-.038-.039V18.86a.21.21 0 0 0-.208-.209h-.46c.035.022.063.057.063.1v1.384h-.268a.04.04 0 0 1-.039-.039v-1.405a.04.04 0 0 0-.038-.039h-.535c-.018 0-.032.014-.035.032v1.413a.04.04 0 0 1-.039.039h-.268v-1.544a.23.23 0 0 1 .23-.23h1.39c.287 0 .517.23.517.517zM33.932 19.616v-.752c0-.33.23-.504.516-.504h.474c.287 0 .517.174.517.504v.408c0 .06-.008.11-.093.11h-.969a.17.17 0 0 1-.138-.067v.316c0 .117.093.21.209.21h.878c.021 0 .038.017.038.038v.256h-.916a.516.516 0 0 1-.516-.518zm.517-.966c-.116 0-.209.068-.209.21v.191c0 .022.015.035.036.039h.824a.04.04 0 0 0 .039-.039v-.192q.001-.211-.205-.209zM39.144 18.877v1.257h-.27a.04.04 0 0 1-.038-.039V18.86a.21.21 0 0 0-.209-.209h-.64a.04.04 0 0 0-.039.039v1.405a.04.04 0 0 1-.038.039h-.27V18.59a.23.23 0 0 1 .23-.23h.757c.287 0 .517.23.517.517M42.226 19.878v.256h-.357a.52.52 0 0 1-.517-.518V17.5h.269c.021 0 .038.018.038.04v.888a.11.11 0 0 1 .103-.064h.375v.256c0 .021-.018.035-.038.035h-.439v.976c0 .117.092.21.209.21h.318c.022 0 .039.017.039.038zM44.263 19.066v-.238c0-.287.198-.469.485-.469h.97v.252a.04.04 0 0 1-.04.04h-.93q-.176 0-.177.174v.103c0 .018.014.033.032.039l1.094.26c.056.01.096.06.096.116v.316c0 .309-.22.476-.506.476h-1.001v-.253c0-.021.017-.038.038-.038h.963c.116 0 .22-.067.22-.185v-.167c0-.018-.015-.031-.033-.035l-1.111-.273a.12.12 0 0 1-.1-.117z"/>
|
|
3
|
+
<path fill="#2f6fb4" d="m10.365 4-.063.002v3.086l.063-.002a3.296 3.296 0 0 1 3.287 3.282h3.076C16.72 6.855 13.868 4 10.364 4"/>
|
|
4
|
+
<path fill="#049b95" d="M13.652 10.368v.016a3.296 3.296 0 0 1-3.287 3.298l-.063-.002v3.086l.063.002c3.508 0 6.364-2.863 6.364-6.384v-.016z"/>
|
|
5
|
+
<path fill="#ef3e37" d="M10.302 7.088V4.002C6.826 4.036 4.009 6.877 4 10.368h3.077a3.297 3.297 0 0 1 3.225-3.28"/>
|
|
6
|
+
<path fill="#f78d22" d="M7.077 10.384v-.017H4v.017c0 3.498 2.822 6.347 6.302 6.381V13.68a3.296 3.296 0 0 1-3.225-3.297"/>
|
|
7
|
+
<path fill="#144a8c" d="M10.365 6.216h-.042v2.015h.041c1.18 0 2.142.96 2.147 2.143h2.01c-.007-2.294-1.868-4.158-4.157-4.158"/>
|
|
8
|
+
<path fill="#02746e" d="M12.511 10.374v.01a2.15 2.15 0 0 1-2.146 2.154l-.042-.001v2.015h.041a4.166 4.166 0 0 0 4.156-4.168v-.01z"/>
|
|
9
|
+
<path fill="#c72127" d="M10.323 8.231V6.216a4.166 4.166 0 0 0-4.115 4.157h2.01a2.15 2.15 0 0 1 2.105-2.142"/>
|
|
10
|
+
<path fill="#ce6a28" d="M8.218 10.384v-.011h-2.01v.01a4.167 4.167 0 0 0 4.115 4.168v-2.015a2.15 2.15 0 0 1-2.105-2.152"/>
|
|
11
|
+
<path fill="#414042" d="M18.59 5.644c0-.82 1.228-.804 1.228 0v9.82c0 .756-1.228.788-1.228 0zM23.502 11.178h3.306c2.145 0 3.078-1.002 3.046-2.233-.017-1.347-1.147-2.43-3.046-2.43h-3.306v4.662m0 1.035v3.185c0 .756-1.195.756-1.195.016V5.99c0-.345.245-.574.606-.574h3.88c2.832 0 4.273 1.609 4.273 3.53 0 1.658-.9 2.857-2.914 3.201l2.653 2.874c.622.624-.279 1.347-.819.788l-3.307-3.596h-3.177M33.29 5.644c0-.82 1.229-.804 1.229 0v9.82c0 .756-1.228.788-1.228 0zM37.335 13.28c.426 1.363 2.242 1.659 3.553 1.659 1.391 0 3.552-.428 3.552-2.085 0-1.43-1.719-1.544-3.52-1.691-2.259-.18-4.681-.394-4.681-2.841 0-2.168 2.488-3.136 4.486-3.136 1.719 0 3.863.41 4.551 2.282.245.657-.868.953-1.113.394-.491-1.247-2.243-1.461-3.422-1.461-1.097 0-3.225.443-3.225 1.938s1.637 1.576 3.536 1.724c2.243.197 4.65.313 4.65 2.775 0 2.463-2.799 3.285-4.812 3.285-1.67 0-4.224-.575-4.765-2.546-.196-.722 1.08-.968 1.212-.295"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.6 8C13.6 4.90721 11.0928 2.4 8 2.4C4.90721 2.4 2.4 4.90721 2.4 8C2.4 11.0928 4.90721 13.6 8 13.6C11.0928 13.6 13.6 11.0928 13.6 8ZM15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -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="M20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12ZM22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.6 8C13.6 4.90721 11.0928 2.4 8 2.4C8 6 8 4.40721 8 7.5C8 10.5928 8 9.5 8 13.6C11.0928 13.6 13.6 11.0928 13.6 8ZM15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -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="M12 12C12 7.58172 12 7 12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C12 18 12 16.4183 12 12ZM2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
|
2
|
+
<path fill="currentColor" d="m19.52 8.144-.003-.004-.002-.001zm-5.053 11.245h1.208v-.61c0-.1-.015-.425.09-.718.08-.226.202-.414.371-.58l.104-.09c.102-.081.199-.136.264-.17.086-.046.19-.092.278-.133l.278-.14a4.6 4.6 0 0 0 1.592-1.43c.052-.077.207-.322.413-.487.158-.127.325-.213.517-.27.249-.074.514-.063.6-.063h.218v-2.59a1.6 1.6 0 0 1-.37-.07v.001c-.24-.08-.443-.209-.62-.394a1.6 1.6 0 0 1-.248-.353 6 6 0 0 1-.129-.265l-.088-.18a4.6 4.6 0 0 0-.826-1.126c-.051-.052-.217-.206-.328-.387l-.06-.106a1.5 1.5 0 0 1-.124-.337V8.89c-.05-.205-.042-.418-.042-.483v-.643l-1.87.531-.002.001q-.018.005-.065.016a4.36 4.36 0 0 1-4.1 2.868A4.36 4.36 0 0 1 8.053 9.46a4.545 4.545 0 0 0-.284 6.694l.143.146q.046.051.096.113l.09.13.06.105c.054.106.095.215.124.335l.027.154c.019.15.015.282.015.331v1.92h1.208v-.07c0-.114-.002-.264.01-.396a1.5 1.5 0 0 1 .158-.583c.148-.288.382-.52.668-.664l.163-.07c.16-.056.305-.075.412-.084.13-.01.28-.01.395-.01h1.322c.116 0 .264 0 .395.01.143.012.353.042.574.154.25.126.462.32.61.56l.059.104.072.166c.058.161.078.308.087.417.01.132.01.282.01.396zm8.023-3.991a1.5 1.5 0 0 1-.158.583c-.148.288-.382.52-.668.664a1.5 1.5 0 0 1-.575.153c-.13.011-.28.01-.395.01h-.382a6.7 6.7 0 0 1-2.537 2.139v.747c0 .114 0 .263-.01.395a1.5 1.5 0 0 1-.158.583c-.148.288-.382.52-.668.664a1.5 1.5 0 0 1-.575.154c-.13.01-.28.01-.395.01h-1.795c-.115 0-.264 0-.395-.01a1.5 1.5 0 0 1-.575-.154 1.53 1.53 0 0 1-.668-.664 1.5 1.5 0 0 1-.159-.583c-.01-.132-.01-.281-.01-.395v-.07h-.734v.07c0 .114 0 .263-.01.395a1.5 1.5 0 0 1-.16.582c-.129.252-.324.462-.562.607l-.105.058a1.5 1.5 0 0 1-.575.154c-.13.01-.28.01-.395.01H8.031c-.115 0-.264 0-.395-.01a1.5 1.5 0 0 1-.575-.154 1.52 1.52 0 0 1-.668-.664 1.5 1.5 0 0 1-.158-.583c-.01-.132-.01-.281-.01-.395v-2.11a6.66 6.66 0 0 1-1.807-3.591A2.935 2.935 0 0 1 1.5 11.062c0-1.093.6-2.04 1.475-2.542a1.047 1.047 0 0 1 1.432.393c.287.506.113 1.15-.39 1.44a.82.82 0 0 0-.417.709.83.83 0 0 0 .82.82 6.68 6.68 0 0 1 2.793-4.428 4.4 4.4 0 0 1-.043-.614c0-2.41 1.963-4.34 4.357-4.34 2.132 0 3.92 1.53 4.287 3.567l1.552-.44c.145-.04.32-.09.475-.12.16-.03.42-.065.713.017h.001c.317.09.598.28.798.543l.08.117.056.1c.118.228.15.448.162.592.015.157.014.34.014.49v.925a6.7 6.7 0 0 1 1.21 1.718c.07.001.142 0 .209.006.136.01.336.038.55.14.27.13.498.336.652.595l.061.114v.001c.105.217.133.42.144.558.01.125.009.268.009.376v3.204c0 .114 0 .263-.01.395M9.27 6.84c0 1.218.998 2.228 2.257 2.228a2.247 2.247 0 0 0 2.258-2.228c0-1.219-.999-2.229-2.258-2.229A2.243 2.243 0 0 0 9.27 6.84"/>
|
|
3
|
+
</svg>
|
package/web/v2/plus_tier_16.svg
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="16" fill="none" viewBox="0 0 32 16">
|
|
2
|
-
<path fill="currentColor" d="M32 3.2c0 4.48 0 6.72-.872 8.432a8 8 0 0 1-3.496 3.496C25.92 16 23.68 16 19.2 16H0v-3.2c0-4.48 0-6.72.872-8.432A8 8 0 0 1 4.368.872C6.08 0 8.32 0 12.8 0H32zm-8.955 3.23q-.6 0-1.04.185a1.47 1.47 0 0 0-.675.52 1.4 1.4 0 0 0-.235.805v.05q0 .58.32.915.325.334 1 .445l1.14.19q.354.065.49.195.14.13.14.375v.06a.59.59 0 0 1-.27.515q-.265.185-.75.185-.515 0-.83-.215-.315-.22-.38-.645h-.92q.065.765.614 1.18.555.41 1.495.41.621 0 1.066-.18.45-.185.684-.535.24-.35.24-.835v-.08q0-.59-.324-.92-.326-.335-1.005-.45l-1.13-.18q-.336-.06-.486-.19a.5.5 0 0 1-.144-.38v-.04q0-.31.26-.485.265-.174.73-.175.395 0 .645.135a.74.74 0 0 1 .355.395.56.56 0 0 0 .21.25.6.6 0 0 0 .32.08q.225 0 .345-.095a.35.35 0 0 0 .125-.285.88.88 0 0 0-.25-.615q-.25-.276-.705-.43a3.2 3.2 0 0 0-1.035-.155m-7.082.09v3.55q0 .465.185.81.185.34.525.525.345.185.8.185.5 0 .89-.194a1.
|
|
2
|
+
<path fill="currentColor" d="M32 3.2c0 4.48 0 6.72-.872 8.432a8 8 0 0 1-3.496 3.496C25.92 16 23.68 16 19.2 16H0v-3.2c0-4.48 0-6.72.872-8.432A8 8 0 0 1 4.368.872C6.08 0 8.32 0 12.8 0H32zm-8.955 3.23q-.6 0-1.04.185a1.47 1.47 0 0 0-.675.52 1.4 1.4 0 0 0-.235.805v.05q0 .58.32.915.325.334 1 .445l1.14.19q.354.065.49.195.14.13.14.375v.06a.59.59 0 0 1-.27.515q-.265.185-.75.185-.515 0-.83-.215-.315-.22-.38-.645h-.92q.065.765.614 1.18.555.41 1.495.41.621 0 1.066-.18.45-.185.684-.535.24-.35.24-.835v-.08q0-.59-.324-.92-.326-.335-1.005-.45l-1.13-.18q-.336-.06-.486-.19a.5.5 0 0 1-.144-.38v-.04q0-.31.26-.485.265-.174.73-.175.395 0 .645.135a.74.74 0 0 1 .355.395.56.56 0 0 0 .21.25.6.6 0 0 0 .32.08q.225 0 .345-.095a.35.35 0 0 0 .125-.285.88.88 0 0 0-.25-.615q-.25-.276-.705-.43a3.2 3.2 0 0 0-1.035-.155m-7.082.09v3.55q0 .465.185.81.185.34.525.525.345.185.8.185.5 0 .89-.194a1.5 1.5 0 0 0 .75-.856v.96h1.02V6.52h-1.08v3.07a1.2 1.2 0 0 1-.14.595.93.93 0 0 1-.385.385q-.249.13-.585.13-.43 0-.665-.23-.234-.23-.235-.65v-3.3zM7.5 4.5v7h1.16V8.74h1.95q.7 0 1.21-.24t.78-.685q.27-.45.27-1.065V6.5q0-.615-.27-1.065a1.74 1.74 0 0 0-.78-.695q-.51-.24-1.21-.24zm6.208-.1v7.1h1.07V4.4zm-3.198 1q.57 0 .88.295.31.29.31.815v.23q0 .525-.31.82-.31.29-.88.29H8.66V5.4z"/>
|
|
3
3
|
</svg>
|
package/web/v2/pluxee_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
|
-
|
|
3
|
-
|
|
2
|
+
<rect width="31" height="23" x=".5" y=".5" fill="#00eb5e" stroke="#ccc" rx="3.5"/>
|
|
3
|
+
<path fill="#211d44" d="M26.491 11.282c.536 0 .752.373.752.63H25.74c0-.26.219-.63.752-.63m.631 1.78c-.1.195-.33.327-.625.327-.56 0-.78-.399-.787-.754h2.778a2 2 0 0 0 .029-.303c0-1.255-.864-1.963-2.03-1.963-1.23 0-2.09.709-2.09 1.963s.86 1.963 2.097 1.963 1.788-.67 1.94-1.232zm-19.987.105c-.499 0-.853-.357-.853-.832s.333-.832.853-.832.853.381.853.832-.337.832-.853.832m.373-2.76c-.547 0-1.016.241-1.259.525v-.451H5v5.182h1.288v-1.855c.302.325.723.449 1.149.449 1.276 0 1.868-.965 1.868-1.925 0-1.186-.76-1.925-1.796-1.925M11.022 9H9.73v5.182h1.293zm3.122 1.481v1.925c0 .292-.04.433-.16.575-.116.137-.297.201-.498.201-.2 0-.382-.064-.498-.2-.119-.143-.159-.284-.159-.576v-1.925H11.54v2.04c0 .573.088.947.363 1.265.291.336.736.47 1.171.47.51 0 .863-.191 1.107-.474l.001.4h1.25v-3.701zm5.489 0h-.88l-.97.988-.971-.988h-.88v.88l.987.971-.987.97v.88h.88l.97-.987.97.988h.881v-.88l-.987-.971.987-.97zm2.38.801c.536 0 .752.373.752.63h-1.504c0-.26.219-.63.752-.63m.631 1.78c-.1.195-.33.327-.625.327-.56 0-.78-.399-.786-.754h2.778c.007-.05.028-.192.028-.303 0-1.255-.863-1.963-2.03-1.963-1.23 0-2.09.709-2.09 1.963s.86 1.963 2.097 1.963 1.788-.67 1.94-1.232z"/>
|
|
4
4
|
</svg>
|
package/web/v2/pos_24.svg
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24"
|
|
2
|
-
<path d="M10
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
|
2
|
+
<path fill="currentColor" d="M10 19a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2zm10-7a2 2 0 0 1 2 2v5a2 2 0 0 1-1.796 1.99L20 21h-5l-.204-.01a2 2 0 0 1-1.785-1.786L13 19v-5a2 2 0 0 1 2-2zm-5 7h5v-5h-5zm4-1h-3v-3h3zM18 4a3 3 0 0 1 3 3v3h-2V7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h6v2H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3z"/>
|
|
3
3
|
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
|
2
|
+
<path fill="currentColor" d="M17.611 11.056a6.556 6.556 0 1 0-2 4.71 1 1 0 0 1 .156-.155 6.53 6.53 0 0 0 1.844-4.555m-7.555 2.833v-1.833H8.223a1 1 0 0 1 0-2h1.833V8.223a1 1 0 1 1 2 0v1.833h1.833a1 1 0 1 1 0 2h-1.833v1.833a1 1 0 0 1-2 0m9.555-2.833c0 2.002-.69 3.841-1.842 5.299l3.438 3.438a1 1 0 1 1-1.414 1.414l-3.438-3.438a8.5 8.5 0 0 1-5.3 1.842 8.556 8.556 0 1 1 8.556-8.555"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
|
2
|
+
<path fill="currentColor" d="M17.611 11.056a6.556 6.556 0 1 0-2 4.71 1 1 0 0 1 .156-.155 6.53 6.53 0 0 0 1.844-4.555m-3.722-1a1 1 0 1 1 0 2H8.223a1 1 0 0 1 0-2zm5.722 1c0 2.002-.69 3.841-1.842 5.299l3.438 3.438a1 1 0 1 1-1.414 1.414l-3.438-3.438a8.5 8.5 0 0 1-5.3 1.842 8.556 8.556 0 1 1 8.556-8.555"/>
|
|
3
|
+
</svg>
|