@ultraviolet/icons 2.12.1 → 2.12.2
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ReactComponent as Memo$k } from './assets/ai.svg.js';
|
|
2
|
+
import { ReactComponent as Memo$o } from './assets/application-integration.svg.js';
|
|
2
3
|
import { ReactComponent as Memo } from './assets/baremetal.svg.js';
|
|
3
4
|
import { ReactComponent as Memo$j } from './assets/billing.svg.js';
|
|
4
5
|
import { ReactComponent as Memo$i } from './assets/compute.svg.js';
|
|
@@ -47,7 +48,8 @@ const CATEGORY_ICONS = {
|
|
|
47
48
|
ai: Memo$k,
|
|
48
49
|
labs: Memo$l,
|
|
49
50
|
devTools: Memo$m,
|
|
50
|
-
pin: Memo$n
|
|
51
|
+
pin: Memo$n,
|
|
52
|
+
applicationIntegration: Memo$o
|
|
51
53
|
};
|
|
52
54
|
|
|
53
55
|
export { CATEGORY_ICONS };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { memo } from 'react';
|
|
3
|
+
|
|
4
|
+
var _g;
|
|
5
|
+
var SvgApplicationIntegration = function SvgApplicationIntegration(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", props, _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
7
|
+
className: "Application-Integration"
|
|
8
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
9
|
+
className: "Icon"
|
|
10
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#521094",
|
|
12
|
+
d: "M6.707 18.707a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 0-1.414l2-2a1 1 0 0 1 1.414 1.414L6.414 15H16a1 1 0 1 1 0 2H6.414l.293.293a1 1 0 0 1 0 1.414m6.586-17.414a1 1 0 0 1 1.414 0l2 2a1 1 0 0 1 0 1.414l-2 2a1 1 0 1 1-1.414-1.414L13.586 5H4a1 1 0 1 1 0-2h9.586l-.293-.293a1 1 0 0 1 0-1.414",
|
|
13
|
+
className: "fillStrong",
|
|
14
|
+
clipRule: "evenodd",
|
|
15
|
+
fillRule: "evenodd"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
fill: "#A060F6",
|
|
18
|
+
d: "M4 7.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V8A.75.75 0 0 1 4 7.25m3 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V8A.75.75 0 0 1 7 7.25m4 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V8a.75.75 0 0 1 .75-.75m5 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V8a.75.75 0 0 1 .75-.75",
|
|
19
|
+
className: "fill",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
fillRule: "evenodd"
|
|
22
|
+
})))));
|
|
23
|
+
};
|
|
24
|
+
var Memo = /*#__PURE__*/memo(SvgApplicationIntegration);
|
|
25
|
+
|
|
26
|
+
export { Memo as ReactComponent };
|
package/dist/index.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ declare const CATEGORY_ICONS: {
|
|
|
49
49
|
readonly labs: react.FunctionComponent<react.SVGProps<SVGSVGElement>>;
|
|
50
50
|
readonly devTools: react.FunctionComponent<react.SVGProps<SVGSVGElement>>;
|
|
51
51
|
readonly pin: react.FunctionComponent<react.SVGProps<SVGSVGElement>>;
|
|
52
|
+
readonly applicationIntegration: react.FunctionComponent<react.SVGProps<SVGSVGElement>>;
|
|
52
53
|
};
|
|
53
54
|
|
|
54
55
|
type CategoryIconProps = {
|