lucide-react 0.87.0 → 0.89.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/dist/cjs/lucide-react.js +49 -1
- package/dist/cjs/lucide-react.js.map +1 -1
- package/dist/esm/icons/index.js +3 -0
- package/dist/esm/icons/plug-2.js +18 -0
- package/dist/esm/icons/plug.js +15 -0
- package/dist/esm/icons/sailboat.js +12 -0
- package/dist/lucide-react.d.ts +3 -0
- package/dist/umd/lucide-react.js +49 -1
- 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 +1 -1
package/dist/esm/icons/index.js
CHANGED
|
@@ -606,7 +606,9 @@ export { default as Pizza } from './pizza';
|
|
|
606
606
|
export { default as Plane } from './plane';
|
|
607
607
|
export { default as PlayCircle } from './play-circle';
|
|
608
608
|
export { default as Play } from './play';
|
|
609
|
+
export { default as Plug2 } from './plug-2';
|
|
609
610
|
export { default as PlugZap } from './plug-zap';
|
|
611
|
+
export { default as Plug } from './plug';
|
|
610
612
|
export { default as PlusCircle } from './plus-circle';
|
|
611
613
|
export { default as PlusSquare } from './plus-square';
|
|
612
614
|
export { default as Plus } from './plus';
|
|
@@ -644,6 +646,7 @@ export { default as RotateCw } from './rotate-cw';
|
|
|
644
646
|
export { default as Rss } from './rss';
|
|
645
647
|
export { default as Ruler } from './ruler';
|
|
646
648
|
export { default as RussianRuble } from './russian-ruble';
|
|
649
|
+
export { default as Sailboat } from './sailboat';
|
|
647
650
|
export { default as Save } from './save';
|
|
648
651
|
export { default as Scale3d } from './scale-3d';
|
|
649
652
|
export { default as Scale } from './scale';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var Plug2 = createReactComponent('Plug2', [['path', {
|
|
3
|
+
d: 'M9 2v6',
|
|
4
|
+
key: '17ngun'
|
|
5
|
+
}], ['path', {
|
|
6
|
+
d: 'M15 2v6',
|
|
7
|
+
key: 's7yy2p'
|
|
8
|
+
}], ['path', {
|
|
9
|
+
d: 'M12 17v5',
|
|
10
|
+
key: 'bb1du9'
|
|
11
|
+
}], ['path', {
|
|
12
|
+
d: 'M5 8h14',
|
|
13
|
+
key: 'pcz4l3'
|
|
14
|
+
}], ['path', {
|
|
15
|
+
d: 'M6 11V8h12v3a6 6 0 1 1-12 0v0Z',
|
|
16
|
+
key: 'nd4hoy'
|
|
17
|
+
}]]);
|
|
18
|
+
export default Plug2;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var Plug = createReactComponent('Plug', [['path', {
|
|
3
|
+
d: 'M12 22v-5',
|
|
4
|
+
key: '1ega77'
|
|
5
|
+
}], ['path', {
|
|
6
|
+
d: 'M9 7V2',
|
|
7
|
+
key: '1r97uf'
|
|
8
|
+
}], ['path', {
|
|
9
|
+
d: 'M15 7V2',
|
|
10
|
+
key: '1uo4jc'
|
|
11
|
+
}], ['path', {
|
|
12
|
+
d: 'M6 13V8h12v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4Z',
|
|
13
|
+
key: '1xki7n'
|
|
14
|
+
}]]);
|
|
15
|
+
export default Plug;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var Sailboat = createReactComponent('Sailboat', [['path', {
|
|
3
|
+
d: 'M22 18H2a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4Z',
|
|
4
|
+
key: '1404fh'
|
|
5
|
+
}], ['path', {
|
|
6
|
+
d: 'M21 14 10 2 3 14h18Z',
|
|
7
|
+
key: '1nzg7v'
|
|
8
|
+
}], ['path', {
|
|
9
|
+
d: 'M10 2v16',
|
|
10
|
+
key: '1labyt'
|
|
11
|
+
}]]);
|
|
12
|
+
export default Sailboat;
|
package/dist/lucide-react.d.ts
CHANGED
|
@@ -621,7 +621,9 @@ export declare const Pizza: (props: LucideProps) => JSX.Element;
|
|
|
621
621
|
export declare const Plane: (props: LucideProps) => JSX.Element;
|
|
622
622
|
export declare const PlayCircle: (props: LucideProps) => JSX.Element;
|
|
623
623
|
export declare const Play: (props: LucideProps) => JSX.Element;
|
|
624
|
+
export declare const Plug2: (props: LucideProps) => JSX.Element;
|
|
624
625
|
export declare const PlugZap: (props: LucideProps) => JSX.Element;
|
|
626
|
+
export declare const Plug: (props: LucideProps) => JSX.Element;
|
|
625
627
|
export declare const PlusCircle: (props: LucideProps) => JSX.Element;
|
|
626
628
|
export declare const PlusSquare: (props: LucideProps) => JSX.Element;
|
|
627
629
|
export declare const Plus: (props: LucideProps) => JSX.Element;
|
|
@@ -659,6 +661,7 @@ export declare const RotateCw: (props: LucideProps) => JSX.Element;
|
|
|
659
661
|
export declare const Rss: (props: LucideProps) => JSX.Element;
|
|
660
662
|
export declare const Ruler: (props: LucideProps) => JSX.Element;
|
|
661
663
|
export declare const RussianRuble: (props: LucideProps) => JSX.Element;
|
|
664
|
+
export declare const Sailboat: (props: LucideProps) => JSX.Element;
|
|
662
665
|
export declare const Save: (props: LucideProps) => JSX.Element;
|
|
663
666
|
export declare const Scale3d: (props: LucideProps) => JSX.Element;
|
|
664
667
|
export declare const Scale: (props: LucideProps) => JSX.Element;
|
package/dist/umd/lucide-react.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* lucide-react v0.
|
|
2
|
+
* lucide-react v0.89.0 - ISC
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
(function (global, factory) {
|
|
@@ -10409,6 +10409,24 @@
|
|
|
10409
10409
|
}]]);
|
|
10410
10410
|
var Play$1 = Play;
|
|
10411
10411
|
|
|
10412
|
+
var Plug2 = createReactComponent('Plug2', [['path', {
|
|
10413
|
+
d: 'M9 2v6',
|
|
10414
|
+
key: '17ngun'
|
|
10415
|
+
}], ['path', {
|
|
10416
|
+
d: 'M15 2v6',
|
|
10417
|
+
key: 's7yy2p'
|
|
10418
|
+
}], ['path', {
|
|
10419
|
+
d: 'M12 17v5',
|
|
10420
|
+
key: 'bb1du9'
|
|
10421
|
+
}], ['path', {
|
|
10422
|
+
d: 'M5 8h14',
|
|
10423
|
+
key: 'pcz4l3'
|
|
10424
|
+
}], ['path', {
|
|
10425
|
+
d: 'M6 11V8h12v3a6 6 0 1 1-12 0v0Z',
|
|
10426
|
+
key: 'nd4hoy'
|
|
10427
|
+
}]]);
|
|
10428
|
+
var Plug2$1 = Plug2;
|
|
10429
|
+
|
|
10412
10430
|
var PlugZap = createReactComponent('PlugZap', [['path', {
|
|
10413
10431
|
d: 'm13 2-2 2.5h3L12 7',
|
|
10414
10432
|
key: '1me98u'
|
|
@@ -10430,6 +10448,21 @@
|
|
|
10430
10448
|
}]]);
|
|
10431
10449
|
var PlugZap$1 = PlugZap;
|
|
10432
10450
|
|
|
10451
|
+
var Plug = createReactComponent('Plug', [['path', {
|
|
10452
|
+
d: 'M12 22v-5',
|
|
10453
|
+
key: '1ega77'
|
|
10454
|
+
}], ['path', {
|
|
10455
|
+
d: 'M9 7V2',
|
|
10456
|
+
key: '1r97uf'
|
|
10457
|
+
}], ['path', {
|
|
10458
|
+
d: 'M15 7V2',
|
|
10459
|
+
key: '1uo4jc'
|
|
10460
|
+
}], ['path', {
|
|
10461
|
+
d: 'M6 13V8h12v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4Z',
|
|
10462
|
+
key: '1xki7n'
|
|
10463
|
+
}]]);
|
|
10464
|
+
var Plug$1 = Plug;
|
|
10465
|
+
|
|
10433
10466
|
var PlusCircle = createReactComponent('PlusCircle', [['circle', {
|
|
10434
10467
|
cx: '12',
|
|
10435
10468
|
cy: '12',
|
|
@@ -10989,6 +11022,18 @@
|
|
|
10989
11022
|
}]]);
|
|
10990
11023
|
var RussianRuble$1 = RussianRuble;
|
|
10991
11024
|
|
|
11025
|
+
var Sailboat = createReactComponent('Sailboat', [['path', {
|
|
11026
|
+
d: 'M22 18H2a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4Z',
|
|
11027
|
+
key: '1404fh'
|
|
11028
|
+
}], ['path', {
|
|
11029
|
+
d: 'M21 14 10 2 3 14h18Z',
|
|
11030
|
+
key: '1nzg7v'
|
|
11031
|
+
}], ['path', {
|
|
11032
|
+
d: 'M10 2v16',
|
|
11033
|
+
key: '1labyt'
|
|
11034
|
+
}]]);
|
|
11035
|
+
var Sailboat$1 = Sailboat;
|
|
11036
|
+
|
|
10992
11037
|
var Save = createReactComponent('Save', [['path', {
|
|
10993
11038
|
d: 'M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z',
|
|
10994
11039
|
key: '1owoqh'
|
|
@@ -14835,6 +14880,8 @@
|
|
|
14835
14880
|
exports.Plane = Plane$1;
|
|
14836
14881
|
exports.Play = Play$1;
|
|
14837
14882
|
exports.PlayCircle = PlayCircle$1;
|
|
14883
|
+
exports.Plug = Plug$1;
|
|
14884
|
+
exports.Plug2 = Plug2$1;
|
|
14838
14885
|
exports.PlugZap = PlugZap$1;
|
|
14839
14886
|
exports.Plus = Plus$1;
|
|
14840
14887
|
exports.PlusCircle = PlusCircle$1;
|
|
@@ -14873,6 +14920,7 @@
|
|
|
14873
14920
|
exports.Rss = Rss$1;
|
|
14874
14921
|
exports.Ruler = Ruler$1;
|
|
14875
14922
|
exports.RussianRuble = RussianRuble$1;
|
|
14923
|
+
exports.Sailboat = Sailboat$1;
|
|
14876
14924
|
exports.Save = Save$1;
|
|
14877
14925
|
exports.Scale = Scale$1;
|
|
14878
14926
|
exports.Scale3d = Scale3d$1;
|