lucide-react 0.44.0 → 0.47.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.
Files changed (36) hide show
  1. package/dist/cjs/lucide-react.js +439 -47
  2. package/dist/cjs/lucide-react.js.map +1 -1
  3. package/dist/esm/icons/bar-chart-3.js +15 -0
  4. package/dist/esm/icons/bar-chart-4.js +15 -0
  5. package/dist/esm/icons/bar-chart-horizontal.js +15 -0
  6. package/dist/esm/icons/bath.js +30 -0
  7. package/dist/esm/icons/battery-charging.js +7 -7
  8. package/dist/esm/icons/battery-full.js +9 -9
  9. package/dist/esm/icons/battery-low.js +3 -3
  10. package/dist/esm/icons/battery-medium.js +6 -6
  11. package/dist/esm/icons/chef-hat.js +12 -0
  12. package/dist/esm/icons/cloud-lightning.js +4 -4
  13. package/dist/esm/icons/component.js +15 -0
  14. package/dist/esm/icons/croissant.js +18 -0
  15. package/dist/esm/icons/fuel.js +21 -0
  16. package/dist/esm/icons/index.js +19 -0
  17. package/dist/esm/icons/inspect.js +4 -7
  18. package/dist/esm/icons/line-chart.js +9 -0
  19. package/dist/esm/icons/map-pin-off.js +21 -0
  20. package/dist/esm/icons/navigation-2-off.js +15 -0
  21. package/dist/esm/icons/navigation-off.js +15 -0
  22. package/dist/esm/icons/pipette.js +6 -6
  23. package/dist/esm/icons/shopping-cart.js +4 -4
  24. package/dist/esm/icons/star-off.js +15 -0
  25. package/dist/esm/icons/sun-medium.js +30 -0
  26. package/dist/esm/icons/sun-moon.js +33 -0
  27. package/dist/esm/icons/sword.js +24 -0
  28. package/dist/esm/icons/swords.js +45 -0
  29. package/dist/esm/icons/train.js +16 -0
  30. package/dist/esm/icons/venetian-mask.js +12 -0
  31. package/dist/lucide-react.d.ts +19 -0
  32. package/dist/umd/lucide-react.js +439 -47
  33. package/dist/umd/lucide-react.js.map +1 -1
  34. package/dist/umd/lucide-react.min.js +2 -2
  35. package/dist/umd/lucide-react.min.js.map +1 -1
  36. package/package.json +1 -1
@@ -0,0 +1,16 @@
1
+ import createReactComponent from '../createReactComponent';
2
+ var Train = createReactComponent('Train', [['rect', {
3
+ x: '4',
4
+ y: '3',
5
+ width: '16',
6
+ height: '16',
7
+ rx: '2',
8
+ key: 'u93jis'
9
+ }], ['path', {
10
+ d: 'M4 11h16M12 3v8',
11
+ key: '11pg5r'
12
+ }], ['path', {
13
+ d: 'M8 15h.01M16 15h.01M8 19l-2 3M18 22l-2-3',
14
+ key: 'kk6nrl'
15
+ }]]);
16
+ export default Train;
@@ -0,0 +1,12 @@
1
+ import createReactComponent from '../createReactComponent';
2
+ var VenetianMask = createReactComponent('VenetianMask', [['path', {
3
+ d: 'M2 12a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V7h-5a8 8 0 0 0-5 2 8 8 0 0 0-5-2H2Z',
4
+ key: '1g6z3j'
5
+ }], ['path', {
6
+ d: 'M6 11c1.5 0 3 .5 3 2-2 0-3 0-3-2Z',
7
+ key: 'c2lwnf'
8
+ }], ['path', {
9
+ d: 'M18 11c-1.5 0-3 .5-3 2 2 0 3 0 3-2Z',
10
+ key: 'njd9zo'
11
+ }]]);
12
+ export default VenetianMask;
@@ -77,8 +77,12 @@ export declare const Award: (props: LucideProps) => JSX.Element;
77
77
  export declare const Axe: (props: LucideProps) => JSX.Element;
78
78
  export declare const Banknote: (props: LucideProps) => JSX.Element;
79
79
  export declare const BarChart2: (props: LucideProps) => JSX.Element;
80
+ export declare const BarChart3: (props: LucideProps) => JSX.Element;
81
+ export declare const BarChart4: (props: LucideProps) => JSX.Element;
82
+ export declare const BarChartHorizontal: (props: LucideProps) => JSX.Element;
80
83
  export declare const BarChart: (props: LucideProps) => JSX.Element;
