@ultraviolet/icons 2.12.8 → 2.12.9

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.
Files changed (33) hide show
  1. package/dist/components/Icon/Icons.cjs +12 -0
  2. package/dist/components/Icon/Icons.d.ts +8 -0
  3. package/dist/components/Icon/Icons.js +290 -278
  4. package/dist/components/Icon/SmallIcons.cjs +12 -0
  5. package/dist/components/Icon/SmallIcons.d.ts +8 -0
  6. package/dist/components/Icon/SmallIcons.js +290 -278
  7. package/dist/components/Icon/assets/default/east-short.svg.cjs +51 -0
  8. package/dist/components/Icon/assets/default/east-short.svg.js +33 -0
  9. package/dist/components/Icon/assets/default/north-short.svg.cjs +51 -0
  10. package/dist/components/Icon/assets/default/north-short.svg.js +33 -0
  11. package/dist/components/Icon/assets/default/south-short.svg.cjs +51 -0
  12. package/dist/components/Icon/assets/default/south-short.svg.js +33 -0
  13. package/dist/components/Icon/assets/default/west-short.svg.cjs +51 -0
  14. package/dist/components/Icon/assets/default/west-short.svg.js +33 -0
  15. package/dist/components/Icon/assets/small/east-short.svg.cjs +51 -0
  16. package/dist/components/Icon/assets/small/east-short.svg.js +33 -0
  17. package/dist/components/Icon/assets/small/north-short.svg.cjs +51 -0
  18. package/dist/components/Icon/assets/small/north-short.svg.js +33 -0
  19. package/dist/components/Icon/assets/small/south-short.svg.cjs +51 -0
  20. package/dist/components/Icon/assets/small/south-short.svg.js +33 -0
  21. package/dist/components/Icon/assets/small/west-short.svg.cjs +51 -0
  22. package/dist/components/Icon/assets/small/west-short.svg.js +33 -0
  23. package/dist/components/Icon/index.d.ts +2 -2
  24. package/dist/components/ProductIcon/Icons.cjs +7 -1
  25. package/dist/components/ProductIcon/Icons.d.ts +3 -0
  26. package/dist/components/ProductIcon/Icons.js +7 -1
  27. package/dist/components/ProductIcon/assets/kms.svg.cjs +109 -0
  28. package/dist/components/ProductIcon/assets/kms.svg.js +91 -0
  29. package/dist/components/ProductIcon/assets/private-ip.svg.cjs +107 -0
  30. package/dist/components/ProductIcon/assets/private-ip.svg.js +89 -0
  31. package/dist/components/ProductIcon/assets/quantum-application.svg.cjs +76 -0
  32. package/dist/components/ProductIcon/assets/quantum-application.svg.js +58 -0
  33. package/package.json +3 -1
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const React = require("react");
4
+ function _interopNamespaceCompat(e) {
5
+ if (e && typeof e === "object" && "default" in e)
6
+ return e;
7
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
+ if (e) {
9
+ for (const k in e) {
10
+ if (k !== "default") {
11
+ const d = Object.getOwnPropertyDescriptor(e, k);
12
+ Object.defineProperty(n, k, d.get ? d : {
13
+ enumerable: true,
14
+ get: () => e[k]
15
+ });
16
+ }
17
+ }
18
+ }
19
+ n.default = e;
20
+ return Object.freeze(n);
21
+ }
22
+ const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
+ var _path;
24
+ function _extends() {
25
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
26
+ for (var i = 1; i < arguments.length; i++) {
27
+ var source = arguments[i];
28
+ for (var key in source) {
29
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
30
+ target[key] = source[key];
31
+ }
32
+ }
33
+ }
34
+ return target;
35
+ };
36
+ return _extends.apply(this, arguments);
37
+ }
38
+ var SvgEastShort = function SvgEastShort2(props) {
39
+ return /* @__PURE__ */ React__namespace.createElement("svg", _extends({
40
+ xmlns: "http://www.w3.org/2000/svg",
41
+ width: 20,
42
+ height: 20,
43
+ fill: "none",
44
+ viewBox: "0 0 20 20"
45
+ }, props), _path || (_path = /* @__PURE__ */ React__namespace.createElement("path", {
46
+ d: "M10.678 3.22a.75.75 0 0 1 1.06 0l6.042 6.04a.75.75 0 0 1 0 1.061l-6.041 6.042a.75.75 0 0 1-1.061-1.061l4.761-4.761H2.75a.75.75 0 0 1 0-1.5h12.69L10.677 4.28a.75.75 0 0 1 0-1.06",
47
+ clipRule: "evenodd"
48
+ })));
49
+ };
50
+ var Memo = /* @__PURE__ */ React.memo(SvgEastShort);
51
+ exports.ReactComponent = Memo;
@@ -0,0 +1,33 @@
1
+ import * as React from "react";
2
+ import { memo } from "react";
3
+ var _path;
4
+ function _extends() {
5
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
6
+ for (var i = 1; i < arguments.length; i++) {
7
+ var source = arguments[i];
8
+ for (var key in source) {
9
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
10
+ target[key] = source[key];
11
+ }
12
+ }
13
+ }
14
+ return target;
15
+ };
16
+ return _extends.apply(this, arguments);
17
+ }
18
+ var SvgEastShort = function SvgEastShort2(props) {
19
+ return /* @__PURE__ */ React.createElement("svg", _extends({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ width: 20,
22
+ height: 20,
23
+ fill: "none",
24
+ viewBox: "0 0 20 20"
25
+ }, props), _path || (_path = /* @__PURE__ */ React.createElement("path", {
26
+ d: "M10.678 3.22a.75.75 0 0 1 1.06 0l6.042 6.04a.75.75 0 0 1 0 1.061l-6.041 6.042a.75.75 0 0 1-1.061-1.061l4.761-4.761H2.75a.75.75 0 0 1 0-1.5h12.69L10.677 4.28a.75.75 0 0 1 0-1.06",
27
+ clipRule: "evenodd"
28
+ })));
29
+ };
30
+ var Memo = /* @__PURE__ */ memo(SvgEastShort);
31
+ export {
32
+ Memo as ReactComponent
33
+ };
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const React = require("react");
4
+ function _interopNamespaceCompat(e) {
5
+ if (e && typeof e === "object" && "default" in e)
6
+ return e;
7
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
+ if (e) {
9
+ for (const k in e) {
10
+ if (k !== "default") {
11
+ const d = Object.getOwnPropertyDescriptor(e, k);
12
+ Object.defineProperty(n, k, d.get ? d : {
13
+ enumerable: true,
14
+ get: () => e[k]
15
+ });
16
+ }
17
+ }
18
+ }
19
+ n.default = e;
20
+ return Object.freeze(n);
21
+ }
22
+ const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
+ var _path;
24
+ function _extends() {
25
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
26
+ for (var i = 1; i < arguments.length; i++) {
27
+ var source = arguments[i];
28
+ for (var key in source) {
29
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
30
+ target[key] = source[key];
31
+ }
32
+ }
33
+ }
34
+ return target;
35
+ };
36
+ return _extends.apply(this, arguments);
37
+ }
38
+ var SvgNorthShort = function SvgNorthShort2(props) {
39
+ return /* @__PURE__ */ React__namespace.createElement("svg", _extends({
40
+ xmlns: "http://www.w3.org/2000/svg",
41
+ width: 20,
42
+ height: 20,
43
+ fill: "none",
44
+ viewBox: "0 0 20 20"
45
+ }, props), _path || (_path = /* @__PURE__ */ React__namespace.createElement("path", {
46
+ d: "M9.792 2a.75.75 0 0 1 .53.22l6.042 6.041a.75.75 0 1 1-1.061 1.061l-4.761-4.761V17.25a.75.75 0 0 1-1.5 0V4.56L4.28 9.323a.75.75 0 0 1-1.06-1.06L9.26 2.22A.75.75 0 0 1 9.79 2",
47
+ clipRule: "evenodd"
48
+ })));
49
+ };
50
+ var Memo = /* @__PURE__ */ React.memo(SvgNorthShort);
51
+ exports.ReactComponent = Memo;
@@ -0,0 +1,33 @@
1
+ import * as React from "react";
2
+ import { memo } from "react";
3
+ var _path;
4
+ function _extends() {
5
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
6
+ for (var i = 1; i < arguments.length; i++) {
7
+ var source = arguments[i];
8
+ for (var key in source) {
9
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
10
+ target[key] = source[key];
11
+ }
12
+ }
13
+ }
14
+ return target;
15
+ };
16
+ return _extends.apply(this, arguments);
17
+ }
18
+ var SvgNorthShort = function SvgNorthShort2(props) {
19
+ return /* @__PURE__ */ React.createElement("svg", _extends({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ width: 20,
22
+ height: 20,
23
+ fill: "none",
24
+ viewBox: "0 0 20 20"
25
+ }, props), _path || (_path = /* @__PURE__ */ React.createElement("path", {
26
+ d: "M9.792 2a.75.75 0 0 1 .53.22l6.042 6.041a.75.75 0 1 1-1.061 1.061l-4.761-4.761V17.25a.75.75 0 0 1-1.5 0V4.56L4.28 9.323a.75.75 0 0 1-1.06-1.06L9.26 2.22A.75.75 0 0 1 9.79 2",
27
+ clipRule: "evenodd"
28
+ })));
29
+ };
30
+ var Memo = /* @__PURE__ */ memo(SvgNorthShort);
31
+ export {
32
+ Memo as ReactComponent
33
+ };
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const React = require("react");
4
+ function _interopNamespaceCompat(e) {
5
+ if (e && typeof e === "object" && "default" in e)
6
+ return e;
7
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
+ if (e) {
9
+ for (const k in e) {
10
+ if (k !== "default") {
11
+ const d = Object.getOwnPropertyDescriptor(e, k);
12
+ Object.defineProperty(n, k, d.get ? d : {
13
+ enumerable: true,
14
+ get: () => e[k]
15
+ });
16
+ }
17
+ }
18
+ }
19
+ n.default = e;
20
+ return Object.freeze(n);
21
+ }
22
+ const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
+ var _path;
24
+ function _extends() {
25
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
26
+ for (var i = 1; i < arguments.length; i++) {
27
+ var source = arguments[i];
28
+ for (var key in source) {
29
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
30
+ target[key] = source[key];
31
+ }
32
+ }
33
+ }
34
+ return target;
35
+ };
36
+ return _extends.apply(this, arguments);
37
+ }
38
+ var SvgSouthShort = function SvgSouthShort2(props) {
39
+ return /* @__PURE__ */ React__namespace.createElement("svg", _extends({
40
+ xmlns: "http://www.w3.org/2000/svg",
41
+ width: 20,
42
+ height: 20,
43
+ fill: "none",
44
+ viewBox: "0 0 20 20"
45
+ }, props), _path || (_path = /* @__PURE__ */ React__namespace.createElement("path", {
46
+ d: "M9.792 2a.75.75 0 0 1 .75.75v12.69l4.761-4.762a.75.75 0 0 1 1.06 1.06l-6.041 6.042a.75.75 0 0 1-1.06 0L3.22 11.74a.75.75 0 0 1 1.06-1.061l4.762 4.761V2.75a.75.75 0 0 1 .75-.75",
47
+ clipRule: "evenodd"
48
+ })));
49
+ };
50
+ var Memo = /* @__PURE__ */ React.memo(SvgSouthShort);
51
+ exports.ReactComponent = Memo;
@@ -0,0 +1,33 @@
1
+ import * as React from "react";
2
+ import { memo } from "react";
3
+ var _path;
4
+ function _extends() {
5
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
6
+ for (var i = 1; i < arguments.length; i++) {
7
+ var source = arguments[i];
8
+ for (var key in source) {
9
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
10
+ target[key] = source[key];
11
+ }
12
+ }
13
+ }
14
+ return target;
15
+ };
16
+ return _extends.apply(this, arguments);
17
+ }
18
+ var SvgSouthShort = function SvgSouthShort2(props) {
19
+ return /* @__PURE__ */ React.createElement("svg", _extends({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ width: 20,
22
+ height: 20,
23
+ fill: "none",
24
+ viewBox: "0 0 20 20"
25
+ }, props), _path || (_path = /* @__PURE__ */ React.createElement("path", {
26
+ d: "M9.792 2a.75.75 0 0 1 .75.75v12.69l4.761-4.762a.75.75 0 0 1 1.06 1.06l-6.041 6.042a.75.75 0 0 1-1.06 0L3.22 11.74a.75.75 0 0 1 1.06-1.061l4.762 4.761V2.75a.75.75 0 0 1 .75-.75",
27
+ clipRule: "evenodd"
28
+ })));
29
+ };
30
+ var Memo = /* @__PURE__ */ memo(SvgSouthShort);
31
+ export {
32
+ Memo as ReactComponent
33
+ };
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const React = require("react");
4
+ function _interopNamespaceCompat(e) {
5
+ if (e && typeof e === "object" && "default" in e)
6
+ return e;
7
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
+ if (e) {
9
+ for (const k in e) {
10
+ if (k !== "default") {
11
+ const d = Object.getOwnPropertyDescriptor(e, k);
12
+ Object.defineProperty(n, k, d.get ? d : {
13
+ enumerable: true,
14
+ get: () => e[k]
15
+ });
16
+ }
17
+ }
18
+ }
19
+ n.default = e;
20
+ return Object.freeze(n);
21
+ }
22
+ const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
+ var _path;
24
+ function _extends() {
25
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
26
+ for (var i = 1; i < arguments.length; i++) {
27
+ var source = arguments[i];
28
+ for (var key in source) {
29
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
30
+ target[key] = source[key];
31
+ }
32
+ }
33
+ }
34
+ return target;
35
+ };
36
+ return _extends.apply(this, arguments);
37
+ }
38
+ var SvgWestShort = function SvgWestShort2(props) {
39
+ return /* @__PURE__ */ React__namespace.createElement("svg", _extends({
40
+ xmlns: "http://www.w3.org/2000/svg",
41
+ width: 20,
42
+ height: 20,
43
+ fill: "none",
44
+ viewBox: "0 0 20 20"
45
+ }, props), _path || (_path = /* @__PURE__ */ React__namespace.createElement("path", {
46
+ d: "M9.322 3.22a.75.75 0 0 1 0 1.06L4.561 9.042H17.25a.75.75 0 0 1 0 1.5H4.56l4.762 4.761a.75.75 0 0 1-1.06 1.06l-6.042-6.04a.75.75 0 0 1 0-1.06L8.26 3.22a.75.75 0 0 1 1.061 0",
47
+ clipRule: "evenodd"
48
+ })));
49
+ };
50
+ var Memo = /* @__PURE__ */ React.memo(SvgWestShort);
51
+ exports.ReactComponent = Memo;
@@ -0,0 +1,33 @@
1
+ import * as React from "react";
2
+ import { memo } from "react";
3
+ var _path;
4
+ function _extends() {
5
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
6
+ for (var i = 1; i < arguments.length; i++) {
7
+ var source = arguments[i];
8
+ for (var key in source) {
9
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
10
+ target[key] = source[key];
11
+ }
12
+ }
13
+ }
14
+ return target;
15
+ };
16
+ return _extends.apply(this, arguments);
17
+ }
18
+ var SvgWestShort = function SvgWestShort2(props) {
19
+ return /* @__PURE__ */ React.createElement("svg", _extends({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ width: 20,
22
+ height: 20,
23
+ fill: "none",
24
+ viewBox: "0 0 20 20"
25
+ }, props), _path || (_path = /* @__PURE__ */ React.createElement("path", {
26
+ d: "M9.322 3.22a.75.75 0 0 1 0 1.06L4.561 9.042H17.25a.75.75 0 0 1 0 1.5H4.56l4.762 4.761a.75.75 0 0 1-1.06 1.06l-6.042-6.04a.75.75 0 0 1 0-1.06L8.26 3.22a.75.75 0 0 1 1.061 0",
27
+ clipRule: "evenodd"
28
+ })));
29
+ };
30
+ var Memo = /* @__PURE__ */ memo(SvgWestShort);
31
+ export {
32
+ Memo as ReactComponent
33
+ };
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const React = require("react");
4
+ function _interopNamespaceCompat(e) {
5
+ if (e && typeof e === "object" && "default" in e)
6
+ return e;
7
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
+ if (e) {
9
+ for (const k in e) {
10
+ if (k !== "default") {
11
+ const d = Object.getOwnPropertyDescriptor(e, k);
12
+ Object.defineProperty(n, k, d.get ? d : {
13
+ enumerable: true,
14
+ get: () => e[k]
15
+ });
16
+ }
17
+ }
18
+ }
19
+ n.default = e;
20
+ return Object.freeze(n);
21
+ }
22
+ const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
+ var _path;
24
+ function _extends() {
25
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
26
+ for (var i = 1; i < arguments.length; i++) {
27
+ var source = arguments[i];
28
+ for (var key in source) {
29
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
30
+ target[key] = source[key];
31
+ }
32
+ }
33
+ }
34
+ return target;
35
+ };
36
+ return _extends.apply(this, arguments);
37
+ }
38
+ var SvgEastShort = function SvgEastShort2(props) {
39
+ return /* @__PURE__ */ React__namespace.createElement("svg", _extends({
40
+ xmlns: "http://www.w3.org/2000/svg",
41
+ width: 16,
42
+ height: 16,
43
+ fill: "none",
44
+ viewBox: "0 0 16 16"
45
+ }, props), _path || (_path = /* @__PURE__ */ React__namespace.createElement("path", {
46
+ d: "M8.345 3.22a.75.75 0 0 1 1.06 0l4.375 4.375a.75.75 0 0 1 0 1.06L9.405 13.03a.75.75 0 0 1-1.06-1.06l3.094-3.095H2.75a.75.75 0 0 1 0-1.5h8.69L8.344 4.28a.75.75 0 0 1 0-1.06",
47
+ clipRule: "evenodd"
48
+ })));
49
+ };
50
+ var Memo = /* @__PURE__ */ React.memo(SvgEastShort);
51
+ exports.ReactComponent = Memo;
@@ -0,0 +1,33 @@
1
+ import * as React from "react";
2
+ import { memo } from "react";
3
+ var _path;
4
+ function _extends() {
5
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
6
+ for (var i = 1; i < arguments.length; i++) {
7
+ var source = arguments[i];
8
+ for (var key in source) {
9
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
10
+ target[key] = source[key];
11
+ }
12
+ }
13
+ }
14
+ return target;
15
+ };
16
+ return _extends.apply(this, arguments);
17
+ }
18
+ var SvgEastShort = function SvgEastShort2(props) {
19
+ return /* @__PURE__ */ React.createElement("svg", _extends({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ width: 16,
22
+ height: 16,
23
+ fill: "none",
24
+ viewBox: "0 0 16 16"
25
+ }, props), _path || (_path = /* @__PURE__ */ React.createElement("path", {
26
+ d: "M8.345 3.22a.75.75 0 0 1 1.06 0l4.375 4.375a.75.75 0 0 1 0 1.06L9.405 13.03a.75.75 0 0 1-1.06-1.06l3.094-3.095H2.75a.75.75 0 0 1 0-1.5h8.69L8.344 4.28a.75.75 0 0 1 0-1.06",
27
+ clipRule: "evenodd"
28
+ })));
29
+ };
30
+ var Memo = /* @__PURE__ */ memo(SvgEastShort);
31
+ export {
32
+ Memo as ReactComponent
33
+ };
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const React = require("react");
4
+ function _interopNamespaceCompat(e) {
5
+ if (e && typeof e === "object" && "default" in e)
6
+ return e;
7
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
+ if (e) {
9
+ for (const k in e) {
10
+ if (k !== "default") {
11
+ const d = Object.getOwnPropertyDescriptor(e, k);
12
+ Object.defineProperty(n, k, d.get ? d : {
13
+ enumerable: true,
14
+ get: () => e[k]
15
+ });
16
+ }
17
+ }
18
+ }
19
+ n.default = e;
20
+ return Object.freeze(n);
21
+ }
22
+ const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
+ var _path;
24
+ function _extends() {
25
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
26
+ for (var i = 1; i < arguments.length; i++) {
27
+ var source = arguments[i];
28
+ for (var key in source) {
29
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
30
+ target[key] = source[key];
31
+ }
32
+ }
33
+ }
34
+ return target;
35
+ };
36
+ return _extends.apply(this, arguments);
37
+ }
38
+ var SvgNorthShort = function SvgNorthShort2(props) {
39
+ return /* @__PURE__ */ React__namespace.createElement("svg", _extends({
40
+ xmlns: "http://www.w3.org/2000/svg",
41
+ width: 16,
42
+ height: 16,
43
+ fill: "none",
44
+ viewBox: "0 0 16 16"
45
+ }, props), _path || (_path = /* @__PURE__ */ React__namespace.createElement("path", {
46
+ d: "M7.845 2.47a.75.75 0 0 1 1.06 0l4.375 4.375a.75.75 0 0 1-1.06 1.06L9.125 4.811V13.5a.75.75 0 0 1-1.5 0V4.81L4.53 7.906a.75.75 0 0 1-1.06-1.06z",
47
+ clipRule: "evenodd"
48
+ })));
49
+ };
50
+ var Memo = /* @__PURE__ */ React.memo(SvgNorthShort);
51
+ exports.ReactComponent = Memo;
@@ -0,0 +1,33 @@
1
+ import * as React from "react";
2
+ import { memo } from "react";
3
+ var _path;
4
+ function _extends() {
5
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
6
+ for (var i = 1; i < arguments.length; i++) {
7
+ var source = arguments[i];
8
+ for (var key in source) {
9
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
10
+ target[key] = source[key];
11
+ }
12
+ }
13
+ }
14
+ return target;
15
+ };
16
+ return _extends.apply(this, arguments);
17
+ }
18
+ var SvgNorthShort = function SvgNorthShort2(props) {
19
+ return /* @__PURE__ */ React.createElement("svg", _extends({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ width: 16,
22
+ height: 16,
23
+ fill: "none",
24
+ viewBox: "0 0 16 16"
25
+ }, props), _path || (_path = /* @__PURE__ */ React.createElement("path", {
26
+ d: "M7.845 2.47a.75.75 0 0 1 1.06 0l4.375 4.375a.75.75 0 0 1-1.06 1.06L9.125 4.811V13.5a.75.75 0 0 1-1.5 0V4.81L4.53 7.906a.75.75 0 0 1-1.06-1.06z",
27
+ clipRule: "evenodd"
28
+ })));
29
+ };
30
+ var Memo = /* @__PURE__ */ memo(SvgNorthShort);
31
+ export {
32
+ Memo as ReactComponent
33
+ };
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const React = require("react");
4
+ function _interopNamespaceCompat(e) {
5
+ if (e && typeof e === "object" && "default" in e)
6
+ return e;
7
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
+ if (e) {
9
+ for (const k in e) {
10
+ if (k !== "default") {
11
+ const d = Object.getOwnPropertyDescriptor(e, k);
12
+ Object.defineProperty(n, k, d.get ? d : {
13
+ enumerable: true,
14
+ get: () => e[k]
15
+ });
16
+ }
17
+ }
18
+ }
19
+ n.default = e;
20
+ return Object.freeze(n);
21
+ }
22
+ const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
+ var _path;
24
+ function _extends() {
25
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
26
+ for (var i = 1; i < arguments.length; i++) {
27
+ var source = arguments[i];
28
+ for (var key in source) {
29
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
30
+ target[key] = source[key];
31
+ }
32
+ }
33
+ }
34
+ return target;
35
+ };
36
+ return _extends.apply(this, arguments);
37
+ }
38
+ var SvgSouthShort = function SvgSouthShort2(props) {
39
+ return /* @__PURE__ */ React__namespace.createElement("svg", _extends({
40
+ xmlns: "http://www.w3.org/2000/svg",
41
+ width: 16,
42
+ height: 16,
43
+ fill: "none",
44
+ viewBox: "0 0 16 16"
45
+ }, props), _path || (_path = /* @__PURE__ */ React__namespace.createElement("path", {
46
+ d: "M8.125 2a.75.75 0 0 1 .75.75v8.69l3.095-3.095a.75.75 0 1 1 1.06 1.06L8.655 13.78a.75.75 0 0 1-1.06 0L3.22 9.405a.75.75 0 0 1 1.06-1.06l3.095 3.094V2.75a.75.75 0 0 1 .75-.75",
47
+ clipRule: "evenodd"
48
+ })));
49
+ };
50
+ var Memo = /* @__PURE__ */ React.memo(SvgSouthShort);
51
+ exports.ReactComponent = Memo;
@@ -0,0 +1,33 @@
1
+ import * as React from "react";
2
+ import { memo } from "react";
3
+ var _path;
4
+ function _extends() {
5
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
6
+ for (var i = 1; i < arguments.length; i++) {
7
+ var source = arguments[i];
8
+ for (var key in source) {
9
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
10
+ target[key] = source[key];
11
+ }
12
+ }
13
+ }
14
+ return target;
15
+ };
16
+ return _extends.apply(this, arguments);
17
+ }
18
+ var SvgSouthShort = function SvgSouthShort2(props) {
19
+ return /* @__PURE__ */ React.createElement("svg", _extends({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ width: 16,
22
+ height: 16,
23
+ fill: "none",
24
+ viewBox: "0 0 16 16"
25
+ }, props), _path || (_path = /* @__PURE__ */ React.createElement("path", {
26
+ d: "M8.125 2a.75.75 0 0 1 .75.75v8.69l3.095-3.095a.75.75 0 1 1 1.06 1.06L8.655 13.78a.75.75 0 0 1-1.06 0L3.22 9.405a.75.75 0 0 1 1.06-1.06l3.095 3.094V2.75a.75.75 0 0 1 .75-.75",
27
+ clipRule: "evenodd"
28
+ })));
29
+ };
30
+ var Memo = /* @__PURE__ */ memo(SvgSouthShort);
31
+ export {
32
+ Memo as ReactComponent
33
+ };
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const React = require("react");
4
+ function _interopNamespaceCompat(e) {
5
+ if (e && typeof e === "object" && "default" in e)
6
+ return e;
7
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
+ if (e) {
9
+ for (const k in e) {
10
+ if (k !== "default") {
11
+ const d = Object.getOwnPropertyDescriptor(e, k);
12
+ Object.defineProperty(n, k, d.get ? d : {
13
+ enumerable: true,
14
+ get: () => e[k]
15
+ });
16
+ }
17
+ }
18
+ }
19
+ n.default = e;
20
+ return Object.freeze(n);
21
+ }
22
+ const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
+ var _path;
24
+ function _extends() {
25
+ _extends = Object.assign ? Object.assign.bind() : function(target) {
26
+ for (var i = 1; i < arguments.length; i++) {
27
+ var source = arguments[i];
28
+ for (var key in source) {
29
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
30
+ target[key] = source[key];
31
+ }
32
+ }
33
+ }
34
+ return target;
35
+ };
36
+ return _extends.apply(this, arguments);
37
+ }
38
+ var SvgWestShort = function SvgWestShort2(props) {
39
+ return /* @__PURE__ */ React__namespace.createElement("svg", _extends({
40
+ xmlns: "http://www.w3.org/2000/svg",
41
+ width: 16,
42
+ height: 16,
43
+ fill: "none",
44
+ viewBox: "0 0 16 16"
45
+ }, props), _path || (_path = /* @__PURE__ */ React__namespace.createElement("path", {
46
+ d: "M7.655 3.22a.75.75 0 0 1 0 1.06L4.561 7.375h8.689a.75.75 0 0 1 0 1.5H4.56l3.095 3.095a.75.75 0 1 1-1.06 1.06L2.22 8.655a.75.75 0 0 1 0-1.06L6.595 3.22a.75.75 0 0 1 1.06 0",
47
+ clipRule: "evenodd"
48
+ })));
49
+ };
50
+ var Memo = /* @__PURE__ */ React.memo(SvgWestShort);
51
+ exports.ReactComponent = Memo;