@iconify-vue/lucide 1.0.24 → 1.0.25
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/file-pen-line.vue +3 -3
- package/components/f/file-signature.vue +3 -3
- package/components/s/square-arrow-right-enter.vue +12 -0
- package/components/s/square-arrow-right-exit.vue +12 -0
- package/components/s/square-centerline-dashed-horizontal.vue +10 -0
- package/components/s/square-centerline-dashed-vertical.vue +10 -0
- package/css/f/fdsnac.css +3 -0
- package/css/g/g6sibu.css +3 -0
- package/css/o/olegmg.css +3 -0
- package/css/p/pp8tacb.css +3 -0
- package/css/p/pxp524b.css +3 -0
- package/css/z/z1kvdo.css +3 -0
- package/iconify.json +2 -2
- package/package.json +25 -9
- package/css/s/s9e9ulp.css +0 -3
- package/css/v/v2sou7b.css +0 -3
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
3
|
import '../../css/s/s43_jkd.css';
|
|
4
|
-
import '../../css/
|
|
5
|
-
import '../../css/
|
|
4
|
+
import '../../css/p/pxp524b.css';
|
|
5
|
+
import '../../css/p/pp8tacb.css';
|
|
6
6
|
|
|
7
7
|
const props = defineProps(["width","height"]);
|
|
8
8
|
|
|
9
9
|
const viewBox = {"width":24,"height":24};
|
|
10
|
-
const content = `<g class="s43_jkd"><path class="
|
|
10
|
+
const content = `<g class="s43_jkd"><path class="pxp524b"/><path class="pp8tacb"/></g>`;
|
|
11
11
|
</script>
|
|
12
12
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:file-pen-line" /></template>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
3
|
import '../../css/s/s43_jkd.css';
|
|
4
|
-
import '../../css/
|
|
5
|
-
import '../../css/
|
|
4
|
+
import '../../css/p/pxp524b.css';
|
|
5
|
+
import '../../css/p/pp8tacb.css';
|
|
6
6
|
|
|
7
7
|
const props = defineProps(["width","height"]);
|
|
8
8
|
|
|
9
9
|
const viewBox = {"width":24,"height":24};
|
|
10
|
-
const content = `<g class="s43_jkd"><path class="
|
|
10
|
+
const content = `<g class="s43_jkd"><path class="pxp524b"/><path class="pp8tacb"/></g>`;
|
|
11
11
|
</script>
|
|
12
12
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:file-signature" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/s/s43_jkd.css';
|
|
4
|
+
import '../../css/g/g6sibu.css';
|
|
5
|
+
import '../../css/o/olegmg.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":24,"height":24};
|
|
10
|
+
const content = `<g class="s43_jkd"><path class="g6sibu"/><path class="olegmg"/></g>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:square-arrow-right-enter" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/s/s43_jkd.css';
|
|
4
|
+
import '../../css/z/z1kvdo.css';
|
|
5
|
+
import '../../css/f/fdsnac.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":24,"height":24};
|
|
10
|
+
const content = `<g class="s43_jkd"><path class="z1kvdo"/><path class="fdsnac"/></g>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:square-arrow-right-exit" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/d/dgp9eoi.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="dgp9eoi"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:square-centerline-dashed-horizontal" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/w/wp4-8nb.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="wp4-8nb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="lucide:square-centerline-dashed-vertical" /></template>
|
package/css/f/fdsnac.css
ADDED
package/css/g/g6sibu.css
ADDED
package/css/o/olegmg.css
ADDED
package/css/z/z1kvdo.css
ADDED
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "lucide",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Lucide",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 1688,
|
|
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": 1771740844
|
|
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.25",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/lucide/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "ISC",
|
|
@@ -2762,18 +2762,10 @@
|
|
|
2762
2762
|
"types": "./types/dd0bq22g.d.ts",
|
|
2763
2763
|
"default": "./components/f/flask-round.vue"
|
|
2764
2764
|
},
|
|
2765
|
-
"./flip-horizontal": {
|
|
2766
|
-
"types": "./types/dd0bq22g.d.ts",
|
|
2767
|
-
"default": "./components/f/flip-horizontal.vue"
|
|
2768
|
-
},
|
|
2769
2765
|
"./flip-horizontal-2": {
|
|
2770
2766
|
"types": "./types/dd0bq22g.d.ts",
|
|
2771
2767
|
"default": "./components/f/flip-horizontal-2.vue"
|
|
2772
2768
|
},
|
|
2773
|
-
"./flip-vertical": {
|
|
2774
|
-
"types": "./types/dd0bq22g.d.ts",
|
|
2775
|
-
"default": "./components/f/flip-vertical.vue"
|
|
2776
|
-
},
|
|
2777
2769
|
"./flip-vertical-2": {
|
|
2778
2770
|
"types": "./types/dd0bq22g.d.ts",
|
|
2779
2771
|
"default": "./components/f/flip-vertical-2.vue"
|
|
@@ -5714,6 +5706,14 @@
|
|
|
5714
5706
|
"types": "./types/dd0bq22g.d.ts",
|
|
5715
5707
|
"default": "./components/s/square-arrow-right.vue"
|
|
5716
5708
|
},
|
|
5709
|
+
"./square-arrow-right-enter": {
|
|
5710
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
5711
|
+
"default": "./components/s/square-arrow-right-enter.vue"
|
|
5712
|
+
},
|
|
5713
|
+
"./square-arrow-right-exit": {
|
|
5714
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
5715
|
+
"default": "./components/s/square-arrow-right-exit.vue"
|
|
5716
|
+
},
|
|
5717
5717
|
"./square-arrow-up": {
|
|
5718
5718
|
"types": "./types/dd0bq22g.d.ts",
|
|
5719
5719
|
"default": "./components/s/square-arrow-up.vue"
|
|
@@ -5734,6 +5734,14 @@
|
|
|
5734
5734
|
"types": "./types/dd0bq22g.d.ts",
|
|
5735
5735
|
"default": "./components/s/square-bottom-dashed-scissors.vue"
|
|
5736
5736
|
},
|
|
5737
|
+
"./square-centerline-dashed-horizontal": {
|
|
5738
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
5739
|
+
"default": "./components/s/square-centerline-dashed-horizontal.vue"
|
|
5740
|
+
},
|
|
5741
|
+
"./square-centerline-dashed-vertical": {
|
|
5742
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
5743
|
+
"default": "./components/s/square-centerline-dashed-vertical.vue"
|
|
5744
|
+
},
|
|
5737
5745
|
"./square-chart-gantt": {
|
|
5738
5746
|
"types": "./types/dd0bq22g.d.ts",
|
|
5739
5747
|
"default": "./components/s/square-chart-gantt.vue"
|
|
@@ -7266,6 +7274,14 @@
|
|
|
7266
7274
|
"types": "./types/dd0bq22g.d.ts",
|
|
7267
7275
|
"default": "./components/f/fingerprint.vue"
|
|
7268
7276
|
},
|
|
7277
|
+
"./flip-horizontal": {
|
|
7278
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
7279
|
+
"default": "./components/f/flip-horizontal.vue"
|
|
7280
|
+
},
|
|
7281
|
+
"./flip-vertical": {
|
|
7282
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
7283
|
+
"default": "./components/f/flip-vertical.vue"
|
|
7284
|
+
},
|
|
7269
7285
|
"./folder-cog-2": {
|
|
7270
7286
|
"types": "./types/dd0bq22g.d.ts",
|
|
7271
7287
|
"default": "./components/f/folder-cog-2.vue"
|
package/css/s/s9e9ulp.css
DELETED
package/css/v/v2sou7b.css
DELETED