@sumup-oss/icons 5.20.0 → 5.21.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/GeneralPreferences.js +58 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -0
- package/manifest.json +5 -0
- package/package.json +1 -1
- package/web/v2/general_preferences_24.svg +3 -0
|
@@ -0,0 +1,58 @@
|
|
|
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 GeneralPreferences24 = function GeneralPreferences24(props) {
|
|
17
|
+
return /*#__PURE__*/ React.createElement(
|
|
18
|
+
"svg",
|
|
19
|
+
_extends(
|
|
20
|
+
{
|
|
21
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
22
|
+
width: "24",
|
|
23
|
+
height: "24",
|
|
24
|
+
fill: "none",
|
|
25
|
+
viewBox: "0 0 24 24",
|
|
26
|
+
},
|
|
27
|
+
props,
|
|
28
|
+
),
|
|
29
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
fillRule: "evenodd",
|
|
32
|
+
d: "M1 6a5 5 0 0 1 5-5h12a5 5 0 0 1 0 10H6a5 5 0 0 1-5-5m7.646-3H18a3 3 0 1 1 0 6H8.646A4 4 0 0 0 10 6a4 4 0 0 0-1.354-3M6 13a5 5 0 0 0 0 10h12a5 5 0 0 0 0-10zm12 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6",
|
|
33
|
+
clipRule: "evenodd",
|
|
34
|
+
}),
|
|
35
|
+
);
|
|
36
|
+
};
|
|
37
|
+
const sizeMap = {
|
|
38
|
+
24: GeneralPreferences24,
|
|
39
|
+
};
|
|
40
|
+
export function GeneralPreferences(_ref) {
|
|
41
|
+
let { size = "24", ...props } = _ref;
|
|
42
|
+
const Icon = sizeMap[size] || sizeMap["24"];
|
|
43
|
+
if (
|
|
44
|
+
process.env.NODE_ENV !== "production" &&
|
|
45
|
+
process.env.NODE_ENV !== "test" &&
|
|
46
|
+
!sizeMap[size]
|
|
47
|
+
) {
|
|
48
|
+
console.warn(
|
|
49
|
+
new Error(
|
|
50
|
+
"The '".concat(
|
|
51
|
+
size,
|
|
52
|
+
"' size is not supported by the 'GeneralPreferences' icon. Please use one of the available sizes: '24'.",
|
|
53
|
+
),
|
|
54
|
+
),
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
return /*#__PURE__*/ React.createElement(Icon, props);
|
|
58
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -994,6 +994,8 @@ declare const Webspace: IconComponentType<"24">;
|
|
|
994
994
|
|
|
995
995
|
declare const Deposit: IconComponentType<"24">;
|
|
996
996
|
|
|
997
|
+
declare const GeneralPreferences: IconComponentType<"24">;
|
|
998
|
+
|
|
997
999
|
declare const Facebook: IconComponentType<"24">;
|
|
998
1000
|
|
|
999
1001
|
declare const FacebookMessenger: IconComponentType<"24">;
|
|
@@ -1348,6 +1350,7 @@ export {
|
|
|
1348
1350
|
VirtualTerminal,
|
|
1349
1351
|
Webspace,
|
|
1350
1352
|
Deposit,
|
|
1353
|
+
GeneralPreferences,
|
|
1351
1354
|
Facebook,
|
|
1352
1355
|
FacebookMessenger,
|
|
1353
1356
|
Instagram,
|
|
@@ -1904,6 +1907,7 @@ export type IconName =
|
|
|
1904
1907
|
| "virtual_terminal"
|
|
1905
1908
|
| "webspace"
|
|
1906
1909
|
| "deposit"
|
|
1910
|
+
| "general_preferences"
|
|
1907
1911
|
| "facebook"
|
|
1908
1912
|
| "facebook_messenger"
|
|
1909
1913
|
| "instagram"
|
|
@@ -2470,6 +2474,7 @@ type Icons = {
|
|
|
2470
2474
|
virtual_terminal: "24";
|
|
2471
2475
|
webspace: "24";
|
|
2472
2476
|
deposit: "24";
|
|
2477
|
+
general_preferences: "24";
|
|
2473
2478
|
facebook: "24";
|
|
2474
2479
|
facebook_messenger: "24";
|
|
2475
2480
|
instagram: "24";
|
package/dist/index.js
CHANGED
|
@@ -543,6 +543,7 @@ export { Transactions } from "./Transactions.js";
|
|
|
543
543
|
export { VirtualTerminal } from "./VirtualTerminal.js";
|
|
544
544
|
export { Webspace } from "./Webspace.js";
|
|
545
545
|
export { Deposit } from "./Deposit.js";
|
|
546
|
+
export { GeneralPreferences } from "./GeneralPreferences.js";
|
|
546
547
|
export { Facebook } from "./Facebook.js";
|
|
547
548
|
export { FacebookMessenger } from "./FacebookMessenger.js";
|
|
548
549
|
export { Instagram } from "./Instagram.js";
|
package/manifest.json
CHANGED
|
@@ -4010,6 +4010,11 @@
|
|
|
4010
4010
|
"category": "Product and feature",
|
|
4011
4011
|
"size": "24"
|
|
4012
4012
|
},
|
|
4013
|
+
{
|
|
4014
|
+
"name": "general_preferences",
|
|
4015
|
+
"category": "Product and feature",
|
|
4016
|
+
"size": "24"
|
|
4017
|
+
},
|
|
4013
4018
|
{
|
|
4014
4019
|
"name": "facebook",
|
|
4015
4020
|
"category": "Social media",
|
package/package.json
CHANGED
|
@@ -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" fill-rule="evenodd" d="M1 6a5 5 0 0 1 5-5h12a5 5 0 0 1 0 10H6a5 5 0 0 1-5-5m7.646-3H18a3 3 0 1 1 0 6H8.646A4 4 0 0 0 10 6a4 4 0 0 0-1.354-3M6 13a5 5 0 0 0 0 10h12a5 5 0 0 0 0-10zm12 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6" clip-rule="evenodd"/>
|
|
3
|
+
</svg>
|