@iconify-svelte/lucide 1.0.13 → 1.0.14
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/toolbox.svelte +10 -0
- package/css/b/bk3m90uv.css +8 -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/b/bk3m90uv.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="bk3m90uv"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="lucide:toolbox" {...props}></Icon>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.bk3m90uv {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("M16 12v4m0-10a2 2 0 0 1 1.414.586l4 4A2 2 0 0 1 22 12v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 .586-1.414l4-4A2 2 0 0 1 8 6zm0 0V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2m-6 8h20M8 12v4");
|
|
8
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "lucide",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Lucide",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 1666,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Lucide Contributors",
|
|
8
8
|
"url": "https://github.com/lucide-icons/lucide"
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
],
|
|
30
30
|
"palette": false
|
|
31
31
|
},
|
|
32
|
-
"lastModified":
|
|
32
|
+
"lastModified": 1766212428
|
|
33
33
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-svelte/lucide",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.14",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/lucide/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "ISC",
|
|
@@ -6254,6 +6254,10 @@
|
|
|
6254
6254
|
"types": "./types/gfwqskkx.d.ts",
|
|
6255
6255
|
"svelte": "./components/t/tool-case.svelte"
|
|
6256
6256
|
},
|
|
6257
|
+
"./toolbox": {
|
|
6258
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
6259
|
+
"svelte": "./components/t/toolbox.svelte"
|
|
6260
|
+
},
|
|
6257
6261
|
"./tornado": {
|
|
6258
6262
|
"types": "./types/gfwqskkx.d.ts",
|
|
6259
6263
|
"svelte": "./components/t/tornado.svelte"
|