81
84
  export declare const Baseline: (props: LucideProps) => JSX.Element;
85
+ export declare const Bath: (props: LucideProps) => JSX.Element;
82
86
  export declare const BatteryCharging: (props: LucideProps) => JSX.Element;
83
87
  export declare const BatteryFull: (props: LucideProps) => JSX.Element;
84
88
  export declare const BatteryLow: (props: LucideProps) => JSX.Element;
@@ -123,6 +127,7 @@ export declare const CheckCircle2: (props: LucideProps) => JSX.Element;
123
127
  export declare const CheckCircle: (props: LucideProps) => JSX.Element;
124
128
  export declare const CheckSquare: (props: LucideProps) => JSX.Element;
125
129
  export declare const Check: (props: LucideProps) => JSX.Element;
130
+ export declare const ChefHat: (props: LucideProps) => JSX.Element;
126
131
  export declare const ChevronDown: (props: LucideProps) => JSX.Element;
127
132
  export declare const ChevronFirst: (props: LucideProps) => JSX.Element;
128
133
  export declare const ChevronLast: (props: LucideProps) => JSX.Element;
@@ -181,6 +186,7 @@ export declare const Coins: (props: LucideProps) => JSX.Element;
181
186
  export declare const Columns: (props: LucideProps) => JSX.Element;
182
187
  export declare const Command: (props: LucideProps) => JSX.Element;
183
188
  export declare const Compass: (props: LucideProps) => JSX.Element;
189
+ export declare const Component: (props: LucideProps) => JSX.Element;
184
190
  export declare const Contact: (props: LucideProps) => JSX.Element;
185
191
  export declare const Contrast: (props: LucideProps) => JSX.Element;
186
192
  export declare const Cookie: (props: LucideProps) => JSX.Element;
@@ -197,6 +203,7 @@ export declare const CornerUpLeft: (props: LucideProps) => JSX.Element;
197
203
  export declare const CornerUpRight: (props: LucideProps) => JSX.Element;
198
204
  export declare const Cpu: (props: LucideProps) => JSX.Element;
199
205
  export declare const CreditCard: (props: LucideProps) => JSX.Element;
206
+ export declare const Croissant: (props: LucideProps) => JSX.Element;
200
207
  export declare const Crop: (props: LucideProps) => JSX.Element;
201
208
  export declare const Cross: (props: LucideProps) => JSX.Element;
202
209
  export declare const Crosshair: (props: LucideProps) => JSX.Element;
@@ -275,6 +282,7 @@ export declare const Forward: (props: LucideProps) => JSX.Element;
275
282
  export declare const Frame: (props: LucideProps) => JSX.Element;
276
283
  export declare const Framer: (props: LucideProps) => JSX.Element;
277
284
  export declare const Frown: (props: LucideProps) => JSX.Element;
285
+ export declare const Fuel: (props: LucideProps) => JSX.Element;
278
286
  export declare const FunctionSquare: (props: LucideProps) => JSX.Element;
279
287
  export declare const Gamepad2: (props: LucideProps) => JSX.Element;
280
288
  export declare const Gamepad: (props: LucideProps) => JSX.Element;
@@ -347,6 +355,7 @@ export declare const Library: (props: LucideProps) => JSX.Element;
347
355
  export declare const LifeBuoy: (props: LucideProps) => JSX.Element;
348
356
  export declare const LightbulbOff: (props: LucideProps) => JSX.Element;
349
357
  export declare const Lightbulb: (props: LucideProps) => JSX.Element;
358
+ export declare const LineChart: (props: LucideProps) => JSX.Element;
350
359
  export declare const Link2Off: (props: LucideProps) => JSX.Element;
351
360
  export declare const Link2: (props: LucideProps) => JSX.Element;
352
361
  export declare const Link: (props: LucideProps) => JSX.Element;
@@ -366,6 +375,7 @@ export declare const Lock: (props: LucideProps) => JSX.Element;
366
375
  export declare const LogIn: (props: LucideProps) => JSX.Element;
367
376
  export declare const LogOut: (props: LucideProps) => JSX.Element;
368
377
  export declare const Mail: (props: LucideProps) => JSX.Element;
378
+ export declare const MapPinOff: (props: LucideProps) => JSX.Element;
369
379
  export declare const MapPin: (props: LucideProps) => JSX.Element;
