@iconify-react/ant-design 1.0.3 → 1.0.4
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/t/twitch-filled.jsx +19 -0
- package/css/p/pxvfs20bi.css +5 -0
- package/iconify.json +2 -2
- package/package.json +5 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
import '../../css/p/pxvfs20bi.css';
|
|
4
|
+
|
|
5
|
+
const viewBox = {"width":1024,"height":1024};
|
|
6
|
+
|
|
7
|
+
/** @param {{width?: string; height?: string;}} */
|
|
8
|
+
function Component({width, height, ...props}) {
|
|
9
|
+
return createElement(Icon, {
|
|
10
|
+
...props,
|
|
11
|
+
width,
|
|
12
|
+
height,
|
|
13
|
+
viewBox,
|
|
14
|
+
"content": `<path class="pxvfs20bi"/>`,
|
|
15
|
+
"fallback": "ant-design:twitch-filled",
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default Component;
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "ant-design",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Ant Design Icons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 846,
|
|
6
6
|
"version": "4.5.0",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "HeskeyBaozi",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
],
|
|
29
29
|
"palette": false
|
|
30
30
|
},
|
|
31
|
-
"lastModified":
|
|
31
|
+
"lastModified": 1782727124
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-react/ant-design",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/ant-design/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -3102,6 +3102,10 @@
|
|
|
3102
3102
|
"types": "./types/hqrkovbr.d.ts",
|
|
3103
3103
|
"default": "./components/t/truck-outlined.jsx"
|
|
3104
3104
|
},
|
|
3105
|
+
"./twitch-filled": {
|
|
3106
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
3107
|
+
"default": "./components/t/twitch-filled.jsx"
|
|
3108
|
+
},
|
|
3105
3109
|
"./twitch-outlined": {
|
|
3106
3110
|
"types": "./types/hqrkovbr.d.ts",
|
|
3107
3111
|
"default": "./components/t/twitch-outlined.jsx"
|