@iconify-svelte/wordpress 1.0.0 → 1.0.1
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/full-height.svelte +10 -0
- package/css/n/ndmukab.css +4 -0
- package/iconify.json +2 -2
- package/package.json +5 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/ndmukab.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="ndmukab"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="wordpress:full-height" {...props}></Icon>
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "wordpress",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "WordPress Icons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 322,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "The WordPress Contributors",
|
|
8
8
|
"url": "https://github.com/WordPress/gutenberg/tree/HEAD/packages/icons"
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
],
|
|
28
28
|
"palette": false
|
|
29
29
|
},
|
|
30
|
-
"lastModified":
|
|
30
|
+
"lastModified": 1770360596
|
|
31
31
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-svelte/wordpress",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/wordpress/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "GPL-2.0-or-later",
|
|
@@ -486,6 +486,10 @@
|
|
|
486
486
|
"types": "./types/gfwqskkx.d.ts",
|
|
487
487
|
"svelte": "./components/f/format-uppercase.svelte"
|
|
488
488
|
},
|
|
489
|
+
"./full-height": {
|
|
490
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
491
|
+
"svelte": "./components/f/full-height.svelte"
|
|
492
|
+
},
|
|
489
493
|
"./fullscreen": {
|
|
490
494
|
"types": "./types/gfwqskkx.d.ts",
|
|
491
495
|
"svelte": "./components/f/fullscreen.svelte"
|