370
380
  export declare const Map: (props: LucideProps) => JSX.Element;
371
381
  export declare const Maximize2: (props: LucideProps) => JSX.Element;
@@ -401,7 +411,9 @@ export declare const MoveHorizontal: (props: LucideProps) => JSX.Element;
401
411
  export declare const MoveVertical: (props: LucideProps) => JSX.Element;
402
412
  export declare const Move: (props: LucideProps) => JSX.Element;
403
413
  export declare const Music: (props: LucideProps) => JSX.Element;
414
+ export declare const Navigation2Off: (props: LucideProps) => JSX.Element;
404
415
  export declare const Navigation2: (props: LucideProps) => JSX.Element;
416
+ export declare const NavigationOff: (props: LucideProps) => JSX.Element;
405
417
  export declare const Navigation: (props: LucideProps) => JSX.Element;
406
418
  export declare const Network: (props: LucideProps) => JSX.Element;
407
419
  export declare const Octagon: (props: LucideProps) => JSX.Element;
@@ -526,6 +538,7 @@ export declare const Speaker: (props: LucideProps) => JSX.Element;
526
538
  export declare const Sprout: (props: LucideProps) => JSX.Element;
527
539
  export declare const Square: (props: LucideProps) => JSX.Element;
528
540
  export declare const StarHalf: (props: LucideProps) => JSX.Element;
541
+ export declare const StarOff: (props: LucideProps) => JSX.Element;
529
542
  export declare const Star: (props: LucideProps) => JSX.Element;
530
543
  export declare const StopCircle: (props: LucideProps) => JSX.Element;
531
544
  export declare const StretchHorizontal: (props: LucideProps) => JSX.Element;
@@ -533,12 +546,16 @@ export declare const StretchVertical: (props: LucideProps) => JSX.Element;
533
546
  export declare const Strikethrough: (props: LucideProps) => JSX.Element;
534
547
  export declare const Subscript: (props: LucideProps) => JSX.Element;
535
548
  export declare const SunDim: (props: LucideProps) => JSX.Element;
549
+ export declare const SunMedium: (props: LucideProps) => JSX.Element;
550
+ export declare const SunMoon: (props: LucideProps) => JSX.Element;
536
551
  export declare const Sun: (props: LucideProps) => JSX.Element;
537
552
  export declare const Sunrise: (props: LucideProps) => JSX.Element;
538
553
  export declare const Sunset: (props: LucideProps) => JSX.Element;
539
554
  export declare const Superscript: (props: LucideProps) => JSX.Element;
540
555
  export declare const SwissFranc: (props: LucideProps) => JSX.Element;
541
556
  export declare const SwitchCamera: (props: LucideProps) => JSX.Element;
557
+ export declare const Sword: (props: LucideProps) => JSX.Element;
558
+ export declare const Swords: (props: LucideProps) => JSX.Element;
542
559
  export declare const Table: (props: LucideProps) => JSX.Element;
543
560
  export declare const Tablet: (props: LucideProps) => JSX.Element;
544
561
  export declare const Tag: (props: LucideProps) => JSX.Element;
@@ -560,6 +577,7 @@ export declare const Timer: (props: LucideProps) => JSX.Element;
560
577
  export declare const ToggleLeft: (props: LucideProps) => JSX.Element;
561
578
  export declare const ToggleRight: (props: LucideProps) => JSX.Element;
562
579
  export declare const Tornado: (props: LucideProps) => JSX.Element;
580
+ export declare const Train: (props: LucideProps) => JSX.Element;
563
581
  export declare const Trash2: (props: LucideProps) => JSX.Element;
564
582
  export declare const Trash: (props: LucideProps) => JSX.Element;
565
583
  export declare const Trello: (props: LucideProps) => JSX.Element;
@@ -587,6 +605,7 @@ export declare const UserPlus: (props: LucideProps) => JSX.Element;
587
605
  export declare const UserX: (props: LucideProps) => JSX.Element;
588
606
  export declare const User: (props: LucideProps) => JSX.Element;
589
607
  export declare const Users: (props: LucideProps) => JSX.Element;
608
+ export declare const VenetianMask: (props: LucideProps) => JSX.Element;
590
609
  export declare const Verified: (props: LucideProps) => JSX.Element;
591
610
  export declare const VibrateOff: (props: LucideProps) => JSX.Element;
592
611
  export declare const Vibrate: (props: LucideProps) => JSX.Element;