lucide-react 0.95.0 → 0.96.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/README.md +15 -13
- package/dist/cjs/lucide-react.js +11 -1
- package/dist/cjs/lucide-react.js.map +1 -1
- package/dist/esm/icons/check-check.js +9 -0
- package/dist/esm/icons/index.js +1 -0
- package/dist/lucide-react.d.ts +1 -0
- package/dist/umd/lucide-react.js +11 -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
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import createReactComponent from '../createReactComponent';
|
|
2
|
+
var CheckCheck = createReactComponent('CheckCheck', [['path', {
|
|
3
|
+
d: 'M18 6 7 17l-5-5',
|
|
4
|
+
key: '116fxf'
|
|
5
|
+
}], ['path', {
|
|
6
|
+
d: 'm22 10-7.5 7.5L13 16',
|
|
7
|
+
key: 'ke71qq'
|
|
8
|
+
}]]);
|
|
9
|
+
export default CheckCheck;
|
package/dist/esm/icons/index.js
CHANGED
|
@@ -142,6 +142,7 @@ export { default as Car } from './car';
|
|
|
142
142
|
export { default as Carrot } from './carrot';
|
|
143
143
|
export { default as Cast } from './cast';
|
|
144
144
|
export { default as Cat } from './cat';
|
|
145
|
+
export { default as CheckCheck } from './check-check';
|
|
145
146
|
export { default as CheckCircle2 } from './check-circle-2';
|
|
146
147
|
export { default as CheckCircle } from './check-circle';
|
|
147
148
|
export { default as CheckSquare } from './check-square';
|
package/dist/lucide-react.d.ts
CHANGED
|
@@ -157,6 +157,7 @@ export declare const Car: (props: LucideProps) => JSX.Element;
|
|
|
157
157
|
export declare const Carrot: (props: LucideProps) => JSX.Element;
|
|
158
158
|
export declare const Cast: (props: LucideProps) => JSX.Element;
|
|
159
159
|
export declare const Cat: (props: LucideProps) => JSX.Element;
|
|
160
|
+
export declare const CheckCheck: (props: LucideProps) => JSX.Element;
|
|
160
161
|
export declare const CheckCircle2: (props: LucideProps) => JSX.Element;
|
|
161
162
|
export declare const CheckCircle: (props: LucideProps) => JSX.Element;
|
|
162
163
|
export declare const CheckSquare: (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.96.0 - ISC
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
(function (global, factory) {
|
|
@@ -2832,6 +2832,15 @@
|
|
|
2832
2832
|
}]]);
|
|
2833
2833
|
var Cat$1 = Cat;
|
|
2834
2834
|
|
|
2835
|
+
var CheckCheck = createReactComponent('CheckCheck', [['path', {
|
|
2836
|
+
d: 'M18 6 7 17l-5-5',
|
|
2837
|
+
key: '116fxf'
|
|
2838
|
+
}], ['path', {
|
|
2839
|
+
d: 'm22 10-7.5 7.5L13 16',
|
|
2840
|
+
key: 'ke71qq'
|
|
2841
|
+
}]]);
|
|
2842
|
+
var CheckCheck$1 = CheckCheck;
|
|
2843
|
+
|
|
2835
2844
|
var CheckCircle2 = createReactComponent('CheckCircle2', [['path', {
|
|
2836
2845
|
d: 'M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z',
|
|
2837
2846
|
key: '14v8dr'
|
|
@@ -14626,6 +14635,7 @@
|
|
|
14626
14635
|
exports.Cast = Cast$1;
|
|
14627
14636
|
exports.Cat = Cat$1;
|
|
14628
14637
|
exports.Check = Check$1;
|
|
14638
|
+
exports.CheckCheck = CheckCheck$1;
|
|
14629
14639
|
exports.CheckCircle = CheckCircle$1;
|
|
14630
14640
|
exports.CheckCircle2 = CheckCircle2$1;
|
|
14631
14641
|
exports.CheckSquare = CheckSquare$1;
|