@sumup-oss/icons 5.11.0 → 5.12.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/Location.js CHANGED
@@ -13,6 +13,27 @@ function _extends() {
13
13
  );
14
14
  }
15
15
  import React from "react";
16
+ var Location16 = function Location16(props) {
17
+ return /*#__PURE__*/ React.createElement(
18
+ "svg",
19
+ _extends(
20
+ {
21
+ xmlns: "http://www.w3.org/2000/svg",
22
+ width: "16",
23
+ height: "16",
24
+ fill: "none",
25
+ viewBox: "0 0 16 16",
26
+ },
27
+ props,
28
+ ),
29
+ /*#__PURE__*/ React.createElement("path", {
30
+ fill: "currentColor",
31
+ fillRule: "evenodd",
32
+ d: "M8 1a6.15 6.15 0 0 0-4.242 1.677A5.6 5.6 0 0 0 2 6.727c0 .483.063.964.187 1.432.706 2.832 3.553 5.48 4.973 6.555.237.185.534.286.84.286s.603-.101.84-.286c1.467-1.108 4.467-3.901 5.04-6.835a5.5 5.5 0 0 0-.055-2.516 5.64 5.64 0 0 0-1.178-2.252 6 6 0 0 0-2.075-1.554A6.25 6.25 0 0 0 8.001 1m0 7.636c-.395 0-.782-.112-1.11-.321a1.93 1.93 0 0 1-.737-.857 1.83 1.83 0 0 1-.114-1.103c.077-.37.267-.71.547-.978.28-.267.636-.448 1.024-.522a2.1 2.1 0 0 1 1.156.108c.366.145.678.39.898.704S10 6.35 10 6.727c0 .507-.211.992-.586 1.35A2.05 2.05 0 0 1 8 8.637",
33
+ clipRule: "evenodd",
34
+ }),
35
+ );
36
+ };
16
37
  var Location24 = function Location24(props) {
17
38
  return /*#__PURE__*/ React.createElement(
18
39
  "svg",
@@ -35,6 +56,7 @@ var Location24 = function Location24(props) {
35
56
  );
36
57
  };
37
58
  const sizeMap = {
59
+ 16: Location16,
38
60
  24: Location24,
39
61
  };
40
62
  export function Location(_ref) {
@@ -49,7 +71,7 @@ export function Location(_ref) {
49
71
  new Error(
50
72
  "The '".concat(
51
73
  size,
52
- "' size is not supported by the 'Location' icon. Please use one of the available sizes: '24'.",
74
+ "' size is not supported by the 'Location' icon. Please use one of the available sizes: '16', '24'.",
53
75
  ),
54
76
  ),
55
77
  );
package/dist/index.d.ts CHANGED
@@ -462,7 +462,7 @@ declare const Legal: IconComponentType<"24">;
462
462
 
463
463
  declare const Like: IconComponentType<"24">;
464
464
 
465
- declare const Location: IconComponentType<"24">;
465
+ declare const Location: IconComponentType<"16" | "24">;
466
466
 
467
467
  declare const Mcc: IconComponentType<"24">;
468
468
 
@@ -1277,7 +1277,7 @@ type Icons = {
1277
1277
  language: "24";
1278
1278
  legal: "24";
1279
1279
  like: "24";
1280
- location: "24";
1280
+ location: "16" | "24";
1281
1281
  mcc: "24";
1282
1282
  meal_voucher: "24";
1283
1283
  moon: "24";
package/manifest.json CHANGED
@@ -1308,6 +1308,11 @@
1308
1308
  "category": "Miscellaneous",
1309
1309
  "size": "24"
1310
1310
  },
1311
+ {
1312
+ "name": "location",
1313
+ "category": "Miscellaneous",
1314
+ "size": "16"
1315
+ },
1311
1316
  {
1312
1317
  "name": "location",
1313
1318
  "category": "Miscellaneous",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sumup-oss/icons",
3
- "version": "5.11.0",
3
+ "version": "5.12.0",
4
4
  "description": "A collection of icons by SumUp",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" fill-rule="evenodd" d="M8 1a6.15 6.15 0 0 0-4.242 1.677A5.6 5.6 0 0 0 2 6.727c0 .483.063.964.187 1.432.706 2.832 3.553 5.48 4.973 6.555.237.185.534.286.84.286s.603-.101.84-.286c1.467-1.108 4.467-3.901 5.04-6.835a5.5 5.5 0 0 0-.055-2.516 5.64 5.64 0 0 0-1.178-2.252 6 6 0 0 0-2.075-1.554A6.25 6.25 0 0 0 8.001 1m0 7.636c-.395 0-.782-.112-1.11-.321a1.93 1.93 0 0 1-.737-.857 1.83 1.83 0 0 1-.114-1.103c.077-.37.267-.71.547-.978.28-.267.636-.448 1.024-.522a2.1 2.1 0 0 1 1.156.108c.366.145.678.39.898.704S10 6.35 10 6.727c0 .507-.211.992-.586 1.35A2.05 2.05 0 0 1 8 8.637" clip-rule="evenodd"/>
3
+ </svg>