@iconify-vue/lucide 1.0.39 → 1.0.41
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/blender.vue +10 -0
- package/components/b/broccoli.vue +14 -0
- package/components/c/candy-cane.vue +2 -2
- package/components/c/chart-no-axes-combined.vue +2 -2
- package/components/s/sticky-note-check.vue +12 -0
- package/components/s/sticky-note-minus.vue +12 -0
- package/components/s/sticky-note-off.vue +12 -0
- package/components/s/sticky-note-plus.vue +12 -0
- package/components/s/sticky-note-x.vue +12 -0
- package/components/s/sticky-notes.vue +13 -0
- package/components/v/volleyball.vue +3 -3
- package/css/a/a8u5y1wor.css +3 -0
- package/css/b/bn-2pebwd.css +3 -0
- package/css/d/d397wrbdw.css +3 -0
- package/css/d/dj-63-b_b.css +3 -0
- package/css/e/eayhk_bcx.css +3 -0
- package/css/h/h66lnp1ue.css +3 -0
- package/css/j/j20ig_gnv.css +3 -0
- package/css/l/lklgpdb7i.css +8 -0
- package/css/m/m0e775bpq.css +3 -0
- package/css/n/n2b3uzb0m.css +8 -0
- package/css/n/n9jxgrupx.css +3 -0
- package/css/o/o_vkwibvc.css +3 -0
- package/css/p/pa7yzpbyc.css +3 -0
- package/css/p/pvh9yzklw.css +3 -0
- package/css/q/q-frw9b4o.css +3 -0
- package/css/s/srwmimt6b.css +3 -0
- package/css/v/v0xu8_1js.css +3 -0
- package/css/w/we-4enbxy.css +3 -0
- package/css/w/wqavz2bzh.css +3 -0
- package/css/w/wu6dt4bcc.css +3 -0
- package/css/z/zwpq41q1t.css +8 -0
- package/iconify.json +2 -2
- package/package.json +33 -1
- package/css/a/at4yprmgk.css +0 -8
- package/css/d/dfpwrgb4c.css +0 -8
- package/css/w/wvf1h61mr.css +0 -3
- package/css/z/zr52fpbes.css +0 -3
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/l/lklgpdb7i.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="lklgpdb7i"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:blender" /></template>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/d/d397wrbdw.css';
|
|
5
|
+
import '../../css/o/o_vkwibvc.css';
|
|
6
|
+
import '../../css/h/h66lnp1ue.css';
|
|
7
|
+
import '../../css/v/v0xu8_1js.css';
|
|
8
|
+
|
|
9
|
+
const props = defineProps(["width","height"]);
|
|
10
|
+
|
|
11
|
+
const viewBox = {"width":24,"height":24};
|
|
12
|
+
const content = `<g class="nrj6p8qat"><path class="d397wrbdw"/><path class="o_vkwibvc"/><path class="h66lnp1ue"/><path class="v0xu8_1js"/></g>`;
|
|
13
|
+
</script>
|
|
14
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:broccoli" /></template>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/n/n2b3uzb0m.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="n2b3uzb0m"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:candy-cane" /></template>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/z/zwpq41q1t.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="zwpq41q1t"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:chart-no-axes-combined" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/e/eayhk_bcx.css';
|
|
5
|
+
import '../../css/q/q-frw9b4o.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":24,"height":24};
|
|
10
|
+
const content = `<g class="nrj6p8qat"><path class="eayhk_bcx"/><path class="q-frw9b4o"/></g>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:sticky-note-check" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/z/zmuljubko.css';
|
|
5
|
+
import '../../css/n/n9jxgrupx.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":24,"height":24};
|
|
10
|
+
const content = `<g class="nrj6p8qat"><path class="zmuljubko"/><path class="n9jxgrupx"/></g>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:sticky-note-minus" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/w/wu6dt4bcc.css';
|
|
5
|
+
import '../../css/j/j20ig_gnv.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":24,"height":24};
|
|
10
|
+
const content = `<g class="nrj6p8qat"><path class="wu6dt4bcc"/><path class="j20ig_gnv"/></g>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:sticky-note-off" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/m/m0e775bpq.css';
|
|
5
|
+
import '../../css/w/wqavz2bzh.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":24,"height":24};
|
|
10
|
+
const content = `<g class="nrj6p8qat"><path class="m0e775bpq"/><path class="wqavz2bzh"/></g>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:sticky-note-plus" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/w/we-4enbxy.css';
|
|
5
|
+
import '../../css/p/pvh9yzklw.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":24,"height":24};
|
|
10
|
+
const content = `<g class="nrj6p8qat"><path class="we-4enbxy"/><path class="pvh9yzklw"/></g>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:sticky-note-x" /></template>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/p/pa7yzpbyc.css';
|
|
5
|
+
import '../../css/b/bn-2pebwd.css';
|
|
6
|
+
import '../../css/s/srwmimt6b.css';
|
|
7
|
+
|
|
8
|
+
const props = defineProps(["width","height"]);
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="nrj6p8qat"><path class="pa7yzpbyc"/><path class="bn-2pebwd"/><path class="srwmimt6b"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:sticky-notes" /></template>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
3
|
import '../../css/n/nrj6p8qat.css';
|
|
4
|
-
import '../../css/
|
|
5
|
-
import '../../css/
|
|
4
|
+
import '../../css/d/dj-63-b_b.css';
|
|
5
|
+
import '../../css/a/a8u5y1wor.css';
|
|
6
6
|
import '../../css/s/shu3xdl9q.css';
|
|
7
7
|
|
|
8
8
|
const props = defineProps(["width","height"]);
|
|
9
9
|
|
|
10
10
|
const viewBox = {"width":24,"height":24};
|
|
11
|
-
const content = `<g class="nrj6p8qat"><path class="
|
|
11
|
+
const content = `<g class="nrj6p8qat"><path class="dj-63-b_b"/><path class="a8u5y1wor"/><circle class="shu3xdl9q"/></g>`;
|
|
12
12
|
</script>
|
|
13
13
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:volleyball" /></template>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.lklgpdb7i {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M8 14a2 2 0 0 0-1.963 1.615l-1.018 5.193A1 1 0 0 0 6 22h12a1 1 0 0 0 .981-1.192l-1.018-5.193A2 2 0 0 0 16 14zm9-12l-1 12m-7.994 0L7 2m.565 6.787A5 5 0 0 0 12 8a5 5 0 0 1 4.56-.75M19 2H5a2 2 0 0 0-2 2v5a2 2 0 0 0 .688 1.5M12 18h.01");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.n2b3uzb0m {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("m10.8 5l2.111 4.223M17.75 7L15 2.1M4.874 14.647l2.12 4.24M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6a2 2 0 1 1-3.464-2a2 2 0 1 0-3.464-2zM7.906 9.712l2.005 4.411");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.zwpq41q1t {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M12 16v5m4-6.361V21m4-10.344V21m2-18l-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15m2 3.463V21m4-6.344V21");
|
|
8
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "lucide",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Lucide",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 1711,
|
|
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": 1778908382
|
|
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.41",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/lucide/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "ISC",
|
|
@@ -750,6 +750,10 @@
|
|
|
750
750
|
"types": "./types/dd0bq22g.d.ts",
|
|
751
751
|
"default": "./components/b/blend.vue"
|
|
752
752
|
},
|
|
753
|
+
"./blender": {
|
|
754
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
755
|
+
"default": "./components/b/blender.vue"
|
|
756
|
+
},
|
|
753
757
|
"./blinds": {
|
|
754
758
|
"types": "./types/dd0bq22g.d.ts",
|
|
755
759
|
"default": "./components/b/blinds.vue"
|
|
@@ -1002,6 +1006,10 @@
|
|
|
1002
1006
|
"types": "./types/dd0bq22g.d.ts",
|
|
1003
1007
|
"default": "./components/b/bring-to-front.vue"
|
|
1004
1008
|
},
|
|
1009
|
+
"./broccoli": {
|
|
1010
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1011
|
+
"default": "./components/b/broccoli.vue"
|
|
1012
|
+
},
|
|
1005
1013
|
"./brush": {
|
|
1006
1014
|
"types": "./types/dd0bq22g.d.ts",
|
|
1007
1015
|
"default": "./components/b/brush.vue"
|
|
@@ -6078,6 +6086,30 @@
|
|
|
6078
6086
|
"types": "./types/dd0bq22g.d.ts",
|
|
6079
6087
|
"default": "./components/s/sticky-note.vue"
|
|
6080
6088
|
},
|
|
6089
|
+
"./sticky-note-check": {
|
|
6090
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6091
|
+
"default": "./components/s/sticky-note-check.vue"
|
|
6092
|
+
},
|
|
6093
|
+
"./sticky-note-minus": {
|
|
6094
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6095
|
+
"default": "./components/s/sticky-note-minus.vue"
|
|
6096
|
+
},
|
|
6097
|
+
"./sticky-note-off": {
|
|
6098
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6099
|
+
"default": "./components/s/sticky-note-off.vue"
|
|
6100
|
+
},
|
|
6101
|
+
"./sticky-note-plus": {
|
|
6102
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6103
|
+
"default": "./components/s/sticky-note-plus.vue"
|
|
6104
|
+
},
|
|
6105
|
+
"./sticky-note-x": {
|
|
6106
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6107
|
+
"default": "./components/s/sticky-note-x.vue"
|
|
6108
|
+
},
|
|
6109
|
+
"./sticky-notes": {
|
|
6110
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6111
|
+
"default": "./components/s/sticky-notes.vue"
|
|
6112
|
+
},
|
|
6081
6113
|
"./stone": {
|
|
6082
6114
|
"types": "./types/dd0bq22g.d.ts",
|
|
6083
6115
|
"default": "./components/s/stone.vue"
|
package/css/a/at4yprmgk.css
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
.at4yprmgk {
|
|
2
|
-
fill: none;
|
|
3
|
-
stroke: currentColor;
|
|
4
|
-
stroke-linecap: round;
|
|
5
|
-
stroke-linejoin: round;
|
|
6
|
-
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
-
d: path("M12 16v5m4-7v7m4-11v11m2-18l-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15m2 3v3m4-7v7");
|
|
8
|
-
}
|
package/css/d/dfpwrgb4c.css
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
.dfpwrgb4c {
|
|
2
|
-
fill: none;
|
|
3
|
-
stroke: currentColor;
|
|
4
|
-
stroke-linecap: round;
|
|
5
|
-
stroke-linejoin: round;
|
|
6
|
-
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
-
d: path("M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6a2 2 0 1 1-3.464-2a2 2 0 1 0-3.464-2ZM17.75 7L15 2.1m-4.1 2.7L13 9m-5.1.7l2 4.4m-5 .6L7 18.9");
|
|
8
|
-
}
|
package/css/w/wvf1h61mr.css
DELETED
package/css/z/zr52fpbes.css
DELETED