lucide-react 0.22.0 → 0.26.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 +31 -16
- package/dist/cjs/lucide-react.js.map +1 -1
- package/dist/esm/icons/credit-card.js +8 -9
- package/dist/esm/icons/crop.js +4 -4
- package/dist/esm/icons/flag-off.js +15 -0
- package/dist/esm/icons/index.js +1 -0
- package/dist/esm/icons/map-pin.js +2 -2
- package/dist/lucide-react.d.ts +1 -0
- package/dist/umd/lucide-react.js +31 -16
- 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
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
import createReactComponent from '../createReactComponent';
|
|
2
2
|
var CreditCard = createReactComponent('CreditCard', [['rect', {
|
|
3
|
-
x: '
|
|
4
|
-
y: '
|
|
5
|
-
width: '
|
|
6
|
-
height: '
|
|
3
|
+
x: '2',
|
|
4
|
+
y: '5',
|
|
5
|
+
width: '20',
|
|
6
|
+
height: '14',
|
|
7
7
|
rx: '2',
|
|
8
|
-
|
|
9
|
-
key: '11q156'
|
|
8
|
+
key: 'qneu4z'
|
|
10
9
|
}], ['line', {
|
|
11
|
-
x1: '
|
|
10
|
+
x1: '2',
|
|
12
11
|
y1: '10',
|
|
13
|
-
x2: '
|
|
12
|
+
x2: '22',
|
|
14
13
|
y2: '10',
|
|
15
|
-
key: '
|
|
14
|
+
key: '1ytoly'
|
|
16
15
|
}]]);
|
|
17
16
|
export default CreditCard;
|
package/dist/esm/icons/crop.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import createReactComponent from '../createReactComponent';
|
|
2
2
|
var Crop = createReactComponent('Crop', [['path', {
|
|
3
|
-
d: 'M6
|
|
4
|
-
key: '
|
|
3
|
+
d: 'M6 2v14a2 2 0 0 0 2 2h14',
|
|
4
|
+
key: 'ron5a4'
|
|
5
5
|
}], ['path', {
|
|
6
|
-
d: '
|
|
7
|
-
key: '
|
|
6
|
+
d: 'M18 22V8a2 2 0 0 0-2-2H2',
|
|
7
|
+
key: '7s9ehn'
|
|
8
8
|
}]]);
|
|
9
9
|
export default Crop;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var FlagOff = createReactComponent('FlagOff', [['path', {
|
|
3
|
+
d: 'M8 2c3 0 5 2 8 2s4-1 4-1v11',
|
|
4
|
+
key: '9rwyz9'
|
|
5
|
+
}], ['path', {
|
|
6
|
+
d: 'M4 22v-7m0 0s1-1 4-1 5 2 8 2M4 15V4',
|
|
7
|
+
key: '18jr0d'
|
|
8
|
+
}], ['line', {
|
|
9
|
+
x1: '2',
|
|
10
|
+
y1: '2',
|
|
11
|
+
x2: '22',
|
|
12
|
+
y2: '22',
|
|
13
|
+
key: '1w4vcy'
|
|
14
|
+
}]]);
|
|
15
|
+
export default FlagOff;
|
package/dist/esm/icons/index.js
CHANGED
|
@@ -236,6 +236,7 @@ export { default as File } from './file';
|
|
|
236
236
|
export { default as Files } from './files';
|
|
237
237
|
export { default as Film } from './film';
|
|
238
238
|
export { default as Filter } from './filter';
|
|
239
|
+
export { default as FlagOff } from './flag-off';
|
|
239
240
|
export { default as FlagTriangleLeft } from './flag-triangle-left';
|
|
240
241
|
export { default as FlagTriangleRight } from './flag-triangle-right';
|
|
241
242
|
export { default as Flag } from './flag';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import createReactComponent from '../createReactComponent';
|
|
2
2
|
var MapPin = createReactComponent('MapPin', [['path', {
|
|
3
|
-
d: '
|
|
4
|
-
key: '
|
|
3
|
+
d: 'M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 0 1 16 0Z',
|
|
4
|
+
key: '1510lq'
|
|
5
5
|
}], ['circle', {
|
|
6
6
|
cx: '12',
|
|
7
7
|
cy: '10',
|
package/dist/lucide-react.d.ts
CHANGED
|
@@ -251,6 +251,7 @@ export declare const File: (props: LucideProps) => JSX.Element;
|
|
|
251
251
|
export declare const Files: (props: LucideProps) => JSX.Element;
|
|
252
252
|
export declare const Film: (props: LucideProps) => JSX.Element;
|
|
253
253
|
export declare const Filter: (props: LucideProps) => JSX.Element;
|
|
254
|
+
export declare const FlagOff: (props: LucideProps) => JSX.Element;
|
|
254
255
|
export declare const FlagTriangleLeft: (props: LucideProps) => JSX.Element;
|
|
255
256
|
export declare const FlagTriangleRight: (props: LucideProps) => JSX.Element;
|
|
256
257
|
export declare const Flag: (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.26.0 - ISC
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
(function (global, factory) {
|
|
@@ -3084,28 +3084,27 @@
|
|
|
3084
3084
|
var Cpu$1 = Cpu;
|
|
3085
3085
|
|
|
3086
3086
|
var CreditCard = createReactComponent('CreditCard', [['rect', {
|
|
3087
|
-
x: '
|
|
3088
|
-
y: '
|
|
3089
|
-
width: '
|
|
3090
|
-
height: '
|
|
3087
|
+
x: '2',
|
|
3088
|
+
y: '5',
|
|
3089
|
+
width: '20',
|
|
3090
|
+
height: '14',
|
|
3091
3091
|
rx: '2',
|
|
3092
|
-
|
|
3093
|
-
key: '11q156'
|
|
3092
|
+
key: 'qneu4z'
|
|
3094
3093
|
}], ['line', {
|
|
3095
|
-
x1: '
|
|
3094
|
+
x1: '2',
|
|
3096
3095
|
y1: '10',
|
|
3097
|
-
x2: '
|
|
3096
|
+
x2: '22',
|
|
3098
3097
|
y2: '10',
|
|
3099
|
-
key: '
|
|
3098
|
+
key: '1ytoly'
|
|
3100
3099
|
}]]);
|
|
3101
3100
|
var CreditCard$1 = CreditCard;
|
|
3102
3101
|
|
|
3103
3102
|
var Crop = createReactComponent('Crop', [['path', {
|
|
3104
|
-
d: 'M6
|
|
3105
|
-
key: '
|
|
3103
|
+
d: 'M6 2v14a2 2 0 0 0 2 2h14',
|
|
3104
|
+
key: 'ron5a4'
|
|
3106
3105
|
}], ['path', {
|
|
3107
|
-
d: '
|
|
3108
|
-
key: '
|
|
3106
|
+
d: 'M18 22V8a2 2 0 0 0-2-2H2',
|
|
3107
|
+
key: '7s9ehn'
|
|
3109
3108
|
}]]);
|
|
3110
3109
|
var Crop$1 = Crop;
|
|
3111
3110
|
|
|
@@ -4010,6 +4009,21 @@
|
|
|
4010
4009
|
}]]);
|
|
4011
4010
|
var Filter$1 = Filter;
|
|
4012
4011
|
|
|
4012
|
+
var FlagOff = createReactComponent('FlagOff', [['path', {
|
|
4013
|
+
d: 'M8 2c3 0 5 2 8 2s4-1 4-1v11',
|
|
4014
|
+
key: '9rwyz9'
|
|
4015
|
+
}], ['path', {
|
|
4016
|
+
d: 'M4 22v-7m0 0s1-1 4-1 5 2 8 2M4 15V4',
|
|
4017
|
+
key: '18jr0d'
|
|
4018
|
+
}], ['line', {
|
|
4019
|
+
x1: '2',
|
|
4020
|
+
y1: '2',
|
|
4021
|
+
x2: '22',
|
|
4022
|
+
y2: '22',
|
|
4023
|
+
key: '1w4vcy'
|
|
4024
|
+
}]]);
|
|
4025
|
+
var FlagOff$1 = FlagOff;
|
|
4026
|
+
|
|
4013
4027
|
var FlagTriangleLeft = createReactComponent('FlagTriangleLeft', [['path', {
|
|
4014
4028
|
d: 'M17 22V2L7 7l10 5',
|
|
4015
4029
|
key: '1rmf0r'
|
|
@@ -5946,8 +5960,8 @@
|
|
|
5946
5960
|
var Mail$1 = Mail;
|
|
5947
5961
|
|
|
5948
5962
|
var MapPin = createReactComponent('MapPin', [['path', {
|
|
5949
|
-
d: '
|
|
5950
|
-
key: '
|
|
5963
|
+
d: 'M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 0 1 16 0Z',
|
|
5964
|
+
key: '1510lq'
|
|
5951
5965
|
}], ['circle', {
|
|
5952
5966
|
cx: '12',
|
|
5953
5967
|
cy: '10',
|
|
@@ -9991,6 +10005,7 @@
|
|
|
9991
10005
|
exports.Film = Film$1;
|
|
9992
10006
|
exports.Filter = Filter$1;
|
|
9993
10007
|
exports.Flag = Flag$1;
|
|
10008
|
+
exports.FlagOff = FlagOff$1;
|
|
9994
10009
|
exports.FlagTriangleLeft = FlagTriangleLeft$1;
|
|
9995
10010
|
exports.FlagTriangleRight = FlagTriangleRight$1;
|
|
9996
10011
|
exports.Flame = Flame$1;
|