@ultraviolet/icons 2.12.9 → 2.12.11
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/README.md +37 -2
- package/dist/components/ProductIcon/Icons.cjs +5 -1
- package/dist/components/ProductIcon/Icons.d.ts +2 -0
- package/dist/components/ProductIcon/Icons.js +5 -1
- package/dist/components/ProductIcon/assets/delete-marker.svg.cjs +89 -0
- package/dist/components/ProductIcon/assets/delete-marker.svg.js +71 -0
- package/dist/components/ProductIcon/assets/iot.svg.cjs +1 -1
- package/dist/components/ProductIcon/assets/iot.svg.js +1 -1
- package/dist/components/ProductIcon/assets/ipam.svg.cjs +83 -0
- package/dist/components/ProductIcon/assets/ipam.svg.js +65 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -2,12 +2,47 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/js/%40ultraviolet%2Ficons)
|
|
4
4
|
|
|
5
|
-
Ultraviolet Icons is a set of SVG icons
|
|
5
|
+
Ultraviolet Icons is a set of components based on SVG icons. It provides a set of icons that can be used in your projects.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
+
For icons to work you will need to install some extra dependencies, such as `@ultraviolet/themes` and `@emotion/react`.
|
|
10
|
+
|
|
9
11
|
```sh
|
|
10
|
-
$ pnpm add @ultraviolet/icons
|
|
12
|
+
$ pnpm add @ultraviolet/icons @ultraviolet/themes @emotion/react
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
You can then add `ThemeProvider` to your applications and use the provided theme from `@ultraviolet/themes` or use your own.
|
|
16
|
+
|
|
17
|
+
```tsx
|
|
18
|
+
import { ThemeProvider } from '@emotion/react'
|
|
19
|
+
import { ProductIcon } from '@ultraviolet/icons'
|
|
20
|
+
import { consoleLightTheme } from '@ultraviolet/themes'
|
|
21
|
+
|
|
22
|
+
const App = () => (
|
|
23
|
+
<ThemeProvider theme={consoleLightTheme}>
|
|
24
|
+
<ProductIcon name="sdkGo" size="medium" variant="primary"/>
|
|
25
|
+
</ThemeProvider>
|
|
26
|
+
)
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
> **Note**:
|
|
30
|
+
> To generate your own theme easily you can check the [theme generator](https://storybook.ultraviolet.scaleway.com/?path=/docs/tools-theme-generator--docs).
|
|
31
|
+
|
|
32
|
+
N.B. To allow typescript theme typings with `@emotion/styled` components,
|
|
33
|
+
you'll have to define the `@emotion/react` module `Theme` interface in your project.
|
|
34
|
+
|
|
35
|
+
Example, in a `emotion.d.ts` file:
|
|
36
|
+
|
|
37
|
+
```ts
|
|
38
|
+
import '@emotion/react'
|
|
39
|
+
import type { consoleLightTheme } from '@ultraviolet/themes'
|
|
40
|
+
|
|
41
|
+
type UltravioletUITheme = typeof consoleLightTheme
|
|
42
|
+
|
|
43
|
+
declare module '@emotion/react' {
|
|
44
|
+
export interface Theme extends UltravioletUITheme {}
|
|
45
|
+
}
|
|
11
46
|
```
|
|
12
47
|
|
|
13
48
|
## Documentation
|
|
@@ -35,6 +35,7 @@ const dedibackup = require("./assets/dedibackup.svg.cjs");
|
|
|
35
35
|
const dedibox = require("./assets/dedibox.svg.cjs");
|
|
36
36
|
const dedicatedControlPlane = require("./assets/dedicated-control-plane.svg.cjs");
|
|
37
37
|
const dedicatedServer = require("./assets/dedicated-server.svg.cjs");
|
|
38
|
+
const deleteMarker = require("./assets/delete-marker.svg.cjs");
|
|
38
39
|
const devices = require("./assets/devices.svg.cjs");
|
|
39
40
|
const directConnect = require("./assets/direct-connect.svg.cjs");
|
|
40
41
|
const distributedDataLab = require("./assets/distributed-data-lab.svg.cjs");
|
|
@@ -74,6 +75,7 @@ const instance = require("./assets/instance.svg.cjs");
|
|
|
74
75
|
const iotEdge = require("./assets/iot-edge.svg.cjs");
|
|
75
76
|
const iot = require("./assets/iot.svg.cjs");
|
|
76
77
|
const ipFailover = require("./assets/ip-failover.svg.cjs");
|
|
78
|
+
const ipam = require("./assets/ipam.svg.cjs");
|
|
77
79
|
const ipfsNaming = require("./assets/ipfs-naming.svg.cjs");
|
|
78
80
|
const ipfs = require("./assets/ipfs.svg.cjs");
|
|
79
81
|
const jero = require("./assets/jero.svg.cjs");
|
|
@@ -292,6 +294,8 @@ const PRODUCT_ICONS = {
|
|
|
292
294
|
savingPlan: savingPlan.ReactComponent,
|
|
293
295
|
kms: kms.ReactComponent,
|
|
294
296
|
privateIp: privateIp.ReactComponent,
|
|
295
|
-
quantumApplication: quantumApplication.ReactComponent
|
|
297
|
+
quantumApplication: quantumApplication.ReactComponent,
|
|
298
|
+
ipam: ipam.ReactComponent,
|
|
299
|
+
deleteMarker: deleteMarker.ReactComponent
|
|
296
300
|
};
|
|
297
301
|
exports.PRODUCT_ICONS = PRODUCT_ICONS;
|
|
@@ -145,4 +145,6 @@ export declare const PRODUCT_ICONS: {
|
|
|
145
145
|
readonly kms: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
146
146
|
readonly privateIp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
147
147
|
readonly quantumApplication: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
148
|
+
readonly ipam: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
149
|
+
readonly deleteMarker: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
148
150
|
};
|
|
@@ -33,6 +33,7 @@ import { ReactComponent as Memo$b } from "./assets/dedibackup.svg.js";
|
|
|
33
33
|
import { ReactComponent as Memo$R } from "./assets/dedibox.svg.js";
|
|
34
34
|
import { ReactComponent as Memo$21 } from "./assets/dedicated-control-plane.svg.js";
|
|
35
35
|
import { ReactComponent as Memo$H } from "./assets/dedicated-server.svg.js";
|
|
36
|
+
import { ReactComponent as Memo$2j } from "./assets/delete-marker.svg.js";
|
|
36
37
|
import { ReactComponent as Memo$1o } from "./assets/devices.svg.js";
|
|
37
38
|
import { ReactComponent as Memo$1z } from "./assets/direct-connect.svg.js";
|
|
38
39
|
import { ReactComponent as Memo$20 } from "./assets/distributed-data-lab.svg.js";
|
|
@@ -72,6 +73,7 @@ import { ReactComponent as Memo$M } from "./assets/instance.svg.js";
|
|
|
72
73
|
import { ReactComponent as Memo$1l } from "./assets/iot-edge.svg.js";
|
|
73
74
|
import { ReactComponent as Memo$1k } from "./assets/iot.svg.js";
|
|
74
75
|
import { ReactComponent as Memo$F } from "./assets/ip-failover.svg.js";
|
|
76
|
+
import { ReactComponent as Memo$2i } from "./assets/ipam.svg.js";
|
|
75
77
|
import { ReactComponent as Memo$1Y } from "./assets/ipfs-naming.svg.js";
|
|
76
78
|
import { ReactComponent as Memo$1h } from "./assets/ipfs.svg.js";
|
|
77
79
|
import { ReactComponent as Memo$24 } from "./assets/jero.svg.js";
|
|
@@ -290,7 +292,9 @@ const PRODUCT_ICONS = {
|
|
|
290
292
|
savingPlan: Memo$2e,
|
|
291
293
|
kms: Memo$2f,
|
|
292
294
|
privateIp: Memo$2g,
|
|
293
|
-
quantumApplication: Memo$2h
|
|
295
|
+
quantumApplication: Memo$2h,
|
|
296
|
+
ipam: Memo$2i,
|
|
297
|
+
deleteMarker: Memo$2j
|
|
294
298
|
};
|
|
295
299
|
export {
|
|
296
300
|
PRODUCT_ICONS
|
|
@@ -0,0 +1,89 @@
|
|
|
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 _g;
|
|
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 SvgDeleteMarker = function SvgDeleteMarker2(props) {
|
|
39
|
+
return /* @__PURE__ */ React__namespace.createElement("svg", _extends({
|
|
40
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
41
|
+
width: 64,
|
|
42
|
+
height: 64,
|
|
43
|
+
fill: "none",
|
|
44
|
+
viewBox: "0 0 64 64"
|
|
45
|
+
}, props), _g || (_g = /* @__PURE__ */ React__namespace.createElement("g", {
|
|
46
|
+
className: "deleteMarker"
|
|
47
|
+
}, /* @__PURE__ */ React__namespace.createElement("g", {
|
|
48
|
+
className: ".Square"
|
|
49
|
+
}, /* @__PURE__ */ React__namespace.createElement("path", {
|
|
50
|
+
fill: "#F1EEFC",
|
|
51
|
+
d: "M0 16C0 7.163 7.163 0 16 0h32c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16C7.163 64 0 56.837 0 48z",
|
|
52
|
+
className: "fillWeak"
|
|
53
|
+
})), /* @__PURE__ */ React__namespace.createElement("g", {
|
|
54
|
+
className: "File"
|
|
55
|
+
}, /* @__PURE__ */ React__namespace.createElement("g", {
|
|
56
|
+
className: "icon"
|
|
57
|
+
}, /* @__PURE__ */ React__namespace.createElement("g", {
|
|
58
|
+
fill: "#521094",
|
|
59
|
+
className: "fill"
|
|
60
|
+
}, /* @__PURE__ */ React__namespace.createElement("path", {
|
|
61
|
+
fillRule: "evenodd",
|
|
62
|
+
d: "M21 14a1 1 0 0 0-1 1v33a1 1 0 0 0 1 1h15a1 1 0 1 1 0 2H21a3 3 0 0 1-3-3V15a3 3 0 0 1 3-3h17.5a1 1 0 0 1 .791.389l8.5 11A1 1 0 0 1 48 24v8.5a1 1 0 1 1-2 0v-8.159L38.009 14z",
|
|
63
|
+
clipRule: "evenodd"
|
|
64
|
+
}), /* @__PURE__ */ React__namespace.createElement("path", {
|
|
65
|
+
d: "M47 25h-1v23a1 1 0 0 1-1 1H30a1 1 0 1 0 0 2h15a3 3 0 0 0 3-3V25z"
|
|
66
|
+
}), /* @__PURE__ */ React__namespace.createElement("path", {
|
|
67
|
+
fillRule: "evenodd",
|
|
68
|
+
d: "M37.5 22v-8.5h2V22a1 1 0 0 0 1 1H47v2h-6.5a3 3 0 0 1-3-3",
|
|
69
|
+
clipRule: "evenodd"
|
|
70
|
+
})), /* @__PURE__ */ React__namespace.createElement("g", {
|
|
71
|
+
className: "fillStrong"
|
|
72
|
+
}, /* @__PURE__ */ React__namespace.createElement("path", {
|
|
73
|
+
fill: "#BF95F9",
|
|
74
|
+
fillRule: "evenodd",
|
|
75
|
+
d: "M27.657 39.97c-.39-.39-.38-1.033.023-1.436l9.853-9.854c.404-.403 1.047-.413 1.438-.023.39.39.38 1.034-.023 1.437l-9.854 9.854c-.403.403-1.047.413-1.437.023Z",
|
|
76
|
+
className: "fillStrong",
|
|
77
|
+
clipRule: "evenodd"
|
|
78
|
+
}), /* @__PURE__ */ React__namespace.createElement("g", {
|
|
79
|
+
className: "Group 5"
|
|
80
|
+
}, /* @__PURE__ */ React__namespace.createElement("path", {
|
|
81
|
+
fill: "#BF95F9",
|
|
82
|
+
fillRule: "evenodd",
|
|
83
|
+
d: "M38.97 39.97c-.39.39-1.034.38-1.437-.023l-9.854-9.854c-.403-.403-.413-1.046-.022-1.437.39-.39 1.034-.38 1.437.023l9.853 9.854c.404.403.414 1.046.023 1.437",
|
|
84
|
+
className: "fillStrong",
|
|
85
|
+
clipRule: "evenodd"
|
|
86
|
+
}))))))));
|
|
87
|
+
};
|
|
88
|
+
var Memo = /* @__PURE__ */ React.memo(SvgDeleteMarker);
|
|
89
|
+
exports.ReactComponent = Memo;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { memo } from "react";
|
|
3
|
+
var _g;
|
|
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 SvgDeleteMarker = function SvgDeleteMarker2(props) {
|
|
19
|
+
return /* @__PURE__ */ React.createElement("svg", _extends({
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
21
|
+
width: 64,
|
|
22
|
+
height: 64,
|
|
23
|
+
fill: "none",
|
|
24
|
+
viewBox: "0 0 64 64"
|
|
25
|
+
}, props), _g || (_g = /* @__PURE__ */ React.createElement("g", {
|
|
26
|
+
className: "deleteMarker"
|
|
27
|
+
}, /* @__PURE__ */ React.createElement("g", {
|
|
28
|
+
className: ".Square"
|
|
29
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
30
|
+
fill: "#F1EEFC",
|
|
31
|
+
d: "M0 16C0 7.163 7.163 0 16 0h32c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16C7.163 64 0 56.837 0 48z",
|
|
32
|
+
className: "fillWeak"
|
|
33
|
+
})), /* @__PURE__ */ React.createElement("g", {
|
|
34
|
+
className: "File"
|
|
35
|
+
}, /* @__PURE__ */ React.createElement("g", {
|
|
36
|
+
className: "icon"
|
|
37
|
+
}, /* @__PURE__ */ React.createElement("g", {
|
|
38
|
+
fill: "#521094",
|
|
39
|
+
className: "fill"
|
|
40
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
41
|
+
fillRule: "evenodd",
|
|
42
|
+
d: "M21 14a1 1 0 0 0-1 1v33a1 1 0 0 0 1 1h15a1 1 0 1 1 0 2H21a3 3 0 0 1-3-3V15a3 3 0 0 1 3-3h17.5a1 1 0 0 1 .791.389l8.5 11A1 1 0 0 1 48 24v8.5a1 1 0 1 1-2 0v-8.159L38.009 14z",
|
|
43
|
+
clipRule: "evenodd"
|
|
44
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
45
|
+
d: "M47 25h-1v23a1 1 0 0 1-1 1H30a1 1 0 1 0 0 2h15a3 3 0 0 0 3-3V25z"
|
|
46
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
47
|
+
fillRule: "evenodd",
|
|
48
|
+
d: "M37.5 22v-8.5h2V22a1 1 0 0 0 1 1H47v2h-6.5a3 3 0 0 1-3-3",
|
|
49
|
+
clipRule: "evenodd"
|
|
50
|
+
})), /* @__PURE__ */ React.createElement("g", {
|
|
51
|
+
className: "fillStrong"
|
|
52
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
53
|
+
fill: "#BF95F9",
|
|
54
|
+
fillRule: "evenodd",
|
|
55
|
+
d: "M27.657 39.97c-.39-.39-.38-1.033.023-1.436l9.853-9.854c.404-.403 1.047-.413 1.438-.023.39.39.38 1.034-.023 1.437l-9.854 9.854c-.403.403-1.047.413-1.437.023Z",
|
|
56
|
+
className: "fillStrong",
|
|
57
|
+
clipRule: "evenodd"
|
|
58
|
+
}), /* @__PURE__ */ React.createElement("g", {
|
|
59
|
+
className: "Group 5"
|
|
60
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
61
|
+
fill: "#BF95F9",
|
|
62
|
+
fillRule: "evenodd",
|
|
63
|
+
d: "M38.97 39.97c-.39.39-1.034.38-1.437-.023l-9.854-9.854c-.403-.403-.413-1.046-.022-1.437.39-.39 1.034-.38 1.437.023l9.853 9.854c.404.403.414 1.046.023 1.437",
|
|
64
|
+
className: "fillStrong",
|
|
65
|
+
clipRule: "evenodd"
|
|
66
|
+
}))))))));
|
|
67
|
+
};
|
|
68
|
+
var Memo = /* @__PURE__ */ memo(SvgDeleteMarker);
|
|
69
|
+
export {
|
|
70
|
+
Memo as ReactComponent
|
|
71
|
+
};
|
|
@@ -32,7 +32,7 @@ var SvgIot = function SvgIot2(props) {
|
|
|
32
32
|
className: "fillWeak"
|
|
33
33
|
})), /* @__PURE__ */ React__namespace.createElement("path", {
|
|
34
34
|
fill: "#A365F6",
|
|
35
|
-
d: "M28.156 10c3.67 0 7.07 1.66 9.406 4.448l.235.289.027-.016a6.
|
|
35
|
+
d: "M28.156 10c3.67 0 7.07 1.66 9.406 4.448l.235.289.027-.016a6.2 6.2 0 0 1 2.943-.892l.289-.007a6.256 6.256 0 0 1 6.218 5.574l.02.226.199.03c3.62.591 6.39 3.859 6.503 7.817l.004.253c0 3.607-2.223 6.768-5.439 7.811a1 1 0 0 1-.617-1.902C50.324 32.86 52 30.475 52 27.722c0-3.343-2.448-6.041-5.456-6.162l-.232-.004a1 1 0 0 1-1.018-1.09 4.256 4.256 0 0 0-7.052-3.58 1 1 0 0 1-1.495-.194C34.8 13.772 31.62 12 28.156 12c-4.992 0-9.271 3.686-10.256 8.75a1 1 0 0 1-.88.805l-.12.005-.211-.004c-3.126 0-5.689 2.746-5.689 6.166 0 2.705 1.62 5.06 3.943 5.87a1 1 0 0 1-.66 1.889C11.147 34.385 9 31.266 9 27.722c0-4.24 3.05-7.748 6.989-8.132l.125-.01.034-.127c1.454-5.413 6.173-9.31 11.7-9.45z",
|
|
36
36
|
className: "fillStrong"
|
|
37
37
|
}), /* @__PURE__ */ React__namespace.createElement("path", {
|
|
38
38
|
fill: "#4F0599",
|
|
@@ -12,7 +12,7 @@ var SvgIot = function SvgIot2(props) {
|
|
|
12
12
|
className: "fillWeak"
|
|
13
13
|
})), /* @__PURE__ */ React.createElement("path", {
|
|
14
14
|
fill: "#A365F6",
|
|
15
|
-
d: "M28.156 10c3.67 0 7.07 1.66 9.406 4.448l.235.289.027-.016a6.
|
|
15
|
+
d: "M28.156 10c3.67 0 7.07 1.66 9.406 4.448l.235.289.027-.016a6.2 6.2 0 0 1 2.943-.892l.289-.007a6.256 6.256 0 0 1 6.218 5.574l.02.226.199.03c3.62.591 6.39 3.859 6.503 7.817l.004.253c0 3.607-2.223 6.768-5.439 7.811a1 1 0 0 1-.617-1.902C50.324 32.86 52 30.475 52 27.722c0-3.343-2.448-6.041-5.456-6.162l-.232-.004a1 1 0 0 1-1.018-1.09 4.256 4.256 0 0 0-7.052-3.58 1 1 0 0 1-1.495-.194C34.8 13.772 31.62 12 28.156 12c-4.992 0-9.271 3.686-10.256 8.75a1 1 0 0 1-.88.805l-.12.005-.211-.004c-3.126 0-5.689 2.746-5.689 6.166 0 2.705 1.62 5.06 3.943 5.87a1 1 0 0 1-.66 1.889C11.147 34.385 9 31.266 9 27.722c0-4.24 3.05-7.748 6.989-8.132l.125-.01.034-.127c1.454-5.413 6.173-9.31 11.7-9.45z",
|
|
16
16
|
className: "fillStrong"
|
|
17
17
|
}), /* @__PURE__ */ React.createElement("path", {
|
|
18
18
|
fill: "#4F0599",
|
|
@@ -0,0 +1,83 @@
|
|
|
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 _g;
|
|
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 SvgIpam = function SvgIpam2(props) {
|
|
39
|
+
return /* @__PURE__ */ React__namespace.createElement("svg", _extends({
|
|
40
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
41
|
+
width: 64,
|
|
42
|
+
height: 64,
|
|
43
|
+
fill: "none",
|
|
44
|
+
viewBox: "0 0 64 64"
|
|
45
|
+
}, props), _g || (_g = /* @__PURE__ */ React__namespace.createElement("g", {
|
|
46
|
+
className: "IPAM"
|
|
47
|
+
}, /* @__PURE__ */ React__namespace.createElement("g", {
|
|
48
|
+
className: ".Square"
|
|
49
|
+
}, /* @__PURE__ */ React__namespace.createElement("path", {
|
|
50
|
+
fill: "#F1EEFC",
|
|
51
|
+
d: "M0 16C0 7.163 7.163 0 16 0h32c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16C7.163 64 0 56.837 0 48z",
|
|
52
|
+
className: "fillWeak"
|
|
53
|
+
})), /* @__PURE__ */ React__namespace.createElement("g", {
|
|
54
|
+
className: "icon"
|
|
55
|
+
}, /* @__PURE__ */ React__namespace.createElement("g", {
|
|
56
|
+
fill: "#A060F6",
|
|
57
|
+
className: "fillStrong"
|
|
58
|
+
}, /* @__PURE__ */ React__namespace.createElement("path", {
|
|
59
|
+
d: "M22.275 9a3 3 0 0 0-3 3v2.792c-.964.406-1.864.933-2.682 1.562l-2.508-1.448a3 3 0 0 0-4.098 1.098l-1.72 2.978a3 3 0 0 0 1.099 4.098l2.555 1.475a12.3 12.3 0 0 0-.002 2.877l-2.553 1.474a3 3 0 0 0-1.098 4.098l1.719 2.978a3 3 0 0 0 4.098 1.098l2.497-1.441a12.2 12.2 0 0 0 2.693 1.57V40a3 3 0 0 0 3 3h3.439a3 3 0 0 0 3-3v-2.792a12 12 0 0 0 1.72-.895l-.804-1.428a14 14 0 0 1-.17-.322c-.647.414-1.344.757-2.08 1.017a1 1 0 0 0-.666.943V40a1 1 0 0 1-1 1h-3.439a1 1 0 0 1-1-1v-3.477a1 1 0 0 0-.667-.942 10.2 10.2 0 0 1-3.272-1.909 1 1 0 0 0-1.156-.11l-3.095 1.786a1 1 0 0 1-1.366-.366l-1.72-2.978a1 1 0 0 1 .367-1.366l3.14-1.814a1 1 0 0 0 .485-1.04 10.2 10.2 0 0 1 .003-3.58 1 1 0 0 0-.485-1.041l-3.143-1.815A1 1 0 0 1 10 19.982l1.719-2.978a1 1 0 0 1 1.366-.366l3.105 1.792a1 1 0 0 0 1.155-.11 10.2 10.2 0 0 1 3.263-1.9 1 1 0 0 0 .667-.943V12a1 1 0 0 1 1-1h3.439a1 1 0 0 1 1 1v3.478a1 1 0 0 0 .666.942c1.218.43 2.33 1.088 3.286 1.92a1 1 0 0 0 1.157.113l3.144-1.815a1 1 0 0 1 .237-.1 13.4 13.4 0 0 1 2.519-1.013 3 3 0 0 0-3.756-.62l-2.545 1.47a12 12 0 0 0-2.708-1.582V12a3 3 0 0 0-3-3z"
|
|
60
|
+
}), /* @__PURE__ */ React__namespace.createElement("path", {
|
|
61
|
+
fillRule: "evenodd",
|
|
62
|
+
d: "M28.677 24.23A5.002 5.002 0 0 0 19 26a5 5 0 0 0 9.01 2.986 13.5 13.5 0 0 1 .667-4.756M21 26a3 3 0 1 1 6 0 3 3 0 0 1-6 0",
|
|
63
|
+
clipRule: "evenodd"
|
|
64
|
+
}), /* @__PURE__ */ React__namespace.createElement("path", {
|
|
65
|
+
d: "M40.108 32.227V24.69h-1.34v7.537z"
|
|
66
|
+
}), /* @__PURE__ */ React__namespace.createElement("path", {
|
|
67
|
+
fillRule: "evenodd",
|
|
68
|
+
d: "M46.046 28.157a2.55 2.55 0 0 0 .259-1.134 2.54 2.54 0 0 0-.278-1.199 1.94 1.94 0 0 0-.814-.831q-.546-.303-1.32-.303h-2.461v7.537h1.34v-2.893h1.12q.823 0 1.36-.324.545-.324.794-.853m-1.388-.324q-.268.28-.823.28h-1.063v-2.192h1.063q1.09 0 1.091 1.102 0 .517-.268.81",
|
|
69
|
+
clipRule: "evenodd"
|
|
70
|
+
}), /* @__PURE__ */ React__namespace.createElement("path", {
|
|
71
|
+
fillRule: "evenodd",
|
|
72
|
+
d: "M32.118 28.648a9.53 9.53 0 0 1 9.53-9.53 9.53 9.53 0 0 1 9.53 9.53 9.53 9.53 0 0 1-9.53 9.53 9.53 9.53 0 0 1-9.53-9.53m9.53-7.53a7.53 7.53 0 1 0 0 15.06 7.53 7.53 0 0 0 0-15.06",
|
|
73
|
+
clipRule: "evenodd"
|
|
74
|
+
})), /* @__PURE__ */ React__namespace.createElement("path", {
|
|
75
|
+
fill: "#521094",
|
|
76
|
+
fillRule: "evenodd",
|
|
77
|
+
d: "M27 28.459C27 20.474 33.474 14 41.459 14s14.459 6.474 14.459 14.459a14.4 14.4 0 0 1-1.694 6.8l-.041.083-.024.045-11.086 19.67c-.709 1.258-2.52 1.257-3.229 0L28.76 35.375l-.007-.013A14.4 14.4 0 0 1 27 28.46ZM41.459 16C34.578 16 29 21.578 29 28.459c0 2.105.523 4.134 1.505 5.942L41.46 53.848l10.945-19.42.008-.017a1 1 0 0 1 .04-.085 12.4 12.4 0 0 0 1.466-5.867C53.918 21.578 48.34 16 41.458 16Z",
|
|
78
|
+
className: "fill",
|
|
79
|
+
clipRule: "evenodd"
|
|
80
|
+
})))));
|
|
81
|
+
};
|
|
82
|
+
var Memo = /* @__PURE__ */ React.memo(SvgIpam);
|
|
83
|
+
exports.ReactComponent = Memo;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { memo } from "react";
|
|
3
|
+
var _g;
|
|
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 SvgIpam = function SvgIpam2(props) {
|
|
19
|
+
return /* @__PURE__ */ React.createElement("svg", _extends({
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
21
|
+
width: 64,
|
|
22
|
+
height: 64,
|
|
23
|
+
fill: "none",
|
|
24
|
+
viewBox: "0 0 64 64"
|
|
25
|
+
}, props), _g || (_g = /* @__PURE__ */ React.createElement("g", {
|
|
26
|
+
className: "IPAM"
|
|
27
|
+
}, /* @__PURE__ */ React.createElement("g", {
|
|
28
|
+
className: ".Square"
|
|
29
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
30
|
+
fill: "#F1EEFC",
|
|
31
|
+
d: "M0 16C0 7.163 7.163 0 16 0h32c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16C7.163 64 0 56.837 0 48z",
|
|
32
|
+
className: "fillWeak"
|
|
33
|
+
})), /* @__PURE__ */ React.createElement("g", {
|
|
34
|
+
className: "icon"
|
|
35
|
+
}, /* @__PURE__ */ React.createElement("g", {
|
|
36
|
+
fill: "#A060F6",
|
|
37
|
+
className: "fillStrong"
|
|
38
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
39
|
+
d: "M22.275 9a3 3 0 0 0-3 3v2.792c-.964.406-1.864.933-2.682 1.562l-2.508-1.448a3 3 0 0 0-4.098 1.098l-1.72 2.978a3 3 0 0 0 1.099 4.098l2.555 1.475a12.3 12.3 0 0 0-.002 2.877l-2.553 1.474a3 3 0 0 0-1.098 4.098l1.719 2.978a3 3 0 0 0 4.098 1.098l2.497-1.441a12.2 12.2 0 0 0 2.693 1.57V40a3 3 0 0 0 3 3h3.439a3 3 0 0 0 3-3v-2.792a12 12 0 0 0 1.72-.895l-.804-1.428a14 14 0 0 1-.17-.322c-.647.414-1.344.757-2.08 1.017a1 1 0 0 0-.666.943V40a1 1 0 0 1-1 1h-3.439a1 1 0 0 1-1-1v-3.477a1 1 0 0 0-.667-.942 10.2 10.2 0 0 1-3.272-1.909 1 1 0 0 0-1.156-.11l-3.095 1.786a1 1 0 0 1-1.366-.366l-1.72-2.978a1 1 0 0 1 .367-1.366l3.14-1.814a1 1 0 0 0 .485-1.04 10.2 10.2 0 0 1 .003-3.58 1 1 0 0 0-.485-1.041l-3.143-1.815A1 1 0 0 1 10 19.982l1.719-2.978a1 1 0 0 1 1.366-.366l3.105 1.792a1 1 0 0 0 1.155-.11 10.2 10.2 0 0 1 3.263-1.9 1 1 0 0 0 .667-.943V12a1 1 0 0 1 1-1h3.439a1 1 0 0 1 1 1v3.478a1 1 0 0 0 .666.942c1.218.43 2.33 1.088 3.286 1.92a1 1 0 0 0 1.157.113l3.144-1.815a1 1 0 0 1 .237-.1 13.4 13.4 0 0 1 2.519-1.013 3 3 0 0 0-3.756-.62l-2.545 1.47a12 12 0 0 0-2.708-1.582V12a3 3 0 0 0-3-3z"
|
|
40
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
41
|
+
fillRule: "evenodd",
|
|
42
|
+
d: "M28.677 24.23A5.002 5.002 0 0 0 19 26a5 5 0 0 0 9.01 2.986 13.5 13.5 0 0 1 .667-4.756M21 26a3 3 0 1 1 6 0 3 3 0 0 1-6 0",
|
|
43
|
+
clipRule: "evenodd"
|
|
44
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
45
|
+
d: "M40.108 32.227V24.69h-1.34v7.537z"
|
|
46
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
47
|
+
fillRule: "evenodd",
|
|
48
|
+
d: "M46.046 28.157a2.55 2.55 0 0 0 .259-1.134 2.54 2.54 0 0 0-.278-1.199 1.94 1.94 0 0 0-.814-.831q-.546-.303-1.32-.303h-2.461v7.537h1.34v-2.893h1.12q.823 0 1.36-.324.545-.324.794-.853m-1.388-.324q-.268.28-.823.28h-1.063v-2.192h1.063q1.09 0 1.091 1.102 0 .517-.268.81",
|
|
49
|
+
clipRule: "evenodd"
|
|
50
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
51
|
+
fillRule: "evenodd",
|
|
52
|
+
d: "M32.118 28.648a9.53 9.53 0 0 1 9.53-9.53 9.53 9.53 0 0 1 9.53 9.53 9.53 9.53 0 0 1-9.53 9.53 9.53 9.53 0 0 1-9.53-9.53m9.53-7.53a7.53 7.53 0 1 0 0 15.06 7.53 7.53 0 0 0 0-15.06",
|
|
53
|
+
clipRule: "evenodd"
|
|
54
|
+
})), /* @__PURE__ */ React.createElement("path", {
|
|
55
|
+
fill: "#521094",
|
|
56
|
+
fillRule: "evenodd",
|
|
57
|
+
d: "M27 28.459C27 20.474 33.474 14 41.459 14s14.459 6.474 14.459 14.459a14.4 14.4 0 0 1-1.694 6.8l-.041.083-.024.045-11.086 19.67c-.709 1.258-2.52 1.257-3.229 0L28.76 35.375l-.007-.013A14.4 14.4 0 0 1 27 28.46ZM41.459 16C34.578 16 29 21.578 29 28.459c0 2.105.523 4.134 1.505 5.942L41.46 53.848l10.945-19.42.008-.017a1 1 0 0 1 .04-.085 12.4 12.4 0 0 0 1.466-5.867C53.918 21.578 48.34 16 41.458 16Z",
|
|
58
|
+
className: "fill",
|
|
59
|
+
clipRule: "evenodd"
|
|
60
|
+
})))));
|
|
61
|
+
};
|
|
62
|
+
var Memo = /* @__PURE__ */ memo(SvgIpam);
|
|
63
|
+
export {
|
|
64
|
+
Memo as ReactComponent
|
|
65
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultraviolet/icons",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.11",
|
|
4
4
|
"description": "Ultraviolet Icons",
|
|
5
5
|
"homepage": "https://github.com/scaleway/ultraviolet#readme",
|
|
6
6
|
"repository": {
|
|
@@ -59,10 +59,11 @@
|
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@babel/core": "7.24.5",
|
|
61
61
|
"@types/react": "18.3.1",
|
|
62
|
-
"@types/react-dom": "18.3.0"
|
|
62
|
+
"@types/react-dom": "18.3.0",
|
|
63
|
+
"@utils/test": "0.0.1"
|
|
63
64
|
},
|
|
64
65
|
"dependencies": {
|
|
65
|
-
"@ultraviolet/themes": "1.
|
|
66
|
+
"@ultraviolet/themes": "1.11.0"
|
|
66
67
|
},
|
|
67
68
|
"scripts": {
|
|
68
69
|
"prebuild": "shx rm -rf dist",
|