@iconify-vue/lucide 1.0.31 → 1.0.33
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/b/bookmark-off.vue +10 -0
- package/components/r/radio-off.vue +2 -2
- package/components/s/square-dashed-text.vue +10 -0
- package/css/b/b5nnw7bb.css +8 -0
- package/css/j/jiomcpxq.css +8 -0
- package/iconify.json +2 -2
- package/package.json +13 -5
- package/css/b/b9uexobn.css +0 -8
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/j/jiomcpxq.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="jiomcpxq"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:bookmark-off" /></template>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/b/
|
|
3
|
+
import '../../css/b/b5nnw7bb.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":24,"height":24};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="b5nnw7bb"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:radio-off" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/j/j-0lvc-y.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="j-0lvc-y"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:square-dashed-text" /></template>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.b5nnw7bb {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("M13.414 13.414a2 2 0 1 1-2.828-2.828m5.661-2.825a6 6 0 0 1 1.744 4.572m1.084-7.4a10 10 0 0 1 2.234 10.72M2 2l20 20M4.925 19.067a10 10 0 0 1 0-14.134m2.828 11.306a6 6 0 0 1 0-8.478");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.jiomcpxq {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("M19 19v1a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5M2 2l20 20M8.656 3H17a2 2 0 0 1 2 2v8.344");
|
|
8
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "lucide",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Lucide",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 1695,
|
|
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": 1775804562
|
|
33
33
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-vue/lucide",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.33",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/lucide/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "ISC",
|
|
@@ -898,6 +898,10 @@
|
|
|
898
898
|
"types": "./types/dd0bq22g.d.ts",
|
|
899
899
|
"default": "./components/b/bookmark-minus.vue"
|
|
900
900
|
},
|
|
901
|
+
"./bookmark-off": {
|
|
902
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
903
|
+
"default": "./components/b/bookmark-off.vue"
|
|
904
|
+
},
|
|
901
905
|
"./bookmark-plus": {
|
|
902
906
|
"types": "./types/dd0bq22g.d.ts",
|
|
903
907
|
"default": "./components/b/bookmark-plus.vue"
|
|
@@ -5838,6 +5842,10 @@
|
|
|
5838
5842
|
"types": "./types/dd0bq22g.d.ts",
|
|
5839
5843
|
"default": "./components/s/square-dashed-mouse-pointer.vue"
|
|
5840
5844
|
},
|
|
5845
|
+
"./square-dashed-text": {
|
|
5846
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
5847
|
+
"default": "./components/s/square-dashed-text.vue"
|
|
5848
|
+
},
|
|
5841
5849
|
"./square-dashed-top-solid": {
|
|
5842
5850
|
"types": "./types/dd0bq22g.d.ts",
|
|
5843
5851
|
"default": "./components/s/square-dashed-top-solid.vue"
|
|
@@ -6274,10 +6282,6 @@
|
|
|
6274
6282
|
"types": "./types/dd0bq22g.d.ts",
|
|
6275
6283
|
"default": "./components/t/text-search.vue"
|
|
6276
6284
|
},
|
|
6277
|
-
"./text-select": {
|
|
6278
|
-
"types": "./types/dd0bq22g.d.ts",
|
|
6279
|
-
"default": "./components/t/text-select.vue"
|
|
6280
|
-
},
|
|
6281
6285
|
"./text-wrap": {
|
|
6282
6286
|
"types": "./types/dd0bq22g.d.ts",
|
|
6283
6287
|
"default": "./components/t/text-wrap.vue"
|
|
@@ -7786,6 +7790,10 @@
|
|
|
7786
7790
|
"types": "./types/dd0bq22g.d.ts",
|
|
7787
7791
|
"default": "./components/t/test-tube-2.vue"
|
|
7788
7792
|
},
|
|
7793
|
+
"./text-select": {
|
|
7794
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
7795
|
+
"default": "./components/t/text-select.vue"
|
|
7796
|
+
},
|
|
7789
7797
|
"./text-selection": {
|
|
7790
7798
|
"types": "./types/dd0bq22g.d.ts",
|
|
7791
7799
|
"default": "./components/t/text-selection.vue"
|
package/css/b/b9uexobn.css
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
.b9uexobn {
|
|
2
|
-
fill: none;
|
|
3
|
-
stroke: currentColor;
|
|
4
|
-
stroke-linecap: round;
|
|
5
|
-
stroke-linejoin: round;
|
|
6
|
-
stroke-width: 2px;
|
|
7
|
-
d: path("M10.41 10.785a2 2 0 0 0 2.914 2.713M16.2 7.8c1.274 1.275 1.842 3.01 1.704 4.713M19.1 4.898a9.96 9.96 0 0 1 2.093 11.038M2 2l20 20M4.9 19.098c-3.9-3.9-3.9-10.3 0-14.2M7.8 16.2c-2.132-2.132-2.288-5.55-.47-7.95");
|
|
8
|
-
}
|