@zikojs/lucide 0.1.0 → 0.2.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/generated-src/icons/Angle.js +21 -0
- package/generated-src/icons/AudioLinesOff.js +28 -0
- package/generated-src/icons/CarBattery.js +25 -0
- package/generated-src/icons/Eject.js +21 -0
- package/generated-src/icons/ListClock.js +24 -0
- package/generated-src/icons/MailBadge.js +23 -0
- package/generated-src/icons/MidiPort.js +26 -0
- package/generated-src/icons/Mop.js +22 -0
- package/generated-src/icons/MopSparkles.js +29 -0
- package/generated-src/icons/SquareDimensions.js +22 -0
- package/generated-src/icons/SquareText.js +23 -0
- package/generated-src/icons/UsbCPort.js +21 -0
- package/generated-src/index.js +12 -0
- package/package.json +3 -2
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const Angle = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.path({"d":"M3 3v16a2 2 0 0 0 2 2h16"}),
|
|
19
|
+
tags.path({"d":"M3 11a10 10 0 0 1 10 10"})
|
|
20
|
+
)
|
|
21
|
+
export default Angle;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const AudioLinesOff = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.path({"d":"M10 10v11"}),
|
|
19
|
+
tags.path({"d":"M10 3v1.35"}),
|
|
20
|
+
tags.path({"d":"M14 14v1"}),
|
|
21
|
+
tags.path({"d":"M14 8v.35"}),
|
|
22
|
+
tags.path({"d":"M18 5v7.35"}),
|
|
23
|
+
tags.path({"d":"M2 10v3"}),
|
|
24
|
+
tags.path({"d":"m2 2 20 20"}),
|
|
25
|
+
tags.path({"d":"M22 10v3"}),
|
|
26
|
+
tags.path({"d":"M6 6v11"})
|
|
27
|
+
)
|
|
28
|
+
export default AudioLinesOff;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const CarBattery = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.path({"d":"M14 13h4"}),
|
|
19
|
+
tags.path({"d":"M16 15v-4"}),
|
|
20
|
+
tags.path({"d":"M18 5v2"}),
|
|
21
|
+
tags.path({"d":"M6 13h4"}),
|
|
22
|
+
tags.path({"d":"M6 5v2"}),
|
|
23
|
+
tags.rect({"x":"2","y":"7","width":"20","height":"12","rx":"2"})
|
|
24
|
+
)
|
|
25
|
+
export default CarBattery;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const Eject = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.path({"d":"M4 13a1 1 0 0 1-.72-1.695l7.257-7.668a2 2 0 0 1 2.926 0l7.256 7.668A1 1 0 0 1 20 13z"}),
|
|
19
|
+
tags.rect({"x":"3","y":"17","width":"18","height":"4","rx":"1"})
|
|
20
|
+
)
|
|
21
|
+
export default Eject;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const ListClock = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.path({"d":"M16 13v2.2l1.6 1"}),
|
|
19
|
+
tags.path({"d":"M3 12h3.458"}),
|
|
20
|
+
tags.path({"d":"M3 19h3.832"}),
|
|
21
|
+
tags.path({"d":"M3 5h18"}),
|
|
22
|
+
tags.circle({"cx":"16","cy":"15","r":"6"})
|
|
23
|
+
)
|
|
24
|
+
export default ListClock;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const MailBadge = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.path({"d":"M22 7.7V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8.25"}),
|
|
19
|
+
tags.path({"d":"M12 12.996a1.94 1.94 0 0 1-1.03-.296L2 7"}),
|
|
20
|
+
tags.path({"d":"m20.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.879.001l-1.846.85a.5.5 0 0 1-.692-.593l1.29-4.88"}),
|
|
21
|
+
tags.circle({"cx":"19","cy":"14","r":"3"})
|
|
22
|
+
)
|
|
23
|
+
export default MailBadge;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const MidiPort = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.path({"d":"M12 18h.01"}),
|
|
19
|
+
tags.path({"d":"M15 2.458V5a1 1 0 01-1 1h-4a1 1 0 01-1-1V2.458"}),
|
|
20
|
+
tags.path({"d":"M16 16h.01"}),
|
|
21
|
+
tags.path({"d":"M18 12h.01"}),
|
|
22
|
+
tags.path({"d":"M6 12h.01"}),
|
|
23
|
+
tags.path({"d":"M8 16h.01"}),
|
|
24
|
+
tags.circle({"cx":"12","cy":"12","r":"10"})
|
|
25
|
+
)
|
|
26
|
+
export default MidiPort;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const Mop = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.path({"d":"M10 22c2.761 0 5-1.79 5-4-4.42 0-4.08-5-8.5-5a1 1 0 100 9za3 3 0 01-3-3"}),
|
|
19
|
+
tags.path({"d":"M12.5 11.5 22 2"}),
|
|
20
|
+
tags.path({"d":"m6.98 13.02 2.665-2.664a1.21 1.21 0 011.71 0l2.29 2.288a1.21 1.21 0 010 1.712l-2.088 2.087"})
|
|
21
|
+
)
|
|
22
|
+
export default Mop;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const MopSparkles = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.path({"d":"M10 22a3 3 0 01-3-3"}),
|
|
19
|
+
tags.path({"d":"M10 22c2.761 0 5-1.79 5-4-4.42 0-4.08-5-8.5-5a4.501 4.501 0 000 9z"}),
|
|
20
|
+
tags.path({"d":"M10 3H8"}),
|
|
21
|
+
tags.path({"d":"M12.5 11.5 22 2"}),
|
|
22
|
+
tags.path({"d":"M20 13v4"}),
|
|
23
|
+
tags.path({"d":"M22 15h-4"}),
|
|
24
|
+
tags.path({"d":"M4 5v4"}),
|
|
25
|
+
tags.path({"d":"M6 7H2"}),
|
|
26
|
+
tags.path({"d":"m6.98 13.02 2.665-2.664a1.21 1.21 0 011.71 0l2.29 2.288a1.21 1.21 0 010 1.712l-2.088 2.087"}),
|
|
27
|
+
tags.path({"d":"M9 2v2"})
|
|
28
|
+
)
|
|
29
|
+
export default MopSparkles;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const SquareDimensions = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.rect({"width":"18","height":"18","x":"3","y":"3","rx":"2"}),
|
|
19
|
+
tags.path({"d":"M12 7H7v5"}),
|
|
20
|
+
tags.path({"d":"M12 17h5v-5"})
|
|
21
|
+
)
|
|
22
|
+
export default SquareDimensions;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const SquareText = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.rect({"width":"18","height":"18","x":"3","y":"3","rx":"2"}),
|
|
19
|
+
tags.path({"d":"M7 8h8"}),
|
|
20
|
+
tags.path({"d":"M7 12h10"}),
|
|
21
|
+
tags.path({"d":"M7 16h6"})
|
|
22
|
+
)
|
|
23
|
+
export default SquareText;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { tags } from 'ziko/dom';
|
|
2
|
+
const { svg } = tags;
|
|
3
|
+
export const UsbCPort = (props) =>
|
|
4
|
+
svg(
|
|
5
|
+
{
|
|
6
|
+
...{
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"width": 24,
|
|
10
|
+
"height": 24,
|
|
11
|
+
"stroke": "green",
|
|
12
|
+
"stroke-width": 2,
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
},
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
tags.path({"d":"M6 12h12"}),
|
|
19
|
+
tags.rect({"x":"2","y":"8","width":"20","height":"8","rx":"4"})
|
|
20
|
+
)
|
|
21
|
+
export default UsbCPort;
|
package/generated-src/index.js
CHANGED
|
@@ -51,6 +51,7 @@ export { Ampersand } from './icons/Ampersand.js'
|
|
|
51
51
|
export { Ampersands } from './icons/Ampersands.js'
|
|
52
52
|
export { Amphora } from './icons/Amphora.js'
|
|
53
53
|
export { Anchor } from './icons/Anchor.js'
|
|
54
|
+
export { Angle } from './icons/Angle.js'
|
|
54
55
|
export { Angry } from './icons/Angry.js'
|
|
55
56
|
export { Annoyed } from './icons/Annoyed.js'
|
|
56
57
|
export { Antenna } from './icons/Antenna.js'
|
|
@@ -133,6 +134,7 @@ export { Astroid } from './icons/Astroid.js'
|
|
|
133
134
|
export { AtSign } from './icons/AtSign.js'
|
|
134
135
|
export { Atom } from './icons/Atom.js'
|
|
135
136
|
export { AudioLines } from './icons/AudioLines.js'
|
|
137
|
+
export { AudioLinesOff } from './icons/AudioLinesOff.js'
|
|
136
138
|
export { AudioLinesX } from './icons/AudioLinesX.js'
|
|
137
139
|
export { AudioWaveform } from './icons/AudioWaveform.js'
|
|
138
140
|
export { Award } from './icons/Award.js'
|
|
@@ -338,6 +340,7 @@ export { CannabisOff } from './icons/CannabisOff.js'
|
|
|
338
340
|
export { Captions } from './icons/Captions.js'
|
|
339
341
|
export { CaptionsOff } from './icons/CaptionsOff.js'
|
|
340
342
|
export { Car } from './icons/Car.js'
|
|
343
|
+
export { CarBattery } from './icons/CarBattery.js'
|
|
341
344
|
export { CarFront } from './icons/CarFront.js'
|
|
342
345
|
export { CarTaxiFront } from './icons/CarTaxiFront.js'
|
|
343
346
|
export { Caravan } from './icons/Caravan.js'
|
|
@@ -653,6 +656,7 @@ export { Edit3 } from './icons/Edit3.js'
|
|
|
653
656
|
export { Egg } from './icons/Egg.js'
|
|
654
657
|
export { EggFried } from './icons/EggFried.js'
|
|
655
658
|
export { EggOff } from './icons/EggOff.js'
|
|
659
|
+
export { Eject } from './icons/Eject.js'
|
|
656
660
|
export { Ellipse } from './icons/Ellipse.js'
|
|
657
661
|
export { Ellipsis } from './icons/Ellipsis.js'
|
|
658
662
|
export { EllipsisVertical } from './icons/EllipsisVertical.js'
|
|
@@ -1061,6 +1065,7 @@ export { ListCheck } from './icons/ListCheck.js'
|
|
|
1061
1065
|
export { ListChecks } from './icons/ListChecks.js'
|
|
1062
1066
|
export { ListChevronsDownUp } from './icons/ListChevronsDownUp.js'
|
|
1063
1067
|
export { ListChevronsUpDown } from './icons/ListChevronsUpDown.js'
|
|
1068
|
+
export { ListClock } from './icons/ListClock.js'
|
|
1064
1069
|
export { ListCollapse } from './icons/ListCollapse.js'
|
|
1065
1070
|
export { ListEnd } from './icons/ListEnd.js'
|
|
1066
1071
|
export { ListFilter } from './icons/ListFilter.js'
|
|
@@ -1099,6 +1104,7 @@ export { Luggage } from './icons/Luggage.js'
|
|
|
1099
1104
|
export { MSquare } from './icons/MSquare.js'
|
|
1100
1105
|
export { Magnet } from './icons/Magnet.js'
|
|
1101
1106
|
export { Mail } from './icons/Mail.js'
|
|
1107
|
+
export { MailBadge } from './icons/MailBadge.js'
|
|
1102
1108
|
export { MailCheck } from './icons/MailCheck.js'
|
|
1103
1109
|
export { MailMinus } from './icons/MailMinus.js'
|
|
1104
1110
|
export { MailOpen } from './icons/MailOpen.js'
|
|
@@ -1181,6 +1187,7 @@ export { MicVocal } from './icons/MicVocal.js'
|
|
|
1181
1187
|
export { Microchip } from './icons/Microchip.js'
|
|
1182
1188
|
export { Microscope } from './icons/Microscope.js'
|
|
1183
1189
|
export { Microwave } from './icons/Microwave.js'
|
|
1190
|
+
export { MidiPort } from './icons/MidiPort.js'
|
|
1184
1191
|
export { Milestone } from './icons/Milestone.js'
|
|
1185
1192
|
export { Milk } from './icons/Milk.js'
|
|
1186
1193
|
export { MilkOff } from './icons/MilkOff.js'
|
|
@@ -1207,6 +1214,8 @@ export { MonitorUp } from './icons/MonitorUp.js'
|
|
|
1207
1214
|
export { MonitorX } from './icons/MonitorX.js'
|
|
1208
1215
|
export { Moon } from './icons/Moon.js'
|
|
1209
1216
|
export { MoonStar } from './icons/MoonStar.js'
|
|
1217
|
+
export { Mop } from './icons/Mop.js'
|
|
1218
|
+
export { MopSparkles } from './icons/MopSparkles.js'
|
|
1210
1219
|
export { MoreHorizontal } from './icons/MoreHorizontal.js'
|
|
1211
1220
|
export { MoreVertical } from './icons/MoreVertical.js'
|
|
1212
1221
|
export { Mosque } from './icons/Mosque.js'
|
|
@@ -1661,6 +1670,7 @@ export { SquareDashedKanban } from './icons/SquareDashedKanban.js'
|
|
|
1661
1670
|
export { SquareDashedMousePointer } from './icons/SquareDashedMousePointer.js'
|
|
1662
1671
|
export { SquareDashedText } from './icons/SquareDashedText.js'
|
|
1663
1672
|
export { SquareDashedTopSolid } from './icons/SquareDashedTopSolid.js'
|
|
1673
|
+
export { SquareDimensions } from './icons/SquareDimensions.js'
|
|
1664
1674
|
export { SquareDivide } from './icons/SquareDivide.js'
|
|
1665
1675
|
export { SquareDot } from './icons/SquareDot.js'
|
|
1666
1676
|
export { SquareEqual } from './icons/SquareEqual.js'
|
|
@@ -1695,6 +1705,7 @@ export { SquareStack } from './icons/SquareStack.js'
|
|
|
1695
1705
|
export { SquareStar } from './icons/SquareStar.js'
|
|
1696
1706
|
export { SquareStop } from './icons/SquareStop.js'
|
|
1697
1707
|
export { SquareTerminal } from './icons/SquareTerminal.js'
|
|
1708
|
+
export { SquareText } from './icons/SquareText.js'
|
|
1698
1709
|
export { SquareUser } from './icons/SquareUser.js'
|
|
1699
1710
|
export { SquareUserRound } from './icons/SquareUserRound.js'
|
|
1700
1711
|
export { SquareX } from './icons/SquareX.js'
|
|
@@ -1875,6 +1886,7 @@ export { Unplug } from './icons/Unplug.js'
|
|
|
1875
1886
|
export { Upload } from './icons/Upload.js'
|
|
1876
1887
|
export { UploadCloud } from './icons/UploadCloud.js'
|
|
1877
1888
|
export { Usb } from './icons/Usb.js'
|
|
1889
|
+
export { UsbCPort } from './icons/UsbCPort.js'
|
|
1878
1890
|
export { User } from './icons/User.js'
|
|
1879
1891
|
export { User2 } from './icons/User2.js'
|
|
1880
1892
|
export { UserCheck } from './icons/UserCheck.js'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zikojs/lucide",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Lucide Icons for ZikoJs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"zikojs",
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
},
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "git",
|
|
29
|
-
"url": "git+https://github.com/zakarialaoui10/ziko-lucide.git"
|
|
29
|
+
"url": "git+https://github.com/zakarialaoui10/ziko-lucide.git",
|
|
30
|
+
"directory": "packages/lucide"
|
|
30
31
|
},
|
|
31
32
|
"license": "MIT",
|
|
32
33
|
"author": "zakaria elalaoui",
|