@iconify-react/vscode-icons 1.0.21 → 1.0.22
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/components/f/file-type-cairo.jsx +22 -0
- package/iconify.json +2 -2
- package/package.json +5 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":32,"height":32};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.arkaz54aa {
|
|
14
|
+
fill: var(--svg-color--fe4a3c, #fe4a3c);
|
|
15
|
+
d: path("M16 2.03a14 14 0 0 0-10.97 22.7a28 28 0 0 1 5.21-5.85q.1-.09.4-.27a4 4 0 0 0 1.6-2.64v-.03c.52-3.42 1.91-4.6 5.82-4.6c.33 0 .73 0 1.1.02c2 .1 3.14.67 3.26.97c.1.15.07.34.03.52l-.15-.03c-1.24-.15-3.12.21-3.4 1.57c-.14.76.04 1.61.1 2.37q.15 1.2.15 2.4c0 .05-.06.36 0 .39c-2.12-2.03-7.03.51-8.57 1.63l.48-.18c1.49-.52 5.94-1.85 7.67-.36c1.45 1.78.15 5.09-.94 6.72q-.98 1.46-2.3 2.61H16a14 14 0 0 0 14-14c0-7.73-6.24-13.94-14-13.94m1.6 7.58a2.77 2.77 0 0 1-2.75-2.76a2.77 2.77 0 0 1 2.76-2.76a2.77 2.77 0 0 1 2.75 2.76a2.75 2.75 0 0 1-2.75 2.76");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="arkaz54aa"/>`,
|
|
18
|
+
"fallback": "vscode-icons:file-type-cairo",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "vscode-icons",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "VSCode Icons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 1551,
|
|
6
6
|
"version": "12.19.0",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Roberto Huertas",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
],
|
|
30
30
|
"palette": true
|
|
31
31
|
},
|
|
32
|
-
"lastModified":
|
|
32
|
+
"lastModified": 1783227701
|
|
33
33
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-react/vscode-icons",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.22",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/vscode-icons/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -414,6 +414,10 @@
|
|
|
414
414
|
"types": "./types/hqrkovbr.d.ts",
|
|
415
415
|
"default": "./components/f/file-type-caddy.jsx"
|
|
416
416
|
},
|
|
417
|
+
"./file-type-cairo": {
|
|
418
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
419
|
+
"default": "./components/f/file-type-cairo.jsx"
|
|
420
|
+
},
|
|
417
421
|
"./file-type-cake": {
|
|
418
422
|
"types": "./types/hqrkovbr.d.ts",
|
|
419
423
|
"default": "./components/f/file-type-cake.jsx"
|