lucide-react 0.84.0 → 0.87.0
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/LICENSE +1 -1
- package/dist/cjs/lucide-react.js +167 -145
- package/dist/cjs/lucide-react.js.map +1 -1
- package/dist/esm/icons/arrow-up-down.js +21 -0
- package/dist/esm/icons/concierge-bell.js +15 -0
- package/dist/esm/icons/fan.js +9 -0
- package/dist/esm/icons/index.js +8 -0
- package/dist/esm/icons/microwave.js +26 -0
- package/dist/esm/icons/rectangle-horizontal.js +10 -0
- package/dist/esm/icons/rectangle-vertical.js +10 -0
- package/dist/esm/icons/refrigerator.js +12 -0
- package/dist/esm/icons/shower-head.js +33 -0
- package/dist/lucide-react.d.ts +8 -0
- package/dist/umd/lucide-react.js +167 -145
- package/dist/umd/lucide-react.js.map +1 -1
- package/dist/umd/lucide-react.min.js +2 -2
- package/dist/umd/lucide-react.min.js.map +1 -1
- package/package.json +18 -13
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var ArrowUpDown = createReactComponent('ArrowUpDown', [['polyline', {
|
|
3
|
+
points: '11 17 7 21 3 17',
|
|
4
|
+
key: 'dv0ycv'
|
|
5
|
+
}], ['line', {
|
|
6
|
+
x1: '7',
|
|
7
|
+
y1: '21',
|
|
8
|
+
x2: '7',
|
|
9
|
+
y2: '9',
|
|
10
|
+
key: '1cxv4h'
|
|
11
|
+
}], ['polyline', {
|
|
12
|
+
points: '21 7 17 3 13 7',
|
|
13
|
+
key: '1su31j'
|
|
14
|
+
}], ['line', {
|
|
15
|
+
x1: '17',
|
|
16
|
+
y1: '15',
|
|
17
|
+
x2: '17',
|
|
18
|
+
y2: '3',
|
|
19
|
+
key: 'r3527w'
|
|
20
|
+
}]]);
|
|
21
|
+
export default ArrowUpDown;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var ConciergeBell = createReactComponent('ConciergeBell', [['path', {
|
|
3
|
+
d: 'M2 18a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2H2v-2Z',
|
|
4
|
+
key: '1co3i8'
|
|
5
|
+
}], ['path', {
|
|
6
|
+
d: 'M20 16a8 8 0 1 0-16 0',
|
|
7
|
+
key: '1pa543'
|
|
8
|
+
}], ['path', {
|
|
9
|
+
d: 'M12 4v4',
|
|
10
|
+
key: '1bq03y'
|
|
11
|
+
}], ['path', {
|
|
12
|
+
d: 'M10 4h4',
|
|
13
|
+
key: '1xpv9s'
|
|
14
|
+
}]]);
|
|
15
|
+
export default ConciergeBell;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var Fan = createReactComponent('Fan', [['path', {
|
|
3
|
+
d: 'M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z',
|
|
4
|
+
key: '484a7f'
|
|
5
|
+
}], ['path', {
|
|
6
|
+
d: 'M12 12v.01',
|
|
7
|
+
key: 'u5ubse'
|
|
8
|
+
}]]);
|
|
9
|
+
export default Fan;
|
package/dist/esm/icons/index.js
CHANGED
|
@@ -59,6 +59,7 @@ export { default as ArrowLeft } from './arrow-left';
|
|
|
59
59
|
export { default as ArrowRightCircle } from './arrow-right-circle';
|
|
60
60
|
export { default as ArrowRight } from './arrow-right';
|
|
61
61
|
export { default as ArrowUpCircle } from './arrow-up-circle';
|
|
62
|
+
export { default as ArrowUpDown } from './arrow-up-down';
|
|
62
63
|
export { default as ArrowUpLeft } from './arrow-up-left';
|
|
63
64
|
export { default as ArrowUpRight } from './arrow-up-right';
|
|
64
65
|
export { default as ArrowUp } from './arrow-up';
|
|
@@ -216,6 +217,7 @@ export { default as Columns } from './columns';
|
|
|
216
217
|
export { default as Command } from './command';
|
|
217
218
|
export { default as Compass } from './compass';
|
|
218
219
|
export { default as Component } from './component';
|
|
220
|
+
export { default as ConciergeBell } from './concierge-bell';
|
|
219
221
|
export { default as Contact } from './contact';
|
|
220
222
|
export { default as Contrast } from './contrast';
|
|
221
223
|
export { default as Cookie } from './cookie';
|
|
@@ -277,6 +279,7 @@ export { default as EyeOff } from './eye-off';
|
|
|
277
279
|
export { default as Eye } from './eye';
|
|
278
280
|
export { default as Facebook } from './facebook';
|
|
279
281
|
export { default as Factory } from './factory';
|
|
282
|
+
export { default as Fan } from './fan';
|
|
280
283
|
export { default as FastForward } from './fast-forward';
|
|
281
284
|
export { default as Feather } from './feather';
|
|
282
285
|
export { default as Figma } from './figma';
|
|
@@ -527,6 +530,7 @@ export { default as Mic2 } from './mic-2';
|
|
|
527
530
|
export { default as MicOff } from './mic-off';
|
|
528
531
|
export { default as Mic } from './mic';
|
|
529
532
|
export { default as Microscope } from './microscope';
|
|
533
|
+
export { default as Microwave } from './microwave';
|
|
530
534
|
export { default as Milestone } from './milestone';
|
|
531
535
|
export { default as Minimize2 } from './minimize-2';
|
|
532
536
|
export { default as Minimize } from './minimize';
|
|
@@ -618,11 +622,14 @@ export { default as QrCode } from './qr-code';
|
|
|
618
622
|
export { default as Quote } from './quote';
|
|
619
623
|
export { default as RadioReceiver } from './radio-receiver';
|
|
620
624
|
export { default as Radio } from './radio';
|
|
625
|
+
export { default as RectangleHorizontal } from './rectangle-horizontal';
|
|
626
|
+
export { default as RectangleVertical } from './rectangle-vertical';
|
|
621
627
|
export { default as Recycle } from './recycle';
|
|
622
628
|
export { default as Redo2 } from './redo-2';
|
|
623
629
|
export { default as Redo } from './redo';
|
|
624
630
|
export { default as RefreshCcw } from './refresh-ccw';
|
|
625
631
|
export { default as RefreshCw } from './refresh-cw';
|
|
632
|
+
export { default as Refrigerator } from './refrigerator';
|
|
626
633
|
export { default as Regex } from './regex';
|
|
627
634
|
export { default as Repeat1 } from './repeat-1';
|
|
628
635
|
export { default as Repeat } from './repeat';
|
|
@@ -670,6 +677,7 @@ export { default as Shirt } from './shirt';
|
|
|
670
677
|
export { default as ShoppingBag } from './shopping-bag';
|
|
671
678
|
export { default as ShoppingCart } from './shopping-cart';
|
|
672
679
|
export { default as Shovel } from './shovel';
|
|
680
|
+
export { default as ShowerHead } from './shower-head';
|
|
673
681
|
export { default as Shrink } from './shrink';
|
|
674
682
|
export { default as Shrub } from './shrub';
|
|
675
683
|
export { default as Shuffle } from './shuffle';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var Microwave = createReactComponent('Microwave', [['rect', {
|
|
3
|
+
x: '2',
|
|
4
|
+
y: '4',
|
|
5
|
+
width: '20',
|
|
6
|
+
height: '15',
|
|
7
|
+
rx: '2',
|
|
8
|
+
key: '1rfv8z'
|
|
9
|
+
}], ['rect', {
|
|
10
|
+
x: '6',
|
|
11
|
+
y: '8',
|
|
12
|
+
width: '8',
|
|
13
|
+
height: '7',
|
|
14
|
+
rx: '1',
|
|
15
|
+
key: 'i43qc1'
|
|
16
|
+
}], ['path', {
|
|
17
|
+
d: 'M18 8v7',
|
|
18
|
+
key: 'o5zi4n'
|
|
19
|
+
}], ['path', {
|
|
20
|
+
d: 'M6 19v2',
|
|
21
|
+
key: '1loha6'
|
|
22
|
+
}], ['path', {
|
|
23
|
+
d: 'M18 19v2',
|
|
24
|
+
key: '1dawf0'
|
|
25
|
+
}]]);
|
|
26
|
+
export default Microwave;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var RectangleHorizontal = createReactComponent('RectangleHorizontal', [['rect', {
|
|
3
|
+
x: '2',
|
|
4
|
+
y: '6',
|
|
5
|
+
width: '20',
|
|
6
|
+
height: '12',
|
|
7
|
+
rx: '2',
|
|
8
|
+
key: '1wpnh2'
|
|
9
|
+
}]]);
|
|
10
|
+
export default RectangleHorizontal;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var RectangleVertical = createReactComponent('RectangleVertical', [['rect', {
|
|
3
|
+
x: '6',
|
|
4
|
+
y: '2',
|
|
5
|
+
width: '12',
|
|
6
|
+
height: '20',
|
|
7
|
+
rx: '2',
|
|
8
|
+
key: '749fme'
|
|
9
|
+
}]]);
|
|
10
|
+
export default RectangleVertical;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var Refrigerator = createReactComponent('Refrigerator', [['path', {
|
|
3
|
+
d: 'M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z',
|
|
4
|
+
key: 'fpq118'
|
|
5
|
+
}], ['path', {
|
|
6
|
+
d: 'M5 10h14',
|
|
7
|
+
key: 'elsbfy'
|
|
8
|
+
}], ['path', {
|
|
9
|
+
d: 'M15 7v6',
|
|
10
|
+
key: '1nx30x'
|
|
11
|
+
}]]);
|
|
12
|
+
export default Refrigerator;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var ShowerHead = createReactComponent('ShowerHead', [['path', {
|
|
3
|
+
d: 'm4 4 2.5 2.5',
|
|
4
|
+
key: 'uv2vmf'
|
|
5
|
+
}], ['path', {
|
|
6
|
+
d: 'M13.5 6.5a4.95 4.95 0 0 0-7 7',
|
|
7
|
+
key: 'frdkwv'
|
|
8
|
+
}], ['path', {
|
|
9
|
+
d: 'M15 5 5 15',
|
|
10
|
+
key: '1ag8rq'
|
|
11
|
+
}], ['path', {
|
|
12
|
+
d: 'M14 17v.01',
|
|
13
|
+
key: 'eokfpp'
|
|
14
|
+
}], ['path', {
|
|
15
|
+
d: 'M10 16v.01',
|
|
16
|
+
key: '14uyyl'
|
|
17
|
+
}], ['path', {
|
|
18
|
+
d: 'M13 13v.01',
|
|
19
|
+
key: '1v1k97'
|
|
20
|
+
}], ['path', {
|
|
21
|
+
d: 'M16 10v.01',
|
|
22
|
+
key: '5169yg'
|
|
23
|
+
}], ['path', {
|
|
24
|
+
d: 'M11 20v.01',
|
|
25
|
+
key: 'cj92p8'
|
|
26
|
+
}], ['path', {
|
|
27
|
+
d: 'M17 14v.01',
|
|
28
|
+
key: '11cswd'
|
|
29
|
+
}], ['path', {
|
|
30
|
+
d: 'M20 11v.01',
|
|
31
|
+
key: '19e0od'
|
|
32
|
+
}]]);
|
|
33
|
+
export default ShowerHead;
|
package/dist/lucide-react.d.ts
CHANGED
|
@@ -74,6 +74,7 @@ export declare const ArrowLeft: (props: LucideProps) => JSX.Element;
|
|
|
74
74
|
export declare const ArrowRightCircle: (props: LucideProps) => JSX.Element;
|
|
75
75
|
export declare const ArrowRight: (props: LucideProps) => JSX.Element;
|
|
76
76
|
export declare const ArrowUpCircle: (props: LucideProps) => JSX.Element;
|
|
77
|
+
export declare const ArrowUpDown: (props: LucideProps) => JSX.Element;
|
|
77
78
|
export declare const ArrowUpLeft: (props: LucideProps) => JSX.Element;
|
|
78
79
|
export declare const ArrowUpRight: (props: LucideProps) => JSX.Element;
|
|
79
80
|
export declare const ArrowUp: (props: LucideProps) => JSX.Element;
|
|
@@ -231,6 +232,7 @@ export declare const Columns: (props: LucideProps) => JSX.Element;
|
|
|
231
232
|
export declare const Command: (props: LucideProps) => JSX.Element;
|
|
232
233
|
export declare const Compass: (props: LucideProps) => JSX.Element;
|
|
233
234
|
export declare const Component: (props: LucideProps) => JSX.Element;
|
|
235
|
+
export declare const ConciergeBell: (props: LucideProps) => JSX.Element;
|
|
234
236
|
export declare const Contact: (props: LucideProps) => JSX.Element;
|
|
235
237
|
export declare const Contrast: (props: LucideProps) => JSX.Element;
|
|
236
238
|
export declare const Cookie: (props: LucideProps) => JSX.Element;
|
|
@@ -292,6 +294,7 @@ export declare const EyeOff: (props: LucideProps) => JSX.Element;
|
|
|
292
294
|
export declare const Eye: (props: LucideProps) => JSX.Element;
|
|
293
295
|
export declare const Facebook: (props: LucideProps) => JSX.Element;
|
|
294
296
|
export declare const Factory: (props: LucideProps) => JSX.Element;
|
|
297
|
+
export declare const Fan: (props: LucideProps) => JSX.Element;
|
|
295
298
|
export declare const FastForward: (props: LucideProps) => JSX.Element;
|
|
296
299
|
export declare const Feather: (props: LucideProps) => JSX.Element;
|
|
297
300
|
export declare const Figma: (props: LucideProps) => JSX.Element;
|
|
@@ -542,6 +545,7 @@ export declare const Mic2: (props: LucideProps) => JSX.Element;
|
|
|
542
545
|
export declare const MicOff: (props: LucideProps) => JSX.Element;
|
|
543
546
|
export declare const Mic: (props: LucideProps) => JSX.Element;
|
|
544
547
|
export declare const Microscope: (props: LucideProps) => JSX.Element;
|
|
548
|
+
export declare const Microwave: (props: LucideProps) => JSX.Element;
|
|
545
549
|
export declare const Milestone: (props: LucideProps) => JSX.Element;
|
|
546
550
|
export declare const Minimize2: (props: LucideProps) => JSX.Element;
|
|
547
551
|
export declare const Minimize: (props: LucideProps) => JSX.Element;
|
|
@@ -633,11 +637,14 @@ export declare const QrCode: (props: LucideProps) => JSX.Element;
|
|
|
633
637
|
export declare const Quote: (props: LucideProps) => JSX.Element;
|
|
634
638
|
export declare const RadioReceiver: (props: LucideProps) => JSX.Element;
|
|
635
639
|
export declare const Radio: (props: LucideProps) => JSX.Element;
|
|
640
|
+
export declare const RectangleHorizontal: (props: LucideProps) => JSX.Element;
|
|
641
|
+
export declare const RectangleVertical: (props: LucideProps) => JSX.Element;
|
|
636
642
|
export declare const Recycle: (props: LucideProps) => JSX.Element;
|
|
637
643
|
export declare const Redo2: (props: LucideProps) => JSX.Element;
|
|
638
644
|
export declare const Redo: (props: LucideProps) => JSX.Element;
|
|
639
645
|
export declare const RefreshCcw: (props: LucideProps) => JSX.Element;
|
|
640
646
|
export declare const RefreshCw: (props: LucideProps) => JSX.Element;
|
|
647
|
+
export declare const Refrigerator: (props: LucideProps) => JSX.Element;
|
|
641
648
|
export declare const Regex: (props: LucideProps) => JSX.Element;
|
|
642
649
|
export declare const Repeat1: (props: LucideProps) => JSX.Element;
|
|
643
650
|
export declare const Repeat: (props: LucideProps) => JSX.Element;
|
|
@@ -685,6 +692,7 @@ export declare const Shirt: (props: LucideProps) => JSX.Element;
|
|
|
685
692
|
export declare const ShoppingBag: (props: LucideProps) => JSX.Element;
|
|
686
693
|
export declare const ShoppingCart: (props: LucideProps) => JSX.Element;
|
|
687
694
|
export declare const Shovel: (props: LucideProps) => JSX.Element;
|
|
695
|
+
export declare const ShowerHead: (props: LucideProps) => JSX.Element;
|
|
688
696
|
export declare const Shrink: (props: LucideProps) => JSX.Element;
|
|
689
697
|
export declare const Shrub: (props: LucideProps) => JSX.Element;
|
|
690
698
|
export declare const Shuffle: (props: LucideProps) => JSX.Element;
|