lucide_leptos/
lib.rs

1//! Leptos port of [Lucide](https://lucide.dev/).
2//!
3//! Lucide is a beautiful & consistent icon toolkit made by the community.
4//!
5//! See [the Rust Lucide book](https://lucide.rustforweb.org/leptos.html) for more documenation.
6
7#[cfg(any(feature = "text", feature = "design"))]
8mod a_arrow_down;
9#[cfg(any(feature = "text", feature = "design"))]
10mod a_arrow_up;
11#[cfg(any(feature = "text", feature = "design"))]
12mod a_large_small;
13#[cfg(any(feature = "accessibility", feature = "medical"))]
14mod accessibility;
15#[cfg(any(
16    feature = "medical",
17    feature = "account",
18    feature = "social",
19    feature = "science",
20    feature = "multimedia"
21))]
22mod activity;
23#[cfg(feature = "home")]
24mod air_vent;
25#[cfg(any(
26    feature = "multimedia",
27    feature = "connectivity",
28    feature = "devices",
29    feature = "brands"
30))]
31mod airplay;
32#[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
33mod alarm_clock;
34#[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
35mod alarm_clock_check;
36#[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
37mod alarm_clock_minus;
38#[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
39mod alarm_clock_off;
40#[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
41mod alarm_clock_plus;
42#[cfg(any(feature = "home", feature = "devices", feature = "travel"))]
43mod alarm_smoke;
44#[cfg(any(feature = "photography", feature = "multimedia"))]
45mod album;
46#[cfg(feature = "text")]
47mod align_center;
48#[cfg(feature = "layout")]
49mod align_center_horizontal;
50#[cfg(feature = "layout")]
51mod align_center_vertical;
52#[cfg(feature = "layout")]
53mod align_end_horizontal;
54#[cfg(feature = "layout")]
55mod align_end_vertical;
56#[cfg(feature = "layout")]
57mod align_horizontal_distribute_center;
58#[cfg(feature = "layout")]
59mod align_horizontal_distribute_end;
60#[cfg(feature = "layout")]
61mod align_horizontal_distribute_start;
62#[cfg(feature = "layout")]
63mod align_horizontal_justify_center;
64#[cfg(feature = "layout")]
65mod align_horizontal_justify_end;
66#[cfg(feature = "layout")]
67mod align_horizontal_justify_start;
68#[cfg(feature = "layout")]
69mod align_horizontal_space_around;
70#[cfg(feature = "layout")]
71mod align_horizontal_space_between;
72#[cfg(feature = "text")]
73mod align_justify;
74#[cfg(feature = "text")]
75mod align_left;
76#[cfg(feature = "text")]
77mod align_right;
78#[cfg(feature = "layout")]
79mod align_start_horizontal;
80#[cfg(feature = "layout")]
81mod align_start_vertical;
82#[cfg(feature = "layout")]
83mod align_vertical_distribute_center;
84#[cfg(feature = "layout")]
85mod align_vertical_distribute_end;
86#[cfg(feature = "layout")]
87mod align_vertical_distribute_start;
88#[cfg(feature = "layout")]
89mod align_vertical_justify_center;
90#[cfg(feature = "layout")]
91mod align_vertical_justify_end;
92#[cfg(feature = "layout")]
93mod align_vertical_justify_start;
94#[cfg(feature = "layout")]
95mod align_vertical_space_around;
96#[cfg(feature = "layout")]
97mod align_vertical_space_between;
98#[cfg(any(feature = "medical", feature = "transportation"))]
99mod ambulance;
100#[cfg(any(feature = "text", feature = "development"))]
101mod ampersand;
102#[cfg(any(feature = "text", feature = "development"))]
103mod ampersands;
104#[cfg(any(feature = "food-beverage", feature = "gaming"))]
105mod amphora;
106#[cfg(any(feature = "transportation", feature = "text"))]
107mod anchor;
108#[cfg(feature = "emoji")]
109mod angry;
110#[cfg(feature = "emoji")]
111mod annoyed;
112#[cfg(any(feature = "devices", feature = "multimedia", feature = "communication"))]
113mod antenna;
114#[cfg(any(feature = "buildings", feature = "tools", feature = "gaming"))]
115mod anvil;
116#[cfg(feature = "photography")]
117mod aperture;
118#[cfg(any(
119    feature = "layout",
120    feature = "design",
121    feature = "development",
122    feature = "files"
123))]
124mod app_window;
125#[cfg(any(
126    feature = "layout",
127    feature = "design",
128    feature = "development",
129    feature = "files"
130))]
131mod app_window_mac;
132#[cfg(feature = "food-beverage")]
133mod apple;
134#[cfg(any(feature = "files", feature = "mail"))]
135mod archive;
136#[cfg(any(feature = "files", feature = "mail"))]
137mod archive_restore;
138#[cfg(any(feature = "files", feature = "mail"))]
139mod archive_x;
140#[cfg(feature = "home")]
141mod armchair;
142#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
143mod arrow_big_down;
144#[cfg(any(
145    feature = "arrows",
146    feature = "navigation",
147    feature = "gaming",
148    feature = "files"
149))]
150mod arrow_big_down_dash;
151#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
152mod arrow_big_left;
153#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
154mod arrow_big_left_dash;
155#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
156mod arrow_big_right;
157#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
158mod arrow_big_right_dash;
159#[cfg(any(
160    feature = "arrows",
161    feature = "navigation",
162    feature = "text",
163    feature = "development",
164    feature = "gaming"
165))]
166mod arrow_big_up;
167#[cfg(any(
168    feature = "arrows",
169    feature = "navigation",
170    feature = "text",
171    feature = "development",
172    feature = "gaming"
173))]
174mod arrow_big_up_dash;
175#[cfg(any(feature = "arrows", feature = "navigation"))]
176mod arrow_down;
177#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
178mod arrow_down_0_1;
179#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
180mod arrow_down_1_0;
181#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
182mod arrow_down_a_z;
183#[cfg(any(feature = "arrows", feature = "navigation", feature = "files"))]
184mod arrow_down_from_line;
185#[cfg(any(feature = "arrows", feature = "navigation"))]
186mod arrow_down_left;
187#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
188mod arrow_down_narrow_wide;
189#[cfg(any(feature = "arrows", feature = "navigation"))]
190mod arrow_down_right;
191#[cfg(any(feature = "arrows", feature = "navigation"))]
192mod arrow_down_to_dot;
193#[cfg(any(
194    feature = "arrows",
195    feature = "navigation",
196    feature = "files",
197    feature = "development"
198))]
199mod arrow_down_to_line;
200#[cfg(any(feature = "arrows", feature = "navigation"))]
201mod arrow_down_up;
202#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
203mod arrow_down_wide_narrow;
204#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
205mod arrow_down_z_a;
206#[cfg(any(feature = "arrows", feature = "navigation"))]
207mod arrow_left;
208#[cfg(any(feature = "arrows", feature = "navigation"))]
209mod arrow_left_from_line;
210#[cfg(any(feature = "arrows", feature = "navigation"))]
211mod arrow_left_right;
212#[cfg(any(feature = "arrows", feature = "navigation"))]
213mod arrow_left_to_line;
214#[cfg(any(feature = "arrows", feature = "navigation"))]
215mod arrow_right;
216#[cfg(any(feature = "arrows", feature = "navigation"))]
217mod arrow_right_from_line;
218#[cfg(any(feature = "arrows", feature = "navigation"))]
219mod arrow_right_left;
220#[cfg(any(feature = "arrows", feature = "navigation", feature = "development"))]
221mod arrow_right_to_line;
222#[cfg(any(feature = "arrows", feature = "navigation"))]
223mod arrow_up;
224#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
225mod arrow_up_0_1;
226#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
227mod arrow_up_1_0;
228#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
229mod arrow_up_a_z;
230#[cfg(any(feature = "arrows", feature = "navigation"))]
231mod arrow_up_down;
232#[cfg(any(feature = "arrows", feature = "navigation"))]
233mod arrow_up_from_dot;
234#[cfg(any(
235    feature = "arrows",
236    feature = "navigation",
237    feature = "files",
238    feature = "development"
239))]
240mod arrow_up_from_line;
241#[cfg(any(feature = "arrows", feature = "navigation"))]
242mod arrow_up_left;
243#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
244mod arrow_up_narrow_wide;
245#[cfg(any(feature = "arrows", feature = "navigation"))]
246mod arrow_up_right;
247#[cfg(any(feature = "arrows", feature = "navigation", feature = "files"))]
248mod arrow_up_to_line;
249#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
250mod arrow_up_wide_narrow;
251#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
252mod arrow_up_z_a;
253#[cfg(any(feature = "arrows", feature = "transportation", feature = "mail"))]
254mod arrows_up_from_line;
255#[cfg(any(feature = "text", feature = "math", feature = "development"))]
256mod asterisk;
257#[cfg(any(feature = "text", feature = "account"))]
258mod at_sign;
259#[cfg(feature = "science")]
260mod atom;
261#[cfg(any(feature = "multimedia", feature = "communication"))]
262mod audio_lines;
263#[cfg(any(feature = "multimedia", feature = "communication"))]
264mod audio_waveform;
265#[cfg(any(feature = "account", feature = "sports", feature = "gaming"))]
266mod award;
267#[cfg(any(feature = "tools", feature = "gaming"))]
268mod axe;
269#[cfg(feature = "design")]
270mod axis_3_d;
271#[cfg(any(feature = "accessibility", feature = "people"))]
272mod baby;
273#[cfg(any(feature = "gaming", feature = "photography", feature = "travel"))]
274mod backpack;
275#[cfg(any(feature = "account", feature = "social", feature = "shapes"))]
276mod badge;
277#[cfg(any(feature = "account", feature = "social"))]
278mod badge_alert;
279#[cfg(any(feature = "shopping", feature = "finance"))]
280mod badge_cent;
281#[cfg(feature = "social")]
282mod badge_check;
283#[cfg(any(feature = "shopping", feature = "finance"))]
284mod badge_dollar_sign;
285#[cfg(any(feature = "shopping", feature = "finance"))]
286mod badge_euro;
287#[cfg(any(feature = "shopping", feature = "finance"))]
288mod badge_indian_rupee;
289#[cfg(any(feature = "account", feature = "accessibility", feature = "social"))]
290mod badge_info;
291#[cfg(any(feature = "shopping", feature = "finance"))]
292mod badge_japanese_yen;
293#[cfg(feature = "social")]
294mod badge_minus;
295#[cfg(any(
296    feature = "social",
297    feature = "finance",
298    feature = "shopping",
299    feature = "math"
300))]
301mod badge_percent;
302#[cfg(feature = "social")]
303mod badge_plus;
304#[cfg(any(feature = "shopping", feature = "finance"))]
305mod badge_pound_sterling;
306#[cfg(any(feature = "accessibility", feature = "social", feature = "shapes"))]
307mod badge_question_mark;
308#[cfg(any(feature = "shopping", feature = "finance"))]
309mod badge_russian_ruble;
310#[cfg(any(feature = "shopping", feature = "finance"))]
311mod badge_swiss_franc;
312#[cfg(feature = "social")]
313mod badge_x;
314#[cfg(any(feature = "transportation", feature = "travel"))]
315mod baggage_claim;
316#[cfg(feature = "account")]
317mod ban;
318#[cfg(feature = "food-beverage")]
319mod banana;
320#[cfg(feature = "medical")]
321mod bandage;
322#[cfg(feature = "finance")]
323mod banknote;
324#[cfg(feature = "finance")]
325mod banknote_arrow_down;
326#[cfg(feature = "finance")]
327mod banknote_arrow_up;
328#[cfg(feature = "finance")]
329mod banknote_x;
330#[cfg(feature = "shopping")]
331mod barcode;
332#[cfg(any(feature = "food-beverage", feature = "navigation"))]
333mod barrel;
334#[cfg(feature = "text")]
335mod baseline;
336#[cfg(feature = "travel")]
337mod bath;
338#[cfg(any(feature = "connectivity", feature = "devices"))]
339mod battery;
340#[cfg(any(feature = "connectivity", feature = "devices"))]
341mod battery_charging;
342#[cfg(any(feature = "connectivity", feature = "devices"))]
343mod battery_full;
344#[cfg(any(feature = "connectivity", feature = "devices"))]
345mod battery_low;
346#[cfg(any(feature = "connectivity", feature = "devices"))]
347mod battery_medium;
348#[cfg(feature = "devices")]
349mod battery_plus;
350#[cfg(any(feature = "connectivity", feature = "devices"))]
351mod battery_warning;
352#[cfg(any(feature = "science", feature = "gaming"))]
353mod beaker;
354#[cfg(feature = "food-beverage")]
355mod bean;
356#[cfg(feature = "food-beverage")]
357mod bean_off;
358#[cfg(feature = "home")]
359mod bed;
360#[cfg(feature = "home")]
361mod bed_double;
362#[cfg(feature = "home")]
363mod bed_single;
364#[cfg(feature = "food-beverage")]
365mod beef;
366#[cfg(feature = "food-beverage")]
367mod beer;
368#[cfg(feature = "food-beverage")]
369mod beer_off;
370#[cfg(any(feature = "account", feature = "notifications"))]
371mod bell;
372#[cfg(any(feature = "account", feature = "notifications"))]
373mod bell_dot;
374#[cfg(any(feature = "devices", feature = "notifications", feature = "home"))]
375mod bell_electric;
376#[cfg(feature = "notifications")]
377mod bell_minus;
378#[cfg(feature = "notifications")]
379mod bell_off;
380#[cfg(feature = "notifications")]
381mod bell_plus;
382#[cfg(feature = "notifications")]
383mod bell_ring;
384#[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
385mod between_horizontal_end;
386#[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
387mod between_horizontal_start;
388#[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
389mod between_vertical_end;
390#[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
391mod between_vertical_start;
392#[cfg(feature = "emoji")]
393mod biceps_flexed;
394#[cfg(feature = "transportation")]
395mod bike;
396#[cfg(any(feature = "text", feature = "development"))]
397mod binary;
398#[cfg(any(
399    feature = "navigation",
400    feature = "nature",
401    feature = "photography",
402    feature = "science",
403    feature = "travel",
404    feature = "development"
405))]
406mod binoculars;
407#[cfg(feature = "science")]
408mod biohazard;
409#[cfg(feature = "animals")]
410mod bird;
411#[cfg(any(feature = "brands", feature = "development", feature = "finance"))]
412mod bitcoin;
413#[cfg(any(
414    feature = "design",
415    feature = "photography",
416    feature = "tools",
417    feature = "development"
418))]
419mod blend;
420#[cfg(feature = "home")]
421mod blinds;
422#[cfg(any(feature = "development", feature = "layout", feature = "shapes"))]
423mod blocks;
424#[cfg(any(feature = "connectivity", feature = "devices"))]
425mod bluetooth;
426#[cfg(any(feature = "connectivity", feature = "devices"))]
427mod bluetooth_connected;
428#[cfg(any(feature = "connectivity", feature = "devices"))]
429mod bluetooth_off;
430#[cfg(any(feature = "connectivity", feature = "devices"))]
431mod bluetooth_searching;
432#[cfg(feature = "text")]
433mod bold;
434#[cfg(any(feature = "tools", feature = "home"))]
435mod bolt;
436#[cfg(any(feature = "security", feature = "tools"))]
437mod bomb;
438#[cfg(any(feature = "animals", feature = "medical", feature = "gaming"))]
439mod bone;
440#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
441mod book;
442#[cfg(any(feature = "text", feature = "gaming"))]
443mod book_a;
444#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
445mod book_alert;
446#[cfg(any(feature = "multimedia", feature = "text"))]
447mod book_audio;
448#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
449mod book_check;
450#[cfg(any(feature = "development", feature = "text", feature = "gaming"))]
451mod book_copy;
452#[cfg(feature = "development")]
453mod book_dashed;
454#[cfg(feature = "development")]
455mod book_down;
456#[cfg(any(feature = "multimedia", feature = "text"))]
457mod book_headphones;
458#[cfg(any(feature = "social", feature = "text", feature = "gaming"))]
459mod book_heart;
460#[cfg(any(
461    feature = "photography",
462    feature = "text",
463    feature = "multimedia",
464    feature = "files",
465    feature = "social",
466    feature = "shopping",
467    feature = "travel"
468))]
469mod book_image;
470#[cfg(any(feature = "development", feature = "security", feature = "gaming"))]
471mod book_key;
472#[cfg(any(feature = "development", feature = "security", feature = "gaming"))]
473mod book_lock;
474#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
475mod book_marked;
476#[cfg(any(feature = "development", feature = "text", feature = "gaming"))]
477mod book_minus;
478#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
479mod book_open;
480#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
481mod book_open_check;
482#[cfg(any(feature = "text", feature = "development"))]
483mod book_open_text;
484#[cfg(any(feature = "development", feature = "text", feature = "gaming"))]
485mod book_plus;
486#[cfg(any(feature = "text", feature = "gaming"))]
487mod book_text;
488#[cfg(any(feature = "text", feature = "design", feature = "gaming"))]
489mod book_type;
490#[cfg(feature = "development")]
491mod book_up;
492#[cfg(feature = "development")]
493mod book_up_2;
494#[cfg(any(
495    feature = "account",
496    feature = "connectivity",
497    feature = "communication",
498    feature = "social"
499))]
500mod book_user;
501#[cfg(any(feature = "text", feature = "gaming"))]
502mod book_x;
503#[cfg(feature = "account")]
504mod bookmark;
505#[cfg(feature = "account")]
506mod bookmark_check;
507#[cfg(feature = "account")]
508mod bookmark_minus;
509#[cfg(feature = "account")]
510mod bookmark_plus;
511#[cfg(feature = "account")]
512mod bookmark_x;
513#[cfg(any(feature = "devices", feature = "multimedia", feature = "social"))]
514mod boom_box;
515#[cfg(any(feature = "development", feature = "social"))]
516mod bot;
517#[cfg(any(feature = "development", feature = "social"))]
518mod bot_message_square;
519#[cfg(any(feature = "development", feature = "social"))]
520mod bot_off;
521#[cfg(any(feature = "gaming", feature = "tools"))]
522mod bow_arrow;
523#[cfg(any(
524    feature = "shapes",
525    feature = "gaming",
526    feature = "development",
527    feature = "math"
528))]
529mod r#box;
530#[cfg(any(feature = "shapes", feature = "gaming", feature = "development"))]
531mod boxes;
532#[cfg(any(feature = "development", feature = "files"))]
533mod braces;
534#[cfg(any(feature = "development", feature = "files"))]
535mod brackets;
536#[cfg(any(feature = "medical", feature = "science"))]
537mod brain;
538#[cfg(any(feature = "science", feature = "development"))]
539mod brain_circuit;
540#[cfg(any(feature = "science", feature = "development"))]
541mod brain_cog;
542#[cfg(any(feature = "buildings", feature = "home"))]
543mod brick_wall;
544#[cfg(any(feature = "security", feature = "home", feature = "connectivity"))]
545mod brick_wall_fire;
546#[cfg(feature = "transportation")]
547mod briefcase;
548#[cfg(feature = "transportation")]
549mod briefcase_business;
550#[cfg(any(feature = "travel", feature = "transportation"))]
551mod briefcase_conveyor_belt;
552#[cfg(any(feature = "medical", feature = "transportation"))]
553mod briefcase_medical;
554#[cfg(any(feature = "design", feature = "layout"))]
555mod bring_to_front;
556#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
557mod brush;
558#[cfg(any(feature = "home", feature = "tools", feature = "design"))]
559mod brush_cleaning;
560#[cfg(feature = "weather")]
561mod bubbles;
562#[cfg(any(feature = "development", feature = "animals"))]
563mod bug;
564#[cfg(any(feature = "development", feature = "animals"))]
565mod bug_off;
566#[cfg(any(feature = "development", feature = "animals"))]
567mod bug_play;
568#[cfg(any(feature = "account", feature = "buildings"))]
569mod building;
570#[cfg(any(feature = "account", feature = "buildings"))]
571mod building_2;
572#[cfg(feature = "transportation")]
573mod bus;
574#[cfg(feature = "transportation")]
575mod bus_front;
576#[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
577mod cable;
578#[cfg(any(feature = "transportation", feature = "travel"))]
579mod cable_car;
580#[cfg(any(feature = "food-beverage", feature = "social", feature = "account"))]
581mod cake;
582#[cfg(any(feature = "food-beverage", feature = "social"))]
583mod cake_slice;
584#[cfg(any(feature = "math", feature = "devices"))]
585mod calculator;
586#[cfg(feature = "time")]
587mod calendar;
588#[cfg(feature = "time")]
589mod calendar_1;
590#[cfg(feature = "time")]
591mod calendar_arrow_down;
592#[cfg(feature = "time")]
593mod calendar_arrow_up;
594#[cfg(feature = "time")]
595mod calendar_check;
596#[cfg(feature = "time")]
597mod calendar_check_2;
598#[cfg(feature = "time")]
599mod calendar_clock;
600#[cfg(feature = "time")]
601mod calendar_cog;
602#[cfg(feature = "time")]
603mod calendar_days;
604#[cfg(any(feature = "time", feature = "files"))]
605mod calendar_fold;
606#[cfg(feature = "time")]
607mod calendar_heart;
608#[cfg(feature = "time")]
609mod calendar_minus;
610#[cfg(feature = "time")]
611mod calendar_minus_2;
612#[cfg(feature = "time")]
613mod calendar_off;
614#[cfg(feature = "time")]
615mod calendar_plus;
616#[cfg(feature = "time")]
617mod calendar_plus_2;
618#[cfg(feature = "time")]
619mod calendar_range;
620#[cfg(feature = "time")]
621mod calendar_search;
622#[cfg(any(feature = "arrows", feature = "time"))]
623mod calendar_sync;
624#[cfg(feature = "time")]
625mod calendar_x;
626#[cfg(feature = "time")]
627mod calendar_x_2;
628#[cfg(any(
629    feature = "photography",
630    feature = "devices",
631    feature = "communication"
632))]
633mod camera;
634#[cfg(any(
635    feature = "photography",
636    feature = "devices",
637    feature = "communication"
638))]
639mod camera_off;
640#[cfg(feature = "food-beverage")]
641mod candy;
642#[cfg(feature = "food-beverage")]
643mod candy_cane;
644#[cfg(feature = "food-beverage")]
645mod candy_off;
646#[cfg(feature = "nature")]
647mod cannabis;
648#[cfg(feature = "multimedia")]
649mod captions;
650#[cfg(feature = "multimedia")]
651mod captions_off;
652#[cfg(feature = "transportation")]
653mod car;
654#[cfg(feature = "transportation")]
655mod car_front;
656#[cfg(feature = "transportation")]
657mod car_taxi_front;
658#[cfg(any(feature = "transportation", feature = "travel", feature = "nature"))]
659mod caravan;
660#[cfg(any(
661    feature = "connectivity",
662    feature = "communication",
663    feature = "multimedia",
664    feature = "devices"
665))]
666mod card_sim;
667#[cfg(feature = "food-beverage")]
668mod carrot;
669#[cfg(feature = "text")]
670mod case_lower;
671#[cfg(feature = "text")]
672mod case_sensitive;
673#[cfg(feature = "text")]
674mod case_upper;
675#[cfg(any(
676    feature = "connectivity",
677    feature = "devices",
678    feature = "multimedia",
679    feature = "communication",
680    feature = "files"
681))]
682mod cassette_tape;
683#[cfg(any(feature = "devices", feature = "connectivity"))]
684mod cast;
685#[cfg(any(feature = "buildings", feature = "gaming"))]
686mod castle;
687#[cfg(feature = "animals")]
688mod cat;
689#[cfg(any(
690    feature = "security",
691    feature = "devices",
692    feature = "communication",
693    feature = "connectivity",
694    feature = "photography"
695))]
696mod cctv;
697#[cfg(feature = "charts")]
698mod chart_area;
699#[cfg(feature = "charts")]
700mod chart_bar;
701#[cfg(feature = "charts")]
702mod chart_bar_big;
703#[cfg(feature = "charts")]
704mod chart_bar_decreasing;
705#[cfg(feature = "charts")]
706mod chart_bar_increasing;
707#[cfg(feature = "charts")]
708mod chart_bar_stacked;
709#[cfg(any(feature = "charts", feature = "finance"))]
710mod chart_candlestick;
711#[cfg(feature = "charts")]
712mod chart_column;
713#[cfg(feature = "charts")]
714mod chart_column_big;
715#[cfg(feature = "charts")]
716mod chart_column_decreasing;
717#[cfg(feature = "charts")]
718mod chart_column_increasing;
719#[cfg(feature = "charts")]
720mod chart_column_stacked;
721#[cfg(feature = "charts")]
722mod chart_gantt;
723#[cfg(feature = "charts")]
724mod chart_line;
725#[cfg(feature = "charts")]
726mod chart_network;
727#[cfg(feature = "charts")]
728mod chart_no_axes_column;
729#[cfg(feature = "charts")]
730mod chart_no_axes_column_decreasing;
731#[cfg(feature = "charts")]
732mod chart_no_axes_column_increasing;
733#[cfg(feature = "charts")]
734mod chart_no_axes_combined;
735#[cfg(any(
736    feature = "charts",
737    feature = "time",
738    feature = "development",
739    feature = "design"
740))]
741mod chart_no_axes_gantt;
742#[cfg(any(feature = "charts", feature = "files"))]
743mod chart_pie;
744#[cfg(feature = "charts")]
745mod chart_scatter;
746#[cfg(feature = "charts")]
747mod chart_spline;
748#[cfg(feature = "notifications")]
749mod check;
750#[cfg(feature = "notifications")]
751mod check_check;
752#[cfg(feature = "notifications")]
753mod check_line;
754#[cfg(feature = "food-beverage")]
755mod chef_hat;
756#[cfg(feature = "food-beverage")]
757mod cherry;
758#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
759mod chevron_down;
760#[cfg(any(feature = "arrows", feature = "multimedia"))]
761mod chevron_first;
762#[cfg(any(feature = "arrows", feature = "multimedia"))]
763mod chevron_last;
764#[cfg(any(feature = "arrows", feature = "navigation"))]
765mod chevron_left;
766#[cfg(any(
767    feature = "arrows",
768    feature = "navigation",
769    feature = "math",
770    feature = "development"
771))]
772mod chevron_right;
773#[cfg(any(
774    feature = "arrows",
775    feature = "navigation",
776    feature = "math",
777    feature = "gaming"
778))]
779mod chevron_up;
780#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
781mod chevrons_down;
782#[cfg(feature = "arrows")]
783mod chevrons_down_up;
784#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
785mod chevrons_left;
786#[cfg(feature = "arrows")]
787mod chevrons_left_right;
788#[cfg(any(
789    feature = "communication",
790    feature = "devices",
791    feature = "multimedia",
792    feature = "gaming"
793))]
794mod chevrons_left_right_ellipsis;
795#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
796mod chevrons_right;
797#[cfg(feature = "arrows")]
798mod chevrons_right_left;
799#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
800mod chevrons_up;
801#[cfg(feature = "arrows")]
802mod chevrons_up_down;
803#[cfg(feature = "brands")]
804mod chrome;
805#[cfg(any(feature = "buildings", feature = "navigation"))]
806mod church;
807#[cfg(any(feature = "travel", feature = "transportation", feature = "medical"))]
808mod cigarette;
809#[cfg(any(feature = "travel", feature = "transportation", feature = "medical"))]
810mod cigarette_off;
811#[cfg(feature = "shapes")]
812mod circle;
813#[cfg(feature = "notifications")]
814mod circle_alert;
815#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
816mod circle_arrow_down;
817#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
818mod circle_arrow_left;
819#[cfg(any(feature = "arrows", feature = "navigation"))]
820mod circle_arrow_out_down_left;
821#[cfg(any(feature = "arrows", feature = "navigation"))]
822mod circle_arrow_out_down_right;
823#[cfg(any(feature = "arrows", feature = "navigation", feature = "development"))]
824mod circle_arrow_out_up_left;
825#[cfg(any(feature = "arrows", feature = "navigation"))]
826mod circle_arrow_out_up_right;
827#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
828mod circle_arrow_right;
829#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
830mod circle_arrow_up;
831#[cfg(feature = "notifications")]
832mod circle_check;
833#[cfg(feature = "notifications")]
834mod circle_check_big;
835#[cfg(any(feature = "arrows", feature = "navigation"))]
836mod circle_chevron_down;
837#[cfg(any(feature = "arrows", feature = "navigation"))]
838mod circle_chevron_left;
839#[cfg(any(feature = "arrows", feature = "navigation"))]
840mod circle_chevron_right;
841#[cfg(any(feature = "arrows", feature = "navigation"))]
842mod circle_chevron_up;
843#[cfg(any(feature = "development", feature = "shapes"))]
844mod circle_dashed;
845#[cfg(feature = "math")]
846mod circle_divide;
847#[cfg(feature = "finance")]
848mod circle_dollar_sign;
849#[cfg(any(feature = "development", feature = "shapes"))]
850mod circle_dot;
851#[cfg(any(feature = "development", feature = "shapes"))]
852mod circle_dot_dashed;
853#[cfg(any(feature = "layout", feature = "development"))]
854mod circle_ellipsis;
855#[cfg(feature = "math")]
856mod circle_equal;
857#[cfg(any(feature = "arrows", feature = "development"))]
858mod circle_fading_arrow_up;
859#[cfg(any(feature = "communication", feature = "social"))]
860mod circle_fading_plus;
861#[cfg(any(feature = "transportation", feature = "sports", feature = "science"))]
862mod circle_gauge;
863#[cfg(feature = "math")]
864mod circle_minus;
865#[cfg(feature = "shapes")]
866mod circle_off;
867#[cfg(any(feature = "transportation", feature = "navigation"))]
868mod circle_parking;
869#[cfg(any(feature = "transportation", feature = "navigation"))]
870mod circle_parking_off;
871#[cfg(feature = "multimedia")]
872mod circle_pause;
873#[cfg(any(
874    feature = "social",
875    feature = "finance",
876    feature = "shopping",
877    feature = "math"
878))]
879mod circle_percent;
880#[cfg(feature = "multimedia")]
881mod circle_play;
882#[cfg(any(
883    feature = "math",
884    feature = "development",
885    feature = "cursors",
886    feature = "gaming"
887))]
888mod circle_plus;
889#[cfg(feature = "finance")]
890mod circle_pound_sterling;
891#[cfg(feature = "connectivity")]
892mod circle_power;
893#[cfg(any(feature = "accessibility", feature = "text", feature = "notifications"))]
894mod circle_question_mark;
895#[cfg(any(feature = "development", feature = "math"))]
896mod circle_slash;
897#[cfg(any(feature = "shapes", feature = "math", feature = "development"))]
898mod circle_slash_2;
899#[cfg(any(feature = "shapes", feature = "medical"))]
900mod circle_small;
901#[cfg(feature = "multimedia")]
902mod circle_stop;
903#[cfg(feature = "account")]
904mod circle_user;
905#[cfg(feature = "account")]
906mod circle_user_round;
907#[cfg(any(feature = "math", feature = "development"))]
908mod circle_x;
909#[cfg(any(feature = "science", feature = "development"))]
910mod circuit_board;
911#[cfg(feature = "food-beverage")]
912mod citrus;
913#[cfg(feature = "multimedia")]
914mod clapperboard;
915#[cfg(feature = "text")]
916mod clipboard;
917#[cfg(feature = "text")]
918mod clipboard_check;
919#[cfg(any(feature = "text", feature = "arrows"))]
920mod clipboard_copy;
921#[cfg(feature = "text")]
922mod clipboard_list;
923#[cfg(any(feature = "text", feature = "medical"))]
924mod clipboard_minus;
925#[cfg(any(feature = "text", feature = "arrows"))]
926mod clipboard_paste;
927#[cfg(feature = "text")]
928mod clipboard_pen;
929#[cfg(feature = "text")]
930mod clipboard_pen_line;
931#[cfg(any(feature = "text", feature = "medical"))]
932mod clipboard_plus;
933#[cfg(feature = "text")]
934mod clipboard_type;
935#[cfg(feature = "text")]
936mod clipboard_x;
937#[cfg(feature = "time")]
938mod clock;
939#[cfg(feature = "time")]
940mod clock_1;
941#[cfg(feature = "time")]
942mod clock_10;
943#[cfg(feature = "time")]
944mod clock_11;
945#[cfg(feature = "time")]
946mod clock_12;
947#[cfg(feature = "time")]
948mod clock_2;
949#[cfg(feature = "time")]
950mod clock_3;
951#[cfg(feature = "time")]
952mod clock_4;
953#[cfg(feature = "time")]
954mod clock_5;
955#[cfg(feature = "time")]
956mod clock_6;
957#[cfg(feature = "time")]
958mod clock_7;
959#[cfg(feature = "time")]
960mod clock_8;
961#[cfg(feature = "time")]
962mod clock_9;
963#[cfg(feature = "time")]
964mod clock_alert;
965#[cfg(feature = "time")]
966mod clock_arrow_down;
967#[cfg(feature = "time")]
968mod clock_arrow_up;
969#[cfg(feature = "time")]
970mod clock_fading;
971#[cfg(feature = "time")]
972mod clock_plus;
973#[cfg(feature = "weather")]
974mod cloud;
975#[cfg(feature = "development")]
976mod cloud_alert;
977#[cfg(feature = "development")]
978mod cloud_check;
979#[cfg(feature = "development")]
980mod cloud_cog;
981#[cfg(any(feature = "arrows", feature = "files"))]
982mod cloud_download;
983#[cfg(feature = "weather")]
984mod cloud_drizzle;
985#[cfg(feature = "weather")]
986mod cloud_fog;
987#[cfg(feature = "weather")]
988mod cloud_hail;
989#[cfg(feature = "weather")]
990mod cloud_lightning;
991#[cfg(feature = "weather")]
992mod cloud_moon;
993#[cfg(feature = "weather")]
994mod cloud_moon_rain;
995#[cfg(any(feature = "connectivity", feature = "weather"))]
996mod cloud_off;
997#[cfg(feature = "weather")]
998mod cloud_rain;
999#[cfg(feature = "weather")]
1000mod cloud_rain_wind;
1001#[cfg(feature = "weather")]
1002mod cloud_snow;
1003#[cfg(feature = "weather")]
1004mod cloud_sun;
1005#[cfg(feature = "weather")]
1006mod cloud_sun_rain;
1007#[cfg(any(feature = "arrows", feature = "files"))]
1008mod cloud_upload;
1009#[cfg(feature = "weather")]
1010mod cloudy;
1011#[cfg(feature = "gaming")]
1012mod clover;
1013#[cfg(any(feature = "shapes", feature = "gaming"))]
1014mod club;
1015#[cfg(any(feature = "text", feature = "development"))]
1016mod code;
1017#[cfg(any(feature = "text", feature = "development"))]
1018mod code_xml;
1019#[cfg(any(feature = "brands", feature = "development"))]
1020mod codepen;
1021#[cfg(any(feature = "brands", feature = "development"))]
1022mod codesandbox;
1023#[cfg(feature = "food-beverage")]
1024mod coffee;
1025#[cfg(feature = "account")]
1026mod cog;
1027#[cfg(feature = "gaming")]
1028mod coins;
1029#[cfg(any(feature = "layout", feature = "design", feature = "text"))]
1030mod columns_2;
1031#[cfg(any(feature = "layout", feature = "design", feature = "text"))]
1032mod columns_3;
1033#[cfg(any(feature = "layout", feature = "design"))]
1034mod columns_3_cog;
1035#[cfg(any(
1036    feature = "layout",
1037    feature = "design",
1038    feature = "text",
1039    feature = "security"
1040))]
1041mod columns_4;
1042#[cfg(any(feature = "development", feature = "files"))]
1043mod combine;
1044#[cfg(feature = "development")]
1045mod command;
1046#[cfg(any(feature = "navigation", feature = "travel"))]
1047mod compass;
1048#[cfg(any(feature = "design", feature = "development"))]
1049mod component;
1050#[cfg(any(feature = "devices", feature = "development", feature = "gaming"))]
1051mod computer;
1052#[cfg(feature = "travel")]
1053mod concierge_bell;
1054#[cfg(any(feature = "shapes", feature = "math"))]
1055mod cone;
1056#[cfg(feature = "development")]
1057mod construction;
1058#[cfg(any(
1059    feature = "account",
1060    feature = "connectivity",
1061    feature = "communication",
1062    feature = "social"
1063))]
1064mod contact;
1065#[cfg(any(
1066    feature = "account",
1067    feature = "connectivity",
1068    feature = "communication",
1069    feature = "social"
1070))]
1071mod contact_round;
1072#[cfg(any(feature = "development", feature = "transportation", feature = "mail"))]
1073mod container;
1074#[cfg(any(feature = "photography", feature = "accessibility", feature = "design"))]
1075mod contrast;
1076#[cfg(any(feature = "account", feature = "food-beverage"))]
1077mod cookie;
1078#[cfg(any(feature = "food-beverage", feature = "home"))]
1079mod cooking_pot;
1080#[cfg(feature = "text")]
1081mod copy;
1082#[cfg(any(feature = "text", feature = "notifications"))]
1083mod copy_check;
1084#[cfg(any(feature = "text", feature = "math"))]
1085mod copy_minus;
1086#[cfg(any(feature = "text", feature = "math"))]
1087mod copy_plus;
1088#[cfg(any(feature = "text", feature = "development", feature = "math"))]
1089mod copy_slash;
1090#[cfg(any(feature = "notifications", feature = "math"))]
1091mod copy_x;
1092#[cfg(feature = "text")]
1093mod copyleft;
1094#[cfg(feature = "text")]
1095mod copyright;
1096#[cfg(feature = "arrows")]
1097mod corner_down_left;
1098#[cfg(any(feature = "arrows", feature = "text", feature = "development"))]
1099mod corner_down_right;
1100#[cfg(feature = "arrows")]
1101mod corner_left_down;
1102#[cfg(feature = "arrows")]
1103mod corner_left_up;
1104#[cfg(feature = "arrows")]
1105mod corner_right_down;
1106#[cfg(feature = "arrows")]
1107mod corner_right_up;
1108#[cfg(feature = "arrows")]
1109mod corner_up_left;
1110#[cfg(feature = "arrows")]
1111mod corner_up_right;
1112#[cfg(feature = "devices")]
1113mod cpu;
1114#[cfg(feature = "text")]
1115mod creative_commons;
1116#[cfg(any(feature = "account", feature = "finance"))]
1117mod credit_card;
1118#[cfg(feature = "food-beverage")]
1119mod croissant;
1120#[cfg(any(feature = "photography", feature = "design"))]
1121mod crop;
1122#[cfg(feature = "shapes")]
1123mod cross;
1124#[cfg(feature = "photography")]
1125mod crosshair;
1126#[cfg(feature = "gaming")]
1127mod crown;
1128#[cfg(any(feature = "shapes", feature = "math", feature = "buildings"))]
1129mod cuboid;
1130#[cfg(feature = "food-beverage")]
1131mod cup_soda;
1132#[cfg(feature = "finance")]
1133mod currency;
1134#[cfg(any(feature = "shapes", feature = "design", feature = "math"))]
1135mod cylinder;
1136#[cfg(any(feature = "buildings", feature = "sustainability"))]
1137mod dam;
1138#[cfg(any(feature = "devices", feature = "development"))]
1139mod database;
1140#[cfg(any(
1141    feature = "devices",
1142    feature = "arrows",
1143    feature = "design",
1144    feature = "development",
1145    feature = "photography"
1146))]
1147mod database_backup;
1148#[cfg(any(feature = "devices", feature = "development"))]
1149mod database_zap;
1150#[cfg(any(
1151    feature = "design",
1152    feature = "text",
1153    feature = "arrows",
1154    feature = "math"
1155))]
1156mod decimals_arrow_left;
1157#[cfg(any(
1158    feature = "design",
1159    feature = "text",
1160    feature = "arrows",
1161    feature = "math"
1162))]
1163mod decimals_arrow_right;
1164#[cfg(any(feature = "text", feature = "arrows"))]
1165mod delete;
1166#[cfg(feature = "food-beverage")]
1167mod dessert;
1168#[cfg(any(
1169    feature = "shapes",
1170    feature = "math",
1171    feature = "design",
1172    feature = "tools"
1173))]
1174mod diameter;
1175#[cfg(any(feature = "shapes", feature = "gaming"))]
1176mod diamond;
1177#[cfg(any(
1178    feature = "multimedia",
1179    feature = "photography",
1180    feature = "tools",
1181    feature = "devices"
1182))]
1183mod diamond_minus;
1184#[cfg(any(
1185    feature = "social",
1186    feature = "finance",
1187    feature = "shopping",
1188    feature = "math"
1189))]
1190mod diamond_percent;
1191#[cfg(any(
1192    feature = "multimedia",
1193    feature = "photography",
1194    feature = "tools",
1195    feature = "devices"
1196))]
1197mod diamond_plus;
1198#[cfg(feature = "gaming")]
1199mod dice_1;
1200#[cfg(feature = "gaming")]
1201mod dice_2;
1202#[cfg(feature = "gaming")]
1203mod dice_3;
1204#[cfg(feature = "gaming")]
1205mod dice_4;
1206#[cfg(feature = "gaming")]
1207mod dice_5;
1208#[cfg(feature = "gaming")]
1209mod dice_6;
1210#[cfg(feature = "gaming")]
1211mod dices;
1212#[cfg(any(feature = "development", feature = "files"))]
1213mod diff;
1214#[cfg(any(feature = "devices", feature = "multimedia"))]
1215mod disc;
1216#[cfg(any(feature = "devices", feature = "multimedia"))]
1217mod disc_2;
1218#[cfg(any(feature = "devices", feature = "multimedia"))]
1219mod disc_3;
1220#[cfg(any(feature = "devices", feature = "multimedia"))]
1221mod disc_album;
1222#[cfg(any(feature = "math", feature = "development"))]
1223mod divide;
1224#[cfg(feature = "medical")]
1225mod dna;
1226#[cfg(any(feature = "medical", feature = "food-beverage"))]
1227mod dna_off;
1228#[cfg(any(
1229    feature = "layout",
1230    feature = "design",
1231    feature = "development",
1232    feature = "files"
1233))]
1234mod dock;
1235#[cfg(feature = "animals")]
1236mod dog;
1237#[cfg(feature = "finance")]
1238mod dollar_sign;
1239#[cfg(feature = "food-beverage")]
1240mod donut;
1241#[cfg(any(feature = "home", feature = "travel", feature = "security"))]
1242mod door_closed;
1243#[cfg(any(feature = "home", feature = "travel", feature = "security"))]
1244mod door_closed_locked;
1245#[cfg(any(feature = "home", feature = "travel", feature = "security"))]
1246mod door_open;
1247#[cfg(any(feature = "shapes", feature = "text"))]
1248mod dot;
1249#[cfg(any(feature = "arrows", feature = "files"))]
1250mod download;
1251#[cfg(any(feature = "math", feature = "design", feature = "tools"))]
1252mod drafting_compass;
1253#[cfg(feature = "multimedia")]
1254mod drama;
1255#[cfg(any(feature = "brands", feature = "social", feature = "design"))]
1256mod dribbble;
1257#[cfg(any(feature = "tools", feature = "home", feature = "devices"))]
1258mod drill;
1259#[cfg(any(feature = "transportation", feature = "devices"))]
1260mod drone;
1261#[cfg(any(feature = "weather", feature = "gaming"))]
1262mod droplet;
1263#[cfg(any(feature = "weather", feature = "gaming"))]
1264mod droplet_off;
1265#[cfg(feature = "weather")]
1266mod droplets;
1267#[cfg(any(feature = "multimedia", feature = "devices"))]
1268mod drum;
1269#[cfg(feature = "food-beverage")]
1270mod drumstick;
1271#[cfg(any(feature = "navigation", feature = "sports"))]
1272mod dumbbell;
1273#[cfg(any(feature = "medical", feature = "accessibility"))]
1274mod ear;
1275#[cfg(any(feature = "medical", feature = "accessibility"))]
1276mod ear_off;
1277#[cfg(feature = "navigation")]
1278mod earth;
1279#[cfg(any(feature = "security", feature = "development", feature = "devices"))]
1280mod earth_lock;
1281#[cfg(any(
1282    feature = "science",
1283    feature = "design",
1284    feature = "development",
1285    feature = "accessibility",
1286    feature = "photography"
1287))]
1288mod eclipse;
1289#[cfg(any(feature = "food-beverage", feature = "animals"))]
1290mod egg;
1291#[cfg(feature = "food-beverage")]
1292mod egg_fried;
1293#[cfg(feature = "food-beverage")]
1294mod egg_off;
1295#[cfg(any(feature = "layout", feature = "development"))]
1296mod ellipsis;
1297#[cfg(feature = "layout")]
1298mod ellipsis_vertical;
1299#[cfg(any(feature = "math", feature = "development"))]
1300mod equal;
1301#[cfg(feature = "math")]
1302mod equal_approximately;
1303#[cfg(any(feature = "math", feature = "development"))]
1304mod equal_not;
1305#[cfg(feature = "text")]
1306mod eraser;
1307#[cfg(any(
1308    feature = "communication",
1309    feature = "devices",
1310    feature = "multimedia",
1311    feature = "gaming"
1312))]
1313mod ethernet_port;
1314#[cfg(feature = "finance")]
1315mod euro;
1316#[cfg(any(feature = "text", feature = "arrows"))]
1317mod expand;
1318#[cfg(any(feature = "arrows", feature = "text", feature = "social"))]
1319mod external_link;
1320#[cfg(any(
1321    feature = "accessibility",
1322    feature = "photography",
1323    feature = "design",
1324    feature = "security"
1325))]
1326mod eye;
1327#[cfg(any(
1328    feature = "accessibility",
1329    feature = "photography",
1330    feature = "design",
1331    feature = "security"
1332))]
1333mod eye_closed;
1334#[cfg(any(
1335    feature = "accessibility",
1336    feature = "photography",
1337    feature = "design",
1338    feature = "security"
1339))]
1340mod eye_off;
1341#[cfg(any(feature = "social", feature = "brands"))]
1342mod facebook;
1343#[cfg(feature = "buildings")]
1344mod factory;
1345#[cfg(feature = "home")]
1346mod fan;
1347#[cfg(any(feature = "multimedia", feature = "arrows"))]
1348mod fast_forward;
1349#[cfg(feature = "gaming")]
1350mod feather;
1351#[cfg(any(feature = "home", feature = "buildings"))]
1352mod fence;
1353#[cfg(feature = "navigation")]
1354mod ferris_wheel;
1355#[cfg(any(feature = "brands", feature = "design"))]
1356mod figma;
1357#[cfg(feature = "files")]
1358mod file;
1359#[cfg(feature = "files")]
1360mod file_archive;
1361#[cfg(feature = "files")]
1362mod file_audio;
1363#[cfg(feature = "files")]
1364mod file_audio_2;
1365#[cfg(any(feature = "design", feature = "files"))]
1366mod file_axis_3_d;
1367#[cfg(feature = "files")]
1368mod file_badge;
1369#[cfg(feature = "files")]
1370mod file_badge_2;
1371#[cfg(feature = "files")]
1372mod file_box;
1373#[cfg(feature = "files")]
1374mod file_chart_column;
1375#[cfg(feature = "files")]
1376mod file_chart_column_increasing;
1377#[cfg(feature = "files")]
1378mod file_chart_line;
1379#[cfg(feature = "files")]
1380mod file_chart_pie;
1381#[cfg(feature = "files")]
1382mod file_check;
1383#[cfg(feature = "files")]
1384mod file_check_2;
1385#[cfg(any(feature = "files", feature = "time"))]
1386mod file_clock;
1387#[cfg(any(feature = "files", feature = "development"))]
1388mod file_code;
1389#[cfg(any(feature = "files", feature = "development"))]
1390mod file_code_2;
1391#[cfg(feature = "files")]
1392mod file_cog;
1393#[cfg(any(feature = "files", feature = "development"))]
1394mod file_diff;
1395#[cfg(any(feature = "files", feature = "development"))]
1396mod file_digit;
1397#[cfg(any(feature = "files", feature = "arrows"))]
1398mod file_down;
1399#[cfg(feature = "files")]
1400mod file_heart;
1401#[cfg(feature = "files")]
1402mod file_image;
1403#[cfg(any(feature = "files", feature = "arrows"))]
1404mod file_input;
1405#[cfg(any(feature = "files", feature = "development"))]
1406mod file_json;
1407#[cfg(any(feature = "files", feature = "development"))]
1408mod file_json_2;
1409#[cfg(any(feature = "files", feature = "security"))]
1410mod file_key;
1411#[cfg(any(feature = "files", feature = "security"))]
1412mod file_key_2;
1413#[cfg(any(feature = "files", feature = "security"))]
1414mod file_lock;
1415#[cfg(any(feature = "files", feature = "security"))]
1416mod file_lock_2;
1417#[cfg(feature = "files")]
1418mod file_minus;
1419#[cfg(feature = "files")]
1420mod file_minus_2;
1421#[cfg(any(feature = "files", feature = "multimedia"))]
1422mod file_music;
1423#[cfg(any(feature = "files", feature = "arrows"))]
1424mod file_output;
1425#[cfg(feature = "files")]
1426mod file_pen;
1427#[cfg(feature = "files")]
1428mod file_pen_line;
1429#[cfg(feature = "files")]
1430mod file_plus;
1431#[cfg(feature = "files")]
1432mod file_plus_2;
1433#[cfg(feature = "files")]
1434mod file_question_mark;
1435#[cfg(feature = "files")]
1436mod file_scan;
1437#[cfg(feature = "files")]
1438mod file_search;
1439#[cfg(feature = "files")]
1440mod file_search_2;
1441#[cfg(any(feature = "files", feature = "development"))]
1442mod file_sliders;
1443#[cfg(feature = "files")]
1444mod file_spreadsheet;
1445#[cfg(any(feature = "files", feature = "development"))]
1446mod file_stack;
1447#[cfg(feature = "files")]
1448mod file_symlink;
1449#[cfg(any(feature = "files", feature = "development"))]
1450mod file_terminal;
1451#[cfg(any(feature = "files", feature = "text"))]
1452mod file_text;
1453#[cfg(any(feature = "files", feature = "text"))]
1454mod file_type;
1455#[cfg(any(feature = "files", feature = "text"))]
1456mod file_type_2;
1457#[cfg(any(feature = "files", feature = "arrows"))]
1458mod file_up;
1459#[cfg(any(feature = "account", feature = "files"))]
1460mod file_user;
1461#[cfg(feature = "files")]
1462mod file_video;
1463#[cfg(feature = "files")]
1464mod file_video_2;
1465#[cfg(feature = "files")]
1466mod file_volume;
1467#[cfg(feature = "files")]
1468mod file_volume_2;
1469#[cfg(any(feature = "files", feature = "notifications"))]
1470mod file_warning;
1471#[cfg(feature = "files")]
1472mod file_x;
1473#[cfg(feature = "files")]
1474mod file_x_2;
1475#[cfg(feature = "files")]
1476mod files;
1477#[cfg(any(feature = "photography", feature = "multimedia"))]
1478mod film;
1479#[cfg(any(
1480    feature = "account",
1481    feature = "security",
1482    feature = "medical",
1483    feature = "devices"
1484))]
1485mod fingerprint;
1486#[cfg(any(feature = "home", feature = "tools", feature = "travel"))]
1487mod fire_extinguisher;
1488#[cfg(any(feature = "food-beverage", feature = "animals"))]
1489mod fish;
1490#[cfg(any(feature = "food-beverage", feature = "animals"))]
1491mod fish_off;
1492#[cfg(any(feature = "food-beverage", feature = "animals"))]
1493mod fish_symbol;
1494#[cfg(any(feature = "account", feature = "social"))]
1495mod flag;
1496#[cfg(any(feature = "account", feature = "social"))]
1497mod flag_off;
1498#[cfg(feature = "development")]
1499mod flag_triangle_left;
1500#[cfg(feature = "development")]
1501mod flag_triangle_right;
1502#[cfg(any(feature = "weather", feature = "social", feature = "gaming"))]
1503mod flame;
1504#[cfg(any(feature = "nature", feature = "social", feature = "gaming"))]
1505mod flame_kindling;
1506#[cfg(any(feature = "photography", feature = "devices"))]
1507mod flashlight;
1508#[cfg(any(feature = "photography", feature = "devices"))]
1509mod flashlight_off;
1510#[cfg(any(feature = "science", feature = "gaming"))]
1511mod flask_conical;
1512#[cfg(any(feature = "science", feature = "gaming"))]
1513mod flask_conical_off;
1514#[cfg(any(feature = "science", feature = "gaming"))]
1515mod flask_round;
1516#[cfg(any(feature = "design", feature = "photography"))]
1517mod flip_horizontal;
1518#[cfg(any(feature = "design", feature = "photography"))]
1519mod flip_horizontal_2;
1520#[cfg(any(feature = "design", feature = "photography"))]
1521mod flip_vertical;
1522#[cfg(any(feature = "design", feature = "photography"))]
1523mod flip_vertical_2;
1524#[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
1525mod flower;
1526#[cfg(any(feature = "nature", feature = "sustainability", feature = "seasons"))]
1527mod flower_2;
1528#[cfg(feature = "photography")]
1529mod focus;
1530#[cfg(any(feature = "arrows", feature = "layout"))]
1531mod fold_horizontal;
1532#[cfg(any(feature = "arrows", feature = "layout"))]
1533mod fold_vertical;
1534#[cfg(feature = "files")]
1535mod folder;
1536#[cfg(feature = "files")]
1537mod folder_archive;
1538#[cfg(feature = "files")]
1539mod folder_check;
1540#[cfg(any(feature = "files", feature = "time"))]
1541mod folder_clock;
1542#[cfg(feature = "files")]
1543mod folder_closed;
1544#[cfg(any(feature = "files", feature = "development"))]
1545mod folder_code;
1546#[cfg(feature = "files")]
1547mod folder_cog;
1548#[cfg(any(feature = "files", feature = "development"))]
1549mod folder_dot;
1550#[cfg(any(feature = "files", feature = "arrows"))]
1551mod folder_down;
1552#[cfg(feature = "files")]
1553mod folder_git;
1554#[cfg(feature = "files")]
1555mod folder_git_2;
1556#[cfg(feature = "files")]
1557mod folder_heart;
1558#[cfg(any(feature = "files", feature = "arrows"))]
1559mod folder_input;
1560#[cfg(any(
1561    feature = "charts",
1562    feature = "development",
1563    feature = "design",
1564    feature = "files"
1565))]
1566mod folder_kanban;
1567#[cfg(any(feature = "files", feature = "security"))]
1568mod folder_key;
1569#[cfg(any(feature = "files", feature = "security"))]
1570mod folder_lock;
1571#[cfg(feature = "files")]
1572mod folder_minus;
1573#[cfg(feature = "files")]
1574mod folder_open;
1575#[cfg(any(feature = "files", feature = "development"))]
1576mod folder_open_dot;
1577#[cfg(any(feature = "files", feature = "arrows"))]
1578mod folder_output;
1579#[cfg(feature = "files")]
1580mod folder_pen;
1581#[cfg(feature = "files")]
1582mod folder_plus;
1583#[cfg(any(feature = "files", feature = "development"))]
1584mod folder_root;
1585#[cfg(feature = "files")]
1586mod folder_search;
1587#[cfg(feature = "files")]
1588mod folder_search_2;
1589#[cfg(feature = "files")]
1590mod folder_symlink;
1591#[cfg(any(feature = "files", feature = "arrows"))]
1592mod folder_sync;
1593#[cfg(feature = "files")]
1594mod folder_tree;
1595#[cfg(any(feature = "files", feature = "arrows"))]
1596mod folder_up;
1597#[cfg(feature = "files")]
1598mod folder_x;
1599#[cfg(feature = "files")]
1600mod folders;
1601#[cfg(feature = "navigation")]
1602mod footprints;
1603#[cfg(feature = "transportation")]
1604mod forklift;
1605#[cfg(feature = "mail")]
1606mod forward;
1607#[cfg(any(feature = "design", feature = "photography"))]
1608mod frame;
1609#[cfg(any(feature = "brands", feature = "design"))]
1610mod framer;
1611#[cfg(any(feature = "emoji", feature = "account"))]
1612mod frown;
1613#[cfg(any(feature = "transportation", feature = "navigation"))]
1614mod fuel;
1615#[cfg(any(
1616    feature = "layout",
1617    feature = "multimedia",
1618    feature = "design",
1619    feature = "photography"
1620))]
1621mod fullscreen;
1622#[cfg(feature = "layout")]
1623mod funnel;
1624#[cfg(feature = "layout")]
1625mod funnel_plus;
1626#[cfg(feature = "layout")]
1627mod funnel_x;
1628#[cfg(any(
1629    feature = "layout",
1630    feature = "design",
1631    feature = "development",
1632    feature = "photography",
1633    feature = "multimedia"
1634))]
1635mod gallery_horizontal;
1636#[cfg(any(
1637    feature = "layout",
1638    feature = "design",
1639    feature = "development",
1640    feature = "photography",
1641    feature = "multimedia",
1642    feature = "files"
1643))]
1644mod gallery_horizontal_end;
1645#[cfg(any(
1646    feature = "layout",
1647    feature = "design",
1648    feature = "development",
1649    feature = "photography",
1650    feature = "multimedia"
1651))]
1652mod gallery_thumbnails;
1653#[cfg(any(
1654    feature = "layout",
1655    feature = "design",
1656    feature = "development",
1657    feature = "photography",
1658    feature = "multimedia"
1659))]
1660mod gallery_vertical;
1661#[cfg(any(
1662    feature = "layout",
1663    feature = "design",
1664    feature = "development",
1665    feature = "photography",
1666    feature = "multimedia",
1667    feature = "files"
1668))]
1669mod gallery_vertical_end;
1670#[cfg(any(feature = "gaming", feature = "devices"))]
1671mod gamepad;
1672#[cfg(any(feature = "gaming", feature = "devices"))]
1673mod gamepad_2;
1674#[cfg(any(feature = "transportation", feature = "sports", feature = "science"))]
1675mod gauge;
1676#[cfg(any(feature = "navigation", feature = "tools"))]
1677mod gavel;
1678#[cfg(any(feature = "gaming", feature = "development", feature = "finance"))]
1679mod gem;
1680#[cfg(feature = "finance")]
1681mod georgian_lari;
1682#[cfg(feature = "gaming")]
1683mod ghost;
1684#[cfg(any(feature = "gaming", feature = "account"))]
1685mod gift;
1686#[cfg(feature = "development")]
1687mod git_branch;
1688#[cfg(feature = "development")]
1689mod git_branch_plus;
1690#[cfg(any(feature = "development", feature = "navigation"))]
1691mod git_commit_horizontal;
1692#[cfg(any(feature = "development", feature = "navigation"))]
1693mod git_commit_vertical;
1694#[cfg(feature = "development")]
1695mod git_compare;
1696#[cfg(any(feature = "development", feature = "arrows"))]
1697mod git_compare_arrows;
1698#[cfg(feature = "development")]
1699mod git_fork;
1700#[cfg(feature = "development")]
1701mod git_graph;
1702#[cfg(feature = "development")]
1703mod git_merge;
1704#[cfg(feature = "development")]
1705mod git_pull_request;
1706#[cfg(any(feature = "development", feature = "arrows"))]
1707mod git_pull_request_arrow;
1708#[cfg(feature = "development")]
1709mod git_pull_request_closed;
1710#[cfg(feature = "development")]
1711mod git_pull_request_create;
1712#[cfg(any(feature = "development", feature = "arrows"))]
1713mod git_pull_request_create_arrow;
1714#[cfg(feature = "development")]
1715mod git_pull_request_draft;
1716#[cfg(any(feature = "brands", feature = "development"))]
1717mod github;
1718#[cfg(any(feature = "brands", feature = "development"))]
1719mod gitlab;
1720#[cfg(feature = "food-beverage")]
1721mod glass_water;
1722#[cfg(feature = "accessibility")]
1723mod glasses;
1724#[cfg(feature = "navigation")]
1725mod globe;
1726#[cfg(any(feature = "security", feature = "development", feature = "devices"))]
1727mod globe_lock;
1728#[cfg(feature = "gaming")]
1729mod goal;
1730#[cfg(any(feature = "devices", feature = "gaming"))]
1731mod gpu;
1732#[cfg(any(feature = "cursors", feature = "design", feature = "layout"))]
1733mod grab;
1734#[cfg(feature = "buildings")]
1735mod graduation_cap;
1736#[cfg(feature = "food-beverage")]
1737mod grape;
1738#[cfg(any(
1739    feature = "text",
1740    feature = "layout",
1741    feature = "design",
1742    feature = "math"
1743))]
1744mod grid_2_x_2;
1745#[cfg(any(feature = "text", feature = "layout", feature = "math"))]
1746mod grid_2_x_2_check;
1747#[cfg(any(feature = "text", feature = "layout", feature = "math"))]
1748mod grid_2_x_2_plus;
1749#[cfg(any(feature = "text", feature = "layout", feature = "math"))]
1750mod grid_2_x_2_x;
1751#[cfg(any(
1752    feature = "text",
1753    feature = "math",
1754    feature = "layout",
1755    feature = "design"
1756))]
1757mod grid_3_x_2;
1758#[cfg(any(feature = "text", feature = "layout", feature = "design"))]
1759mod grid_3_x_3;
1760#[cfg(feature = "layout")]
1761mod grip;
1762#[cfg(feature = "layout")]
1763mod grip_horizontal;
1764#[cfg(feature = "layout")]
1765mod grip_vertical;
1766#[cfg(feature = "files")]
1767mod group;
1768#[cfg(feature = "multimedia")]
1769mod guitar;
1770#[cfg(feature = "food-beverage")]
1771mod ham;
1772#[cfg(feature = "food-beverage")]
1773mod hamburger;
1774#[cfg(any(feature = "tools", feature = "home"))]
1775mod hammer;
1776#[cfg(any(feature = "cursors", feature = "accessibility"))]
1777mod hand;
1778#[cfg(any(feature = "finance", feature = "account"))]
1779mod hand_coins;
1780#[cfg(feature = "social")]
1781mod hand_heart;
1782#[cfg(feature = "emoji")]
1783mod hand_helping;
1784#[cfg(any(feature = "emoji", feature = "multimedia"))]
1785mod hand_metal;
1786#[cfg(any(feature = "food-beverage", feature = "people"))]
1787mod hand_platter;
1788#[cfg(any(
1789    feature = "account",
1790    feature = "social",
1791    feature = "communication",
1792    feature = "finance",
1793    feature = "security"
1794))]
1795mod handshake;
1796#[cfg(any(feature = "development", feature = "devices"))]
1797mod hard_drive;
1798#[cfg(any(
1799    feature = "development",
1800    feature = "devices",
1801    feature = "arrows",
1802    feature = "files"
1803))]
1804mod hard_drive_download;
1805#[cfg(any(
1806    feature = "development",
1807    feature = "devices",
1808    feature = "arrows",
1809    feature = "files"
1810))]
1811mod hard_drive_upload;
1812#[cfg(feature = "tools")]
1813mod hard_hat;
1814#[cfg(any(feature = "text", feature = "social"))]
1815mod hash;
1816#[cfg(feature = "weather")]
1817mod haze;
1818#[cfg(any(feature = "devices", feature = "multimedia", feature = "gaming"))]
1819mod hdmi_port;
1820#[cfg(feature = "text")]
1821mod heading;
1822#[cfg(feature = "text")]
1823mod heading_1;
1824#[cfg(feature = "text")]
1825mod heading_2;
1826#[cfg(feature = "text")]
1827mod heading_3;
1828#[cfg(feature = "text")]
1829mod heading_4;
1830#[cfg(feature = "text")]
1831mod heading_5;
1832#[cfg(feature = "text")]
1833mod heading_6;
1834#[cfg(any(
1835    feature = "multimedia",
1836    feature = "connectivity",
1837    feature = "communication",
1838    feature = "devices",
1839    feature = "gaming"
1840))]
1841mod headphone_off;
1842#[cfg(any(
1843    feature = "multimedia",
1844    feature = "connectivity",
1845    feature = "devices",
1846    feature = "files",
1847    feature = "gaming"
1848))]
1849mod headphones;
1850#[cfg(any(
1851    feature = "multimedia",
1852    feature = "connectivity",
1853    feature = "devices",
1854    feature = "files",
1855    feature = "gaming"
1856))]
1857mod headset;
1858#[cfg(any(
1859    feature = "medical",
1860    feature = "social",
1861    feature = "multimedia",
1862    feature = "emoji",
1863    feature = "gaming",
1864    feature = "shapes"
1865))]
1866mod heart;
1867#[cfg(feature = "emoji")]
1868mod heart_crack;
1869#[cfg(any(feature = "emoji", feature = "account", feature = "security"))]
1870mod heart_handshake;
1871#[cfg(any(
1872    feature = "medical",
1873    feature = "account",
1874    feature = "multimedia",
1875    feature = "gaming",
1876    feature = "social"
1877))]
1878mod heart_minus;
1879#[cfg(any(feature = "social", feature = "multimedia"))]
1880mod heart_off;
1881#[cfg(any(
1882    feature = "medical",
1883    feature = "account",
1884    feature = "multimedia",
1885    feature = "gaming",
1886    feature = "social"
1887))]
1888mod heart_plus;
1889#[cfg(feature = "medical")]
1890mod heart_pulse;
1891#[cfg(any(feature = "home", feature = "devices", feature = "travel"))]
1892mod heater;
1893#[cfg(any(feature = "shapes", feature = "brands", feature = "development"))]
1894mod hexagon;
1895#[cfg(any(feature = "text", feature = "design"))]
1896mod highlighter;
1897#[cfg(any(feature = "arrows", feature = "time"))]
1898mod history;
1899#[cfg(feature = "food-beverage")]
1900mod hop;
1901#[cfg(feature = "food-beverage")]
1902mod hop_off;
1903#[cfg(any(
1904    feature = "medical",
1905    feature = "buildings",
1906    feature = "navigation",
1907    feature = "travel"
1908))]
1909mod hospital;
1910#[cfg(any(feature = "buildings", feature = "navigation", feature = "travel"))]
1911mod hotel;
1912#[cfg(any(feature = "time", feature = "gaming"))]
1913mod hourglass;
1914#[cfg(any(feature = "buildings", feature = "home"))]
1915mod house;
1916#[cfg(any(feature = "buildings", feature = "home", feature = "sustainability"))]
1917mod house_plug;
1918#[cfg(any(feature = "buildings", feature = "medical"))]
1919mod house_plus;
1920#[cfg(any(feature = "home", feature = "buildings", feature = "connectivity"))]
1921mod house_wifi;
1922#[cfg(feature = "food-beverage")]
1923mod ice_cream_bowl;
1924#[cfg(feature = "food-beverage")]
1925mod ice_cream_cone;
1926#[cfg(any(feature = "security", feature = "account"))]
1927mod id_card;
1928#[cfg(any(feature = "security", feature = "account"))]
1929mod id_card_lanyard;
1930#[cfg(any(
1931    feature = "photography",
1932    feature = "text",
1933    feature = "multimedia",
1934    feature = "files"
1935))]
1936mod image;
1937#[cfg(any(
1938    feature = "photography",
1939    feature = "text",
1940    feature = "multimedia",
1941    feature = "files"
1942))]
1943mod image_down;
1944#[cfg(any(feature = "photography", feature = "multimedia", feature = "files"))]
1945mod image_minus;
1946#[cfg(any(feature = "photography", feature = "multimedia", feature = "files"))]
1947mod image_off;
1948#[cfg(any(
1949    feature = "photography",
1950    feature = "text",
1951    feature = "multimedia",
1952    feature = "files"
1953))]
1954mod image_play;
1955#[cfg(any(feature = "photography", feature = "multimedia", feature = "files"))]
1956mod image_plus;
1957#[cfg(any(
1958    feature = "photography",
1959    feature = "text",
1960    feature = "multimedia",
1961    feature = "files"
1962))]
1963mod image_up;
1964#[cfg(any(feature = "photography", feature = "multimedia"))]
1965mod image_upscale;
1966#[cfg(any(
1967    feature = "photography",
1968    feature = "text",
1969    feature = "multimedia",
1970    feature = "files"
1971))]
1972mod images;
1973#[cfg(any(feature = "arrows", feature = "files"))]
1974mod import;
1975#[cfg(any(feature = "account", feature = "mail"))]
1976mod inbox;
1977#[cfg(any(feature = "text", feature = "development"))]
1978mod indent_decrease;
1979#[cfg(any(feature = "text", feature = "development"))]
1980mod indent_increase;
1981#[cfg(feature = "finance")]
1982mod indian_rupee;
1983#[cfg(feature = "multimedia")]
1984mod infinity;
1985#[cfg(any(feature = "accessibility", feature = "notifications"))]
1986mod info;
1987#[cfg(feature = "tools")]
1988mod inspection_panel;
1989#[cfg(any(feature = "brands", feature = "social", feature = "photography"))]
1990mod instagram;
1991#[cfg(feature = "text")]
1992mod italic;
1993#[cfg(any(feature = "arrows", feature = "design"))]
1994mod iteration_ccw;
1995#[cfg(any(feature = "arrows", feature = "design"))]
1996mod iteration_cw;
1997#[cfg(feature = "finance")]
1998mod japanese_yen;
1999#[cfg(any(feature = "gaming", feature = "devices"))]
2000mod joystick;
2001#[cfg(any(feature = "charts", feature = "development", feature = "design"))]
2002mod kanban;
2003#[cfg(any(feature = "security", feature = "account"))]
2004mod key;
2005#[cfg(any(feature = "security", feature = "account"))]
2006mod key_round;
2007#[cfg(any(feature = "security", feature = "account"))]
2008mod key_square;
2009#[cfg(any(feature = "text", feature = "devices", feature = "development"))]
2010mod keyboard;
2011#[cfg(any(feature = "multimedia", feature = "devices"))]
2012mod keyboard_music;
2013#[cfg(any(feature = "devices", feature = "text", feature = "development"))]
2014mod keyboard_off;
2015#[cfg(feature = "home")]
2016mod lamp;
2017#[cfg(feature = "home")]
2018mod lamp_ceiling;
2019#[cfg(feature = "home")]
2020mod lamp_desk;
2021#[cfg(feature = "home")]
2022mod lamp_floor;
2023#[cfg(feature = "home")]
2024mod lamp_wall_down;
2025#[cfg(feature = "home")]
2026mod lamp_wall_up;
2027#[cfg(any(
2028    feature = "design",
2029    feature = "tools",
2030    feature = "math",
2031    feature = "sports",
2032    feature = "gaming"
2033))]
2034mod land_plot;
2035#[cfg(any(feature = "finance", feature = "navigation", feature = "buildings"))]
2036mod landmark;
2037#[cfg(feature = "text")]
2038mod languages;
2039#[cfg(feature = "devices")]
2040mod laptop;
2041#[cfg(feature = "devices")]
2042mod laptop_minimal;
2043#[cfg(any(feature = "devices", feature = "notifications"))]
2044mod laptop_minimal_check;
2045#[cfg(any(feature = "design", feature = "cursors"))]
2046mod lasso;
2047#[cfg(any(feature = "arrows", feature = "design", feature = "cursors"))]
2048mod lasso_select;
2049#[cfg(feature = "emoji")]
2050mod laugh;
2051#[cfg(any(feature = "design", feature = "layout"))]
2052mod layers;
2053#[cfg(any(feature = "design", feature = "layout"))]
2054mod layers_2;
2055#[cfg(any(feature = "design", feature = "layout"))]
2056mod layout_dashboard;
2057#[cfg(any(feature = "design", feature = "layout"))]
2058mod layout_grid;
2059#[cfg(any(
2060    feature = "design",
2061    feature = "layout",
2062    feature = "photography",
2063    feature = "text"
2064))]
2065mod layout_list;
2066#[cfg(any(feature = "design", feature = "layout"))]
2067mod layout_panel_left;
2068#[cfg(feature = "layout")]
2069mod layout_panel_top;
2070#[cfg(feature = "layout")]
2071mod layout_template;
2072#[cfg(any(feature = "nature", feature = "sustainability", feature = "seasons"))]
2073mod leaf;
2074#[cfg(any(
2075    feature = "food-beverage",
2076    feature = "emoji",
2077    feature = "sustainability"
2078))]
2079mod leafy_green;
2080#[cfg(any(feature = "communication", feature = "multimedia"))]
2081mod lectern;
2082#[cfg(feature = "text")]
2083mod letter_text;
2084#[cfg(any(
2085    feature = "text",
2086    feature = "photography",
2087    feature = "multimedia",
2088    feature = "navigation",
2089    feature = "development"
2090))]
2091mod library;
2092#[cfg(any(
2093    feature = "text",
2094    feature = "photography",
2095    feature = "multimedia",
2096    feature = "navigation",
2097    feature = "development"
2098))]
2099mod library_big;
2100#[cfg(any(feature = "accessibility", feature = "medical"))]
2101mod life_buoy;
2102#[cfg(feature = "text")]
2103mod ligature;
2104#[cfg(feature = "photography")]
2105mod lightbulb;
2106#[cfg(feature = "photography")]
2107mod lightbulb_off;
2108#[cfg(any(feature = "text", feature = "account"))]
2109mod link;
2110#[cfg(any(feature = "text", feature = "account"))]
2111mod link_2;
2112#[cfg(feature = "text")]
2113mod link_2_off;
2114#[cfg(any(feature = "social", feature = "brands"))]
2115mod linkedin;
2116#[cfg(feature = "text")]
2117mod list;
2118#[cfg(feature = "text")]
2119mod list_check;
2120#[cfg(feature = "text")]
2121mod list_checks;
2122#[cfg(feature = "text")]
2123mod list_collapse;
2124#[cfg(any(feature = "multimedia", feature = "text"))]
2125mod list_end;
2126#[cfg(feature = "text")]
2127mod list_filter;
2128#[cfg(any(feature = "text", feature = "layout"))]
2129mod list_filter_plus;
2130#[cfg(any(feature = "multimedia", feature = "text"))]
2131mod list_minus;
2132#[cfg(feature = "multimedia")]
2133mod list_music;
2134#[cfg(feature = "text")]
2135mod list_ordered;
2136#[cfg(any(feature = "multimedia", feature = "text"))]
2137mod list_plus;
2138#[cfg(any(feature = "multimedia", feature = "text"))]
2139mod list_restart;
2140#[cfg(any(feature = "multimedia", feature = "text"))]
2141mod list_start;
2142#[cfg(feature = "text")]
2143mod list_todo;
2144#[cfg(any(feature = "files", feature = "text", feature = "layout"))]
2145mod list_tree;
2146#[cfg(feature = "multimedia")]
2147mod list_video;
2148#[cfg(any(feature = "multimedia", feature = "text"))]
2149mod list_x;
2150#[cfg(any(
2151    feature = "cursors",
2152    feature = "multimedia",
2153    feature = "layout",
2154    feature = "design"
2155))]
2156mod loader;
2157#[cfg(any(feature = "cursors", feature = "multimedia", feature = "layout"))]
2158mod loader_circle;
2159#[cfg(any(feature = "cursors", feature = "design"))]
2160mod loader_pinwheel;
2161#[cfg(feature = "navigation")]
2162mod locate;
2163#[cfg(feature = "navigation")]
2164mod locate_fixed;
2165#[cfg(feature = "navigation")]
2166mod locate_off;
2167#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2168mod location_edit;
2169#[cfg(feature = "security")]
2170mod lock;
2171#[cfg(feature = "security")]
2172mod lock_keyhole;
2173#[cfg(feature = "security")]
2174mod lock_keyhole_open;
2175#[cfg(feature = "security")]
2176mod lock_open;
2177#[cfg(any(feature = "arrows", feature = "account"))]
2178mod log_in;
2179#[cfg(any(feature = "arrows", feature = "account"))]
2180mod log_out;
2181#[cfg(feature = "text")]
2182mod logs;
2183#[cfg(feature = "food-beverage")]
2184mod lollipop;
2185#[cfg(any(feature = "travel", feature = "transportation"))]
2186mod luggage;
2187#[cfg(feature = "design")]
2188mod magnet;
2189#[cfg(any(feature = "text", feature = "account", feature = "mail"))]
2190mod mail;
2191#[cfg(feature = "mail")]
2192mod mail_check;
2193#[cfg(feature = "mail")]
2194mod mail_minus;
2195#[cfg(feature = "mail")]
2196mod mail_open;
2197#[cfg(feature = "mail")]
2198mod mail_plus;
2199#[cfg(feature = "mail")]
2200mod mail_question_mark;
2201#[cfg(feature = "mail")]
2202mod mail_search;
2203#[cfg(feature = "mail")]
2204mod mail_warning;
2205#[cfg(feature = "mail")]
2206mod mail_x;
2207#[cfg(feature = "mail")]
2208mod mailbox;
2209#[cfg(feature = "mail")]
2210mod mails;
2211#[cfg(any(feature = "text", feature = "navigation"))]
2212mod map;
2213#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2214mod map_pin;
2215#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2216mod map_pin_check;
2217#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2218mod map_pin_check_inside;
2219#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2220mod map_pin_house;
2221#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2222mod map_pin_minus;
2223#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2224mod map_pin_minus_inside;
2225#[cfg(any(feature = "navigation", feature = "travel"))]
2226mod map_pin_off;
2227#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2228mod map_pin_plus;
2229#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2230mod map_pin_plus_inside;
2231#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2232mod map_pin_x;
2233#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2234mod map_pin_x_inside;
2235#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
2236mod map_pinned;
2237#[cfg(feature = "navigation")]
2238mod map_plus;
2239#[cfg(feature = "medical")]
2240mod mars;
2241#[cfg(feature = "medical")]
2242mod mars_stroke;
2243#[cfg(feature = "food-beverage")]
2244mod martini;
2245#[cfg(any(feature = "layout", feature = "design"))]
2246mod maximize;
2247#[cfg(any(feature = "arrows", feature = "layout", feature = "design"))]
2248mod maximize_2;
2249#[cfg(any(feature = "sports", feature = "gaming"))]
2250mod medal;
2251#[cfg(any(feature = "multimedia", feature = "notifications"))]
2252mod megaphone;
2253#[cfg(any(feature = "multimedia", feature = "notifications"))]
2254mod megaphone_off;
2255#[cfg(feature = "emoji")]
2256mod meh;
2257#[cfg(any(feature = "devices", feature = "gaming"))]
2258mod memory_stick;
2259#[cfg(any(feature = "layout", feature = "account"))]
2260mod menu;
2261#[cfg(any(feature = "development", feature = "arrows"))]
2262mod merge;
2263#[cfg(feature = "social")]
2264mod message_circle;
2265#[cfg(any(feature = "development", feature = "social"))]
2266mod message_circle_code;
2267#[cfg(feature = "social")]
2268mod message_circle_dashed;
2269#[cfg(feature = "social")]
2270mod message_circle_heart;
2271#[cfg(feature = "social")]
2272mod message_circle_more;
2273#[cfg(feature = "social")]
2274mod message_circle_off;
2275#[cfg(feature = "social")]
2276mod message_circle_plus;
2277#[cfg(feature = "social")]
2278mod message_circle_question_mark;
2279#[cfg(feature = "social")]
2280mod message_circle_reply;
2281#[cfg(any(feature = "social", feature = "notifications"))]
2282mod message_circle_warning;
2283#[cfg(any(feature = "account", feature = "social"))]
2284mod message_circle_x;
2285#[cfg(feature = "social")]
2286mod message_square;
2287#[cfg(any(feature = "development", feature = "social"))]
2288mod message_square_code;
2289#[cfg(feature = "social")]
2290mod message_square_dashed;
2291#[cfg(any(feature = "development", feature = "files", feature = "social"))]
2292mod message_square_diff;
2293#[cfg(any(feature = "social", feature = "notifications"))]
2294mod message_square_dot;
2295#[cfg(feature = "social")]
2296mod message_square_heart;
2297#[cfg(feature = "social")]
2298mod message_square_lock;
2299#[cfg(feature = "social")]
2300mod message_square_more;
2301#[cfg(feature = "social")]
2302mod message_square_off;
2303#[cfg(feature = "social")]
2304mod message_square_plus;
2305#[cfg(any(feature = "social", feature = "text"))]
2306mod message_square_quote;
2307#[cfg(feature = "social")]
2308mod message_square_reply;
2309#[cfg(feature = "social")]
2310mod message_square_share;
2311#[cfg(feature = "social")]
2312mod message_square_text;
2313#[cfg(any(feature = "social", feature = "notifications"))]
2314mod message_square_warning;
2315#[cfg(feature = "social")]
2316mod message_square_x;
2317#[cfg(feature = "social")]
2318mod messages_square;
2319#[cfg(any(
2320    feature = "devices",
2321    feature = "communication",
2322    feature = "connectivity",
2323    feature = "multimedia"
2324))]
2325mod mic;
2326#[cfg(any(
2327    feature = "devices",
2328    feature = "communication",
2329    feature = "connectivity",
2330    feature = "multimedia"
2331))]
2332mod mic_off;
2333#[cfg(any(feature = "devices", feature = "multimedia"))]
2334mod mic_vocal;
2335#[cfg(feature = "devices")]
2336mod microchip;
2337#[cfg(any(feature = "science", feature = "medical"))]
2338mod microscope;
2339#[cfg(any(feature = "food-beverage", feature = "home"))]
2340mod microwave;
2341#[cfg(any(
2342    feature = "arrows",
2343    feature = "navigation",
2344    feature = "development",
2345    feature = "gaming"
2346))]
2347mod milestone;
2348#[cfg(feature = "food-beverage")]
2349mod milk;
2350#[cfg(feature = "food-beverage")]
2351mod milk_off;
2352#[cfg(any(feature = "layout", feature = "design"))]
2353mod minimize;
2354#[cfg(any(feature = "arrows", feature = "layout", feature = "design"))]
2355mod minimize_2;
2356#[cfg(any(
2357    feature = "math",
2358    feature = "development",
2359    feature = "text",
2360    feature = "tools"
2361))]
2362mod minus;
2363#[cfg(any(feature = "connectivity", feature = "devices"))]
2364mod monitor;
2365#[cfg(any(feature = "connectivity", feature = "devices"))]
2366mod monitor_check;
2367#[cfg(any(feature = "connectivity", feature = "devices"))]
2368mod monitor_cog;
2369#[cfg(any(feature = "connectivity", feature = "devices"))]
2370mod monitor_dot;
2371#[cfg(any(feature = "connectivity", feature = "devices"))]
2372mod monitor_down;
2373#[cfg(any(feature = "connectivity", feature = "devices"))]
2374mod monitor_off;
2375#[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
2376mod monitor_pause;
2377#[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
2378mod monitor_play;
2379#[cfg(any(feature = "connectivity", feature = "devices"))]
2380mod monitor_smartphone;
2381#[cfg(any(feature = "connectivity", feature = "devices"))]
2382mod monitor_speaker;
2383#[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
2384mod monitor_stop;
2385#[cfg(any(feature = "connectivity", feature = "devices"))]
2386mod monitor_up;
2387#[cfg(any(feature = "connectivity", feature = "devices"))]
2388mod monitor_x;
2389#[cfg(feature = "accessibility")]
2390mod moon;
2391#[cfg(any(feature = "accessibility", feature = "weather"))]
2392mod moon_star;
2393#[cfg(any(feature = "nature", feature = "gaming"))]
2394mod mountain;
2395#[cfg(feature = "nature")]
2396mod mountain_snow;
2397#[cfg(feature = "devices")]
2398mod mouse;
2399#[cfg(feature = "devices")]
2400mod mouse_off;
2401#[cfg(any(feature = "arrows", feature = "cursors"))]
2402mod mouse_pointer;
2403#[cfg(any(feature = "arrows", feature = "cursors"))]
2404mod mouse_pointer_2;
2405#[cfg(any(feature = "arrows", feature = "cursors"))]
2406mod mouse_pointer_ban;
2407#[cfg(any(feature = "arrows", feature = "cursors"))]
2408mod mouse_pointer_click;
2409#[cfg(any(feature = "arrows", feature = "cursors"))]
2410mod r#move;
2411#[cfg(feature = "design")]
2412mod move_3_d;
2413#[cfg(any(feature = "arrows", feature = "cursors"))]
2414mod move_diagonal;
2415#[cfg(any(feature = "arrows", feature = "cursors"))]
2416mod move_diagonal_2;
2417#[cfg(feature = "arrows")]
2418mod move_down;
2419#[cfg(feature = "arrows")]
2420mod move_down_left;
2421#[cfg(feature = "arrows")]
2422mod move_down_right;
2423#[cfg(any(feature = "arrows", feature = "cursors"))]
2424mod move_horizontal;
2425#[cfg(feature = "arrows")]
2426mod move_left;
2427#[cfg(feature = "arrows")]
2428mod move_right;
2429#[cfg(feature = "arrows")]
2430mod move_up;
2431#[cfg(feature = "arrows")]
2432mod move_up_left;
2433#[cfg(feature = "arrows")]
2434mod move_up_right;
2435#[cfg(any(feature = "arrows", feature = "cursors"))]
2436mod move_vertical;
2437#[cfg(any(feature = "multimedia", feature = "files"))]
2438mod music;
2439#[cfg(any(feature = "multimedia", feature = "files"))]
2440mod music_2;
2441#[cfg(any(feature = "multimedia", feature = "files"))]
2442mod music_3;
2443#[cfg(any(feature = "multimedia", feature = "files"))]
2444mod music_4;
2445#[cfg(feature = "navigation")]
2446mod navigation;
2447#[cfg(feature = "navigation")]
2448mod navigation_2;
2449#[cfg(feature = "navigation")]
2450mod navigation_2_off;
2451#[cfg(feature = "navigation")]
2452mod navigation_off;
2453#[cfg(feature = "development")]
2454mod network;
2455#[cfg(any(feature = "multimedia", feature = "communication"))]
2456mod newspaper;
2457#[cfg(any(feature = "communication", feature = "finance", feature = "devices"))]
2458mod nfc;
2459#[cfg(feature = "medical")]
2460mod non_binary;
2461#[cfg(any(
2462    feature = "text",
2463    feature = "communication",
2464    feature = "social",
2465    feature = "design"
2466))]
2467mod notebook;
2468#[cfg(any(feature = "text", feature = "social"))]
2469mod notebook_pen;
2470#[cfg(any(feature = "account", feature = "communication", feature = "social"))]
2471mod notebook_tabs;
2472#[cfg(any(feature = "text", feature = "social"))]
2473mod notebook_text;
2474#[cfg(any(feature = "text", feature = "social"))]
2475mod notepad_text;
2476#[cfg(any(feature = "text", feature = "social"))]
2477mod notepad_text_dashed;
2478#[cfg(feature = "food-beverage")]
2479mod nut;
2480#[cfg(feature = "food-beverage")]
2481mod nut_off;
2482#[cfg(feature = "shapes")]
2483mod octagon;
2484#[cfg(any(feature = "notifications", feature = "shapes"))]
2485mod octagon_alert;
2486#[cfg(feature = "transportation")]
2487mod octagon_minus;
2488#[cfg(any(feature = "multimedia", feature = "shapes"))]
2489mod octagon_pause;
2490#[cfg(any(feature = "math", feature = "notifications"))]
2491mod octagon_x;
2492#[cfg(any(
2493    feature = "math",
2494    feature = "development",
2495    feature = "text",
2496    feature = "science"
2497))]
2498mod omega;
2499#[cfg(feature = "development")]
2500mod option;
2501#[cfg(feature = "science")]
2502mod orbit;
2503#[cfg(any(feature = "animals", feature = "design"))]
2504mod origami;
2505#[cfg(any(feature = "files", feature = "development"))]
2506mod package;
2507#[cfg(any(feature = "files", feature = "development"))]
2508mod package_2;
2509#[cfg(feature = "development")]
2510mod package_check;
2511#[cfg(feature = "development")]
2512mod package_minus;
2513#[cfg(any(feature = "files", feature = "development"))]
2514mod package_open;
2515#[cfg(feature = "development")]
2516mod package_plus;
2517#[cfg(any(feature = "files", feature = "development"))]
2518mod package_search;
2519#[cfg(feature = "development")]
2520mod package_x;
2521#[cfg(any(feature = "design", feature = "tools"))]
2522mod paint_bucket;
2523#[cfg(any(
2524    feature = "text",
2525    feature = "design",
2526    feature = "home",
2527    feature = "tools"
2528))]
2529mod paint_roller;
2530#[cfg(any(
2531    feature = "text",
2532    feature = "design",
2533    feature = "photography",
2534    feature = "home",
2535    feature = "tools"
2536))]
2537mod paintbrush;
2538#[cfg(any(
2539    feature = "text",
2540    feature = "design",
2541    feature = "photography",
2542    feature = "home",
2543    feature = "tools"
2544))]
2545mod paintbrush_vertical;
2546#[cfg(any(feature = "text", feature = "design", feature = "photography"))]
2547mod palette;
2548#[cfg(feature = "animals")]
2549mod panda;
2550#[cfg(feature = "layout")]
2551mod panel_bottom;
2552#[cfg(any(feature = "layout", feature = "arrows"))]
2553mod panel_bottom_close;
2554#[cfg(feature = "layout")]
2555mod panel_bottom_dashed;
2556#[cfg(any(feature = "layout", feature = "arrows"))]
2557mod panel_bottom_open;
2558#[cfg(feature = "layout")]
2559mod panel_left;
2560#[cfg(any(feature = "layout", feature = "arrows"))]
2561mod panel_left_close;
2562#[cfg(feature = "layout")]
2563mod panel_left_dashed;
2564#[cfg(any(feature = "layout", feature = "arrows"))]
2565mod panel_left_open;
2566#[cfg(feature = "layout")]
2567mod panel_right;
2568#[cfg(any(feature = "layout", feature = "arrows"))]
2569mod panel_right_close;
2570#[cfg(feature = "layout")]
2571mod panel_right_dashed;
2572#[cfg(any(feature = "layout", feature = "arrows"))]
2573mod panel_right_open;
2574#[cfg(any(feature = "layout", feature = "design", feature = "development"))]
2575mod panel_top;
2576#[cfg(any(feature = "layout", feature = "arrows"))]
2577mod panel_top_close;
2578#[cfg(feature = "layout")]
2579mod panel_top_dashed;
2580#[cfg(any(feature = "layout", feature = "arrows"))]
2581mod panel_top_open;
2582#[cfg(feature = "layout")]
2583mod panels_left_bottom;
2584#[cfg(feature = "layout")]
2585mod panels_right_bottom;
2586#[cfg(any(feature = "layout", feature = "design", feature = "development"))]
2587mod panels_top_left;
2588#[cfg(any(
2589    feature = "text",
2590    feature = "design",
2591    feature = "files",
2592    feature = "mail"
2593))]
2594mod paperclip;
2595#[cfg(any(feature = "development", feature = "files", feature = "math"))]
2596mod parentheses;
2597#[cfg(any(feature = "transportation", feature = "navigation"))]
2598mod parking_meter;
2599#[cfg(feature = "emoji")]
2600mod party_popper;
2601#[cfg(feature = "multimedia")]
2602mod pause;
2603#[cfg(feature = "animals")]
2604mod paw_print;
2605#[cfg(any(feature = "devices", feature = "gaming"))]
2606mod pc_case;
2607#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
2608mod pen;
2609#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
2610mod pen_line;
2611#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
2612mod pen_off;
2613#[cfg(any(feature = "text", feature = "design", feature = "cursors"))]
2614mod pen_tool;
2615#[cfg(any(
2616    feature = "design",
2617    feature = "cursors",
2618    feature = "tools",
2619    feature = "text"
2620))]
2621mod pencil;
2622#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
2623mod pencil_line;
2624#[cfg(any(
2625    feature = "design",
2626    feature = "cursors",
2627    feature = "tools",
2628    feature = "text"
2629))]
2630mod pencil_off;
2631#[cfg(any(
2632    feature = "tools",
2633    feature = "design",
2634    feature = "layout",
2635    feature = "text"
2636))]
2637mod pencil_ruler;
2638#[cfg(feature = "shapes")]
2639mod pentagon;
2640#[cfg(any(
2641    feature = "math",
2642    feature = "development",
2643    feature = "finance",
2644    feature = "shopping"
2645))]
2646mod percent;
2647#[cfg(any(feature = "accessibility", feature = "people"))]
2648mod person_standing;
2649#[cfg(feature = "finance")]
2650mod philippine_peso;
2651#[cfg(any(
2652    feature = "text",
2653    feature = "connectivity",
2654    feature = "devices",
2655    feature = "communication"
2656))]
2657mod phone;
2658#[cfg(any(
2659    feature = "connectivity",
2660    feature = "devices",
2661    feature = "communication"
2662))]
2663mod phone_call;
2664#[cfg(any(
2665    feature = "arrows",
2666    feature = "connectivity",
2667    feature = "devices",
2668    feature = "communication"
2669))]
2670mod phone_forwarded;
2671#[cfg(any(
2672    feature = "arrows",
2673    feature = "connectivity",
2674    feature = "devices",
2675    feature = "communication"
2676))]
2677mod phone_incoming;
2678#[cfg(any(
2679    feature = "connectivity",
2680    feature = "devices",
2681    feature = "communication"
2682))]
2683mod phone_missed;
2684#[cfg(any(
2685    feature = "connectivity",
2686    feature = "devices",
2687    feature = "communication"
2688))]
2689mod phone_off;
2690#[cfg(any(
2691    feature = "arrows",
2692    feature = "connectivity",
2693    feature = "devices",
2694    feature = "communication"
2695))]
2696mod phone_outgoing;
2697#[cfg(any(feature = "development", feature = "math"))]
2698mod pi;
2699#[cfg(any(feature = "multimedia", feature = "devices"))]
2700mod piano;
2701#[cfg(any(feature = "tools", feature = "gaming"))]
2702mod pickaxe;
2703#[cfg(feature = "multimedia")]
2704mod picture_in_picture;
2705#[cfg(feature = "multimedia")]
2706mod picture_in_picture_2;
2707#[cfg(feature = "finance")]
2708mod piggy_bank;
2709#[cfg(feature = "text")]
2710mod pilcrow;
2711#[cfg(feature = "text")]
2712mod pilcrow_left;
2713#[cfg(feature = "text")]
2714mod pilcrow_right;
2715#[cfg(feature = "medical")]
2716mod pill;
2717#[cfg(feature = "medical")]
2718mod pill_bottle;
2719#[cfg(any(feature = "navigation", feature = "account"))]
2720mod pin;
2721#[cfg(feature = "navigation")]
2722mod pin_off;
2723#[cfg(any(feature = "text", feature = "design", feature = "science"))]
2724mod pipette;
2725#[cfg(feature = "food-beverage")]
2726mod pizza;
2727#[cfg(any(feature = "transportation", feature = "travel"))]
2728mod plane;
2729#[cfg(any(feature = "transportation", feature = "travel"))]
2730mod plane_landing;
2731#[cfg(any(feature = "transportation", feature = "travel"))]
2732mod plane_takeoff;
2733#[cfg(any(feature = "arrows", feature = "multimedia"))]
2734mod play;
2735#[cfg(any(feature = "devices", feature = "development"))]
2736mod plug;
2737#[cfg(any(feature = "devices", feature = "development"))]
2738mod plug_2;
2739#[cfg(feature = "devices")]
2740mod plug_zap;
2741#[cfg(any(
2742    feature = "math",
2743    feature = "tools",
2744    feature = "development",
2745    feature = "text",
2746    feature = "cursors",
2747    feature = "gaming"
2748))]
2749mod plus;
2750#[cfg(feature = "brands")]
2751mod pocket;
2752#[cfg(feature = "tools")]
2753mod pocket_knife;
2754#[cfg(any(feature = "multimedia", feature = "social"))]
2755mod podcast;
2756#[cfg(feature = "cursors")]
2757mod pointer;
2758#[cfg(feature = "cursors")]
2759mod pointer_off;
2760#[cfg(any(feature = "food-beverage", feature = "multimedia"))]
2761mod popcorn;
2762#[cfg(feature = "food-beverage")]
2763mod popsicle;
2764#[cfg(feature = "finance")]
2765mod pound_sterling;
2766#[cfg(feature = "connectivity")]
2767mod power;
2768#[cfg(feature = "connectivity")]
2769mod power_off;
2770#[cfg(any(
2771    feature = "multimedia",
2772    feature = "photography",
2773    feature = "devices",
2774    feature = "communication",
2775    feature = "design"
2776))]
2777mod presentation;
2778#[cfg(feature = "devices")]
2779mod printer;
2780#[cfg(feature = "devices")]
2781mod printer_check;
2782#[cfg(any(
2783    feature = "multimedia",
2784    feature = "photography",
2785    feature = "devices",
2786    feature = "communication"
2787))]
2788mod projector;
2789#[cfg(any(
2790    feature = "layout",
2791    feature = "design",
2792    feature = "photography",
2793    feature = "devices"
2794))]
2795mod proportions;
2796#[cfg(any(feature = "development", feature = "gaming"))]
2797mod puzzle;
2798#[cfg(any(feature = "shapes", feature = "math", feature = "travel"))]
2799mod pyramid;
2800#[cfg(any(feature = "development", feature = "social"))]
2801mod qr_code;
2802#[cfg(feature = "text")]
2803mod quote;
2804#[cfg(feature = "animals")]
2805mod rabbit;
2806#[cfg(any(
2807    feature = "navigation",
2808    feature = "security",
2809    feature = "communication"
2810))]
2811mod radar;
2812#[cfg(feature = "science")]
2813mod radiation;
2814#[cfg(any(feature = "development", feature = "math"))]
2815mod radical;
2816#[cfg(any(feature = "devices", feature = "multimedia", feature = "social"))]
2817mod radio;
2818#[cfg(feature = "devices")]
2819mod radio_receiver;
2820#[cfg(any(feature = "devices", feature = "multimedia", feature = "social"))]
2821mod radio_tower;
2822#[cfg(any(
2823    feature = "shapes",
2824    feature = "math",
2825    feature = "design",
2826    feature = "tools"
2827))]
2828mod radius;
2829#[cfg(any(feature = "transportation", feature = "navigation"))]
2830mod rail_symbol;
2831#[cfg(feature = "weather")]
2832mod rainbow;
2833#[cfg(feature = "animals")]
2834mod rat;
2835#[cfg(any(feature = "layout", feature = "design", feature = "photography"))]
2836mod ratio;
2837#[cfg(any(feature = "finance", feature = "travel"))]
2838mod receipt;
2839#[cfg(any(feature = "finance", feature = "travel"))]
2840mod receipt_cent;
2841#[cfg(any(feature = "finance", feature = "travel"))]
2842mod receipt_euro;
2843#[cfg(any(feature = "finance", feature = "travel"))]
2844mod receipt_indian_rupee;
2845#[cfg(any(feature = "finance", feature = "travel"))]
2846mod receipt_japanese_yen;
2847#[cfg(any(feature = "finance", feature = "travel"))]
2848mod receipt_pound_sterling;
2849#[cfg(any(feature = "finance", feature = "travel"))]
2850mod receipt_russian_ruble;
2851#[cfg(any(feature = "finance", feature = "travel"))]
2852mod receipt_swiss_franc;
2853#[cfg(any(feature = "finance", feature = "travel"))]
2854mod receipt_text;
2855#[cfg(any(feature = "development", feature = "text"))]
2856mod rectangle_circle;
2857#[cfg(any(feature = "text", feature = "development"))]
2858mod rectangle_ellipsis;
2859#[cfg(any(
2860    feature = "devices",
2861    feature = "gaming",
2862    feature = "multimedia",
2863    feature = "connectivity"
2864))]
2865mod rectangle_goggles;
2866#[cfg(any(feature = "shapes", feature = "design"))]
2867mod rectangle_horizontal;
2868#[cfg(any(feature = "shapes", feature = "design"))]
2869mod rectangle_vertical;
2870#[cfg(feature = "sustainability")]
2871mod recycle;
2872#[cfg(any(feature = "text", feature = "arrows"))]
2873mod redo;
2874#[cfg(any(feature = "text", feature = "arrows"))]
2875mod redo_2;
2876#[cfg(any(feature = "text", feature = "arrows"))]
2877mod redo_dot;
2878#[cfg(feature = "arrows")]
2879mod refresh_ccw;
2880#[cfg(any(feature = "arrows", feature = "development"))]
2881mod refresh_ccw_dot;
2882#[cfg(feature = "arrows")]
2883mod refresh_cw;
2884#[cfg(feature = "arrows")]
2885mod refresh_cw_off;
2886#[cfg(any(feature = "food-beverage", feature = "home"))]
2887mod refrigerator;
2888#[cfg(any(feature = "text", feature = "development"))]
2889mod regex;
2890#[cfg(feature = "text")]
2891mod remove_formatting;
2892#[cfg(any(feature = "arrows", feature = "multimedia"))]
2893mod repeat;
2894#[cfg(feature = "multimedia")]
2895mod repeat_1;
2896#[cfg(any(feature = "arrows", feature = "social", feature = "multimedia"))]
2897mod repeat_2;
2898#[cfg(feature = "text")]
2899mod replace;
2900#[cfg(feature = "text")]
2901mod replace_all;
2902#[cfg(feature = "mail")]
2903mod reply;
2904#[cfg(feature = "mail")]
2905mod reply_all;
2906#[cfg(any(feature = "arrows", feature = "multimedia"))]
2907mod rewind;
2908#[cfg(any(feature = "social", feature = "medical", feature = "emoji"))]
2909mod ribbon;
2910#[cfg(any(feature = "gaming", feature = "development"))]
2911mod rocket;
2912#[cfg(feature = "home")]
2913mod rocking_chair;
2914#[cfg(feature = "navigation")]
2915mod roller_coaster;
2916#[cfg(feature = "design")]
2917mod rotate_3_d;
2918#[cfg(any(feature = "arrows", feature = "design", feature = "photography"))]
2919mod rotate_ccw;
2920#[cfg(any(feature = "security", feature = "account"))]
2921mod rotate_ccw_key;
2922#[cfg(any(
2923    feature = "layout",
2924    feature = "design",
2925    feature = "photography",
2926    feature = "tools",
2927    feature = "arrows"
2928))]
2929mod rotate_ccw_square;
2930#[cfg(any(feature = "arrows", feature = "design", feature = "photography"))]
2931mod rotate_cw;
2932#[cfg(any(
2933    feature = "layout",
2934    feature = "design",
2935    feature = "photography",
2936    feature = "tools",
2937    feature = "arrows"
2938))]
2939mod rotate_cw_square;
2940#[cfg(feature = "navigation")]
2941mod route;
2942#[cfg(feature = "navigation")]
2943mod route_off;
2944#[cfg(any(
2945    feature = "development",
2946    feature = "devices",
2947    feature = "connectivity",
2948    feature = "home"
2949))]
2950mod router;
2951#[cfg(any(feature = "layout", feature = "design", feature = "text"))]
2952mod rows_2;
2953#[cfg(any(feature = "layout", feature = "design", feature = "text"))]
2954mod rows_3;
2955#[cfg(any(feature = "layout", feature = "design", feature = "text"))]
2956mod rows_4;
2957#[cfg(any(feature = "development", feature = "social"))]
2958mod rss;
2959#[cfg(any(feature = "tools", feature = "design", feature = "layout"))]
2960mod ruler;
2961#[cfg(any(feature = "tools", feature = "design", feature = "layout"))]
2962mod ruler_dimension_line;
2963#[cfg(feature = "finance")]
2964mod russian_ruble;
2965#[cfg(any(feature = "transportation", feature = "travel"))]
2966mod sailboat;
2967#[cfg(any(feature = "food-beverage", feature = "emoji"))]
2968mod salad;
2969#[cfg(feature = "food-beverage")]
2970mod sandwich;
2971#[cfg(any(feature = "connectivity", feature = "science"))]
2972mod satellite;
2973#[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
2974mod satellite_dish;
2975#[cfg(feature = "finance")]
2976mod saudi_riyal;
2977#[cfg(any(feature = "text", feature = "files"))]
2978mod save;
2979#[cfg(any(feature = "text", feature = "files"))]
2980mod save_all;
2981#[cfg(any(feature = "text", feature = "files"))]
2982mod save_off;
2983#[cfg(feature = "navigation")]
2984mod scale;
2985#[cfg(feature = "design")]
2986mod scale_3_d;
2987#[cfg(feature = "design")]
2988mod scaling;
2989#[cfg(any(
2990    feature = "devices",
2991    feature = "shopping",
2992    feature = "security",
2993    feature = "social",
2994    feature = "gaming"
2995))]
2996mod scan;
2997#[cfg(any(feature = "shopping", feature = "devices"))]
2998mod scan_barcode;
2999#[cfg(any(
3000    feature = "photography",
3001    feature = "multimedia",
3002    feature = "accessibility",
3003    feature = "security",
3004    feature = "devices",
3005    feature = "account"
3006))]
3007mod scan_eye;
3008#[cfg(any(
3009    feature = "account",
3010    feature = "security",
3011    feature = "devices",
3012    feature = "social"
3013))]
3014mod scan_face;
3015#[cfg(feature = "medical")]
3016mod scan_heart;
3017#[cfg(any(feature = "devices", feature = "shopping"))]
3018mod scan_line;
3019#[cfg(any(
3020    feature = "account",
3021    feature = "shopping",
3022    feature = "devices",
3023    feature = "security"
3024))]
3025mod scan_qr_code;
3026#[cfg(any(
3027    feature = "photography",
3028    feature = "multimedia",
3029    feature = "accessibility"
3030))]
3031mod scan_search;
3032#[cfg(any(feature = "text", feature = "devices"))]
3033mod scan_text;
3034#[cfg(any(feature = "buildings", feature = "navigation"))]
3035mod school;
3036#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
3037mod scissors;
3038#[cfg(any(feature = "design", feature = "tools"))]
3039mod scissors_line_dashed;
3040#[cfg(any(
3041    feature = "connectivity",
3042    feature = "devices",
3043    feature = "communication"
3044))]
3045mod screen_share;
3046#[cfg(any(
3047    feature = "connectivity",
3048    feature = "devices",
3049    feature = "communication"
3050))]
3051mod screen_share_off;
3052#[cfg(any(feature = "gaming", feature = "development", feature = "text"))]
3053mod scroll;
3054#[cfg(any(feature = "gaming", feature = "development", feature = "text"))]
3055mod scroll_text;
3056#[cfg(any(feature = "text", feature = "social"))]
3057mod search;
3058#[cfg(any(feature = "text", feature = "social"))]
3059mod search_check;
3060#[cfg(any(feature = "text", feature = "social", feature = "development"))]
3061mod search_code;
3062#[cfg(any(feature = "text", feature = "social"))]
3063mod search_slash;
3064#[cfg(any(feature = "text", feature = "social"))]
3065mod search_x;
3066#[cfg(feature = "text")]
3067mod section;
3068#[cfg(any(feature = "mail", feature = "communication", feature = "connectivity"))]
3069mod send;
3070#[cfg(any(feature = "mail", feature = "communication", feature = "connectivity"))]
3071mod send_horizontal;
3072#[cfg(any(feature = "design", feature = "layout"))]
3073mod send_to_back;
3074#[cfg(any(feature = "text", feature = "arrows", feature = "layout"))]
3075mod separator_horizontal;
3076#[cfg(any(feature = "text", feature = "arrows", feature = "layout"))]
3077mod separator_vertical;
3078#[cfg(any(feature = "development", feature = "devices"))]
3079mod server;
3080#[cfg(any(feature = "development", feature = "devices"))]
3081mod server_cog;
3082#[cfg(any(feature = "development", feature = "devices"))]
3083mod server_crash;
3084#[cfg(any(feature = "development", feature = "devices"))]
3085mod server_off;
3086#[cfg(feature = "account")]
3087mod settings;
3088#[cfg(feature = "account")]
3089mod settings_2;
3090#[cfg(any(feature = "shapes", feature = "gaming"))]
3091mod shapes;
3092#[cfg(any(feature = "account", feature = "social"))]
3093mod share;
3094#[cfg(any(feature = "account", feature = "social"))]
3095mod share_2;
3096#[cfg(any(feature = "text", feature = "files"))]
3097mod sheet;
3098#[cfg(any(
3099    feature = "animals",
3100    feature = "development",
3101    feature = "nature",
3102    feature = "science",
3103    feature = "travel",
3104    feature = "food-beverage",
3105    feature = "home"
3106))]
3107mod shell;
3108#[cfg(any(
3109    feature = "account",
3110    feature = "security",
3111    feature = "development",
3112    feature = "gaming",
3113    feature = "shapes"
3114))]
3115mod shield;
3116#[cfg(any(
3117    feature = "account",
3118    feature = "security",
3119    feature = "development",
3120    feature = "notifications",
3121    feature = "gaming"
3122))]
3123mod shield_alert;
3124#[cfg(any(
3125    feature = "account",
3126    feature = "security",
3127    feature = "development",
3128    feature = "gaming"
3129))]
3130mod shield_ban;
3131#[cfg(any(
3132    feature = "account",
3133    feature = "security",
3134    feature = "development",
3135    feature = "gaming"
3136))]
3137mod shield_check;
3138#[cfg(any(
3139    feature = "account",
3140    feature = "security",
3141    feature = "development",
3142    feature = "gaming"
3143))]
3144mod shield_ellipsis;
3145#[cfg(any(
3146    feature = "account",
3147    feature = "security",
3148    feature = "development",
3149    feature = "gaming"
3150))]
3151mod shield_half;
3152#[cfg(any(
3153    feature = "account",
3154    feature = "security",
3155    feature = "development",
3156    feature = "gaming"
3157))]
3158mod shield_minus;
3159#[cfg(any(
3160    feature = "account",
3161    feature = "security",
3162    feature = "development",
3163    feature = "gaming"
3164))]
3165mod shield_off;
3166#[cfg(any(
3167    feature = "account",
3168    feature = "security",
3169    feature = "development",
3170    feature = "gaming",
3171    feature = "medical"
3172))]
3173mod shield_plus;
3174#[cfg(any(
3175    feature = "account",
3176    feature = "security",
3177    feature = "development",
3178    feature = "gaming"
3179))]
3180mod shield_question_mark;
3181#[cfg(any(feature = "account", feature = "security", feature = "development"))]
3182mod shield_user;
3183#[cfg(any(
3184    feature = "account",
3185    feature = "security",
3186    feature = "development",
3187    feature = "gaming"
3188))]
3189mod shield_x;
3190#[cfg(any(feature = "transportation", feature = "navigation", feature = "travel"))]
3191mod ship;
3192#[cfg(any(feature = "transportation", feature = "navigation", feature = "travel"))]
3193mod ship_wheel;
3194#[cfg(feature = "shopping")]
3195mod shirt;
3196#[cfg(feature = "shopping")]
3197mod shopping_bag;
3198#[cfg(feature = "shopping")]
3199mod shopping_basket;
3200#[cfg(feature = "shopping")]
3201mod shopping_cart;
3202#[cfg(any(feature = "nature", feature = "tools", feature = "gaming"))]
3203mod shovel;
3204#[cfg(any(feature = "home", feature = "travel"))]
3205mod shower_head;
3206#[cfg(any(feature = "mail", feature = "files"))]
3207mod shredder;
3208#[cfg(feature = "animals")]
3209mod shrimp;
3210#[cfg(any(feature = "layout", feature = "arrows"))]
3211mod shrink;
3212#[cfg(feature = "nature")]
3213mod shrub;
3214#[cfg(any(feature = "multimedia", feature = "arrows"))]
3215mod shuffle;
3216#[cfg(any(feature = "text", feature = "math", feature = "science"))]
3217mod sigma;
3218#[cfg(feature = "connectivity")]
3219mod signal;
3220#[cfg(feature = "connectivity")]
3221mod signal_high;
3222#[cfg(feature = "connectivity")]
3223mod signal_low;
3224#[cfg(feature = "connectivity")]
3225mod signal_medium;
3226#[cfg(feature = "connectivity")]
3227mod signal_zero;
3228#[cfg(feature = "text")]
3229mod signature;
3230#[cfg(any(
3231    feature = "arrows",
3232    feature = "navigation",
3233    feature = "development",
3234    feature = "gaming"
3235))]
3236mod signpost;
3237#[cfg(any(
3238    feature = "arrows",
3239    feature = "navigation",
3240    feature = "development",
3241    feature = "gaming"
3242))]
3243mod signpost_big;
3244#[cfg(feature = "medical")]
3245mod siren;
3246#[cfg(any(feature = "multimedia", feature = "arrows"))]
3247mod skip_back;
3248#[cfg(any(feature = "multimedia", feature = "arrows"))]
3249mod skip_forward;
3250#[cfg(feature = "gaming")]
3251mod skull;
3252#[cfg(any(
3253    feature = "account",
3254    feature = "social",
3255    feature = "brands",
3256    feature = "development"
3257))]
3258mod slack;
3259#[cfg(any(feature = "development", feature = "math"))]
3260mod slash;
3261#[cfg(feature = "design")]
3262mod slice;
3263#[cfg(feature = "account")]
3264mod sliders_horizontal;
3265#[cfg(feature = "account")]
3266mod sliders_vertical;
3267#[cfg(any(feature = "connectivity", feature = "devices"))]
3268mod smartphone;
3269#[cfg(any(feature = "connectivity", feature = "devices"))]
3270mod smartphone_charging;
3271#[cfg(any(feature = "communication", feature = "finance", feature = "devices"))]
3272mod smartphone_nfc;
3273#[cfg(any(feature = "emoji", feature = "account"))]
3274mod smile;
3275#[cfg(any(
3276    feature = "emoji",
3277    feature = "social",
3278    feature = "notifications",
3279    feature = "communication"
3280))]
3281mod smile_plus;
3282#[cfg(any(feature = "animals", feature = "food-beverage"))]
3283mod snail;
3284#[cfg(any(feature = "weather", feature = "seasons"))]
3285mod snowflake;
3286#[cfg(any(feature = "home", feature = "travel"))]
3287mod soap_dispenser_droplet;
3288#[cfg(feature = "home")]
3289mod sofa;
3290#[cfg(feature = "food-beverage")]
3291mod soup;
3292#[cfg(feature = "text")]
3293mod space;
3294#[cfg(any(feature = "shapes", feature = "gaming"))]
3295mod spade;
3296#[cfg(feature = "shapes")]
3297mod sparkle;
3298#[cfg(any(
3299    feature = "cursors",
3300    feature = "multimedia",
3301    feature = "gaming",
3302    feature = "weather"
3303))]
3304mod sparkles;
3305#[cfg(any(feature = "multimedia", feature = "devices"))]
3306mod speaker;
3307#[cfg(any(feature = "accessibility", feature = "communication"))]
3308mod speech;
3309#[cfg(any(feature = "text", feature = "development"))]
3310mod spell_check;
3311#[cfg(any(feature = "text", feature = "development"))]
3312mod spell_check_2;
3313#[cfg(feature = "design")]
3314mod spline;
3315#[cfg(any(
3316    feature = "arrows",
3317    feature = "cursors",
3318    feature = "design",
3319    feature = "tools"
3320))]
3321mod spline_pointer;
3322#[cfg(any(feature = "development", feature = "arrows"))]
3323mod split;
3324#[cfg(any(feature = "communication", feature = "tools", feature = "social"))]
3325mod spool;
3326#[cfg(any(feature = "design", feature = "tools"))]
3327mod spray_can;
3328#[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
3329mod sprout;
3330#[cfg(feature = "shapes")]
3331mod square;
3332#[cfg(any(
3333    feature = "medical",
3334    feature = "social",
3335    feature = "science",
3336    feature = "multimedia"
3337))]
3338mod square_activity;
3339#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
3340mod square_arrow_down;
3341#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
3342mod square_arrow_down_left;
3343#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
3344mod square_arrow_down_right;
3345#[cfg(any(feature = "arrows", feature = "navigation"))]
3346mod square_arrow_left;
3347#[cfg(any(feature = "arrows", feature = "navigation"))]
3348mod square_arrow_out_down_left;
3349#[cfg(any(feature = "arrows", feature = "navigation"))]
3350mod square_arrow_out_down_right;
3351#[cfg(any(feature = "arrows", feature = "navigation"))]
3352mod square_arrow_out_up_left;
3353#[cfg(any(feature = "arrows", feature = "navigation", feature = "social"))]
3354mod square_arrow_out_up_right;
3355#[cfg(any(feature = "arrows", feature = "navigation"))]
3356mod square_arrow_right;
3357#[cfg(any(feature = "arrows", feature = "navigation"))]
3358mod square_arrow_up;
3359#[cfg(any(feature = "arrows", feature = "navigation"))]
3360mod square_arrow_up_left;
3361#[cfg(any(feature = "arrows", feature = "navigation", feature = "social"))]
3362mod square_arrow_up_right;
3363#[cfg(any(
3364    feature = "text",
3365    feature = "security",
3366    feature = "math",
3367    feature = "development"
3368))]
3369mod square_asterisk;
3370#[cfg(any(
3371    feature = "text",
3372    feature = "design",
3373    feature = "tools",
3374    feature = "files",
3375    feature = "development"
3376))]
3377mod square_bottom_dashed_scissors;
3378#[cfg(any(
3379    feature = "charts",
3380    feature = "time",
3381    feature = "development",
3382    feature = "design"
3383))]
3384mod square_chart_gantt;
3385#[cfg(feature = "notifications")]
3386mod square_check;
3387#[cfg(feature = "notifications")]
3388mod square_check_big;
3389#[cfg(any(feature = "arrows", feature = "navigation"))]
3390mod square_chevron_down;
3391#[cfg(any(feature = "arrows", feature = "navigation"))]
3392mod square_chevron_left;
3393#[cfg(any(feature = "arrows", feature = "navigation", feature = "development"))]
3394mod square_chevron_right;
3395#[cfg(any(feature = "arrows", feature = "navigation", feature = "math"))]
3396mod square_chevron_up;
3397#[cfg(any(feature = "text", feature = "development"))]
3398mod square_code;
3399#[cfg(any(feature = "text", feature = "design"))]
3400mod square_dashed;
3401#[cfg(any(feature = "development", feature = "files"))]
3402mod square_dashed_bottom;
3403#[cfg(any(feature = "development", feature = "files"))]
3404mod square_dashed_bottom_code;
3405#[cfg(any(feature = "charts", feature = "development", feature = "design"))]
3406mod square_dashed_kanban;
3407#[cfg(any(
3408    feature = "arrows",
3409    feature = "cursors",
3410    feature = "development",
3411    feature = "tools"
3412))]
3413mod square_dashed_mouse_pointer;
3414#[cfg(any(feature = "design", feature = "development", feature = "layout"))]
3415mod square_dashed_top_solid;
3416#[cfg(feature = "math")]
3417mod square_divide;
3418#[cfg(feature = "development")]
3419mod square_dot;
3420#[cfg(feature = "math")]
3421mod square_equal;
3422#[cfg(any(feature = "development", feature = "math"))]
3423mod square_function;
3424#[cfg(any(feature = "charts", feature = "development", feature = "design"))]
3425mod square_kanban;
3426#[cfg(any(
3427    feature = "text",
3428    feature = "photography",
3429    feature = "multimedia",
3430    feature = "navigation",
3431    feature = "development"
3432))]
3433mod square_library;
3434#[cfg(any(feature = "transportation", feature = "navigation"))]
3435mod square_m;
3436#[cfg(feature = "layout")]
3437mod square_menu;
3438#[cfg(any(
3439    feature = "math",
3440    feature = "development",
3441    feature = "text",
3442    feature = "tools",
3443    feature = "devices"
3444))]
3445mod square_minus;
3446#[cfg(any(
3447    feature = "arrows",
3448    feature = "cursors",
3449    feature = "development",
3450    feature = "tools"
3451))]
3452mod square_mouse_pointer;
3453#[cfg(any(feature = "transportation", feature = "navigation"))]
3454mod square_parking;
3455#[cfg(any(feature = "transportation", feature = "navigation"))]
3456mod square_parking_off;
3457#[cfg(feature = "text")]
3458mod square_pen;
3459#[cfg(any(
3460    feature = "social",
3461    feature = "finance",
3462    feature = "shopping",
3463    feature = "math"
3464))]
3465mod square_percent;
3466#[cfg(any(feature = "development", feature = "math"))]
3467mod square_pi;
3468#[cfg(feature = "text")]
3469mod square_pilcrow;
3470#[cfg(any(feature = "arrows", feature = "multimedia"))]
3471mod square_play;
3472#[cfg(any(
3473    feature = "math",
3474    feature = "tools",
3475    feature = "development",
3476    feature = "text"
3477))]
3478mod square_plus;
3479#[cfg(feature = "connectivity")]
3480mod square_power;
3481#[cfg(any(feature = "development", feature = "math"))]
3482mod square_radical;
3483#[cfg(any(feature = "design", feature = "development", feature = "layout"))]
3484mod square_round_corner;
3485#[cfg(any(
3486    feature = "text",
3487    feature = "design",
3488    feature = "tools",
3489    feature = "files",
3490    feature = "development"
3491))]
3492mod square_scissors;
3493#[cfg(any(feature = "text", feature = "math"))]
3494mod square_sigma;
3495#[cfg(any(feature = "development", feature = "math"))]
3496mod square_slash;
3497#[cfg(feature = "layout")]
3498mod square_split_horizontal;
3499#[cfg(feature = "layout")]
3500mod square_split_vertical;
3501#[cfg(feature = "layout")]
3502mod square_square;
3503#[cfg(any(feature = "text", feature = "files", feature = "development"))]
3504mod square_stack;
3505#[cfg(feature = "development")]
3506mod square_terminal;
3507#[cfg(feature = "account")]
3508mod square_user;
3509#[cfg(feature = "account")]
3510mod square_user_round;
3511#[cfg(any(feature = "math", feature = "notifications"))]
3512mod square_x;
3513#[cfg(feature = "design")]
3514mod squares_exclude;
3515#[cfg(feature = "design")]
3516mod squares_intersect;
3517#[cfg(feature = "design")]
3518mod squares_subtract;
3519#[cfg(feature = "design")]
3520mod squares_unite;
3521#[cfg(feature = "shapes")]
3522mod squircle;
3523#[cfg(feature = "animals")]
3524mod squirrel;
3525#[cfg(any(feature = "design", feature = "cursors", feature = "tools"))]
3526mod stamp;
3527#[cfg(any(
3528    feature = "account",
3529    feature = "social",
3530    feature = "shapes",
3531    feature = "multimedia",
3532    feature = "weather",
3533    feature = "emoji",
3534    feature = "gaming"
3535))]
3536mod star;
3537#[cfg(any(feature = "social", feature = "multimedia"))]
3538mod star_half;
3539#[cfg(any(feature = "multimedia", feature = "social"))]
3540mod star_off;
3541#[cfg(any(feature = "multimedia", feature = "arrows"))]
3542mod step_back;
3543#[cfg(any(feature = "multimedia", feature = "arrows"))]
3544mod step_forward;
3545#[cfg(any(feature = "science", feature = "medical"))]
3546mod stethoscope;
3547#[cfg(feature = "social")]
3548mod sticker;
3549#[cfg(any(feature = "text", feature = "social"))]
3550mod sticky_note;
3551#[cfg(any(feature = "buildings", feature = "navigation", feature = "shopping"))]
3552mod store;
3553#[cfg(feature = "layout")]
3554mod stretch_horizontal;
3555#[cfg(feature = "layout")]
3556mod stretch_vertical;
3557#[cfg(feature = "text")]
3558mod strikethrough;
3559#[cfg(feature = "text")]
3560mod subscript;
3561#[cfg(any(
3562    feature = "accessibility",
3563    feature = "weather",
3564    feature = "seasons",
3565    feature = "sustainability"
3566))]
3567mod sun;
3568#[cfg(any(feature = "accessibility", feature = "weather"))]
3569mod sun_dim;
3570#[cfg(any(feature = "accessibility", feature = "weather"))]
3571mod sun_medium;
3572#[cfg(feature = "accessibility")]
3573mod sun_moon;
3574#[cfg(feature = "weather")]
3575mod sun_snow;
3576#[cfg(any(feature = "arrows", feature = "weather", feature = "time"))]
3577mod sunrise;
3578#[cfg(any(feature = "arrows", feature = "weather"))]
3579mod sunset;
3580#[cfg(feature = "text")]
3581mod superscript;
3582#[cfg(any(feature = "design", feature = "home", feature = "photography"))]
3583mod swatch_book;
3584#[cfg(feature = "finance")]
3585mod swiss_franc;
3586#[cfg(any(feature = "communication", feature = "devices"))]
3587mod switch_camera;
3588#[cfg(any(feature = "gaming", feature = "tools"))]
3589mod sword;
3590#[cfg(any(feature = "gaming", feature = "tools"))]
3591mod swords;
3592#[cfg(any(feature = "science", feature = "medical"))]
3593mod syringe;
3594#[cfg(any(feature = "text", feature = "files"))]
3595mod table;
3596#[cfg(any(feature = "text", feature = "files"))]
3597mod table_2;
3598#[cfg(any(feature = "text", feature = "files"))]
3599mod table_cells_merge;
3600#[cfg(any(feature = "text", feature = "files"))]
3601mod table_cells_split;
3602#[cfg(any(feature = "text", feature = "files"))]
3603mod table_columns_split;
3604#[cfg(feature = "text")]
3605mod table_of_contents;
3606#[cfg(any(feature = "text", feature = "development", feature = "files"))]
3607mod table_properties;
3608#[cfg(any(feature = "text", feature = "files"))]
3609mod table_rows_split;
3610#[cfg(feature = "devices")]
3611mod tablet;
3612#[cfg(any(
3613    feature = "devices",
3614    feature = "design",
3615    feature = "development",
3616    feature = "tools"
3617))]
3618mod tablet_smartphone;
3619#[cfg(feature = "medical")]
3620mod tablets;
3621#[cfg(feature = "account")]
3622mod tag;
3623#[cfg(feature = "account")]
3624mod tags;
3625#[cfg(any(feature = "math", feature = "gaming"))]
3626mod tally_1;
3627#[cfg(any(feature = "math", feature = "gaming"))]
3628mod tally_2;
3629#[cfg(any(feature = "math", feature = "gaming"))]
3630mod tally_3;
3631#[cfg(any(feature = "math", feature = "gaming"))]
3632mod tally_4;
3633#[cfg(any(feature = "math", feature = "gaming"))]
3634mod tally_5;
3635#[cfg(any(
3636    feature = "shapes",
3637    feature = "math",
3638    feature = "design",
3639    feature = "tools"
3640))]
3641mod tangent;
3642#[cfg(any(feature = "brands", feature = "gaming"))]
3643mod target;
3644#[cfg(any(feature = "science", feature = "development", feature = "tools"))]
3645mod telescope;
3646#[cfg(any(feature = "travel", feature = "nature", feature = "sustainability"))]
3647mod tent;
3648#[cfg(any(feature = "travel", feature = "nature"))]
3649mod tent_tree;
3650#[cfg(feature = "development")]
3651mod terminal;
3652#[cfg(feature = "science")]
3653mod test_tube;
3654#[cfg(feature = "science")]
3655mod test_tube_diagonal;
3656#[cfg(feature = "science")]
3657mod test_tubes;
3658#[cfg(any(feature = "text", feature = "files", feature = "cursors"))]
3659mod text;
3660#[cfg(any(feature = "text", feature = "cursors"))]
3661mod text_cursor;
3662#[cfg(any(feature = "text", feature = "layout"))]
3663mod text_cursor_input;
3664#[cfg(feature = "text")]
3665mod text_quote;
3666#[cfg(feature = "text")]
3667mod text_search;
3668#[cfg(any(feature = "text", feature = "cursors"))]
3669mod text_select;
3670#[cfg(any(feature = "buildings", feature = "social"))]
3671mod theater;
3672#[cfg(feature = "weather")]
3673mod thermometer;
3674#[cfg(feature = "weather")]
3675mod thermometer_snowflake;
3676#[cfg(feature = "weather")]
3677mod thermometer_sun;
3678#[cfg(any(feature = "account", feature = "social", feature = "emoji"))]
3679mod thumbs_down;
3680#[cfg(any(feature = "account", feature = "social", feature = "emoji"))]
3681mod thumbs_up;
3682#[cfg(any(feature = "account", feature = "transportation"))]
3683mod ticket;
3684#[cfg(feature = "transportation")]
3685mod ticket_check;
3686#[cfg(feature = "transportation")]
3687mod ticket_minus;
3688#[cfg(any(feature = "transportation", feature = "shopping"))]
3689mod ticket_percent;
3690#[cfg(feature = "transportation")]
3691mod ticket_plus;
3692#[cfg(feature = "transportation")]
3693mod ticket_slash;
3694#[cfg(feature = "transportation")]
3695mod ticket_x;
3696#[cfg(any(feature = "travel", feature = "account", feature = "transportation"))]
3697mod tickets;
3698#[cfg(any(feature = "transportation", feature = "travel"))]
3699mod tickets_plane;
3700#[cfg(feature = "time")]
3701mod timer;
3702#[cfg(feature = "time")]
3703mod timer_off;
3704#[cfg(feature = "time")]
3705mod timer_reset;
3706#[cfg(any(feature = "layout", feature = "account", feature = "development"))]
3707mod toggle_left;
3708#[cfg(any(feature = "layout", feature = "account", feature = "development"))]
3709mod toggle_right;
3710#[cfg(any(feature = "devices", feature = "home"))]
3711mod toilet;
3712#[cfg(feature = "weather")]
3713mod tornado;
3714#[cfg(any(
3715    feature = "shapes",
3716    feature = "design",
3717    feature = "tools",
3718    feature = "food-beverage"
3719))]
3720mod torus;
3721#[cfg(feature = "devices")]
3722mod touchpad;
3723#[cfg(feature = "devices")]
3724mod touchpad_off;
3725#[cfg(any(feature = "travel", feature = "transportation"))]
3726mod tower_control;
3727#[cfg(any(feature = "gaming", feature = "development"))]
3728mod toy_brick;
3729#[cfg(any(
3730    feature = "transportation",
3731    feature = "sustainability",
3732    feature = "food-beverage"
3733))]
3734mod tractor;
3735#[cfg(feature = "transportation")]
3736mod traffic_cone;
3737#[cfg(feature = "transportation")]
3738mod train_front;
3739#[cfg(any(feature = "transportation", feature = "navigation"))]
3740mod train_front_tunnel;
3741#[cfg(any(feature = "transportation", feature = "navigation"))]
3742mod train_track;
3743#[cfg(feature = "transportation")]
3744mod tram_front;
3745#[cfg(any(feature = "medical", feature = "accessibility"))]
3746mod transgender;
3747#[cfg(any(feature = "files", feature = "mail"))]
3748mod trash;
3749#[cfg(any(feature = "files", feature = "mail"))]
3750mod trash_2;
3751#[cfg(any(feature = "nature", feature = "sustainability"))]
3752mod tree_deciduous;
3753#[cfg(any(feature = "nature", feature = "sustainability"))]
3754mod tree_palm;
3755#[cfg(any(feature = "nature", feature = "sustainability"))]
3756mod tree_pine;
3757#[cfg(any(feature = "nature", feature = "sustainability"))]
3758mod trees;
3759#[cfg(any(feature = "account", feature = "brands", feature = "development"))]
3760mod trello;
3761#[cfg(any(feature = "charts", feature = "arrows"))]
3762mod trending_down;
3763#[cfg(any(feature = "charts", feature = "arrows"))]
3764mod trending_up;
3765#[cfg(any(feature = "charts", feature = "arrows"))]
3766mod trending_up_down;
3767#[cfg(feature = "shapes")]
3768mod triangle;
3769#[cfg(any(feature = "notifications", feature = "shapes", feature = "development"))]
3770mod triangle_alert;
3771#[cfg(feature = "shapes")]
3772mod triangle_dashed;
3773#[cfg(any(feature = "shapes", feature = "math"))]
3774mod triangle_right;
3775#[cfg(any(feature = "sports", feature = "gaming"))]
3776mod trophy;
3777#[cfg(feature = "transportation")]
3778mod truck;
3779#[cfg(feature = "transportation")]
3780mod truck_electric;
3781#[cfg(feature = "animals")]
3782mod turtle;
3783#[cfg(any(feature = "devices", feature = "multimedia", feature = "communication"))]
3784mod tv;
3785#[cfg(any(feature = "devices", feature = "multimedia"))]
3786mod tv_minimal;
3787#[cfg(any(feature = "devices", feature = "multimedia"))]
3788mod tv_minimal_play;
3789#[cfg(any(
3790    feature = "brands",
3791    feature = "social",
3792    feature = "account",
3793    feature = "gaming"
3794))]
3795mod twitch;
3796#[cfg(any(feature = "brands", feature = "social", feature = "account"))]
3797mod twitter;
3798#[cfg(feature = "text")]
3799mod r#type;
3800#[cfg(feature = "text")]
3801mod type_outline;
3802#[cfg(feature = "weather")]
3803mod umbrella;
3804#[cfg(feature = "weather")]
3805mod umbrella_off;
3806#[cfg(feature = "text")]
3807mod underline;
3808#[cfg(any(feature = "text", feature = "arrows"))]
3809mod undo;
3810#[cfg(any(feature = "text", feature = "arrows"))]
3811mod undo_2;
3812#[cfg(any(feature = "text", feature = "arrows"))]
3813mod undo_dot;
3814#[cfg(any(feature = "arrows", feature = "layout"))]
3815mod unfold_horizontal;
3816#[cfg(any(feature = "arrows", feature = "layout"))]
3817mod unfold_vertical;
3818#[cfg(any(feature = "shapes", feature = "files"))]
3819mod ungroup;
3820#[cfg(any(feature = "buildings", feature = "navigation"))]
3821mod university;
3822#[cfg(feature = "text")]
3823mod unlink;
3824#[cfg(feature = "text")]
3825mod unlink_2;
3826#[cfg(any(feature = "devices", feature = "development"))]
3827mod unplug;
3828#[cfg(any(feature = "arrows", feature = "files"))]
3829mod upload;
3830#[cfg(any(feature = "devices", feature = "multimedia", feature = "home"))]
3831mod usb;
3832#[cfg(feature = "account")]
3833mod user;
3834#[cfg(feature = "account")]
3835mod user_check;
3836#[cfg(feature = "account")]
3837mod user_cog;
3838#[cfg(any(feature = "account", feature = "security"))]
3839mod user_lock;
3840#[cfg(feature = "account")]
3841mod user_minus;
3842#[cfg(feature = "account")]
3843mod user_pen;
3844#[cfg(feature = "account")]
3845mod user_plus;
3846#[cfg(feature = "account")]
3847mod user_round;
3848#[cfg(feature = "account")]
3849mod user_round_check;
3850#[cfg(feature = "account")]
3851mod user_round_cog;
3852#[cfg(feature = "account")]
3853mod user_round_minus;
3854#[cfg(feature = "account")]
3855mod user_round_pen;
3856#[cfg(feature = "account")]
3857mod user_round_plus;
3858#[cfg(any(feature = "account", feature = "social"))]
3859mod user_round_search;
3860#[cfg(feature = "account")]
3861mod user_round_x;
3862#[cfg(any(feature = "account", feature = "social"))]
3863mod user_search;
3864#[cfg(feature = "account")]
3865mod user_x;
3866#[cfg(feature = "account")]
3867mod users;
3868#[cfg(feature = "account")]
3869mod users_round;
3870#[cfg(any(feature = "food-beverage", feature = "travel", feature = "navigation"))]
3871mod utensils;
3872#[cfg(any(feature = "food-beverage", feature = "travel", feature = "navigation"))]
3873mod utensils_crossed;
3874#[cfg(any(feature = "buildings", feature = "home", feature = "sustainability"))]
3875mod utility_pole;
3876#[cfg(any(feature = "development", feature = "math"))]
3877mod variable;
3878#[cfg(any(feature = "security", feature = "travel", feature = "home"))]
3879mod vault;
3880#[cfg(any(feature = "food-beverage", feature = "sustainability"))]
3881mod vegan;
3882#[cfg(any(feature = "account", feature = "gaming"))]
3883mod venetian_mask;
3884#[cfg(feature = "medical")]
3885mod venus;
3886#[cfg(feature = "medical")]
3887mod venus_and_mars;
3888#[cfg(any(
3889    feature = "devices",
3890    feature = "connectivity",
3891    feature = "account",
3892    feature = "notifications"
3893))]
3894mod vibrate;
3895#[cfg(any(feature = "devices", feature = "connectivity", feature = "account"))]
3896mod vibrate_off;
3897#[cfg(any(
3898    feature = "devices",
3899    feature = "communication",
3900    feature = "connectivity",
3901    feature = "photography"
3902))]
3903mod video;
3904#[cfg(any(
3905    feature = "devices",
3906    feature = "communication",
3907    feature = "connectivity",
3908    feature = "photography"
3909))]
3910mod video_off;
3911#[cfg(any(
3912    feature = "devices",
3913    feature = "communication",
3914    feature = "connectivity",
3915    feature = "photography",
3916    feature = "files"
3917))]
3918mod videotape;
3919#[cfg(any(feature = "design", feature = "photography"))]
3920mod view;
3921#[cfg(any(feature = "connectivity", feature = "devices", feature = "social"))]
3922mod voicemail;
3923#[cfg(any(feature = "sports", feature = "gaming", feature = "travel"))]
3924mod volleyball;
3925#[cfg(any(
3926    feature = "connectivity",
3927    feature = "communication",
3928    feature = "multimedia"
3929))]
3930mod volume;
3931#[cfg(any(
3932    feature = "connectivity",
3933    feature = "communication",
3934    feature = "multimedia"
3935))]
3936mod volume_1;
3937#[cfg(any(
3938    feature = "connectivity",
3939    feature = "communication",
3940    feature = "multimedia"
3941))]
3942mod volume_2;
3943#[cfg(any(
3944    feature = "connectivity",
3945    feature = "communication",
3946    feature = "multimedia"
3947))]
3948mod volume_off;
3949#[cfg(any(
3950    feature = "connectivity",
3951    feature = "communication",
3952    feature = "multimedia"
3953))]
3954mod volume_x;
3955#[cfg(feature = "social")]
3956mod vote;
3957#[cfg(any(feature = "account", feature = "finance"))]
3958mod wallet;
3959#[cfg(any(feature = "account", feature = "finance"))]
3960mod wallet_cards;
3961#[cfg(any(feature = "account", feature = "finance"))]
3962mod wallet_minimal;
3963#[cfg(any(feature = "account", feature = "devices"))]
3964mod wallpaper;
3965#[cfg(any(
3966    feature = "design",
3967    feature = "gaming",
3968    feature = "cursors",
3969    feature = "photography"
3970))]
3971mod wand;
3972#[cfg(any(
3973    feature = "design",
3974    feature = "gaming",
3975    feature = "cursors",
3976    feature = "photography"
3977))]
3978mod wand_sparkles;
3979#[cfg(any(feature = "buildings", feature = "navigation"))]
3980mod warehouse;
3981#[cfg(any(feature = "home", feature = "devices", feature = "travel"))]
3982mod washing_machine;
3983#[cfg(feature = "time")]
3984mod watch;
3985#[cfg(any(
3986    feature = "weather",
3987    feature = "navigation",
3988    feature = "multimedia",
3989    feature = "sustainability"
3990))]
3991mod waves;
3992#[cfg(any(feature = "sports", feature = "home"))]
3993mod waves_ladder;
3994#[cfg(any(
3995    feature = "security",
3996    feature = "account",
3997    feature = "navigation",
3998    feature = "development",
3999    feature = "social"
4000))]
4001mod waypoints;
4002#[cfg(any(
4003    feature = "connectivity",
4004    feature = "devices",
4005    feature = "communication"
4006))]
4007mod webcam;
4008#[cfg(any(feature = "development", feature = "social", feature = "account"))]
4009mod webhook;
4010#[cfg(any(feature = "development", feature = "social", feature = "account"))]
4011mod webhook_off;
4012#[cfg(feature = "math")]
4013mod weight;
4014#[cfg(feature = "food-beverage")]
4015mod wheat;
4016#[cfg(feature = "food-beverage")]
4017mod wheat_off;
4018#[cfg(feature = "text")]
4019mod whole_word;
4020#[cfg(any(feature = "connectivity", feature = "devices"))]
4021mod wifi;
4022#[cfg(any(feature = "connectivity", feature = "devices", feature = "files"))]
4023mod wifi_cog;
4024#[cfg(any(feature = "connectivity", feature = "devices"))]
4025mod wifi_high;
4026#[cfg(any(feature = "connectivity", feature = "devices"))]
4027mod wifi_low;
4028#[cfg(any(feature = "connectivity", feature = "devices"))]
4029mod wifi_off;
4030#[cfg(any(feature = "connectivity", feature = "devices"))]
4031mod wifi_pen;
4032#[cfg(any(feature = "connectivity", feature = "devices"))]
4033mod wifi_zero;
4034#[cfg(any(feature = "weather", feature = "sustainability"))]
4035mod wind;
4036#[cfg(any(feature = "weather", feature = "sustainability"))]
4037mod wind_arrow_down;
4038#[cfg(feature = "food-beverage")]
4039mod wine;
4040#[cfg(feature = "food-beverage")]
4041mod wine_off;
4042#[cfg(feature = "development")]
4043mod workflow;
4044#[cfg(any(feature = "animals", feature = "security"))]
4045mod worm;
4046#[cfg(any(feature = "text", feature = "arrows"))]
4047mod wrap_text;
4048#[cfg(any(feature = "account", feature = "development", feature = "tools"))]
4049mod wrench;
4050#[cfg(any(feature = "notifications", feature = "math"))]
4051mod x;
4052#[cfg(any(feature = "multimedia", feature = "social", feature = "brands"))]
4053mod youtube;
4054#[cfg(any(
4055    feature = "connectivity",
4056    feature = "devices",
4057    feature = "photography",
4058    feature = "weather"
4059))]
4060mod zap;
4061#[cfg(any(
4062    feature = "connectivity",
4063    feature = "devices",
4064    feature = "photography",
4065    feature = "weather"
4066))]
4067mod zap_off;
4068#[cfg(any(
4069    feature = "accessibility",
4070    feature = "layout",
4071    feature = "design",
4072    feature = "text",
4073    feature = "photography"
4074))]
4075mod zoom_in;
4076#[cfg(any(
4077    feature = "accessibility",
4078    feature = "layout",
4079    feature = "design",
4080    feature = "text",
4081    feature = "photography"
4082))]
4083mod zoom_out;
4084
4085#[cfg(any(feature = "text", feature = "design"))]
4086pub use a_arrow_down::*;
4087#[cfg(any(feature = "text", feature = "design"))]
4088pub use a_arrow_up::*;
4089#[cfg(any(feature = "text", feature = "design"))]
4090pub use a_large_small::*;
4091#[cfg(any(feature = "accessibility", feature = "medical"))]
4092pub use accessibility::*;
4093#[cfg(any(
4094    feature = "medical",
4095    feature = "account",
4096    feature = "social",
4097    feature = "science",
4098    feature = "multimedia"
4099))]
4100pub use activity::*;
4101#[cfg(feature = "home")]
4102pub use air_vent::*;
4103#[cfg(any(
4104    feature = "multimedia",
4105    feature = "connectivity",
4106    feature = "devices",
4107    feature = "brands"
4108))]
4109pub use airplay::*;
4110#[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
4111pub use alarm_clock::*;
4112#[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
4113pub use alarm_clock_check::*;
4114#[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
4115pub use alarm_clock_minus::*;
4116#[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
4117pub use alarm_clock_off::*;
4118#[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
4119pub use alarm_clock_plus::*;
4120#[cfg(any(feature = "home", feature = "devices", feature = "travel"))]
4121pub use alarm_smoke::*;
4122#[cfg(any(feature = "photography", feature = "multimedia"))]
4123pub use album::*;
4124#[cfg(feature = "text")]
4125pub use align_center::*;
4126#[cfg(feature = "layout")]
4127pub use align_center_horizontal::*;
4128#[cfg(feature = "layout")]
4129pub use align_center_vertical::*;
4130#[cfg(feature = "layout")]
4131pub use align_end_horizontal::*;
4132#[cfg(feature = "layout")]
4133pub use align_end_vertical::*;
4134#[cfg(feature = "layout")]
4135pub use align_horizontal_distribute_center::*;
4136#[cfg(feature = "layout")]
4137pub use align_horizontal_distribute_end::*;
4138#[cfg(feature = "layout")]
4139pub use align_horizontal_distribute_start::*;
4140#[cfg(feature = "layout")]
4141pub use align_horizontal_justify_center::*;
4142#[cfg(feature = "layout")]
4143pub use align_horizontal_justify_end::*;
4144#[cfg(feature = "layout")]
4145pub use align_horizontal_justify_start::*;
4146#[cfg(feature = "layout")]
4147pub use align_horizontal_space_around::*;
4148#[cfg(feature = "layout")]
4149pub use align_horizontal_space_between::*;
4150#[cfg(feature = "text")]
4151pub use align_justify::*;
4152#[cfg(feature = "text")]
4153pub use align_left::*;
4154#[cfg(feature = "text")]
4155pub use align_right::*;
4156#[cfg(feature = "layout")]
4157pub use align_start_horizontal::*;
4158#[cfg(feature = "layout")]
4159pub use align_start_vertical::*;
4160#[cfg(feature = "layout")]
4161pub use align_vertical_distribute_center::*;
4162#[cfg(feature = "layout")]
4163pub use align_vertical_distribute_end::*;
4164#[cfg(feature = "layout")]
4165pub use align_vertical_distribute_start::*;
4166#[cfg(feature = "layout")]
4167pub use align_vertical_justify_center::*;
4168#[cfg(feature = "layout")]
4169pub use align_vertical_justify_end::*;
4170#[cfg(feature = "layout")]
4171pub use align_vertical_justify_start::*;
4172#[cfg(feature = "layout")]
4173pub use align_vertical_space_around::*;
4174#[cfg(feature = "layout")]
4175pub use align_vertical_space_between::*;
4176#[cfg(any(feature = "medical", feature = "transportation"))]
4177pub use ambulance::*;
4178#[cfg(any(feature = "text", feature = "development"))]
4179pub use ampersand::*;
4180#[cfg(any(feature = "text", feature = "development"))]
4181pub use ampersands::*;
4182#[cfg(any(feature = "food-beverage", feature = "gaming"))]
4183pub use amphora::*;
4184#[cfg(any(feature = "transportation", feature = "text"))]
4185pub use anchor::*;
4186#[cfg(feature = "emoji")]
4187pub use angry::*;
4188#[cfg(feature = "emoji")]
4189pub use annoyed::*;
4190#[cfg(any(feature = "devices", feature = "multimedia", feature = "communication"))]
4191pub use antenna::*;
4192#[cfg(any(feature = "buildings", feature = "tools", feature = "gaming"))]
4193pub use anvil::*;
4194#[cfg(feature = "photography")]
4195pub use aperture::*;
4196#[cfg(any(
4197    feature = "layout",
4198    feature = "design",
4199    feature = "development",
4200    feature = "files"
4201))]
4202pub use app_window::*;
4203#[cfg(any(
4204    feature = "layout",
4205    feature = "design",
4206    feature = "development",
4207    feature = "files"
4208))]
4209pub use app_window_mac::*;
4210#[cfg(feature = "food-beverage")]
4211pub use apple::*;
4212#[cfg(any(feature = "files", feature = "mail"))]
4213pub use archive::*;
4214#[cfg(any(feature = "files", feature = "mail"))]
4215pub use archive_restore::*;
4216#[cfg(any(feature = "files", feature = "mail"))]
4217pub use archive_x::*;
4218#[cfg(feature = "home")]
4219pub use armchair::*;
4220#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4221pub use arrow_big_down::*;
4222#[cfg(any(
4223    feature = "arrows",
4224    feature = "navigation",
4225    feature = "gaming",
4226    feature = "files"
4227))]
4228pub use arrow_big_down_dash::*;
4229#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4230pub use arrow_big_left::*;
4231#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4232pub use arrow_big_left_dash::*;
4233#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4234pub use arrow_big_right::*;
4235#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4236pub use arrow_big_right_dash::*;
4237#[cfg(any(
4238    feature = "arrows",
4239    feature = "navigation",
4240    feature = "text",
4241    feature = "development",
4242    feature = "gaming"
4243))]
4244pub use arrow_big_up::*;
4245#[cfg(any(
4246    feature = "arrows",
4247    feature = "navigation",
4248    feature = "text",
4249    feature = "development",
4250    feature = "gaming"
4251))]
4252pub use arrow_big_up_dash::*;
4253#[cfg(any(feature = "arrows", feature = "navigation"))]
4254pub use arrow_down::*;
4255#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4256pub use arrow_down_0_1::*;
4257#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4258pub use arrow_down_1_0::*;
4259#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4260pub use arrow_down_a_z::*;
4261#[cfg(any(feature = "arrows", feature = "navigation", feature = "files"))]
4262pub use arrow_down_from_line::*;
4263#[cfg(any(feature = "arrows", feature = "navigation"))]
4264pub use arrow_down_left::*;
4265#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4266pub use arrow_down_narrow_wide::*;
4267#[cfg(any(feature = "arrows", feature = "navigation"))]
4268pub use arrow_down_right::*;
4269#[cfg(any(feature = "arrows", feature = "navigation"))]
4270pub use arrow_down_to_dot::*;
4271#[cfg(any(
4272    feature = "arrows",
4273    feature = "navigation",
4274    feature = "files",
4275    feature = "development"
4276))]
4277pub use arrow_down_to_line::*;
4278#[cfg(any(feature = "arrows", feature = "navigation"))]
4279pub use arrow_down_up::*;
4280#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4281pub use arrow_down_wide_narrow::*;
4282#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4283pub use arrow_down_z_a::*;
4284#[cfg(any(feature = "arrows", feature = "navigation"))]
4285pub use arrow_left::*;
4286#[cfg(any(feature = "arrows", feature = "navigation"))]
4287pub use arrow_left_from_line::*;
4288#[cfg(any(feature = "arrows", feature = "navigation"))]
4289pub use arrow_left_right::*;
4290#[cfg(any(feature = "arrows", feature = "navigation"))]
4291pub use arrow_left_to_line::*;
4292#[cfg(any(feature = "arrows", feature = "navigation"))]
4293pub use arrow_right::*;
4294#[cfg(any(feature = "arrows", feature = "navigation"))]
4295pub use arrow_right_from_line::*;
4296#[cfg(any(feature = "arrows", feature = "navigation"))]
4297pub use arrow_right_left::*;
4298#[cfg(any(feature = "arrows", feature = "navigation", feature = "development"))]
4299pub use arrow_right_to_line::*;
4300#[cfg(any(feature = "arrows", feature = "navigation"))]
4301pub use arrow_up::*;
4302#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4303pub use arrow_up_0_1::*;
4304#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4305pub use arrow_up_1_0::*;
4306#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4307pub use arrow_up_a_z::*;
4308#[cfg(any(feature = "arrows", feature = "navigation"))]
4309pub use arrow_up_down::*;
4310#[cfg(any(feature = "arrows", feature = "navigation"))]
4311pub use arrow_up_from_dot::*;
4312#[cfg(any(
4313    feature = "arrows",
4314    feature = "navigation",
4315    feature = "files",
4316    feature = "development"
4317))]
4318pub use arrow_up_from_line::*;
4319#[cfg(any(feature = "arrows", feature = "navigation"))]
4320pub use arrow_up_left::*;
4321#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4322pub use arrow_up_narrow_wide::*;
4323#[cfg(any(feature = "arrows", feature = "navigation"))]
4324pub use arrow_up_right::*;
4325#[cfg(any(feature = "arrows", feature = "navigation", feature = "files"))]
4326pub use arrow_up_to_line::*;
4327#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4328pub use arrow_up_wide_narrow::*;
4329#[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
4330pub use arrow_up_z_a::*;
4331#[cfg(any(feature = "arrows", feature = "transportation", feature = "mail"))]
4332pub use arrows_up_from_line::*;
4333#[cfg(any(feature = "text", feature = "math", feature = "development"))]
4334pub use asterisk::*;
4335#[cfg(any(feature = "text", feature = "account"))]
4336pub use at_sign::*;
4337#[cfg(feature = "science")]
4338pub use atom::*;
4339#[cfg(any(feature = "multimedia", feature = "communication"))]
4340pub use audio_lines::*;
4341#[cfg(any(feature = "multimedia", feature = "communication"))]
4342pub use audio_waveform::*;
4343#[cfg(any(feature = "account", feature = "sports", feature = "gaming"))]
4344pub use award::*;
4345#[cfg(any(feature = "tools", feature = "gaming"))]
4346pub use axe::*;
4347#[cfg(feature = "design")]
4348pub use axis_3_d::*;
4349#[cfg(any(feature = "accessibility", feature = "people"))]
4350pub use baby::*;
4351#[cfg(any(feature = "gaming", feature = "photography", feature = "travel"))]
4352pub use backpack::*;
4353#[cfg(any(feature = "account", feature = "social", feature = "shapes"))]
4354pub use badge::*;
4355#[cfg(any(feature = "account", feature = "social"))]
4356pub use badge_alert::*;
4357#[cfg(any(feature = "shopping", feature = "finance"))]
4358pub use badge_cent::*;
4359#[cfg(feature = "social")]
4360pub use badge_check::*;
4361#[cfg(any(feature = "shopping", feature = "finance"))]
4362pub use badge_dollar_sign::*;
4363#[cfg(any(feature = "shopping", feature = "finance"))]
4364pub use badge_euro::*;
4365#[cfg(any(feature = "shopping", feature = "finance"))]
4366pub use badge_indian_rupee::*;
4367#[cfg(any(feature = "account", feature = "accessibility", feature = "social"))]
4368pub use badge_info::*;
4369#[cfg(any(feature = "shopping", feature = "finance"))]
4370pub use badge_japanese_yen::*;
4371#[cfg(feature = "social")]
4372pub use badge_minus::*;
4373#[cfg(any(
4374    feature = "social",
4375    feature = "finance",
4376    feature = "shopping",
4377    feature = "math"
4378))]
4379pub use badge_percent::*;
4380#[cfg(feature = "social")]
4381pub use badge_plus::*;
4382#[cfg(any(feature = "shopping", feature = "finance"))]
4383pub use badge_pound_sterling::*;
4384#[cfg(any(feature = "accessibility", feature = "social", feature = "shapes"))]
4385pub use badge_question_mark::*;
4386#[cfg(any(feature = "shopping", feature = "finance"))]
4387pub use badge_russian_ruble::*;
4388#[cfg(any(feature = "shopping", feature = "finance"))]
4389pub use badge_swiss_franc::*;
4390#[cfg(feature = "social")]
4391pub use badge_x::*;
4392#[cfg(any(feature = "transportation", feature = "travel"))]
4393pub use baggage_claim::*;
4394#[cfg(feature = "account")]
4395pub use ban::*;
4396#[cfg(feature = "food-beverage")]
4397pub use banana::*;
4398#[cfg(feature = "medical")]
4399pub use bandage::*;
4400#[cfg(feature = "finance")]
4401pub use banknote::*;
4402#[cfg(feature = "finance")]
4403pub use banknote_arrow_down::*;
4404#[cfg(feature = "finance")]
4405pub use banknote_arrow_up::*;
4406#[cfg(feature = "finance")]
4407pub use banknote_x::*;
4408#[cfg(feature = "shopping")]
4409pub use barcode::*;
4410#[cfg(any(feature = "food-beverage", feature = "navigation"))]
4411pub use barrel::*;
4412#[cfg(feature = "text")]
4413pub use baseline::*;
4414#[cfg(feature = "travel")]
4415pub use bath::*;
4416#[cfg(any(feature = "connectivity", feature = "devices"))]
4417pub use battery::*;
4418#[cfg(any(feature = "connectivity", feature = "devices"))]
4419pub use battery_charging::*;
4420#[cfg(any(feature = "connectivity", feature = "devices"))]
4421pub use battery_full::*;
4422#[cfg(any(feature = "connectivity", feature = "devices"))]
4423pub use battery_low::*;
4424#[cfg(any(feature = "connectivity", feature = "devices"))]
4425pub use battery_medium::*;
4426#[cfg(feature = "devices")]
4427pub use battery_plus::*;
4428#[cfg(any(feature = "connectivity", feature = "devices"))]
4429pub use battery_warning::*;
4430#[cfg(any(feature = "science", feature = "gaming"))]
4431pub use beaker::*;
4432#[cfg(feature = "food-beverage")]
4433pub use bean::*;
4434#[cfg(feature = "food-beverage")]
4435pub use bean_off::*;
4436#[cfg(feature = "home")]
4437pub use bed::*;
4438#[cfg(feature = "home")]
4439pub use bed_double::*;
4440#[cfg(feature = "home")]
4441pub use bed_single::*;
4442#[cfg(feature = "food-beverage")]
4443pub use beef::*;
4444#[cfg(feature = "food-beverage")]
4445pub use beer::*;
4446#[cfg(feature = "food-beverage")]
4447pub use beer_off::*;
4448#[cfg(any(feature = "account", feature = "notifications"))]
4449pub use bell::*;
4450#[cfg(any(feature = "account", feature = "notifications"))]
4451pub use bell_dot::*;
4452#[cfg(any(feature = "devices", feature = "notifications", feature = "home"))]
4453pub use bell_electric::*;
4454#[cfg(feature = "notifications")]
4455pub use bell_minus::*;
4456#[cfg(feature = "notifications")]
4457pub use bell_off::*;
4458#[cfg(feature = "notifications")]
4459pub use bell_plus::*;
4460#[cfg(feature = "notifications")]
4461pub use bell_ring::*;
4462#[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
4463pub use between_horizontal_end::*;
4464#[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
4465pub use between_horizontal_start::*;
4466#[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
4467pub use between_vertical_end::*;
4468#[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
4469pub use between_vertical_start::*;
4470#[cfg(feature = "emoji")]
4471pub use biceps_flexed::*;
4472#[cfg(feature = "transportation")]
4473pub use bike::*;
4474#[cfg(any(feature = "text", feature = "development"))]
4475pub use binary::*;
4476#[cfg(any(
4477    feature = "navigation",
4478    feature = "nature",
4479    feature = "photography",
4480    feature = "science",
4481    feature = "travel",
4482    feature = "development"
4483))]
4484pub use binoculars::*;
4485#[cfg(feature = "science")]
4486pub use biohazard::*;
4487#[cfg(feature = "animals")]
4488pub use bird::*;
4489#[cfg(any(feature = "brands", feature = "development", feature = "finance"))]
4490pub use bitcoin::*;
4491#[cfg(any(
4492    feature = "design",
4493    feature = "photography",
4494    feature = "tools",
4495    feature = "development"
4496))]
4497pub use blend::*;
4498#[cfg(feature = "home")]
4499pub use blinds::*;
4500#[cfg(any(feature = "development", feature = "layout", feature = "shapes"))]
4501pub use blocks::*;
4502#[cfg(any(feature = "connectivity", feature = "devices"))]
4503pub use bluetooth::*;
4504#[cfg(any(feature = "connectivity", feature = "devices"))]
4505pub use bluetooth_connected::*;
4506#[cfg(any(feature = "connectivity", feature = "devices"))]
4507pub use bluetooth_off::*;
4508#[cfg(any(feature = "connectivity", feature = "devices"))]
4509pub use bluetooth_searching::*;
4510#[cfg(feature = "text")]
4511pub use bold::*;
4512#[cfg(any(feature = "tools", feature = "home"))]
4513pub use bolt::*;
4514#[cfg(any(feature = "security", feature = "tools"))]
4515pub use bomb::*;
4516#[cfg(any(feature = "animals", feature = "medical", feature = "gaming"))]
4517pub use bone::*;
4518#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
4519pub use book::*;
4520#[cfg(any(feature = "text", feature = "gaming"))]
4521pub use book_a::*;
4522#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
4523pub use book_alert::*;
4524#[cfg(any(feature = "multimedia", feature = "text"))]
4525pub use book_audio::*;
4526#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
4527pub use book_check::*;
4528#[cfg(any(feature = "development", feature = "text", feature = "gaming"))]
4529pub use book_copy::*;
4530#[cfg(feature = "development")]
4531pub use book_dashed::*;
4532#[cfg(feature = "development")]
4533pub use book_down::*;
4534#[cfg(any(feature = "multimedia", feature = "text"))]
4535pub use book_headphones::*;
4536#[cfg(any(feature = "social", feature = "text", feature = "gaming"))]
4537pub use book_heart::*;
4538#[cfg(any(
4539    feature = "photography",
4540    feature = "text",
4541    feature = "multimedia",
4542    feature = "files",
4543    feature = "social",
4544    feature = "shopping",
4545    feature = "travel"
4546))]
4547pub use book_image::*;
4548#[cfg(any(feature = "development", feature = "security", feature = "gaming"))]
4549pub use book_key::*;
4550#[cfg(any(feature = "development", feature = "security", feature = "gaming"))]
4551pub use book_lock::*;
4552#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
4553pub use book_marked::*;
4554#[cfg(any(feature = "development", feature = "text", feature = "gaming"))]
4555pub use book_minus::*;
4556#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
4557pub use book_open::*;
4558#[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
4559pub use book_open_check::*;
4560#[cfg(any(feature = "text", feature = "development"))]
4561pub use book_open_text::*;
4562#[cfg(any(feature = "development", feature = "text", feature = "gaming"))]
4563pub use book_plus::*;
4564#[cfg(any(feature = "text", feature = "gaming"))]
4565pub use book_text::*;
4566#[cfg(any(feature = "text", feature = "design", feature = "gaming"))]
4567pub use book_type::*;
4568#[cfg(feature = "development")]
4569pub use book_up::*;
4570#[cfg(feature = "development")]
4571pub use book_up_2::*;
4572#[cfg(any(
4573    feature = "account",
4574    feature = "connectivity",
4575    feature = "communication",
4576    feature = "social"
4577))]
4578pub use book_user::*;
4579#[cfg(any(feature = "text", feature = "gaming"))]
4580pub use book_x::*;
4581#[cfg(feature = "account")]
4582pub use bookmark::*;
4583#[cfg(feature = "account")]
4584pub use bookmark_check::*;
4585#[cfg(feature = "account")]
4586pub use bookmark_minus::*;
4587#[cfg(feature = "account")]
4588pub use bookmark_plus::*;
4589#[cfg(feature = "account")]
4590pub use bookmark_x::*;
4591#[cfg(any(feature = "devices", feature = "multimedia", feature = "social"))]
4592pub use boom_box::*;
4593#[cfg(any(feature = "development", feature = "social"))]
4594pub use bot::*;
4595#[cfg(any(feature = "development", feature = "social"))]
4596pub use bot_message_square::*;
4597#[cfg(any(feature = "development", feature = "social"))]
4598pub use bot_off::*;
4599#[cfg(any(feature = "gaming", feature = "tools"))]
4600pub use bow_arrow::*;
4601#[cfg(any(
4602    feature = "shapes",
4603    feature = "gaming",
4604    feature = "development",
4605    feature = "math"
4606))]
4607pub use r#box::*;
4608#[cfg(any(feature = "shapes", feature = "gaming", feature = "development"))]
4609pub use boxes::*;
4610#[cfg(any(feature = "development", feature = "files"))]
4611pub use braces::*;
4612#[cfg(any(feature = "development", feature = "files"))]
4613pub use brackets::*;
4614#[cfg(any(feature = "medical", feature = "science"))]
4615pub use brain::*;
4616#[cfg(any(feature = "science", feature = "development"))]
4617pub use brain_circuit::*;
4618#[cfg(any(feature = "science", feature = "development"))]
4619pub use brain_cog::*;
4620#[cfg(any(feature = "buildings", feature = "home"))]
4621pub use brick_wall::*;
4622#[cfg(any(feature = "security", feature = "home", feature = "connectivity"))]
4623pub use brick_wall_fire::*;
4624#[cfg(feature = "transportation")]
4625pub use briefcase::*;
4626#[cfg(feature = "transportation")]
4627pub use briefcase_business::*;
4628#[cfg(any(feature = "travel", feature = "transportation"))]
4629pub use briefcase_conveyor_belt::*;
4630#[cfg(any(feature = "medical", feature = "transportation"))]
4631pub use briefcase_medical::*;
4632#[cfg(any(feature = "design", feature = "layout"))]
4633pub use bring_to_front::*;
4634#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
4635pub use brush::*;
4636#[cfg(any(feature = "home", feature = "tools", feature = "design"))]
4637pub use brush_cleaning::*;
4638#[cfg(feature = "weather")]
4639pub use bubbles::*;
4640#[cfg(any(feature = "development", feature = "animals"))]
4641pub use bug::*;
4642#[cfg(any(feature = "development", feature = "animals"))]
4643pub use bug_off::*;
4644#[cfg(any(feature = "development", feature = "animals"))]
4645pub use bug_play::*;
4646#[cfg(any(feature = "account", feature = "buildings"))]
4647pub use building::*;
4648#[cfg(any(feature = "account", feature = "buildings"))]
4649pub use building_2::*;
4650#[cfg(feature = "transportation")]
4651pub use bus::*;
4652#[cfg(feature = "transportation")]
4653pub use bus_front::*;
4654#[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
4655pub use cable::*;
4656#[cfg(any(feature = "transportation", feature = "travel"))]
4657pub use cable_car::*;
4658#[cfg(any(feature = "food-beverage", feature = "social", feature = "account"))]
4659pub use cake::*;
4660#[cfg(any(feature = "food-beverage", feature = "social"))]
4661pub use cake_slice::*;
4662#[cfg(any(feature = "math", feature = "devices"))]
4663pub use calculator::*;
4664#[cfg(feature = "time")]
4665pub use calendar::*;
4666#[cfg(feature = "time")]
4667pub use calendar_1::*;
4668#[cfg(feature = "time")]
4669pub use calendar_arrow_down::*;
4670#[cfg(feature = "time")]
4671pub use calendar_arrow_up::*;
4672#[cfg(feature = "time")]
4673pub use calendar_check::*;
4674#[cfg(feature = "time")]
4675pub use calendar_check_2::*;
4676#[cfg(feature = "time")]
4677pub use calendar_clock::*;
4678#[cfg(feature = "time")]
4679pub use calendar_cog::*;
4680#[cfg(feature = "time")]
4681pub use calendar_days::*;
4682#[cfg(any(feature = "time", feature = "files"))]
4683pub use calendar_fold::*;
4684#[cfg(feature = "time")]
4685pub use calendar_heart::*;
4686#[cfg(feature = "time")]
4687pub use calendar_minus::*;
4688#[cfg(feature = "time")]
4689pub use calendar_minus_2::*;
4690#[cfg(feature = "time")]
4691pub use calendar_off::*;
4692#[cfg(feature = "time")]
4693pub use calendar_plus::*;
4694#[cfg(feature = "time")]
4695pub use calendar_plus_2::*;
4696#[cfg(feature = "time")]
4697pub use calendar_range::*;
4698#[cfg(feature = "time")]
4699pub use calendar_search::*;
4700#[cfg(any(feature = "arrows", feature = "time"))]
4701pub use calendar_sync::*;
4702#[cfg(feature = "time")]
4703pub use calendar_x::*;
4704#[cfg(feature = "time")]
4705pub use calendar_x_2::*;
4706#[cfg(any(
4707    feature = "photography",
4708    feature = "devices",
4709    feature = "communication"
4710))]
4711pub use camera::*;
4712#[cfg(any(
4713    feature = "photography",
4714    feature = "devices",
4715    feature = "communication"
4716))]
4717pub use camera_off::*;
4718#[cfg(feature = "food-beverage")]
4719pub use candy::*;
4720#[cfg(feature = "food-beverage")]
4721pub use candy_cane::*;
4722#[cfg(feature = "food-beverage")]
4723pub use candy_off::*;
4724#[cfg(feature = "nature")]
4725pub use cannabis::*;
4726#[cfg(feature = "multimedia")]
4727pub use captions::*;
4728#[cfg(feature = "multimedia")]
4729pub use captions_off::*;
4730#[cfg(feature = "transportation")]
4731pub use car::*;
4732#[cfg(feature = "transportation")]
4733pub use car_front::*;
4734#[cfg(feature = "transportation")]
4735pub use car_taxi_front::*;
4736#[cfg(any(feature = "transportation", feature = "travel", feature = "nature"))]
4737pub use caravan::*;
4738#[cfg(any(
4739    feature = "connectivity",
4740    feature = "communication",
4741    feature = "multimedia",
4742    feature = "devices"
4743))]
4744pub use card_sim::*;
4745#[cfg(feature = "food-beverage")]
4746pub use carrot::*;
4747#[cfg(feature = "text")]
4748pub use case_lower::*;
4749#[cfg(feature = "text")]
4750pub use case_sensitive::*;
4751#[cfg(feature = "text")]
4752pub use case_upper::*;
4753#[cfg(any(
4754    feature = "connectivity",
4755    feature = "devices",
4756    feature = "multimedia",
4757    feature = "communication",
4758    feature = "files"
4759))]
4760pub use cassette_tape::*;
4761#[cfg(any(feature = "devices", feature = "connectivity"))]
4762pub use cast::*;
4763#[cfg(any(feature = "buildings", feature = "gaming"))]
4764pub use castle::*;
4765#[cfg(feature = "animals")]
4766pub use cat::*;
4767#[cfg(any(
4768    feature = "security",
4769    feature = "devices",
4770    feature = "communication",
4771    feature = "connectivity",
4772    feature = "photography"
4773))]
4774pub use cctv::*;
4775#[cfg(feature = "charts")]
4776pub use chart_area::*;
4777#[cfg(feature = "charts")]
4778pub use chart_bar::*;
4779#[cfg(feature = "charts")]
4780pub use chart_bar_big::*;
4781#[cfg(feature = "charts")]
4782pub use chart_bar_decreasing::*;
4783#[cfg(feature = "charts")]
4784pub use chart_bar_increasing::*;
4785#[cfg(feature = "charts")]
4786pub use chart_bar_stacked::*;
4787#[cfg(any(feature = "charts", feature = "finance"))]
4788pub use chart_candlestick::*;
4789#[cfg(feature = "charts")]
4790pub use chart_column::*;
4791#[cfg(feature = "charts")]
4792pub use chart_column_big::*;
4793#[cfg(feature = "charts")]
4794pub use chart_column_decreasing::*;
4795#[cfg(feature = "charts")]
4796pub use chart_column_increasing::*;
4797#[cfg(feature = "charts")]
4798pub use chart_column_stacked::*;
4799#[cfg(feature = "charts")]
4800pub use chart_gantt::*;
4801#[cfg(feature = "charts")]
4802pub use chart_line::*;
4803#[cfg(feature = "charts")]
4804pub use chart_network::*;
4805#[cfg(feature = "charts")]
4806pub use chart_no_axes_column::*;
4807#[cfg(feature = "charts")]
4808pub use chart_no_axes_column_decreasing::*;
4809#[cfg(feature = "charts")]
4810pub use chart_no_axes_column_increasing::*;
4811#[cfg(feature = "charts")]
4812pub use chart_no_axes_combined::*;
4813#[cfg(any(
4814    feature = "charts",
4815    feature = "time",
4816    feature = "development",
4817    feature = "design"
4818))]
4819pub use chart_no_axes_gantt::*;
4820#[cfg(any(feature = "charts", feature = "files"))]
4821pub use chart_pie::*;
4822#[cfg(feature = "charts")]
4823pub use chart_scatter::*;
4824#[cfg(feature = "charts")]
4825pub use chart_spline::*;
4826#[cfg(feature = "notifications")]
4827pub use check::*;
4828#[cfg(feature = "notifications")]
4829pub use check_check::*;
4830#[cfg(feature = "notifications")]
4831pub use check_line::*;
4832#[cfg(feature = "food-beverage")]
4833pub use chef_hat::*;
4834#[cfg(feature = "food-beverage")]
4835pub use cherry::*;
4836#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4837pub use chevron_down::*;
4838#[cfg(any(feature = "arrows", feature = "multimedia"))]
4839pub use chevron_first::*;
4840#[cfg(any(feature = "arrows", feature = "multimedia"))]
4841pub use chevron_last::*;
4842#[cfg(any(feature = "arrows", feature = "navigation"))]
4843pub use chevron_left::*;
4844#[cfg(any(
4845    feature = "arrows",
4846    feature = "navigation",
4847    feature = "math",
4848    feature = "development"
4849))]
4850pub use chevron_right::*;
4851#[cfg(any(
4852    feature = "arrows",
4853    feature = "navigation",
4854    feature = "math",
4855    feature = "gaming"
4856))]
4857pub use chevron_up::*;
4858#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4859pub use chevrons_down::*;
4860#[cfg(feature = "arrows")]
4861pub use chevrons_down_up::*;
4862#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4863pub use chevrons_left::*;
4864#[cfg(feature = "arrows")]
4865pub use chevrons_left_right::*;
4866#[cfg(any(
4867    feature = "communication",
4868    feature = "devices",
4869    feature = "multimedia",
4870    feature = "gaming"
4871))]
4872pub use chevrons_left_right_ellipsis::*;
4873#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4874pub use chevrons_right::*;
4875#[cfg(feature = "arrows")]
4876pub use chevrons_right_left::*;
4877#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4878pub use chevrons_up::*;
4879#[cfg(feature = "arrows")]
4880pub use chevrons_up_down::*;
4881#[cfg(feature = "brands")]
4882pub use chrome::*;
4883#[cfg(any(feature = "buildings", feature = "navigation"))]
4884pub use church::*;
4885#[cfg(any(feature = "travel", feature = "transportation", feature = "medical"))]
4886pub use cigarette::*;
4887#[cfg(any(feature = "travel", feature = "transportation", feature = "medical"))]
4888pub use cigarette_off::*;
4889#[cfg(feature = "shapes")]
4890pub use circle::*;
4891#[cfg(feature = "notifications")]
4892pub use circle_alert::*;
4893#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4894pub use circle_arrow_down::*;
4895#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4896pub use circle_arrow_left::*;
4897#[cfg(any(feature = "arrows", feature = "navigation"))]
4898pub use circle_arrow_out_down_left::*;
4899#[cfg(any(feature = "arrows", feature = "navigation"))]
4900pub use circle_arrow_out_down_right::*;
4901#[cfg(any(feature = "arrows", feature = "navigation", feature = "development"))]
4902pub use circle_arrow_out_up_left::*;
4903#[cfg(any(feature = "arrows", feature = "navigation"))]
4904pub use circle_arrow_out_up_right::*;
4905#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4906pub use circle_arrow_right::*;
4907#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
4908pub use circle_arrow_up::*;
4909#[cfg(feature = "notifications")]
4910pub use circle_check::*;
4911#[cfg(feature = "notifications")]
4912pub use circle_check_big::*;
4913#[cfg(any(feature = "arrows", feature = "navigation"))]
4914pub use circle_chevron_down::*;
4915#[cfg(any(feature = "arrows", feature = "navigation"))]
4916pub use circle_chevron_left::*;
4917#[cfg(any(feature = "arrows", feature = "navigation"))]
4918pub use circle_chevron_right::*;
4919#[cfg(any(feature = "arrows", feature = "navigation"))]
4920pub use circle_chevron_up::*;
4921#[cfg(any(feature = "development", feature = "shapes"))]
4922pub use circle_dashed::*;
4923#[cfg(feature = "math")]
4924pub use circle_divide::*;
4925#[cfg(feature = "finance")]
4926pub use circle_dollar_sign::*;
4927#[cfg(any(feature = "development", feature = "shapes"))]
4928pub use circle_dot::*;
4929#[cfg(any(feature = "development", feature = "shapes"))]
4930pub use circle_dot_dashed::*;
4931#[cfg(any(feature = "layout", feature = "development"))]
4932pub use circle_ellipsis::*;
4933#[cfg(feature = "math")]
4934pub use circle_equal::*;
4935#[cfg(any(feature = "arrows", feature = "development"))]
4936pub use circle_fading_arrow_up::*;
4937#[cfg(any(feature = "communication", feature = "social"))]
4938pub use circle_fading_plus::*;
4939#[cfg(any(feature = "transportation", feature = "sports", feature = "science"))]
4940pub use circle_gauge::*;
4941#[cfg(feature = "math")]
4942pub use circle_minus::*;
4943#[cfg(feature = "shapes")]
4944pub use circle_off::*;
4945#[cfg(any(feature = "transportation", feature = "navigation"))]
4946pub use circle_parking::*;
4947#[cfg(any(feature = "transportation", feature = "navigation"))]
4948pub use circle_parking_off::*;
4949#[cfg(feature = "multimedia")]
4950pub use circle_pause::*;
4951#[cfg(any(
4952    feature = "social",
4953    feature = "finance",
4954    feature = "shopping",
4955    feature = "math"
4956))]
4957pub use circle_percent::*;
4958#[cfg(feature = "multimedia")]
4959pub use circle_play::*;
4960#[cfg(any(
4961    feature = "math",
4962    feature = "development",
4963    feature = "cursors",
4964    feature = "gaming"
4965))]
4966pub use circle_plus::*;
4967#[cfg(feature = "finance")]
4968pub use circle_pound_sterling::*;
4969#[cfg(feature = "connectivity")]
4970pub use circle_power::*;
4971#[cfg(any(feature = "accessibility", feature = "text", feature = "notifications"))]
4972pub use circle_question_mark::*;
4973#[cfg(any(feature = "development", feature = "math"))]
4974pub use circle_slash::*;
4975#[cfg(any(feature = "shapes", feature = "math", feature = "development"))]
4976pub use circle_slash_2::*;
4977#[cfg(any(feature = "shapes", feature = "medical"))]
4978pub use circle_small::*;
4979#[cfg(feature = "multimedia")]
4980pub use circle_stop::*;
4981#[cfg(feature = "account")]
4982pub use circle_user::*;
4983#[cfg(feature = "account")]
4984pub use circle_user_round::*;
4985#[cfg(any(feature = "math", feature = "development"))]
4986pub use circle_x::*;
4987#[cfg(any(feature = "science", feature = "development"))]
4988pub use circuit_board::*;
4989#[cfg(feature = "food-beverage")]
4990pub use citrus::*;
4991#[cfg(feature = "multimedia")]
4992pub use clapperboard::*;
4993#[cfg(feature = "text")]
4994pub use clipboard::*;
4995#[cfg(feature = "text")]
4996pub use clipboard_check::*;
4997#[cfg(any(feature = "text", feature = "arrows"))]
4998pub use clipboard_copy::*;
4999#[cfg(feature = "text")]
5000pub use clipboard_list::*;
5001#[cfg(any(feature = "text", feature = "medical"))]
5002pub use clipboard_minus::*;
5003#[cfg(any(feature = "text", feature = "arrows"))]
5004pub use clipboard_paste::*;
5005#[cfg(feature = "text")]
5006pub use clipboard_pen::*;
5007#[cfg(feature = "text")]
5008pub use clipboard_pen_line::*;
5009#[cfg(any(feature = "text", feature = "medical"))]
5010pub use clipboard_plus::*;
5011#[cfg(feature = "text")]
5012pub use clipboard_type::*;
5013#[cfg(feature = "text")]
5014pub use clipboard_x::*;
5015#[cfg(feature = "time")]
5016pub use clock::*;
5017#[cfg(feature = "time")]
5018pub use clock_1::*;
5019#[cfg(feature = "time")]
5020pub use clock_2::*;
5021#[cfg(feature = "time")]
5022pub use clock_3::*;
5023#[cfg(feature = "time")]
5024pub use clock_4::*;
5025#[cfg(feature = "time")]
5026pub use clock_5::*;
5027#[cfg(feature = "time")]
5028pub use clock_6::*;
5029#[cfg(feature = "time")]
5030pub use clock_7::*;
5031#[cfg(feature = "time")]
5032pub use clock_8::*;
5033#[cfg(feature = "time")]
5034pub use clock_9::*;
5035#[cfg(feature = "time")]
5036pub use clock_10::*;
5037#[cfg(feature = "time")]
5038pub use clock_11::*;
5039#[cfg(feature = "time")]
5040pub use clock_12::*;
5041#[cfg(feature = "time")]
5042pub use clock_alert::*;
5043#[cfg(feature = "time")]
5044pub use clock_arrow_down::*;
5045#[cfg(feature = "time")]
5046pub use clock_arrow_up::*;
5047#[cfg(feature = "time")]
5048pub use clock_fading::*;
5049#[cfg(feature = "time")]
5050pub use clock_plus::*;
5051#[cfg(feature = "weather")]
5052pub use cloud::*;
5053#[cfg(feature = "development")]
5054pub use cloud_alert::*;
5055#[cfg(feature = "development")]
5056pub use cloud_check::*;
5057#[cfg(feature = "development")]
5058pub use cloud_cog::*;
5059#[cfg(any(feature = "arrows", feature = "files"))]
5060pub use cloud_download::*;
5061#[cfg(feature = "weather")]
5062pub use cloud_drizzle::*;
5063#[cfg(feature = "weather")]
5064pub use cloud_fog::*;
5065#[cfg(feature = "weather")]
5066pub use cloud_hail::*;
5067#[cfg(feature = "weather")]
5068pub use cloud_lightning::*;
5069#[cfg(feature = "weather")]
5070pub use cloud_moon::*;
5071#[cfg(feature = "weather")]
5072pub use cloud_moon_rain::*;
5073#[cfg(any(feature = "connectivity", feature = "weather"))]
5074pub use cloud_off::*;
5075#[cfg(feature = "weather")]
5076pub use cloud_rain::*;
5077#[cfg(feature = "weather")]
5078pub use cloud_rain_wind::*;
5079#[cfg(feature = "weather")]
5080pub use cloud_snow::*;
5081#[cfg(feature = "weather")]
5082pub use cloud_sun::*;
5083#[cfg(feature = "weather")]
5084pub use cloud_sun_rain::*;
5085#[cfg(any(feature = "arrows", feature = "files"))]
5086pub use cloud_upload::*;
5087#[cfg(feature = "weather")]
5088pub use cloudy::*;
5089#[cfg(feature = "gaming")]
5090pub use clover::*;
5091#[cfg(any(feature = "shapes", feature = "gaming"))]
5092pub use club::*;
5093#[cfg(any(feature = "text", feature = "development"))]
5094pub use code::*;
5095#[cfg(any(feature = "text", feature = "development"))]
5096pub use code_xml::*;
5097#[cfg(any(feature = "brands", feature = "development"))]
5098pub use codepen::*;
5099#[cfg(any(feature = "brands", feature = "development"))]
5100pub use codesandbox::*;
5101#[cfg(feature = "food-beverage")]
5102pub use coffee::*;
5103#[cfg(feature = "account")]
5104pub use cog::*;
5105#[cfg(feature = "gaming")]
5106pub use coins::*;
5107#[cfg(any(feature = "layout", feature = "design", feature = "text"))]
5108pub use columns_2::*;
5109#[cfg(any(feature = "layout", feature = "design", feature = "text"))]
5110pub use columns_3::*;
5111#[cfg(any(feature = "layout", feature = "design"))]
5112pub use columns_3_cog::*;
5113#[cfg(any(
5114    feature = "layout",
5115    feature = "design",
5116    feature = "text",
5117    feature = "security"
5118))]
5119pub use columns_4::*;
5120#[cfg(any(feature = "development", feature = "files"))]
5121pub use combine::*;
5122#[cfg(feature = "development")]
5123pub use command::*;
5124#[cfg(any(feature = "navigation", feature = "travel"))]
5125pub use compass::*;
5126#[cfg(any(feature = "design", feature = "development"))]
5127pub use component::*;
5128#[cfg(any(feature = "devices", feature = "development", feature = "gaming"))]
5129pub use computer::*;
5130#[cfg(feature = "travel")]
5131pub use concierge_bell::*;
5132#[cfg(any(feature = "shapes", feature = "math"))]
5133pub use cone::*;
5134#[cfg(feature = "development")]
5135pub use construction::*;
5136#[cfg(any(
5137    feature = "account",
5138    feature = "connectivity",
5139    feature = "communication",
5140    feature = "social"
5141))]
5142pub use contact::*;
5143#[cfg(any(
5144    feature = "account",
5145    feature = "connectivity",
5146    feature = "communication",
5147    feature = "social"
5148))]
5149pub use contact_round::*;
5150#[cfg(any(feature = "development", feature = "transportation", feature = "mail"))]
5151pub use container::*;
5152#[cfg(any(feature = "photography", feature = "accessibility", feature = "design"))]
5153pub use contrast::*;
5154#[cfg(any(feature = "account", feature = "food-beverage"))]
5155pub use cookie::*;
5156#[cfg(any(feature = "food-beverage", feature = "home"))]
5157pub use cooking_pot::*;
5158#[cfg(feature = "text")]
5159pub use copy::*;
5160#[cfg(any(feature = "text", feature = "notifications"))]
5161pub use copy_check::*;
5162#[cfg(any(feature = "text", feature = "math"))]
5163pub use copy_minus::*;
5164#[cfg(any(feature = "text", feature = "math"))]
5165pub use copy_plus::*;
5166#[cfg(any(feature = "text", feature = "development", feature = "math"))]
5167pub use copy_slash::*;
5168#[cfg(any(feature = "notifications", feature = "math"))]
5169pub use copy_x::*;
5170#[cfg(feature = "text")]
5171pub use copyleft::*;
5172#[cfg(feature = "text")]
5173pub use copyright::*;
5174#[cfg(feature = "arrows")]
5175pub use corner_down_left::*;
5176#[cfg(any(feature = "arrows", feature = "text", feature = "development"))]
5177pub use corner_down_right::*;
5178#[cfg(feature = "arrows")]
5179pub use corner_left_down::*;
5180#[cfg(feature = "arrows")]
5181pub use corner_left_up::*;
5182#[cfg(feature = "arrows")]
5183pub use corner_right_down::*;
5184#[cfg(feature = "arrows")]
5185pub use corner_right_up::*;
5186#[cfg(feature = "arrows")]
5187pub use corner_up_left::*;
5188#[cfg(feature = "arrows")]
5189pub use corner_up_right::*;
5190#[cfg(feature = "devices")]
5191pub use cpu::*;
5192#[cfg(feature = "text")]
5193pub use creative_commons::*;
5194#[cfg(any(feature = "account", feature = "finance"))]
5195pub use credit_card::*;
5196#[cfg(feature = "food-beverage")]
5197pub use croissant::*;
5198#[cfg(any(feature = "photography", feature = "design"))]
5199pub use crop::*;
5200#[cfg(feature = "shapes")]
5201pub use cross::*;
5202#[cfg(feature = "photography")]
5203pub use crosshair::*;
5204#[cfg(feature = "gaming")]
5205pub use crown::*;
5206#[cfg(any(feature = "shapes", feature = "math", feature = "buildings"))]
5207pub use cuboid::*;
5208#[cfg(feature = "food-beverage")]
5209pub use cup_soda::*;
5210#[cfg(feature = "finance")]
5211pub use currency::*;
5212#[cfg(any(feature = "shapes", feature = "design", feature = "math"))]
5213pub use cylinder::*;
5214#[cfg(any(feature = "buildings", feature = "sustainability"))]
5215pub use dam::*;
5216#[cfg(any(feature = "devices", feature = "development"))]
5217pub use database::*;
5218#[cfg(any(
5219    feature = "devices",
5220    feature = "arrows",
5221    feature = "design",
5222    feature = "development",
5223    feature = "photography"
5224))]
5225pub use database_backup::*;
5226#[cfg(any(feature = "devices", feature = "development"))]
5227pub use database_zap::*;
5228#[cfg(any(
5229    feature = "design",
5230    feature = "text",
5231    feature = "arrows",
5232    feature = "math"
5233))]
5234pub use decimals_arrow_left::*;
5235#[cfg(any(
5236    feature = "design",
5237    feature = "text",
5238    feature = "arrows",
5239    feature = "math"
5240))]
5241pub use decimals_arrow_right::*;
5242#[cfg(any(feature = "text", feature = "arrows"))]
5243pub use delete::*;
5244#[cfg(feature = "food-beverage")]
5245pub use dessert::*;
5246#[cfg(any(
5247    feature = "shapes",
5248    feature = "math",
5249    feature = "design",
5250    feature = "tools"
5251))]
5252pub use diameter::*;
5253#[cfg(any(feature = "shapes", feature = "gaming"))]
5254pub use diamond::*;
5255#[cfg(any(
5256    feature = "multimedia",
5257    feature = "photography",
5258    feature = "tools",
5259    feature = "devices"
5260))]
5261pub use diamond_minus::*;
5262#[cfg(any(
5263    feature = "social",
5264    feature = "finance",
5265    feature = "shopping",
5266    feature = "math"
5267))]
5268pub use diamond_percent::*;
5269#[cfg(any(
5270    feature = "multimedia",
5271    feature = "photography",
5272    feature = "tools",
5273    feature = "devices"
5274))]
5275pub use diamond_plus::*;
5276#[cfg(feature = "gaming")]
5277pub use dice_1::*;
5278#[cfg(feature = "gaming")]
5279pub use dice_2::*;
5280#[cfg(feature = "gaming")]
5281pub use dice_3::*;
5282#[cfg(feature = "gaming")]
5283pub use dice_4::*;
5284#[cfg(feature = "gaming")]
5285pub use dice_5::*;
5286#[cfg(feature = "gaming")]
5287pub use dice_6::*;
5288#[cfg(feature = "gaming")]
5289pub use dices::*;
5290#[cfg(any(feature = "development", feature = "files"))]
5291pub use diff::*;
5292#[cfg(any(feature = "devices", feature = "multimedia"))]
5293pub use disc::*;
5294#[cfg(any(feature = "devices", feature = "multimedia"))]
5295pub use disc_2::*;
5296#[cfg(any(feature = "devices", feature = "multimedia"))]
5297pub use disc_3::*;
5298#[cfg(any(feature = "devices", feature = "multimedia"))]
5299pub use disc_album::*;
5300#[cfg(any(feature = "math", feature = "development"))]
5301pub use divide::*;
5302#[cfg(feature = "medical")]
5303pub use dna::*;
5304#[cfg(any(feature = "medical", feature = "food-beverage"))]
5305pub use dna_off::*;
5306#[cfg(any(
5307    feature = "layout",
5308    feature = "design",
5309    feature = "development",
5310    feature = "files"
5311))]
5312pub use dock::*;
5313#[cfg(feature = "animals")]
5314pub use dog::*;
5315#[cfg(feature = "finance")]
5316pub use dollar_sign::*;
5317#[cfg(feature = "food-beverage")]
5318pub use donut::*;
5319#[cfg(any(feature = "home", feature = "travel", feature = "security"))]
5320pub use door_closed::*;
5321#[cfg(any(feature = "home", feature = "travel", feature = "security"))]
5322pub use door_closed_locked::*;
5323#[cfg(any(feature = "home", feature = "travel", feature = "security"))]
5324pub use door_open::*;
5325#[cfg(any(feature = "shapes", feature = "text"))]
5326pub use dot::*;
5327#[cfg(any(feature = "arrows", feature = "files"))]
5328pub use download::*;
5329#[cfg(any(feature = "math", feature = "design", feature = "tools"))]
5330pub use drafting_compass::*;
5331#[cfg(feature = "multimedia")]
5332pub use drama::*;
5333#[cfg(any(feature = "brands", feature = "social", feature = "design"))]
5334pub use dribbble::*;
5335#[cfg(any(feature = "tools", feature = "home", feature = "devices"))]
5336pub use drill::*;
5337#[cfg(any(feature = "transportation", feature = "devices"))]
5338pub use drone::*;
5339#[cfg(any(feature = "weather", feature = "gaming"))]
5340pub use droplet::*;
5341#[cfg(any(feature = "weather", feature = "gaming"))]
5342pub use droplet_off::*;
5343#[cfg(feature = "weather")]
5344pub use droplets::*;
5345#[cfg(any(feature = "multimedia", feature = "devices"))]
5346pub use drum::*;
5347#[cfg(feature = "food-beverage")]
5348pub use drumstick::*;
5349#[cfg(any(feature = "navigation", feature = "sports"))]
5350pub use dumbbell::*;
5351#[cfg(any(feature = "medical", feature = "accessibility"))]
5352pub use ear::*;
5353#[cfg(any(feature = "medical", feature = "accessibility"))]
5354pub use ear_off::*;
5355#[cfg(feature = "navigation")]
5356pub use earth::*;
5357#[cfg(any(feature = "security", feature = "development", feature = "devices"))]
5358pub use earth_lock::*;
5359#[cfg(any(
5360    feature = "science",
5361    feature = "design",
5362    feature = "development",
5363    feature = "accessibility",
5364    feature = "photography"
5365))]
5366pub use eclipse::*;
5367#[cfg(any(feature = "food-beverage", feature = "animals"))]
5368pub use egg::*;
5369#[cfg(feature = "food-beverage")]
5370pub use egg_fried::*;
5371#[cfg(feature = "food-beverage")]
5372pub use egg_off::*;
5373#[cfg(any(feature = "layout", feature = "development"))]
5374pub use ellipsis::*;
5375#[cfg(feature = "layout")]
5376pub use ellipsis_vertical::*;
5377#[cfg(any(feature = "math", feature = "development"))]
5378pub use equal::*;
5379#[cfg(feature = "math")]
5380pub use equal_approximately::*;
5381#[cfg(any(feature = "math", feature = "development"))]
5382pub use equal_not::*;
5383#[cfg(feature = "text")]
5384pub use eraser::*;
5385#[cfg(any(
5386    feature = "communication",
5387    feature = "devices",
5388    feature = "multimedia",
5389    feature = "gaming"
5390))]
5391pub use ethernet_port::*;
5392#[cfg(feature = "finance")]
5393pub use euro::*;
5394#[cfg(any(feature = "text", feature = "arrows"))]
5395pub use expand::*;
5396#[cfg(any(feature = "arrows", feature = "text", feature = "social"))]
5397pub use external_link::*;
5398#[cfg(any(
5399    feature = "accessibility",
5400    feature = "photography",
5401    feature = "design",
5402    feature = "security"
5403))]
5404pub use eye::*;
5405#[cfg(any(
5406    feature = "accessibility",
5407    feature = "photography",
5408    feature = "design",
5409    feature = "security"
5410))]
5411pub use eye_closed::*;
5412#[cfg(any(
5413    feature = "accessibility",
5414    feature = "photography",
5415    feature = "design",
5416    feature = "security"
5417))]
5418pub use eye_off::*;
5419#[cfg(any(feature = "social", feature = "brands"))]
5420pub use facebook::*;
5421#[cfg(feature = "buildings")]
5422pub use factory::*;
5423#[cfg(feature = "home")]
5424pub use fan::*;
5425#[cfg(any(feature = "multimedia", feature = "arrows"))]
5426pub use fast_forward::*;
5427#[cfg(feature = "gaming")]
5428pub use feather::*;
5429#[cfg(any(feature = "home", feature = "buildings"))]
5430pub use fence::*;
5431#[cfg(feature = "navigation")]
5432pub use ferris_wheel::*;
5433#[cfg(any(feature = "brands", feature = "design"))]
5434pub use figma::*;
5435#[cfg(feature = "files")]
5436pub use file::*;
5437#[cfg(feature = "files")]
5438pub use file_archive::*;
5439#[cfg(feature = "files")]
5440pub use file_audio::*;
5441#[cfg(feature = "files")]
5442pub use file_audio_2::*;
5443#[cfg(any(feature = "design", feature = "files"))]
5444pub use file_axis_3_d::*;
5445#[cfg(feature = "files")]
5446pub use file_badge::*;
5447#[cfg(feature = "files")]
5448pub use file_badge_2::*;
5449#[cfg(feature = "files")]
5450pub use file_box::*;
5451#[cfg(feature = "files")]
5452pub use file_chart_column::*;
5453#[cfg(feature = "files")]
5454pub use file_chart_column_increasing::*;
5455#[cfg(feature = "files")]
5456pub use file_chart_line::*;
5457#[cfg(feature = "files")]
5458pub use file_chart_pie::*;
5459#[cfg(feature = "files")]
5460pub use file_check::*;
5461#[cfg(feature = "files")]
5462pub use file_check_2::*;
5463#[cfg(any(feature = "files", feature = "time"))]
5464pub use file_clock::*;
5465#[cfg(any(feature = "files", feature = "development"))]
5466pub use file_code::*;
5467#[cfg(any(feature = "files", feature = "development"))]
5468pub use file_code_2::*;
5469#[cfg(feature = "files")]
5470pub use file_cog::*;
5471#[cfg(any(feature = "files", feature = "development"))]
5472pub use file_diff::*;
5473#[cfg(any(feature = "files", feature = "development"))]
5474pub use file_digit::*;
5475#[cfg(any(feature = "files", feature = "arrows"))]
5476pub use file_down::*;
5477#[cfg(feature = "files")]
5478pub use file_heart::*;
5479#[cfg(feature = "files")]
5480pub use file_image::*;
5481#[cfg(any(feature = "files", feature = "arrows"))]
5482pub use file_input::*;
5483#[cfg(any(feature = "files", feature = "development"))]
5484pub use file_json::*;
5485#[cfg(any(feature = "files", feature = "development"))]
5486pub use file_json_2::*;
5487#[cfg(any(feature = "files", feature = "security"))]
5488pub use file_key::*;
5489#[cfg(any(feature = "files", feature = "security"))]
5490pub use file_key_2::*;
5491#[cfg(any(feature = "files", feature = "security"))]
5492pub use file_lock::*;
5493#[cfg(any(feature = "files", feature = "security"))]
5494pub use file_lock_2::*;
5495#[cfg(feature = "files")]
5496pub use file_minus::*;
5497#[cfg(feature = "files")]
5498pub use file_minus_2::*;
5499#[cfg(any(feature = "files", feature = "multimedia"))]
5500pub use file_music::*;
5501#[cfg(any(feature = "files", feature = "arrows"))]
5502pub use file_output::*;
5503#[cfg(feature = "files")]
5504pub use file_pen::*;
5505#[cfg(feature = "files")]
5506pub use file_pen_line::*;
5507#[cfg(feature = "files")]
5508pub use file_plus::*;
5509#[cfg(feature = "files")]
5510pub use file_plus_2::*;
5511#[cfg(feature = "files")]
5512pub use file_question_mark::*;
5513#[cfg(feature = "files")]
5514pub use file_scan::*;
5515#[cfg(feature = "files")]
5516pub use file_search::*;
5517#[cfg(feature = "files")]
5518pub use file_search_2::*;
5519#[cfg(any(feature = "files", feature = "development"))]
5520pub use file_sliders::*;
5521#[cfg(feature = "files")]
5522pub use file_spreadsheet::*;
5523#[cfg(any(feature = "files", feature = "development"))]
5524pub use file_stack::*;
5525#[cfg(feature = "files")]
5526pub use file_symlink::*;
5527#[cfg(any(feature = "files", feature = "development"))]
5528pub use file_terminal::*;
5529#[cfg(any(feature = "files", feature = "text"))]
5530pub use file_text::*;
5531#[cfg(any(feature = "files", feature = "text"))]
5532pub use file_type::*;
5533#[cfg(any(feature = "files", feature = "text"))]
5534pub use file_type_2::*;
5535#[cfg(any(feature = "files", feature = "arrows"))]
5536pub use file_up::*;
5537#[cfg(any(feature = "account", feature = "files"))]
5538pub use file_user::*;
5539#[cfg(feature = "files")]
5540pub use file_video::*;
5541#[cfg(feature = "files")]
5542pub use file_video_2::*;
5543#[cfg(feature = "files")]
5544pub use file_volume::*;
5545#[cfg(feature = "files")]
5546pub use file_volume_2::*;
5547#[cfg(any(feature = "files", feature = "notifications"))]
5548pub use file_warning::*;
5549#[cfg(feature = "files")]
5550pub use file_x::*;
5551#[cfg(feature = "files")]
5552pub use file_x_2::*;
5553#[cfg(feature = "files")]
5554pub use files::*;
5555#[cfg(any(feature = "photography", feature = "multimedia"))]
5556pub use film::*;
5557#[cfg(any(
5558    feature = "account",
5559    feature = "security",
5560    feature = "medical",
5561    feature = "devices"
5562))]
5563pub use fingerprint::*;
5564#[cfg(any(feature = "home", feature = "tools", feature = "travel"))]
5565pub use fire_extinguisher::*;
5566#[cfg(any(feature = "food-beverage", feature = "animals"))]
5567pub use fish::*;
5568#[cfg(any(feature = "food-beverage", feature = "animals"))]
5569pub use fish_off::*;
5570#[cfg(any(feature = "food-beverage", feature = "animals"))]
5571pub use fish_symbol::*;
5572#[cfg(any(feature = "account", feature = "social"))]
5573pub use flag::*;
5574#[cfg(any(feature = "account", feature = "social"))]
5575pub use flag_off::*;
5576#[cfg(feature = "development")]
5577pub use flag_triangle_left::*;
5578#[cfg(feature = "development")]
5579pub use flag_triangle_right::*;
5580#[cfg(any(feature = "weather", feature = "social", feature = "gaming"))]
5581pub use flame::*;
5582#[cfg(any(feature = "nature", feature = "social", feature = "gaming"))]
5583pub use flame_kindling::*;
5584#[cfg(any(feature = "photography", feature = "devices"))]
5585pub use flashlight::*;
5586#[cfg(any(feature = "photography", feature = "devices"))]
5587pub use flashlight_off::*;
5588#[cfg(any(feature = "science", feature = "gaming"))]
5589pub use flask_conical::*;
5590#[cfg(any(feature = "science", feature = "gaming"))]
5591pub use flask_conical_off::*;
5592#[cfg(any(feature = "science", feature = "gaming"))]
5593pub use flask_round::*;
5594#[cfg(any(feature = "design", feature = "photography"))]
5595pub use flip_horizontal::*;
5596#[cfg(any(feature = "design", feature = "photography"))]
5597pub use flip_horizontal_2::*;
5598#[cfg(any(feature = "design", feature = "photography"))]
5599pub use flip_vertical::*;
5600#[cfg(any(feature = "design", feature = "photography"))]
5601pub use flip_vertical_2::*;
5602#[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
5603pub use flower::*;
5604#[cfg(any(feature = "nature", feature = "sustainability", feature = "seasons"))]
5605pub use flower_2::*;
5606#[cfg(feature = "photography")]
5607pub use focus::*;
5608#[cfg(any(feature = "arrows", feature = "layout"))]
5609pub use fold_horizontal::*;
5610#[cfg(any(feature = "arrows", feature = "layout"))]
5611pub use fold_vertical::*;
5612#[cfg(feature = "files")]
5613pub use folder::*;
5614#[cfg(feature = "files")]
5615pub use folder_archive::*;
5616#[cfg(feature = "files")]
5617pub use folder_check::*;
5618#[cfg(any(feature = "files", feature = "time"))]
5619pub use folder_clock::*;
5620#[cfg(feature = "files")]
5621pub use folder_closed::*;
5622#[cfg(any(feature = "files", feature = "development"))]
5623pub use folder_code::*;
5624#[cfg(feature = "files")]
5625pub use folder_cog::*;
5626#[cfg(any(feature = "files", feature = "development"))]
5627pub use folder_dot::*;
5628#[cfg(any(feature = "files", feature = "arrows"))]
5629pub use folder_down::*;
5630#[cfg(feature = "files")]
5631pub use folder_git::*;
5632#[cfg(feature = "files")]
5633pub use folder_git_2::*;
5634#[cfg(feature = "files")]
5635pub use folder_heart::*;
5636#[cfg(any(feature = "files", feature = "arrows"))]
5637pub use folder_input::*;
5638#[cfg(any(
5639    feature = "charts",
5640    feature = "development",
5641    feature = "design",
5642    feature = "files"
5643))]
5644pub use folder_kanban::*;
5645#[cfg(any(feature = "files", feature = "security"))]
5646pub use folder_key::*;
5647#[cfg(any(feature = "files", feature = "security"))]
5648pub use folder_lock::*;
5649#[cfg(feature = "files")]
5650pub use folder_minus::*;
5651#[cfg(feature = "files")]
5652pub use folder_open::*;
5653#[cfg(any(feature = "files", feature = "development"))]
5654pub use folder_open_dot::*;
5655#[cfg(any(feature = "files", feature = "arrows"))]
5656pub use folder_output::*;
5657#[cfg(feature = "files")]
5658pub use folder_pen::*;
5659#[cfg(feature = "files")]
5660pub use folder_plus::*;
5661#[cfg(any(feature = "files", feature = "development"))]
5662pub use folder_root::*;
5663#[cfg(feature = "files")]
5664pub use folder_search::*;
5665#[cfg(feature = "files")]
5666pub use folder_search_2::*;
5667#[cfg(feature = "files")]
5668pub use folder_symlink::*;
5669#[cfg(any(feature = "files", feature = "arrows"))]
5670pub use folder_sync::*;
5671#[cfg(feature = "files")]
5672pub use folder_tree::*;
5673#[cfg(any(feature = "files", feature = "arrows"))]
5674pub use folder_up::*;
5675#[cfg(feature = "files")]
5676pub use folder_x::*;
5677#[cfg(feature = "files")]
5678pub use folders::*;
5679#[cfg(feature = "navigation")]
5680pub use footprints::*;
5681#[cfg(feature = "transportation")]
5682pub use forklift::*;
5683#[cfg(feature = "mail")]
5684pub use forward::*;
5685#[cfg(any(feature = "design", feature = "photography"))]
5686pub use frame::*;
5687#[cfg(any(feature = "brands", feature = "design"))]
5688pub use framer::*;
5689#[cfg(any(feature = "emoji", feature = "account"))]
5690pub use frown::*;
5691#[cfg(any(feature = "transportation", feature = "navigation"))]
5692pub use fuel::*;
5693#[cfg(any(
5694    feature = "layout",
5695    feature = "multimedia",
5696    feature = "design",
5697    feature = "photography"
5698))]
5699pub use fullscreen::*;
5700#[cfg(feature = "layout")]
5701pub use funnel::*;
5702#[cfg(feature = "layout")]
5703pub use funnel_plus::*;
5704#[cfg(feature = "layout")]
5705pub use funnel_x::*;
5706#[cfg(any(
5707    feature = "layout",
5708    feature = "design",
5709    feature = "development",
5710    feature = "photography",
5711    feature = "multimedia"
5712))]
5713pub use gallery_horizontal::*;
5714#[cfg(any(
5715    feature = "layout",
5716    feature = "design",
5717    feature = "development",
5718    feature = "photography",
5719    feature = "multimedia",
5720    feature = "files"
5721))]
5722pub use gallery_horizontal_end::*;
5723#[cfg(any(
5724    feature = "layout",
5725    feature = "design",
5726    feature = "development",
5727    feature = "photography",
5728    feature = "multimedia"
5729))]
5730pub use gallery_thumbnails::*;
5731#[cfg(any(
5732    feature = "layout",
5733    feature = "design",
5734    feature = "development",
5735    feature = "photography",
5736    feature = "multimedia"
5737))]
5738pub use gallery_vertical::*;
5739#[cfg(any(
5740    feature = "layout",
5741    feature = "design",
5742    feature = "development",
5743    feature = "photography",
5744    feature = "multimedia",
5745    feature = "files"
5746))]
5747pub use gallery_vertical_end::*;
5748#[cfg(any(feature = "gaming", feature = "devices"))]
5749pub use gamepad::*;
5750#[cfg(any(feature = "gaming", feature = "devices"))]
5751pub use gamepad_2::*;
5752#[cfg(any(feature = "transportation", feature = "sports", feature = "science"))]
5753pub use gauge::*;
5754#[cfg(any(feature = "navigation", feature = "tools"))]
5755pub use gavel::*;
5756#[cfg(any(feature = "gaming", feature = "development", feature = "finance"))]
5757pub use gem::*;
5758#[cfg(feature = "finance")]
5759pub use georgian_lari::*;
5760#[cfg(feature = "gaming")]
5761pub use ghost::*;
5762#[cfg(any(feature = "gaming", feature = "account"))]
5763pub use gift::*;
5764#[cfg(feature = "development")]
5765pub use git_branch::*;
5766#[cfg(feature = "development")]
5767pub use git_branch_plus::*;
5768#[cfg(any(feature = "development", feature = "navigation"))]
5769pub use git_commit_horizontal::*;
5770#[cfg(any(feature = "development", feature = "navigation"))]
5771pub use git_commit_vertical::*;
5772#[cfg(feature = "development")]
5773pub use git_compare::*;
5774#[cfg(any(feature = "development", feature = "arrows"))]
5775pub use git_compare_arrows::*;
5776#[cfg(feature = "development")]
5777pub use git_fork::*;
5778#[cfg(feature = "development")]
5779pub use git_graph::*;
5780#[cfg(feature = "development")]
5781pub use git_merge::*;
5782#[cfg(feature = "development")]
5783pub use git_pull_request::*;
5784#[cfg(any(feature = "development", feature = "arrows"))]
5785pub use git_pull_request_arrow::*;
5786#[cfg(feature = "development")]
5787pub use git_pull_request_closed::*;
5788#[cfg(feature = "development")]
5789pub use git_pull_request_create::*;
5790#[cfg(any(feature = "development", feature = "arrows"))]
5791pub use git_pull_request_create_arrow::*;
5792#[cfg(feature = "development")]
5793pub use git_pull_request_draft::*;
5794#[cfg(any(feature = "brands", feature = "development"))]
5795pub use github::*;
5796#[cfg(any(feature = "brands", feature = "development"))]
5797pub use gitlab::*;
5798#[cfg(feature = "food-beverage")]
5799pub use glass_water::*;
5800#[cfg(feature = "accessibility")]
5801pub use glasses::*;
5802#[cfg(feature = "navigation")]
5803pub use globe::*;
5804#[cfg(any(feature = "security", feature = "development", feature = "devices"))]
5805pub use globe_lock::*;
5806#[cfg(feature = "gaming")]
5807pub use goal::*;
5808#[cfg(any(feature = "devices", feature = "gaming"))]
5809pub use gpu::*;
5810#[cfg(any(feature = "cursors", feature = "design", feature = "layout"))]
5811pub use grab::*;
5812#[cfg(feature = "buildings")]
5813pub use graduation_cap::*;
5814#[cfg(feature = "food-beverage")]
5815pub use grape::*;
5816#[cfg(any(
5817    feature = "text",
5818    feature = "layout",
5819    feature = "design",
5820    feature = "math"
5821))]
5822pub use grid_2_x_2::*;
5823#[cfg(any(feature = "text", feature = "layout", feature = "math"))]
5824pub use grid_2_x_2_check::*;
5825#[cfg(any(feature = "text", feature = "layout", feature = "math"))]
5826pub use grid_2_x_2_plus::*;
5827#[cfg(any(feature = "text", feature = "layout", feature = "math"))]
5828pub use grid_2_x_2_x::*;
5829#[cfg(any(
5830    feature = "text",
5831    feature = "math",
5832    feature = "layout",
5833    feature = "design"
5834))]
5835pub use grid_3_x_2::*;
5836#[cfg(any(feature = "text", feature = "layout", feature = "design"))]
5837pub use grid_3_x_3::*;
5838#[cfg(feature = "layout")]
5839pub use grip::*;
5840#[cfg(feature = "layout")]
5841pub use grip_horizontal::*;
5842#[cfg(feature = "layout")]
5843pub use grip_vertical::*;
5844#[cfg(feature = "files")]
5845pub use group::*;
5846#[cfg(feature = "multimedia")]
5847pub use guitar::*;
5848#[cfg(feature = "food-beverage")]
5849pub use ham::*;
5850#[cfg(feature = "food-beverage")]
5851pub use hamburger::*;
5852#[cfg(any(feature = "tools", feature = "home"))]
5853pub use hammer::*;
5854#[cfg(any(feature = "cursors", feature = "accessibility"))]
5855pub use hand::*;
5856#[cfg(any(feature = "finance", feature = "account"))]
5857pub use hand_coins::*;
5858#[cfg(feature = "social")]
5859pub use hand_heart::*;
5860#[cfg(feature = "emoji")]
5861pub use hand_helping::*;
5862#[cfg(any(feature = "emoji", feature = "multimedia"))]
5863pub use hand_metal::*;
5864#[cfg(any(feature = "food-beverage", feature = "people"))]
5865pub use hand_platter::*;
5866#[cfg(any(
5867    feature = "account",
5868    feature = "social",
5869    feature = "communication",
5870    feature = "finance",
5871    feature = "security"
5872))]
5873pub use handshake::*;
5874#[cfg(any(feature = "development", feature = "devices"))]
5875pub use hard_drive::*;
5876#[cfg(any(
5877    feature = "development",
5878    feature = "devices",
5879    feature = "arrows",
5880    feature = "files"
5881))]
5882pub use hard_drive_download::*;
5883#[cfg(any(
5884    feature = "development",
5885    feature = "devices",
5886    feature = "arrows",
5887    feature = "files"
5888))]
5889pub use hard_drive_upload::*;
5890#[cfg(feature = "tools")]
5891pub use hard_hat::*;
5892#[cfg(any(feature = "text", feature = "social"))]
5893pub use hash::*;
5894#[cfg(feature = "weather")]
5895pub use haze::*;
5896#[cfg(any(feature = "devices", feature = "multimedia", feature = "gaming"))]
5897pub use hdmi_port::*;
5898#[cfg(feature = "text")]
5899pub use heading::*;
5900#[cfg(feature = "text")]
5901pub use heading_1::*;
5902#[cfg(feature = "text")]
5903pub use heading_2::*;
5904#[cfg(feature = "text")]
5905pub use heading_3::*;
5906#[cfg(feature = "text")]
5907pub use heading_4::*;
5908#[cfg(feature = "text")]
5909pub use heading_5::*;
5910#[cfg(feature = "text")]
5911pub use heading_6::*;
5912#[cfg(any(
5913    feature = "multimedia",
5914    feature = "connectivity",
5915    feature = "communication",
5916    feature = "devices",
5917    feature = "gaming"
5918))]
5919pub use headphone_off::*;
5920#[cfg(any(
5921    feature = "multimedia",
5922    feature = "connectivity",
5923    feature = "devices",
5924    feature = "files",
5925    feature = "gaming"
5926))]
5927pub use headphones::*;
5928#[cfg(any(
5929    feature = "multimedia",
5930    feature = "connectivity",
5931    feature = "devices",
5932    feature = "files",
5933    feature = "gaming"
5934))]
5935pub use headset::*;
5936#[cfg(any(
5937    feature = "medical",
5938    feature = "social",
5939    feature = "multimedia",
5940    feature = "emoji",
5941    feature = "gaming",
5942    feature = "shapes"
5943))]
5944pub use heart::*;
5945#[cfg(feature = "emoji")]
5946pub use heart_crack::*;
5947#[cfg(any(feature = "emoji", feature = "account", feature = "security"))]
5948pub use heart_handshake::*;
5949#[cfg(any(
5950    feature = "medical",
5951    feature = "account",
5952    feature = "multimedia",
5953    feature = "gaming",
5954    feature = "social"
5955))]
5956pub use heart_minus::*;
5957#[cfg(any(feature = "social", feature = "multimedia"))]
5958pub use heart_off::*;
5959#[cfg(any(
5960    feature = "medical",
5961    feature = "account",
5962    feature = "multimedia",
5963    feature = "gaming",
5964    feature = "social"
5965))]
5966pub use heart_plus::*;
5967#[cfg(feature = "medical")]
5968pub use heart_pulse::*;
5969#[cfg(any(feature = "home", feature = "devices", feature = "travel"))]
5970pub use heater::*;
5971#[cfg(any(feature = "shapes", feature = "brands", feature = "development"))]
5972pub use hexagon::*;
5973#[cfg(any(feature = "text", feature = "design"))]
5974pub use highlighter::*;
5975#[cfg(any(feature = "arrows", feature = "time"))]
5976pub use history::*;
5977#[cfg(feature = "food-beverage")]
5978pub use hop::*;
5979#[cfg(feature = "food-beverage")]
5980pub use hop_off::*;
5981#[cfg(any(
5982    feature = "medical",
5983    feature = "buildings",
5984    feature = "navigation",
5985    feature = "travel"
5986))]
5987pub use hospital::*;
5988#[cfg(any(feature = "buildings", feature = "navigation", feature = "travel"))]
5989pub use hotel::*;
5990#[cfg(any(feature = "time", feature = "gaming"))]
5991pub use hourglass::*;
5992#[cfg(any(feature = "buildings", feature = "home"))]
5993pub use house::*;
5994#[cfg(any(feature = "buildings", feature = "home", feature = "sustainability"))]
5995pub use house_plug::*;
5996#[cfg(any(feature = "buildings", feature = "medical"))]
5997pub use house_plus::*;
5998#[cfg(any(feature = "home", feature = "buildings", feature = "connectivity"))]
5999pub use house_wifi::*;
6000#[cfg(feature = "food-beverage")]
6001pub use ice_cream_bowl::*;
6002#[cfg(feature = "food-beverage")]
6003pub use ice_cream_cone::*;
6004#[cfg(any(feature = "security", feature = "account"))]
6005pub use id_card::*;
6006#[cfg(any(feature = "security", feature = "account"))]
6007pub use id_card_lanyard::*;
6008#[cfg(any(
6009    feature = "photography",
6010    feature = "text",
6011    feature = "multimedia",
6012    feature = "files"
6013))]
6014pub use image::*;
6015#[cfg(any(
6016    feature = "photography",
6017    feature = "text",
6018    feature = "multimedia",
6019    feature = "files"
6020))]
6021pub use image_down::*;
6022#[cfg(any(feature = "photography", feature = "multimedia", feature = "files"))]
6023pub use image_minus::*;
6024#[cfg(any(feature = "photography", feature = "multimedia", feature = "files"))]
6025pub use image_off::*;
6026#[cfg(any(
6027    feature = "photography",
6028    feature = "text",
6029    feature = "multimedia",
6030    feature = "files"
6031))]
6032pub use image_play::*;
6033#[cfg(any(feature = "photography", feature = "multimedia", feature = "files"))]
6034pub use image_plus::*;
6035#[cfg(any(
6036    feature = "photography",
6037    feature = "text",
6038    feature = "multimedia",
6039    feature = "files"
6040))]
6041pub use image_up::*;
6042#[cfg(any(feature = "photography", feature = "multimedia"))]
6043pub use image_upscale::*;
6044#[cfg(any(
6045    feature = "photography",
6046    feature = "text",
6047    feature = "multimedia",
6048    feature = "files"
6049))]
6050pub use images::*;
6051#[cfg(any(feature = "arrows", feature = "files"))]
6052pub use import::*;
6053#[cfg(any(feature = "account", feature = "mail"))]
6054pub use inbox::*;
6055#[cfg(any(feature = "text", feature = "development"))]
6056pub use indent_decrease::*;
6057#[cfg(any(feature = "text", feature = "development"))]
6058pub use indent_increase::*;
6059#[cfg(feature = "finance")]
6060pub use indian_rupee::*;
6061#[cfg(feature = "multimedia")]
6062pub use infinity::*;
6063#[cfg(any(feature = "accessibility", feature = "notifications"))]
6064pub use info::*;
6065#[cfg(feature = "tools")]
6066pub use inspection_panel::*;
6067#[cfg(any(feature = "brands", feature = "social", feature = "photography"))]
6068pub use instagram::*;
6069#[cfg(feature = "text")]
6070pub use italic::*;
6071#[cfg(any(feature = "arrows", feature = "design"))]
6072pub use iteration_ccw::*;
6073#[cfg(any(feature = "arrows", feature = "design"))]
6074pub use iteration_cw::*;
6075#[cfg(feature = "finance")]
6076pub use japanese_yen::*;
6077#[cfg(any(feature = "gaming", feature = "devices"))]
6078pub use joystick::*;
6079#[cfg(any(feature = "charts", feature = "development", feature = "design"))]
6080pub use kanban::*;
6081#[cfg(any(feature = "security", feature = "account"))]
6082pub use key::*;
6083#[cfg(any(feature = "security", feature = "account"))]
6084pub use key_round::*;
6085#[cfg(any(feature = "security", feature = "account"))]
6086pub use key_square::*;
6087#[cfg(any(feature = "text", feature = "devices", feature = "development"))]
6088pub use keyboard::*;
6089#[cfg(any(feature = "multimedia", feature = "devices"))]
6090pub use keyboard_music::*;
6091#[cfg(any(feature = "devices", feature = "text", feature = "development"))]
6092pub use keyboard_off::*;
6093#[cfg(feature = "home")]
6094pub use lamp::*;
6095#[cfg(feature = "home")]
6096pub use lamp_ceiling::*;
6097#[cfg(feature = "home")]
6098pub use lamp_desk::*;
6099#[cfg(feature = "home")]
6100pub use lamp_floor::*;
6101#[cfg(feature = "home")]
6102pub use lamp_wall_down::*;
6103#[cfg(feature = "home")]
6104pub use lamp_wall_up::*;
6105#[cfg(any(
6106    feature = "design",
6107    feature = "tools",
6108    feature = "math",
6109    feature = "sports",
6110    feature = "gaming"
6111))]
6112pub use land_plot::*;
6113#[cfg(any(feature = "finance", feature = "navigation", feature = "buildings"))]
6114pub use landmark::*;
6115#[cfg(feature = "text")]
6116pub use languages::*;
6117#[cfg(feature = "devices")]
6118pub use laptop::*;
6119#[cfg(feature = "devices")]
6120pub use laptop_minimal::*;
6121#[cfg(any(feature = "devices", feature = "notifications"))]
6122pub use laptop_minimal_check::*;
6123#[cfg(any(feature = "design", feature = "cursors"))]
6124pub use lasso::*;
6125#[cfg(any(feature = "arrows", feature = "design", feature = "cursors"))]
6126pub use lasso_select::*;
6127#[cfg(feature = "emoji")]
6128pub use laugh::*;
6129#[cfg(any(feature = "design", feature = "layout"))]
6130pub use layers::*;
6131#[cfg(any(feature = "design", feature = "layout"))]
6132pub use layers_2::*;
6133#[cfg(any(feature = "design", feature = "layout"))]
6134pub use layout_dashboard::*;
6135#[cfg(any(feature = "design", feature = "layout"))]
6136pub use layout_grid::*;
6137#[cfg(any(
6138    feature = "design",
6139    feature = "layout",
6140    feature = "photography",
6141    feature = "text"
6142))]
6143pub use layout_list::*;
6144#[cfg(any(feature = "design", feature = "layout"))]
6145pub use layout_panel_left::*;
6146#[cfg(feature = "layout")]
6147pub use layout_panel_top::*;
6148#[cfg(feature = "layout")]
6149pub use layout_template::*;
6150#[cfg(any(feature = "nature", feature = "sustainability", feature = "seasons"))]
6151pub use leaf::*;
6152#[cfg(any(
6153    feature = "food-beverage",
6154    feature = "emoji",
6155    feature = "sustainability"
6156))]
6157pub use leafy_green::*;
6158#[cfg(any(feature = "communication", feature = "multimedia"))]
6159pub use lectern::*;
6160#[cfg(feature = "text")]
6161pub use letter_text::*;
6162#[cfg(any(
6163    feature = "text",
6164    feature = "photography",
6165    feature = "multimedia",
6166    feature = "navigation",
6167    feature = "development"
6168))]
6169pub use library::*;
6170#[cfg(any(
6171    feature = "text",
6172    feature = "photography",
6173    feature = "multimedia",
6174    feature = "navigation",
6175    feature = "development"
6176))]
6177pub use library_big::*;
6178#[cfg(any(feature = "accessibility", feature = "medical"))]
6179pub use life_buoy::*;
6180#[cfg(feature = "text")]
6181pub use ligature::*;
6182#[cfg(feature = "photography")]
6183pub use lightbulb::*;
6184#[cfg(feature = "photography")]
6185pub use lightbulb_off::*;
6186#[cfg(any(feature = "text", feature = "account"))]
6187pub use link::*;
6188#[cfg(any(feature = "text", feature = "account"))]
6189pub use link_2::*;
6190#[cfg(feature = "text")]
6191pub use link_2_off::*;
6192#[cfg(any(feature = "social", feature = "brands"))]
6193pub use linkedin::*;
6194#[cfg(feature = "text")]
6195pub use list::*;
6196#[cfg(feature = "text")]
6197pub use list_check::*;
6198#[cfg(feature = "text")]
6199pub use list_checks::*;
6200#[cfg(feature = "text")]
6201pub use list_collapse::*;
6202#[cfg(any(feature = "multimedia", feature = "text"))]
6203pub use list_end::*;
6204#[cfg(feature = "text")]
6205pub use list_filter::*;
6206#[cfg(any(feature = "text", feature = "layout"))]
6207pub use list_filter_plus::*;
6208#[cfg(any(feature = "multimedia", feature = "text"))]
6209pub use list_minus::*;
6210#[cfg(feature = "multimedia")]
6211pub use list_music::*;
6212#[cfg(feature = "text")]
6213pub use list_ordered::*;
6214#[cfg(any(feature = "multimedia", feature = "text"))]
6215pub use list_plus::*;
6216#[cfg(any(feature = "multimedia", feature = "text"))]
6217pub use list_restart::*;
6218#[cfg(any(feature = "multimedia", feature = "text"))]
6219pub use list_start::*;
6220#[cfg(feature = "text")]
6221pub use list_todo::*;
6222#[cfg(any(feature = "files", feature = "text", feature = "layout"))]
6223pub use list_tree::*;
6224#[cfg(feature = "multimedia")]
6225pub use list_video::*;
6226#[cfg(any(feature = "multimedia", feature = "text"))]
6227pub use list_x::*;
6228#[cfg(any(
6229    feature = "cursors",
6230    feature = "multimedia",
6231    feature = "layout",
6232    feature = "design"
6233))]
6234pub use loader::*;
6235#[cfg(any(feature = "cursors", feature = "multimedia", feature = "layout"))]
6236pub use loader_circle::*;
6237#[cfg(any(feature = "cursors", feature = "design"))]
6238pub use loader_pinwheel::*;
6239#[cfg(feature = "navigation")]
6240pub use locate::*;
6241#[cfg(feature = "navigation")]
6242pub use locate_fixed::*;
6243#[cfg(feature = "navigation")]
6244pub use locate_off::*;
6245#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6246pub use location_edit::*;
6247#[cfg(feature = "security")]
6248pub use lock::*;
6249#[cfg(feature = "security")]
6250pub use lock_keyhole::*;
6251#[cfg(feature = "security")]
6252pub use lock_keyhole_open::*;
6253#[cfg(feature = "security")]
6254pub use lock_open::*;
6255#[cfg(any(feature = "arrows", feature = "account"))]
6256pub use log_in::*;
6257#[cfg(any(feature = "arrows", feature = "account"))]
6258pub use log_out::*;
6259#[cfg(feature = "text")]
6260pub use logs::*;
6261#[cfg(feature = "food-beverage")]
6262pub use lollipop::*;
6263#[cfg(any(feature = "travel", feature = "transportation"))]
6264pub use luggage::*;
6265#[cfg(feature = "design")]
6266pub use magnet::*;
6267#[cfg(any(feature = "text", feature = "account", feature = "mail"))]
6268pub use mail::*;
6269#[cfg(feature = "mail")]
6270pub use mail_check::*;
6271#[cfg(feature = "mail")]
6272pub use mail_minus::*;
6273#[cfg(feature = "mail")]
6274pub use mail_open::*;
6275#[cfg(feature = "mail")]
6276pub use mail_plus::*;
6277#[cfg(feature = "mail")]
6278pub use mail_question_mark::*;
6279#[cfg(feature = "mail")]
6280pub use mail_search::*;
6281#[cfg(feature = "mail")]
6282pub use mail_warning::*;
6283#[cfg(feature = "mail")]
6284pub use mail_x::*;
6285#[cfg(feature = "mail")]
6286pub use mailbox::*;
6287#[cfg(feature = "mail")]
6288pub use mails::*;
6289#[cfg(any(feature = "text", feature = "navigation"))]
6290pub use map::*;
6291#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6292pub use map_pin::*;
6293#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6294pub use map_pin_check::*;
6295#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6296pub use map_pin_check_inside::*;
6297#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6298pub use map_pin_house::*;
6299#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6300pub use map_pin_minus::*;
6301#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6302pub use map_pin_minus_inside::*;
6303#[cfg(any(feature = "navigation", feature = "travel"))]
6304pub use map_pin_off::*;
6305#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6306pub use map_pin_plus::*;
6307#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6308pub use map_pin_plus_inside::*;
6309#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6310pub use map_pin_x::*;
6311#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6312pub use map_pin_x_inside::*;
6313#[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
6314pub use map_pinned::*;
6315#[cfg(feature = "navigation")]
6316pub use map_plus::*;
6317#[cfg(feature = "medical")]
6318pub use mars::*;
6319#[cfg(feature = "medical")]
6320pub use mars_stroke::*;
6321#[cfg(feature = "food-beverage")]
6322pub use martini::*;
6323#[cfg(any(feature = "layout", feature = "design"))]
6324pub use maximize::*;
6325#[cfg(any(feature = "arrows", feature = "layout", feature = "design"))]
6326pub use maximize_2::*;
6327#[cfg(any(feature = "sports", feature = "gaming"))]
6328pub use medal::*;
6329#[cfg(any(feature = "multimedia", feature = "notifications"))]
6330pub use megaphone::*;
6331#[cfg(any(feature = "multimedia", feature = "notifications"))]
6332pub use megaphone_off::*;
6333#[cfg(feature = "emoji")]
6334pub use meh::*;
6335#[cfg(any(feature = "devices", feature = "gaming"))]
6336pub use memory_stick::*;
6337#[cfg(any(feature = "layout", feature = "account"))]
6338pub use menu::*;
6339#[cfg(any(feature = "development", feature = "arrows"))]
6340pub use merge::*;
6341#[cfg(feature = "social")]
6342pub use message_circle::*;
6343#[cfg(any(feature = "development", feature = "social"))]
6344pub use message_circle_code::*;
6345#[cfg(feature = "social")]
6346pub use message_circle_dashed::*;
6347#[cfg(feature = "social")]
6348pub use message_circle_heart::*;
6349#[cfg(feature = "social")]
6350pub use message_circle_more::*;
6351#[cfg(feature = "social")]
6352pub use message_circle_off::*;
6353#[cfg(feature = "social")]
6354pub use message_circle_plus::*;
6355#[cfg(feature = "social")]
6356pub use message_circle_question_mark::*;
6357#[cfg(feature = "social")]
6358pub use message_circle_reply::*;
6359#[cfg(any(feature = "social", feature = "notifications"))]
6360pub use message_circle_warning::*;
6361#[cfg(any(feature = "account", feature = "social"))]
6362pub use message_circle_x::*;
6363#[cfg(feature = "social")]
6364pub use message_square::*;
6365#[cfg(any(feature = "development", feature = "social"))]
6366pub use message_square_code::*;
6367#[cfg(feature = "social")]
6368pub use message_square_dashed::*;
6369#[cfg(any(feature = "development", feature = "files", feature = "social"))]
6370pub use message_square_diff::*;
6371#[cfg(any(feature = "social", feature = "notifications"))]
6372pub use message_square_dot::*;
6373#[cfg(feature = "social")]
6374pub use message_square_heart::*;
6375#[cfg(feature = "social")]
6376pub use message_square_lock::*;
6377#[cfg(feature = "social")]
6378pub use message_square_more::*;
6379#[cfg(feature = "social")]
6380pub use message_square_off::*;
6381#[cfg(feature = "social")]
6382pub use message_square_plus::*;
6383#[cfg(any(feature = "social", feature = "text"))]
6384pub use message_square_quote::*;
6385#[cfg(feature = "social")]
6386pub use message_square_reply::*;
6387#[cfg(feature = "social")]
6388pub use message_square_share::*;
6389#[cfg(feature = "social")]
6390pub use message_square_text::*;
6391#[cfg(any(feature = "social", feature = "notifications"))]
6392pub use message_square_warning::*;
6393#[cfg(feature = "social")]
6394pub use message_square_x::*;
6395#[cfg(feature = "social")]
6396pub use messages_square::*;
6397#[cfg(any(
6398    feature = "devices",
6399    feature = "communication",
6400    feature = "connectivity",
6401    feature = "multimedia"
6402))]
6403pub use mic::*;
6404#[cfg(any(
6405    feature = "devices",
6406    feature = "communication",
6407    feature = "connectivity",
6408    feature = "multimedia"
6409))]
6410pub use mic_off::*;
6411#[cfg(any(feature = "devices", feature = "multimedia"))]
6412pub use mic_vocal::*;
6413#[cfg(feature = "devices")]
6414pub use microchip::*;
6415#[cfg(any(feature = "science", feature = "medical"))]
6416pub use microscope::*;
6417#[cfg(any(feature = "food-beverage", feature = "home"))]
6418pub use microwave::*;
6419#[cfg(any(
6420    feature = "arrows",
6421    feature = "navigation",
6422    feature = "development",
6423    feature = "gaming"
6424))]
6425pub use milestone::*;
6426#[cfg(feature = "food-beverage")]
6427pub use milk::*;
6428#[cfg(feature = "food-beverage")]
6429pub use milk_off::*;
6430#[cfg(any(feature = "layout", feature = "design"))]
6431pub use minimize::*;
6432#[cfg(any(feature = "arrows", feature = "layout", feature = "design"))]
6433pub use minimize_2::*;
6434#[cfg(any(
6435    feature = "math",
6436    feature = "development",
6437    feature = "text",
6438    feature = "tools"
6439))]
6440pub use minus::*;
6441#[cfg(any(feature = "connectivity", feature = "devices"))]
6442pub use monitor::*;
6443#[cfg(any(feature = "connectivity", feature = "devices"))]
6444pub use monitor_check::*;
6445#[cfg(any(feature = "connectivity", feature = "devices"))]
6446pub use monitor_cog::*;
6447#[cfg(any(feature = "connectivity", feature = "devices"))]
6448pub use monitor_dot::*;
6449#[cfg(any(feature = "connectivity", feature = "devices"))]
6450pub use monitor_down::*;
6451#[cfg(any(feature = "connectivity", feature = "devices"))]
6452pub use monitor_off::*;
6453#[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
6454pub use monitor_pause::*;
6455#[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
6456pub use monitor_play::*;
6457#[cfg(any(feature = "connectivity", feature = "devices"))]
6458pub use monitor_smartphone::*;
6459#[cfg(any(feature = "connectivity", feature = "devices"))]
6460pub use monitor_speaker::*;
6461#[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
6462pub use monitor_stop::*;
6463#[cfg(any(feature = "connectivity", feature = "devices"))]
6464pub use monitor_up::*;
6465#[cfg(any(feature = "connectivity", feature = "devices"))]
6466pub use monitor_x::*;
6467#[cfg(feature = "accessibility")]
6468pub use moon::*;
6469#[cfg(any(feature = "accessibility", feature = "weather"))]
6470pub use moon_star::*;
6471#[cfg(any(feature = "nature", feature = "gaming"))]
6472pub use mountain::*;
6473#[cfg(feature = "nature")]
6474pub use mountain_snow::*;
6475#[cfg(feature = "devices")]
6476pub use mouse::*;
6477#[cfg(feature = "devices")]
6478pub use mouse_off::*;
6479#[cfg(any(feature = "arrows", feature = "cursors"))]
6480pub use mouse_pointer::*;
6481#[cfg(any(feature = "arrows", feature = "cursors"))]
6482pub use mouse_pointer_2::*;
6483#[cfg(any(feature = "arrows", feature = "cursors"))]
6484pub use mouse_pointer_ban::*;
6485#[cfg(any(feature = "arrows", feature = "cursors"))]
6486pub use mouse_pointer_click::*;
6487#[cfg(any(feature = "arrows", feature = "cursors"))]
6488pub use r#move::*;
6489#[cfg(feature = "design")]
6490pub use move_3_d::*;
6491#[cfg(any(feature = "arrows", feature = "cursors"))]
6492pub use move_diagonal::*;
6493#[cfg(any(feature = "arrows", feature = "cursors"))]
6494pub use move_diagonal_2::*;
6495#[cfg(feature = "arrows")]
6496pub use move_down::*;
6497#[cfg(feature = "arrows")]
6498pub use move_down_left::*;
6499#[cfg(feature = "arrows")]
6500pub use move_down_right::*;
6501#[cfg(any(feature = "arrows", feature = "cursors"))]
6502pub use move_horizontal::*;
6503#[cfg(feature = "arrows")]
6504pub use move_left::*;
6505#[cfg(feature = "arrows")]
6506pub use move_right::*;
6507#[cfg(feature = "arrows")]
6508pub use move_up::*;
6509#[cfg(feature = "arrows")]
6510pub use move_up_left::*;
6511#[cfg(feature = "arrows")]
6512pub use move_up_right::*;
6513#[cfg(any(feature = "arrows", feature = "cursors"))]
6514pub use move_vertical::*;
6515#[cfg(any(feature = "multimedia", feature = "files"))]
6516pub use music::*;
6517#[cfg(any(feature = "multimedia", feature = "files"))]
6518pub use music_2::*;
6519#[cfg(any(feature = "multimedia", feature = "files"))]
6520pub use music_3::*;
6521#[cfg(any(feature = "multimedia", feature = "files"))]
6522pub use music_4::*;
6523#[cfg(feature = "navigation")]
6524pub use navigation::*;
6525#[cfg(feature = "navigation")]
6526pub use navigation_2::*;
6527#[cfg(feature = "navigation")]
6528pub use navigation_2_off::*;
6529#[cfg(feature = "navigation")]
6530pub use navigation_off::*;
6531#[cfg(feature = "development")]
6532pub use network::*;
6533#[cfg(any(feature = "multimedia", feature = "communication"))]
6534pub use newspaper::*;
6535#[cfg(any(feature = "communication", feature = "finance", feature = "devices"))]
6536pub use nfc::*;
6537#[cfg(feature = "medical")]
6538pub use non_binary::*;
6539#[cfg(any(
6540    feature = "text",
6541    feature = "communication",
6542    feature = "social",
6543    feature = "design"
6544))]
6545pub use notebook::*;
6546#[cfg(any(feature = "text", feature = "social"))]
6547pub use notebook_pen::*;
6548#[cfg(any(feature = "account", feature = "communication", feature = "social"))]
6549pub use notebook_tabs::*;
6550#[cfg(any(feature = "text", feature = "social"))]
6551pub use notebook_text::*;
6552#[cfg(any(feature = "text", feature = "social"))]
6553pub use notepad_text::*;
6554#[cfg(any(feature = "text", feature = "social"))]
6555pub use notepad_text_dashed::*;
6556#[cfg(feature = "food-beverage")]
6557pub use nut::*;
6558#[cfg(feature = "food-beverage")]
6559pub use nut_off::*;
6560#[cfg(feature = "shapes")]
6561pub use octagon::*;
6562#[cfg(any(feature = "notifications", feature = "shapes"))]
6563pub use octagon_alert::*;
6564#[cfg(feature = "transportation")]
6565pub use octagon_minus::*;
6566#[cfg(any(feature = "multimedia", feature = "shapes"))]
6567pub use octagon_pause::*;
6568#[cfg(any(feature = "math", feature = "notifications"))]
6569pub use octagon_x::*;
6570#[cfg(any(
6571    feature = "math",
6572    feature = "development",
6573    feature = "text",
6574    feature = "science"
6575))]
6576pub use omega::*;
6577#[cfg(feature = "development")]
6578pub use option::*;
6579#[cfg(feature = "science")]
6580pub use orbit::*;
6581#[cfg(any(feature = "animals", feature = "design"))]
6582pub use origami::*;
6583#[cfg(any(feature = "files", feature = "development"))]
6584pub use package::*;
6585#[cfg(any(feature = "files", feature = "development"))]
6586pub use package_2::*;
6587#[cfg(feature = "development")]
6588pub use package_check::*;
6589#[cfg(feature = "development")]
6590pub use package_minus::*;
6591#[cfg(any(feature = "files", feature = "development"))]
6592pub use package_open::*;
6593#[cfg(feature = "development")]
6594pub use package_plus::*;
6595#[cfg(any(feature = "files", feature = "development"))]
6596pub use package_search::*;
6597#[cfg(feature = "development")]
6598pub use package_x::*;
6599#[cfg(any(feature = "design", feature = "tools"))]
6600pub use paint_bucket::*;
6601#[cfg(any(
6602    feature = "text",
6603    feature = "design",
6604    feature = "home",
6605    feature = "tools"
6606))]
6607pub use paint_roller::*;
6608#[cfg(any(
6609    feature = "text",
6610    feature = "design",
6611    feature = "photography",
6612    feature = "home",
6613    feature = "tools"
6614))]
6615pub use paintbrush::*;
6616#[cfg(any(
6617    feature = "text",
6618    feature = "design",
6619    feature = "photography",
6620    feature = "home",
6621    feature = "tools"
6622))]
6623pub use paintbrush_vertical::*;
6624#[cfg(any(feature = "text", feature = "design", feature = "photography"))]
6625pub use palette::*;
6626#[cfg(feature = "animals")]
6627pub use panda::*;
6628#[cfg(feature = "layout")]
6629pub use panel_bottom::*;
6630#[cfg(any(feature = "layout", feature = "arrows"))]
6631pub use panel_bottom_close::*;
6632#[cfg(feature = "layout")]
6633pub use panel_bottom_dashed::*;
6634#[cfg(any(feature = "layout", feature = "arrows"))]
6635pub use panel_bottom_open::*;
6636#[cfg(feature = "layout")]
6637pub use panel_left::*;
6638#[cfg(any(feature = "layout", feature = "arrows"))]
6639pub use panel_left_close::*;
6640#[cfg(feature = "layout")]
6641pub use panel_left_dashed::*;
6642#[cfg(any(feature = "layout", feature = "arrows"))]
6643pub use panel_left_open::*;
6644#[cfg(feature = "layout")]
6645pub use panel_right::*;
6646#[cfg(any(feature = "layout", feature = "arrows"))]
6647pub use panel_right_close::*;
6648#[cfg(feature = "layout")]
6649pub use panel_right_dashed::*;
6650#[cfg(any(feature = "layout", feature = "arrows"))]
6651pub use panel_right_open::*;
6652#[cfg(any(feature = "layout", feature = "design", feature = "development"))]
6653pub use panel_top::*;
6654#[cfg(any(feature = "layout", feature = "arrows"))]
6655pub use panel_top_close::*;
6656#[cfg(feature = "layout")]
6657pub use panel_top_dashed::*;
6658#[cfg(any(feature = "layout", feature = "arrows"))]
6659pub use panel_top_open::*;
6660#[cfg(feature = "layout")]
6661pub use panels_left_bottom::*;
6662#[cfg(feature = "layout")]
6663pub use panels_right_bottom::*;
6664#[cfg(any(feature = "layout", feature = "design", feature = "development"))]
6665pub use panels_top_left::*;
6666#[cfg(any(
6667    feature = "text",
6668    feature = "design",
6669    feature = "files",
6670    feature = "mail"
6671))]
6672pub use paperclip::*;
6673#[cfg(any(feature = "development", feature = "files", feature = "math"))]
6674pub use parentheses::*;
6675#[cfg(any(feature = "transportation", feature = "navigation"))]
6676pub use parking_meter::*;
6677#[cfg(feature = "emoji")]
6678pub use party_popper::*;
6679#[cfg(feature = "multimedia")]
6680pub use pause::*;
6681#[cfg(feature = "animals")]
6682pub use paw_print::*;
6683#[cfg(any(feature = "devices", feature = "gaming"))]
6684pub use pc_case::*;
6685#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
6686pub use pen::*;
6687#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
6688pub use pen_line::*;
6689#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
6690pub use pen_off::*;
6691#[cfg(any(feature = "text", feature = "design", feature = "cursors"))]
6692pub use pen_tool::*;
6693#[cfg(any(
6694    feature = "design",
6695    feature = "cursors",
6696    feature = "tools",
6697    feature = "text"
6698))]
6699pub use pencil::*;
6700#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
6701pub use pencil_line::*;
6702#[cfg(any(
6703    feature = "design",
6704    feature = "cursors",
6705    feature = "tools",
6706    feature = "text"
6707))]
6708pub use pencil_off::*;
6709#[cfg(any(
6710    feature = "tools",
6711    feature = "design",
6712    feature = "layout",
6713    feature = "text"
6714))]
6715pub use pencil_ruler::*;
6716#[cfg(feature = "shapes")]
6717pub use pentagon::*;
6718#[cfg(any(
6719    feature = "math",
6720    feature = "development",
6721    feature = "finance",
6722    feature = "shopping"
6723))]
6724pub use percent::*;
6725#[cfg(any(feature = "accessibility", feature = "people"))]
6726pub use person_standing::*;
6727#[cfg(feature = "finance")]
6728pub use philippine_peso::*;
6729#[cfg(any(
6730    feature = "text",
6731    feature = "connectivity",
6732    feature = "devices",
6733    feature = "communication"
6734))]
6735pub use phone::*;
6736#[cfg(any(
6737    feature = "connectivity",
6738    feature = "devices",
6739    feature = "communication"
6740))]
6741pub use phone_call::*;
6742#[cfg(any(
6743    feature = "arrows",
6744    feature = "connectivity",
6745    feature = "devices",
6746    feature = "communication"
6747))]
6748pub use phone_forwarded::*;
6749#[cfg(any(
6750    feature = "arrows",
6751    feature = "connectivity",
6752    feature = "devices",
6753    feature = "communication"
6754))]
6755pub use phone_incoming::*;
6756#[cfg(any(
6757    feature = "connectivity",
6758    feature = "devices",
6759    feature = "communication"
6760))]
6761pub use phone_missed::*;
6762#[cfg(any(
6763    feature = "connectivity",
6764    feature = "devices",
6765    feature = "communication"
6766))]
6767pub use phone_off::*;
6768#[cfg(any(
6769    feature = "arrows",
6770    feature = "connectivity",
6771    feature = "devices",
6772    feature = "communication"
6773))]
6774pub use phone_outgoing::*;
6775#[cfg(any(feature = "development", feature = "math"))]
6776pub use pi::*;
6777#[cfg(any(feature = "multimedia", feature = "devices"))]
6778pub use piano::*;
6779#[cfg(any(feature = "tools", feature = "gaming"))]
6780pub use pickaxe::*;
6781#[cfg(feature = "multimedia")]
6782pub use picture_in_picture::*;
6783#[cfg(feature = "multimedia")]
6784pub use picture_in_picture_2::*;
6785#[cfg(feature = "finance")]
6786pub use piggy_bank::*;
6787#[cfg(feature = "text")]
6788pub use pilcrow::*;
6789#[cfg(feature = "text")]
6790pub use pilcrow_left::*;
6791#[cfg(feature = "text")]
6792pub use pilcrow_right::*;
6793#[cfg(feature = "medical")]
6794pub use pill::*;
6795#[cfg(feature = "medical")]
6796pub use pill_bottle::*;
6797#[cfg(any(feature = "navigation", feature = "account"))]
6798pub use pin::*;
6799#[cfg(feature = "navigation")]
6800pub use pin_off::*;
6801#[cfg(any(feature = "text", feature = "design", feature = "science"))]
6802pub use pipette::*;
6803#[cfg(feature = "food-beverage")]
6804pub use pizza::*;
6805#[cfg(any(feature = "transportation", feature = "travel"))]
6806pub use plane::*;
6807#[cfg(any(feature = "transportation", feature = "travel"))]
6808pub use plane_landing::*;
6809#[cfg(any(feature = "transportation", feature = "travel"))]
6810pub use plane_takeoff::*;
6811#[cfg(any(feature = "arrows", feature = "multimedia"))]
6812pub use play::*;
6813#[cfg(any(feature = "devices", feature = "development"))]
6814pub use plug::*;
6815#[cfg(any(feature = "devices", feature = "development"))]
6816pub use plug_2::*;
6817#[cfg(feature = "devices")]
6818pub use plug_zap::*;
6819#[cfg(any(
6820    feature = "math",
6821    feature = "tools",
6822    feature = "development",
6823    feature = "text",
6824    feature = "cursors",
6825    feature = "gaming"
6826))]
6827pub use plus::*;
6828#[cfg(feature = "brands")]
6829pub use pocket::*;
6830#[cfg(feature = "tools")]
6831pub use pocket_knife::*;
6832#[cfg(any(feature = "multimedia", feature = "social"))]
6833pub use podcast::*;
6834#[cfg(feature = "cursors")]
6835pub use pointer::*;
6836#[cfg(feature = "cursors")]
6837pub use pointer_off::*;
6838#[cfg(any(feature = "food-beverage", feature = "multimedia"))]
6839pub use popcorn::*;
6840#[cfg(feature = "food-beverage")]
6841pub use popsicle::*;
6842#[cfg(feature = "finance")]
6843pub use pound_sterling::*;
6844#[cfg(feature = "connectivity")]
6845pub use power::*;
6846#[cfg(feature = "connectivity")]
6847pub use power_off::*;
6848#[cfg(any(
6849    feature = "multimedia",
6850    feature = "photography",
6851    feature = "devices",
6852    feature = "communication",
6853    feature = "design"
6854))]
6855pub use presentation::*;
6856#[cfg(feature = "devices")]
6857pub use printer::*;
6858#[cfg(feature = "devices")]
6859pub use printer_check::*;
6860#[cfg(any(
6861    feature = "multimedia",
6862    feature = "photography",
6863    feature = "devices",
6864    feature = "communication"
6865))]
6866pub use projector::*;
6867#[cfg(any(
6868    feature = "layout",
6869    feature = "design",
6870    feature = "photography",
6871    feature = "devices"
6872))]
6873pub use proportions::*;
6874#[cfg(any(feature = "development", feature = "gaming"))]
6875pub use puzzle::*;
6876#[cfg(any(feature = "shapes", feature = "math", feature = "travel"))]
6877pub use pyramid::*;
6878#[cfg(any(feature = "development", feature = "social"))]
6879pub use qr_code::*;
6880#[cfg(feature = "text")]
6881pub use quote::*;
6882#[cfg(feature = "animals")]
6883pub use rabbit::*;
6884#[cfg(any(
6885    feature = "navigation",
6886    feature = "security",
6887    feature = "communication"
6888))]
6889pub use radar::*;
6890#[cfg(feature = "science")]
6891pub use radiation::*;
6892#[cfg(any(feature = "development", feature = "math"))]
6893pub use radical::*;
6894#[cfg(any(feature = "devices", feature = "multimedia", feature = "social"))]
6895pub use radio::*;
6896#[cfg(feature = "devices")]
6897pub use radio_receiver::*;
6898#[cfg(any(feature = "devices", feature = "multimedia", feature = "social"))]
6899pub use radio_tower::*;
6900#[cfg(any(
6901    feature = "shapes",
6902    feature = "math",
6903    feature = "design",
6904    feature = "tools"
6905))]
6906pub use radius::*;
6907#[cfg(any(feature = "transportation", feature = "navigation"))]
6908pub use rail_symbol::*;
6909#[cfg(feature = "weather")]
6910pub use rainbow::*;
6911#[cfg(feature = "animals")]
6912pub use rat::*;
6913#[cfg(any(feature = "layout", feature = "design", feature = "photography"))]
6914pub use ratio::*;
6915#[cfg(any(feature = "finance", feature = "travel"))]
6916pub use receipt::*;
6917#[cfg(any(feature = "finance", feature = "travel"))]
6918pub use receipt_cent::*;
6919#[cfg(any(feature = "finance", feature = "travel"))]
6920pub use receipt_euro::*;
6921#[cfg(any(feature = "finance", feature = "travel"))]
6922pub use receipt_indian_rupee::*;
6923#[cfg(any(feature = "finance", feature = "travel"))]
6924pub use receipt_japanese_yen::*;
6925#[cfg(any(feature = "finance", feature = "travel"))]
6926pub use receipt_pound_sterling::*;
6927#[cfg(any(feature = "finance", feature = "travel"))]
6928pub use receipt_russian_ruble::*;
6929#[cfg(any(feature = "finance", feature = "travel"))]
6930pub use receipt_swiss_franc::*;
6931#[cfg(any(feature = "finance", feature = "travel"))]
6932pub use receipt_text::*;
6933#[cfg(any(feature = "development", feature = "text"))]
6934pub use rectangle_circle::*;
6935#[cfg(any(feature = "text", feature = "development"))]
6936pub use rectangle_ellipsis::*;
6937#[cfg(any(
6938    feature = "devices",
6939    feature = "gaming",
6940    feature = "multimedia",
6941    feature = "connectivity"
6942))]
6943pub use rectangle_goggles::*;
6944#[cfg(any(feature = "shapes", feature = "design"))]
6945pub use rectangle_horizontal::*;
6946#[cfg(any(feature = "shapes", feature = "design"))]
6947pub use rectangle_vertical::*;
6948#[cfg(feature = "sustainability")]
6949pub use recycle::*;
6950#[cfg(any(feature = "text", feature = "arrows"))]
6951pub use redo::*;
6952#[cfg(any(feature = "text", feature = "arrows"))]
6953pub use redo_2::*;
6954#[cfg(any(feature = "text", feature = "arrows"))]
6955pub use redo_dot::*;
6956#[cfg(feature = "arrows")]
6957pub use refresh_ccw::*;
6958#[cfg(any(feature = "arrows", feature = "development"))]
6959pub use refresh_ccw_dot::*;
6960#[cfg(feature = "arrows")]
6961pub use refresh_cw::*;
6962#[cfg(feature = "arrows")]
6963pub use refresh_cw_off::*;
6964#[cfg(any(feature = "food-beverage", feature = "home"))]
6965pub use refrigerator::*;
6966#[cfg(any(feature = "text", feature = "development"))]
6967pub use regex::*;
6968#[cfg(feature = "text")]
6969pub use remove_formatting::*;
6970#[cfg(any(feature = "arrows", feature = "multimedia"))]
6971pub use repeat::*;
6972#[cfg(feature = "multimedia")]
6973pub use repeat_1::*;
6974#[cfg(any(feature = "arrows", feature = "social", feature = "multimedia"))]
6975pub use repeat_2::*;
6976#[cfg(feature = "text")]
6977pub use replace::*;
6978#[cfg(feature = "text")]
6979pub use replace_all::*;
6980#[cfg(feature = "mail")]
6981pub use reply::*;
6982#[cfg(feature = "mail")]
6983pub use reply_all::*;
6984#[cfg(any(feature = "arrows", feature = "multimedia"))]
6985pub use rewind::*;
6986#[cfg(any(feature = "social", feature = "medical", feature = "emoji"))]
6987pub use ribbon::*;
6988#[cfg(any(feature = "gaming", feature = "development"))]
6989pub use rocket::*;
6990#[cfg(feature = "home")]
6991pub use rocking_chair::*;
6992#[cfg(feature = "navigation")]
6993pub use roller_coaster::*;
6994#[cfg(feature = "design")]
6995pub use rotate_3_d::*;
6996#[cfg(any(feature = "arrows", feature = "design", feature = "photography"))]
6997pub use rotate_ccw::*;
6998#[cfg(any(feature = "security", feature = "account"))]
6999pub use rotate_ccw_key::*;
7000#[cfg(any(
7001    feature = "layout",
7002    feature = "design",
7003    feature = "photography",
7004    feature = "tools",
7005    feature = "arrows"
7006))]
7007pub use rotate_ccw_square::*;
7008#[cfg(any(feature = "arrows", feature = "design", feature = "photography"))]
7009pub use rotate_cw::*;
7010#[cfg(any(
7011    feature = "layout",
7012    feature = "design",
7013    feature = "photography",
7014    feature = "tools",
7015    feature = "arrows"
7016))]
7017pub use rotate_cw_square::*;
7018#[cfg(feature = "navigation")]
7019pub use route::*;
7020#[cfg(feature = "navigation")]
7021pub use route_off::*;
7022#[cfg(any(
7023    feature = "development",
7024    feature = "devices",
7025    feature = "connectivity",
7026    feature = "home"
7027))]
7028pub use router::*;
7029#[cfg(any(feature = "layout", feature = "design", feature = "text"))]
7030pub use rows_2::*;
7031#[cfg(any(feature = "layout", feature = "design", feature = "text"))]
7032pub use rows_3::*;
7033#[cfg(any(feature = "layout", feature = "design", feature = "text"))]
7034pub use rows_4::*;
7035#[cfg(any(feature = "development", feature = "social"))]
7036pub use rss::*;
7037#[cfg(any(feature = "tools", feature = "design", feature = "layout"))]
7038pub use ruler::*;
7039#[cfg(any(feature = "tools", feature = "design", feature = "layout"))]
7040pub use ruler_dimension_line::*;
7041#[cfg(feature = "finance")]
7042pub use russian_ruble::*;
7043#[cfg(any(feature = "transportation", feature = "travel"))]
7044pub use sailboat::*;
7045#[cfg(any(feature = "food-beverage", feature = "emoji"))]
7046pub use salad::*;
7047#[cfg(feature = "food-beverage")]
7048pub use sandwich::*;
7049#[cfg(any(feature = "connectivity", feature = "science"))]
7050pub use satellite::*;
7051#[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
7052pub use satellite_dish::*;
7053#[cfg(feature = "finance")]
7054pub use saudi_riyal::*;
7055#[cfg(any(feature = "text", feature = "files"))]
7056pub use save::*;
7057#[cfg(any(feature = "text", feature = "files"))]
7058pub use save_all::*;
7059#[cfg(any(feature = "text", feature = "files"))]
7060pub use save_off::*;
7061#[cfg(feature = "navigation")]
7062pub use scale::*;
7063#[cfg(feature = "design")]
7064pub use scale_3_d::*;
7065#[cfg(feature = "design")]
7066pub use scaling::*;
7067#[cfg(any(
7068    feature = "devices",
7069    feature = "shopping",
7070    feature = "security",
7071    feature = "social",
7072    feature = "gaming"
7073))]
7074pub use scan::*;
7075#[cfg(any(feature = "shopping", feature = "devices"))]
7076pub use scan_barcode::*;
7077#[cfg(any(
7078    feature = "photography",
7079    feature = "multimedia",
7080    feature = "accessibility",
7081    feature = "security",
7082    feature = "devices",
7083    feature = "account"
7084))]
7085pub use scan_eye::*;
7086#[cfg(any(
7087    feature = "account",
7088    feature = "security",
7089    feature = "devices",
7090    feature = "social"
7091))]
7092pub use scan_face::*;
7093#[cfg(feature = "medical")]
7094pub use scan_heart::*;
7095#[cfg(any(feature = "devices", feature = "shopping"))]
7096pub use scan_line::*;
7097#[cfg(any(
7098    feature = "account",
7099    feature = "shopping",
7100    feature = "devices",
7101    feature = "security"
7102))]
7103pub use scan_qr_code::*;
7104#[cfg(any(
7105    feature = "photography",
7106    feature = "multimedia",
7107    feature = "accessibility"
7108))]
7109pub use scan_search::*;
7110#[cfg(any(feature = "text", feature = "devices"))]
7111pub use scan_text::*;
7112#[cfg(any(feature = "buildings", feature = "navigation"))]
7113pub use school::*;
7114#[cfg(any(feature = "text", feature = "design", feature = "tools"))]
7115pub use scissors::*;
7116#[cfg(any(feature = "design", feature = "tools"))]
7117pub use scissors_line_dashed::*;
7118#[cfg(any(
7119    feature = "connectivity",
7120    feature = "devices",
7121    feature = "communication"
7122))]
7123pub use screen_share::*;
7124#[cfg(any(
7125    feature = "connectivity",
7126    feature = "devices",
7127    feature = "communication"
7128))]
7129pub use screen_share_off::*;
7130#[cfg(any(feature = "gaming", feature = "development", feature = "text"))]
7131pub use scroll::*;
7132#[cfg(any(feature = "gaming", feature = "development", feature = "text"))]
7133pub use scroll_text::*;
7134#[cfg(any(feature = "text", feature = "social"))]
7135pub use search::*;
7136#[cfg(any(feature = "text", feature = "social"))]
7137pub use search_check::*;
7138#[cfg(any(feature = "text", feature = "social", feature = "development"))]
7139pub use search_code::*;
7140#[cfg(any(feature = "text", feature = "social"))]
7141pub use search_slash::*;
7142#[cfg(any(feature = "text", feature = "social"))]
7143pub use search_x::*;
7144#[cfg(feature = "text")]
7145pub use section::*;
7146#[cfg(any(feature = "mail", feature = "communication", feature = "connectivity"))]
7147pub use send::*;
7148#[cfg(any(feature = "mail", feature = "communication", feature = "connectivity"))]
7149pub use send_horizontal::*;
7150#[cfg(any(feature = "design", feature = "layout"))]
7151pub use send_to_back::*;
7152#[cfg(any(feature = "text", feature = "arrows", feature = "layout"))]
7153pub use separator_horizontal::*;
7154#[cfg(any(feature = "text", feature = "arrows", feature = "layout"))]
7155pub use separator_vertical::*;
7156#[cfg(any(feature = "development", feature = "devices"))]
7157pub use server::*;
7158#[cfg(any(feature = "development", feature = "devices"))]
7159pub use server_cog::*;
7160#[cfg(any(feature = "development", feature = "devices"))]
7161pub use server_crash::*;
7162#[cfg(any(feature = "development", feature = "devices"))]
7163pub use server_off::*;
7164#[cfg(feature = "account")]
7165pub use settings::*;
7166#[cfg(feature = "account")]
7167pub use settings_2::*;
7168#[cfg(any(feature = "shapes", feature = "gaming"))]
7169pub use shapes::*;
7170#[cfg(any(feature = "account", feature = "social"))]
7171pub use share::*;
7172#[cfg(any(feature = "account", feature = "social"))]
7173pub use share_2::*;
7174#[cfg(any(feature = "text", feature = "files"))]
7175pub use sheet::*;
7176#[cfg(any(
7177    feature = "animals",
7178    feature = "development",
7179    feature = "nature",
7180    feature = "science",
7181    feature = "travel",
7182    feature = "food-beverage",
7183    feature = "home"
7184))]
7185pub use shell::*;
7186#[cfg(any(
7187    feature = "account",
7188    feature = "security",
7189    feature = "development",
7190    feature = "gaming",
7191    feature = "shapes"
7192))]
7193pub use shield::*;
7194#[cfg(any(
7195    feature = "account",
7196    feature = "security",
7197    feature = "development",
7198    feature = "notifications",
7199    feature = "gaming"
7200))]
7201pub use shield_alert::*;
7202#[cfg(any(
7203    feature = "account",
7204    feature = "security",
7205    feature = "development",
7206    feature = "gaming"
7207))]
7208pub use shield_ban::*;
7209#[cfg(any(
7210    feature = "account",
7211    feature = "security",
7212    feature = "development",
7213    feature = "gaming"
7214))]
7215pub use shield_check::*;
7216#[cfg(any(
7217    feature = "account",
7218    feature = "security",
7219    feature = "development",
7220    feature = "gaming"
7221))]
7222pub use shield_ellipsis::*;
7223#[cfg(any(
7224    feature = "account",
7225    feature = "security",
7226    feature = "development",
7227    feature = "gaming"
7228))]
7229pub use shield_half::*;
7230#[cfg(any(
7231    feature = "account",
7232    feature = "security",
7233    feature = "development",
7234    feature = "gaming"
7235))]
7236pub use shield_minus::*;
7237#[cfg(any(
7238    feature = "account",
7239    feature = "security",
7240    feature = "development",
7241    feature = "gaming"
7242))]
7243pub use shield_off::*;
7244#[cfg(any(
7245    feature = "account",
7246    feature = "security",
7247    feature = "development",
7248    feature = "gaming",
7249    feature = "medical"
7250))]
7251pub use shield_plus::*;
7252#[cfg(any(
7253    feature = "account",
7254    feature = "security",
7255    feature = "development",
7256    feature = "gaming"
7257))]
7258pub use shield_question_mark::*;
7259#[cfg(any(feature = "account", feature = "security", feature = "development"))]
7260pub use shield_user::*;
7261#[cfg(any(
7262    feature = "account",
7263    feature = "security",
7264    feature = "development",
7265    feature = "gaming"
7266))]
7267pub use shield_x::*;
7268#[cfg(any(feature = "transportation", feature = "navigation", feature = "travel"))]
7269pub use ship::*;
7270#[cfg(any(feature = "transportation", feature = "navigation", feature = "travel"))]
7271pub use ship_wheel::*;
7272#[cfg(feature = "shopping")]
7273pub use shirt::*;
7274#[cfg(feature = "shopping")]
7275pub use shopping_bag::*;
7276#[cfg(feature = "shopping")]
7277pub use shopping_basket::*;
7278#[cfg(feature = "shopping")]
7279pub use shopping_cart::*;
7280#[cfg(any(feature = "nature", feature = "tools", feature = "gaming"))]
7281pub use shovel::*;
7282#[cfg(any(feature = "home", feature = "travel"))]
7283pub use shower_head::*;
7284#[cfg(any(feature = "mail", feature = "files"))]
7285pub use shredder::*;
7286#[cfg(feature = "animals")]
7287pub use shrimp::*;
7288#[cfg(any(feature = "layout", feature = "arrows"))]
7289pub use shrink::*;
7290#[cfg(feature = "nature")]
7291pub use shrub::*;
7292#[cfg(any(feature = "multimedia", feature = "arrows"))]
7293pub use shuffle::*;
7294#[cfg(any(feature = "text", feature = "math", feature = "science"))]
7295pub use sigma::*;
7296#[cfg(feature = "connectivity")]
7297pub use signal::*;
7298#[cfg(feature = "connectivity")]
7299pub use signal_high::*;
7300#[cfg(feature = "connectivity")]
7301pub use signal_low::*;
7302#[cfg(feature = "connectivity")]
7303pub use signal_medium::*;
7304#[cfg(feature = "connectivity")]
7305pub use signal_zero::*;
7306#[cfg(feature = "text")]
7307pub use signature::*;
7308#[cfg(any(
7309    feature = "arrows",
7310    feature = "navigation",
7311    feature = "development",
7312    feature = "gaming"
7313))]
7314pub use signpost::*;
7315#[cfg(any(
7316    feature = "arrows",
7317    feature = "navigation",
7318    feature = "development",
7319    feature = "gaming"
7320))]
7321pub use signpost_big::*;
7322#[cfg(feature = "medical")]
7323pub use siren::*;
7324#[cfg(any(feature = "multimedia", feature = "arrows"))]
7325pub use skip_back::*;
7326#[cfg(any(feature = "multimedia", feature = "arrows"))]
7327pub use skip_forward::*;
7328#[cfg(feature = "gaming")]
7329pub use skull::*;
7330#[cfg(any(
7331    feature = "account",
7332    feature = "social",
7333    feature = "brands",
7334    feature = "development"
7335))]
7336pub use slack::*;
7337#[cfg(any(feature = "development", feature = "math"))]
7338pub use slash::*;
7339#[cfg(feature = "design")]
7340pub use slice::*;
7341#[cfg(feature = "account")]
7342pub use sliders_horizontal::*;
7343#[cfg(feature = "account")]
7344pub use sliders_vertical::*;
7345#[cfg(any(feature = "connectivity", feature = "devices"))]
7346pub use smartphone::*;
7347#[cfg(any(feature = "connectivity", feature = "devices"))]
7348pub use smartphone_charging::*;
7349#[cfg(any(feature = "communication", feature = "finance", feature = "devices"))]
7350pub use smartphone_nfc::*;
7351#[cfg(any(feature = "emoji", feature = "account"))]
7352pub use smile::*;
7353#[cfg(any(
7354    feature = "emoji",
7355    feature = "social",
7356    feature = "notifications",
7357    feature = "communication"
7358))]
7359pub use smile_plus::*;
7360#[cfg(any(feature = "animals", feature = "food-beverage"))]
7361pub use snail::*;
7362#[cfg(any(feature = "weather", feature = "seasons"))]
7363pub use snowflake::*;
7364#[cfg(any(feature = "home", feature = "travel"))]
7365pub use soap_dispenser_droplet::*;
7366#[cfg(feature = "home")]
7367pub use sofa::*;
7368#[cfg(feature = "food-beverage")]
7369pub use soup::*;
7370#[cfg(feature = "text")]
7371pub use space::*;
7372#[cfg(any(feature = "shapes", feature = "gaming"))]
7373pub use spade::*;
7374#[cfg(feature = "shapes")]
7375pub use sparkle::*;
7376#[cfg(any(
7377    feature = "cursors",
7378    feature = "multimedia",
7379    feature = "gaming",
7380    feature = "weather"
7381))]
7382pub use sparkles::*;
7383#[cfg(any(feature = "multimedia", feature = "devices"))]
7384pub use speaker::*;
7385#[cfg(any(feature = "accessibility", feature = "communication"))]
7386pub use speech::*;
7387#[cfg(any(feature = "text", feature = "development"))]
7388pub use spell_check::*;
7389#[cfg(any(feature = "text", feature = "development"))]
7390pub use spell_check_2::*;
7391#[cfg(feature = "design")]
7392pub use spline::*;
7393#[cfg(any(
7394    feature = "arrows",
7395    feature = "cursors",
7396    feature = "design",
7397    feature = "tools"
7398))]
7399pub use spline_pointer::*;
7400#[cfg(any(feature = "development", feature = "arrows"))]
7401pub use split::*;
7402#[cfg(any(feature = "communication", feature = "tools", feature = "social"))]
7403pub use spool::*;
7404#[cfg(any(feature = "design", feature = "tools"))]
7405pub use spray_can::*;
7406#[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
7407pub use sprout::*;
7408#[cfg(feature = "shapes")]
7409pub use square::*;
7410#[cfg(any(
7411    feature = "medical",
7412    feature = "social",
7413    feature = "science",
7414    feature = "multimedia"
7415))]
7416pub use square_activity::*;
7417#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
7418pub use square_arrow_down::*;
7419#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
7420pub use square_arrow_down_left::*;
7421#[cfg(any(feature = "arrows", feature = "navigation", feature = "gaming"))]
7422pub use square_arrow_down_right::*;
7423#[cfg(any(feature = "arrows", feature = "navigation"))]
7424pub use square_arrow_left::*;
7425#[cfg(any(feature = "arrows", feature = "navigation"))]
7426pub use square_arrow_out_down_left::*;
7427#[cfg(any(feature = "arrows", feature = "navigation"))]
7428pub use square_arrow_out_down_right::*;
7429#[cfg(any(feature = "arrows", feature = "navigation"))]
7430pub use square_arrow_out_up_left::*;
7431#[cfg(any(feature = "arrows", feature = "navigation", feature = "social"))]
7432pub use square_arrow_out_up_right::*;
7433#[cfg(any(feature = "arrows", feature = "navigation"))]
7434pub use square_arrow_right::*;
7435#[cfg(any(feature = "arrows", feature = "navigation"))]
7436pub use square_arrow_up::*;
7437#[cfg(any(feature = "arrows", feature = "navigation"))]
7438pub use square_arrow_up_left::*;
7439#[cfg(any(feature = "arrows", feature = "navigation", feature = "social"))]
7440pub use square_arrow_up_right::*;
7441#[cfg(any(
7442    feature = "text",
7443    feature = "security",
7444    feature = "math",
7445    feature = "development"
7446))]
7447pub use square_asterisk::*;
7448#[cfg(any(
7449    feature = "text",
7450    feature = "design",
7451    feature = "tools",
7452    feature = "files",
7453    feature = "development"
7454))]
7455pub use square_bottom_dashed_scissors::*;
7456#[cfg(any(
7457    feature = "charts",
7458    feature = "time",
7459    feature = "development",
7460    feature = "design"
7461))]
7462pub use square_chart_gantt::*;
7463#[cfg(feature = "notifications")]
7464pub use square_check::*;
7465#[cfg(feature = "notifications")]
7466pub use square_check_big::*;
7467#[cfg(any(feature = "arrows", feature = "navigation"))]
7468pub use square_chevron_down::*;
7469#[cfg(any(feature = "arrows", feature = "navigation"))]
7470pub use square_chevron_left::*;
7471#[cfg(any(feature = "arrows", feature = "navigation", feature = "development"))]
7472pub use square_chevron_right::*;
7473#[cfg(any(feature = "arrows", feature = "navigation", feature = "math"))]
7474pub use square_chevron_up::*;
7475#[cfg(any(feature = "text", feature = "development"))]
7476pub use square_code::*;
7477#[cfg(any(feature = "text", feature = "design"))]
7478pub use square_dashed::*;
7479#[cfg(any(feature = "development", feature = "files"))]
7480pub use square_dashed_bottom::*;
7481#[cfg(any(feature = "development", feature = "files"))]
7482pub use square_dashed_bottom_code::*;
7483#[cfg(any(feature = "charts", feature = "development", feature = "design"))]
7484pub use square_dashed_kanban::*;
7485#[cfg(any(
7486    feature = "arrows",
7487    feature = "cursors",
7488    feature = "development",
7489    feature = "tools"
7490))]
7491pub use square_dashed_mouse_pointer::*;
7492#[cfg(any(feature = "design", feature = "development", feature = "layout"))]
7493pub use square_dashed_top_solid::*;
7494#[cfg(feature = "math")]
7495pub use square_divide::*;
7496#[cfg(feature = "development")]
7497pub use square_dot::*;
7498#[cfg(feature = "math")]
7499pub use square_equal::*;
7500#[cfg(any(feature = "development", feature = "math"))]
7501pub use square_function::*;
7502#[cfg(any(feature = "charts", feature = "development", feature = "design"))]
7503pub use square_kanban::*;
7504#[cfg(any(
7505    feature = "text",
7506    feature = "photography",
7507    feature = "multimedia",
7508    feature = "navigation",
7509    feature = "development"
7510))]
7511pub use square_library::*;
7512#[cfg(any(feature = "transportation", feature = "navigation"))]
7513pub use square_m::*;
7514#[cfg(feature = "layout")]
7515pub use square_menu::*;
7516#[cfg(any(
7517    feature = "math",
7518    feature = "development",
7519    feature = "text",
7520    feature = "tools",
7521    feature = "devices"
7522))]
7523pub use square_minus::*;
7524#[cfg(any(
7525    feature = "arrows",
7526    feature = "cursors",
7527    feature = "development",
7528    feature = "tools"
7529))]
7530pub use square_mouse_pointer::*;
7531#[cfg(any(feature = "transportation", feature = "navigation"))]
7532pub use square_parking::*;
7533#[cfg(any(feature = "transportation", feature = "navigation"))]
7534pub use square_parking_off::*;
7535#[cfg(feature = "text")]
7536pub use square_pen::*;
7537#[cfg(any(
7538    feature = "social",
7539    feature = "finance",
7540    feature = "shopping",
7541    feature = "math"
7542))]
7543pub use square_percent::*;
7544#[cfg(any(feature = "development", feature = "math"))]
7545pub use square_pi::*;
7546#[cfg(feature = "text")]
7547pub use square_pilcrow::*;
7548#[cfg(any(feature = "arrows", feature = "multimedia"))]
7549pub use square_play::*;
7550#[cfg(any(
7551    feature = "math",
7552    feature = "tools",
7553    feature = "development",
7554    feature = "text"
7555))]
7556pub use square_plus::*;
7557#[cfg(feature = "connectivity")]
7558pub use square_power::*;
7559#[cfg(any(feature = "development", feature = "math"))]
7560pub use square_radical::*;
7561#[cfg(any(feature = "design", feature = "development", feature = "layout"))]
7562pub use square_round_corner::*;
7563#[cfg(any(
7564    feature = "text",
7565    feature = "design",
7566    feature = "tools",
7567    feature = "files",
7568    feature = "development"
7569))]
7570pub use square_scissors::*;
7571#[cfg(any(feature = "text", feature = "math"))]
7572pub use square_sigma::*;
7573#[cfg(any(feature = "development", feature = "math"))]
7574pub use square_slash::*;
7575#[cfg(feature = "layout")]
7576pub use square_split_horizontal::*;
7577#[cfg(feature = "layout")]
7578pub use square_split_vertical::*;
7579#[cfg(feature = "layout")]
7580pub use square_square::*;
7581#[cfg(any(feature = "text", feature = "files", feature = "development"))]
7582pub use square_stack::*;
7583#[cfg(feature = "development")]
7584pub use square_terminal::*;
7585#[cfg(feature = "account")]
7586pub use square_user::*;
7587#[cfg(feature = "account")]
7588pub use square_user_round::*;
7589#[cfg(any(feature = "math", feature = "notifications"))]
7590pub use square_x::*;
7591#[cfg(feature = "design")]
7592pub use squares_exclude::*;
7593#[cfg(feature = "design")]
7594pub use squares_intersect::*;
7595#[cfg(feature = "design")]
7596pub use squares_subtract::*;
7597#[cfg(feature = "design")]
7598pub use squares_unite::*;
7599#[cfg(feature = "shapes")]
7600pub use squircle::*;
7601#[cfg(feature = "animals")]
7602pub use squirrel::*;
7603#[cfg(any(feature = "design", feature = "cursors", feature = "tools"))]
7604pub use stamp::*;
7605#[cfg(any(
7606    feature = "account",
7607    feature = "social",
7608    feature = "shapes",
7609    feature = "multimedia",
7610    feature = "weather",
7611    feature = "emoji",
7612    feature = "gaming"
7613))]
7614pub use star::*;
7615#[cfg(any(feature = "social", feature = "multimedia"))]
7616pub use star_half::*;
7617#[cfg(any(feature = "multimedia", feature = "social"))]
7618pub use star_off::*;
7619#[cfg(any(feature = "multimedia", feature = "arrows"))]
7620pub use step_back::*;
7621#[cfg(any(feature = "multimedia", feature = "arrows"))]
7622pub use step_forward::*;
7623#[cfg(any(feature = "science", feature = "medical"))]
7624pub use stethoscope::*;
7625#[cfg(feature = "social")]
7626pub use sticker::*;
7627#[cfg(any(feature = "text", feature = "social"))]
7628pub use sticky_note::*;
7629#[cfg(any(feature = "buildings", feature = "navigation", feature = "shopping"))]
7630pub use store::*;
7631#[cfg(feature = "layout")]
7632pub use stretch_horizontal::*;
7633#[cfg(feature = "layout")]
7634pub use stretch_vertical::*;
7635#[cfg(feature = "text")]
7636pub use strikethrough::*;
7637#[cfg(feature = "text")]
7638pub use subscript::*;
7639#[cfg(any(
7640    feature = "accessibility",
7641    feature = "weather",
7642    feature = "seasons",
7643    feature = "sustainability"
7644))]
7645pub use sun::*;
7646#[cfg(any(feature = "accessibility", feature = "weather"))]
7647pub use sun_dim::*;
7648#[cfg(any(feature = "accessibility", feature = "weather"))]
7649pub use sun_medium::*;
7650#[cfg(feature = "accessibility")]
7651pub use sun_moon::*;
7652#[cfg(feature = "weather")]
7653pub use sun_snow::*;
7654#[cfg(any(feature = "arrows", feature = "weather", feature = "time"))]
7655pub use sunrise::*;
7656#[cfg(any(feature = "arrows", feature = "weather"))]
7657pub use sunset::*;
7658#[cfg(feature = "text")]
7659pub use superscript::*;
7660#[cfg(any(feature = "design", feature = "home", feature = "photography"))]
7661pub use swatch_book::*;
7662#[cfg(feature = "finance")]
7663pub use swiss_franc::*;
7664#[cfg(any(feature = "communication", feature = "devices"))]
7665pub use switch_camera::*;
7666#[cfg(any(feature = "gaming", feature = "tools"))]
7667pub use sword::*;
7668#[cfg(any(feature = "gaming", feature = "tools"))]
7669pub use swords::*;
7670#[cfg(any(feature = "science", feature = "medical"))]
7671pub use syringe::*;
7672#[cfg(any(feature = "text", feature = "files"))]
7673pub use table::*;
7674#[cfg(any(feature = "text", feature = "files"))]
7675pub use table_2::*;
7676#[cfg(any(feature = "text", feature = "files"))]
7677pub use table_cells_merge::*;
7678#[cfg(any(feature = "text", feature = "files"))]
7679pub use table_cells_split::*;
7680#[cfg(any(feature = "text", feature = "files"))]
7681pub use table_columns_split::*;
7682#[cfg(feature = "text")]
7683pub use table_of_contents::*;
7684#[cfg(any(feature = "text", feature = "development", feature = "files"))]
7685pub use table_properties::*;
7686#[cfg(any(feature = "text", feature = "files"))]
7687pub use table_rows_split::*;
7688#[cfg(feature = "devices")]
7689pub use tablet::*;
7690#[cfg(any(
7691    feature = "devices",
7692    feature = "design",
7693    feature = "development",
7694    feature = "tools"
7695))]
7696pub use tablet_smartphone::*;
7697#[cfg(feature = "medical")]
7698pub use tablets::*;
7699#[cfg(feature = "account")]
7700pub use tag::*;
7701#[cfg(feature = "account")]
7702pub use tags::*;
7703#[cfg(any(feature = "math", feature = "gaming"))]
7704pub use tally_1::*;
7705#[cfg(any(feature = "math", feature = "gaming"))]
7706pub use tally_2::*;
7707#[cfg(any(feature = "math", feature = "gaming"))]
7708pub use tally_3::*;
7709#[cfg(any(feature = "math", feature = "gaming"))]
7710pub use tally_4::*;
7711#[cfg(any(feature = "math", feature = "gaming"))]
7712pub use tally_5::*;
7713#[cfg(any(
7714    feature = "shapes",
7715    feature = "math",
7716    feature = "design",
7717    feature = "tools"
7718))]
7719pub use tangent::*;
7720#[cfg(any(feature = "brands", feature = "gaming"))]
7721pub use target::*;
7722#[cfg(any(feature = "science", feature = "development", feature = "tools"))]
7723pub use telescope::*;
7724#[cfg(any(feature = "travel", feature = "nature", feature = "sustainability"))]
7725pub use tent::*;
7726#[cfg(any(feature = "travel", feature = "nature"))]
7727pub use tent_tree::*;
7728#[cfg(feature = "development")]
7729pub use terminal::*;
7730#[cfg(feature = "science")]
7731pub use test_tube::*;
7732#[cfg(feature = "science")]
7733pub use test_tube_diagonal::*;
7734#[cfg(feature = "science")]
7735pub use test_tubes::*;
7736#[cfg(any(feature = "text", feature = "files", feature = "cursors"))]
7737pub use text::*;
7738#[cfg(any(feature = "text", feature = "cursors"))]
7739pub use text_cursor::*;
7740#[cfg(any(feature = "text", feature = "layout"))]
7741pub use text_cursor_input::*;
7742#[cfg(feature = "text")]
7743pub use text_quote::*;
7744#[cfg(feature = "text")]
7745pub use text_search::*;
7746#[cfg(any(feature = "text", feature = "cursors"))]
7747pub use text_select::*;
7748#[cfg(any(feature = "buildings", feature = "social"))]
7749pub use theater::*;
7750#[cfg(feature = "weather")]
7751pub use thermometer::*;
7752#[cfg(feature = "weather")]
7753pub use thermometer_snowflake::*;
7754#[cfg(feature = "weather")]
7755pub use thermometer_sun::*;
7756#[cfg(any(feature = "account", feature = "social", feature = "emoji"))]
7757pub use thumbs_down::*;
7758#[cfg(any(feature = "account", feature = "social", feature = "emoji"))]
7759pub use thumbs_up::*;
7760#[cfg(any(feature = "account", feature = "transportation"))]
7761pub use ticket::*;
7762#[cfg(feature = "transportation")]
7763pub use ticket_check::*;
7764#[cfg(feature = "transportation")]
7765pub use ticket_minus::*;
7766#[cfg(any(feature = "transportation", feature = "shopping"))]
7767pub use ticket_percent::*;
7768#[cfg(feature = "transportation")]
7769pub use ticket_plus::*;
7770#[cfg(feature = "transportation")]
7771pub use ticket_slash::*;
7772#[cfg(feature = "transportation")]
7773pub use ticket_x::*;
7774#[cfg(any(feature = "travel", feature = "account", feature = "transportation"))]
7775pub use tickets::*;
7776#[cfg(any(feature = "transportation", feature = "travel"))]
7777pub use tickets_plane::*;
7778#[cfg(feature = "time")]
7779pub use timer::*;
7780#[cfg(feature = "time")]
7781pub use timer_off::*;
7782#[cfg(feature = "time")]
7783pub use timer_reset::*;
7784#[cfg(any(feature = "layout", feature = "account", feature = "development"))]
7785pub use toggle_left::*;
7786#[cfg(any(feature = "layout", feature = "account", feature = "development"))]
7787pub use toggle_right::*;
7788#[cfg(any(feature = "devices", feature = "home"))]
7789pub use toilet::*;
7790#[cfg(feature = "weather")]
7791pub use tornado::*;
7792#[cfg(any(
7793    feature = "shapes",
7794    feature = "design",
7795    feature = "tools",
7796    feature = "food-beverage"
7797))]
7798pub use torus::*;
7799#[cfg(feature = "devices")]
7800pub use touchpad::*;
7801#[cfg(feature = "devices")]
7802pub use touchpad_off::*;
7803#[cfg(any(feature = "travel", feature = "transportation"))]
7804pub use tower_control::*;
7805#[cfg(any(feature = "gaming", feature = "development"))]
7806pub use toy_brick::*;
7807#[cfg(any(
7808    feature = "transportation",
7809    feature = "sustainability",
7810    feature = "food-beverage"
7811))]
7812pub use tractor::*;
7813#[cfg(feature = "transportation")]
7814pub use traffic_cone::*;
7815#[cfg(feature = "transportation")]
7816pub use train_front::*;
7817#[cfg(any(feature = "transportation", feature = "navigation"))]
7818pub use train_front_tunnel::*;
7819#[cfg(any(feature = "transportation", feature = "navigation"))]
7820pub use train_track::*;
7821#[cfg(feature = "transportation")]
7822pub use tram_front::*;
7823#[cfg(any(feature = "medical", feature = "accessibility"))]
7824pub use transgender::*;
7825#[cfg(any(feature = "files", feature = "mail"))]
7826pub use trash::*;
7827#[cfg(any(feature = "files", feature = "mail"))]
7828pub use trash_2::*;
7829#[cfg(any(feature = "nature", feature = "sustainability"))]
7830pub use tree_deciduous::*;
7831#[cfg(any(feature = "nature", feature = "sustainability"))]
7832pub use tree_palm::*;
7833#[cfg(any(feature = "nature", feature = "sustainability"))]
7834pub use tree_pine::*;
7835#[cfg(any(feature = "nature", feature = "sustainability"))]
7836pub use trees::*;
7837#[cfg(any(feature = "account", feature = "brands", feature = "development"))]
7838pub use trello::*;
7839#[cfg(any(feature = "charts", feature = "arrows"))]
7840pub use trending_down::*;
7841#[cfg(any(feature = "charts", feature = "arrows"))]
7842pub use trending_up::*;
7843#[cfg(any(feature = "charts", feature = "arrows"))]
7844pub use trending_up_down::*;
7845#[cfg(feature = "shapes")]
7846pub use triangle::*;
7847#[cfg(any(feature = "notifications", feature = "shapes", feature = "development"))]
7848pub use triangle_alert::*;
7849#[cfg(feature = "shapes")]
7850pub use triangle_dashed::*;
7851#[cfg(any(feature = "shapes", feature = "math"))]
7852pub use triangle_right::*;
7853#[cfg(any(feature = "sports", feature = "gaming"))]
7854pub use trophy::*;
7855#[cfg(feature = "transportation")]
7856pub use truck::*;
7857#[cfg(feature = "transportation")]
7858pub use truck_electric::*;
7859#[cfg(feature = "animals")]
7860pub use turtle::*;
7861#[cfg(any(feature = "devices", feature = "multimedia", feature = "communication"))]
7862pub use tv::*;
7863#[cfg(any(feature = "devices", feature = "multimedia"))]
7864pub use tv_minimal::*;
7865#[cfg(any(feature = "devices", feature = "multimedia"))]
7866pub use tv_minimal_play::*;
7867#[cfg(any(
7868    feature = "brands",
7869    feature = "social",
7870    feature = "account",
7871    feature = "gaming"
7872))]
7873pub use twitch::*;
7874#[cfg(any(feature = "brands", feature = "social", feature = "account"))]
7875pub use twitter::*;
7876#[cfg(feature = "text")]
7877pub use r#type::*;
7878#[cfg(feature = "text")]
7879pub use type_outline::*;
7880#[cfg(feature = "weather")]
7881pub use umbrella::*;
7882#[cfg(feature = "weather")]
7883pub use umbrella_off::*;
7884#[cfg(feature = "text")]
7885pub use underline::*;
7886#[cfg(any(feature = "text", feature = "arrows"))]
7887pub use undo::*;
7888#[cfg(any(feature = "text", feature = "arrows"))]
7889pub use undo_2::*;
7890#[cfg(any(feature = "text", feature = "arrows"))]
7891pub use undo_dot::*;
7892#[cfg(any(feature = "arrows", feature = "layout"))]
7893pub use unfold_horizontal::*;
7894#[cfg(any(feature = "arrows", feature = "layout"))]
7895pub use unfold_vertical::*;
7896#[cfg(any(feature = "shapes", feature = "files"))]
7897pub use ungroup::*;
7898#[cfg(any(feature = "buildings", feature = "navigation"))]
7899pub use university::*;
7900#[cfg(feature = "text")]
7901pub use unlink::*;
7902#[cfg(feature = "text")]
7903pub use unlink_2::*;
7904#[cfg(any(feature = "devices", feature = "development"))]
7905pub use unplug::*;
7906#[cfg(any(feature = "arrows", feature = "files"))]
7907pub use upload::*;
7908#[cfg(any(feature = "devices", feature = "multimedia", feature = "home"))]
7909pub use usb::*;
7910#[cfg(feature = "account")]
7911pub use user::*;
7912#[cfg(feature = "account")]
7913pub use user_check::*;
7914#[cfg(feature = "account")]
7915pub use user_cog::*;
7916#[cfg(any(feature = "account", feature = "security"))]
7917pub use user_lock::*;
7918#[cfg(feature = "account")]
7919pub use user_minus::*;
7920#[cfg(feature = "account")]
7921pub use user_pen::*;
7922#[cfg(feature = "account")]
7923pub use user_plus::*;
7924#[cfg(feature = "account")]
7925pub use user_round::*;
7926#[cfg(feature = "account")]
7927pub use user_round_check::*;
7928#[cfg(feature = "account")]
7929pub use user_round_cog::*;
7930#[cfg(feature = "account")]
7931pub use user_round_minus::*;
7932#[cfg(feature = "account")]
7933pub use user_round_pen::*;
7934#[cfg(feature = "account")]
7935pub use user_round_plus::*;
7936#[cfg(any(feature = "account", feature = "social"))]
7937pub use user_round_search::*;
7938#[cfg(feature = "account")]
7939pub use user_round_x::*;
7940#[cfg(any(feature = "account", feature = "social"))]
7941pub use user_search::*;
7942#[cfg(feature = "account")]
7943pub use user_x::*;
7944#[cfg(feature = "account")]
7945pub use users::*;
7946#[cfg(feature = "account")]
7947pub use users_round::*;
7948#[cfg(any(feature = "food-beverage", feature = "travel", feature = "navigation"))]
7949pub use utensils::*;
7950#[cfg(any(feature = "food-beverage", feature = "travel", feature = "navigation"))]
7951pub use utensils_crossed::*;
7952#[cfg(any(feature = "buildings", feature = "home", feature = "sustainability"))]
7953pub use utility_pole::*;
7954#[cfg(any(feature = "development", feature = "math"))]
7955pub use variable::*;
7956#[cfg(any(feature = "security", feature = "travel", feature = "home"))]
7957pub use vault::*;
7958#[cfg(any(feature = "food-beverage", feature = "sustainability"))]
7959pub use vegan::*;
7960#[cfg(any(feature = "account", feature = "gaming"))]
7961pub use venetian_mask::*;
7962#[cfg(feature = "medical")]
7963pub use venus::*;
7964#[cfg(feature = "medical")]
7965pub use venus_and_mars::*;
7966#[cfg(any(
7967    feature = "devices",
7968    feature = "connectivity",
7969    feature = "account",
7970    feature = "notifications"
7971))]
7972pub use vibrate::*;
7973#[cfg(any(feature = "devices", feature = "connectivity", feature = "account"))]
7974pub use vibrate_off::*;
7975#[cfg(any(
7976    feature = "devices",
7977    feature = "communication",
7978    feature = "connectivity",
7979    feature = "photography"
7980))]
7981pub use video::*;
7982#[cfg(any(
7983    feature = "devices",
7984    feature = "communication",
7985    feature = "connectivity",
7986    feature = "photography"
7987))]
7988pub use video_off::*;
7989#[cfg(any(
7990    feature = "devices",
7991    feature = "communication",
7992    feature = "connectivity",
7993    feature = "photography",
7994    feature = "files"
7995))]
7996pub use videotape::*;
7997#[cfg(any(feature = "design", feature = "photography"))]
7998pub use view::*;
7999#[cfg(any(feature = "connectivity", feature = "devices", feature = "social"))]
8000pub use voicemail::*;
8001#[cfg(any(feature = "sports", feature = "gaming", feature = "travel"))]
8002pub use volleyball::*;
8003#[cfg(any(
8004    feature = "connectivity",
8005    feature = "communication",
8006    feature = "multimedia"
8007))]
8008pub use volume::*;
8009#[cfg(any(
8010    feature = "connectivity",
8011    feature = "communication",
8012    feature = "multimedia"
8013))]
8014pub use volume_1::*;
8015#[cfg(any(
8016    feature = "connectivity",
8017    feature = "communication",
8018    feature = "multimedia"
8019))]
8020pub use volume_2::*;
8021#[cfg(any(
8022    feature = "connectivity",
8023    feature = "communication",
8024    feature = "multimedia"
8025))]
8026pub use volume_off::*;
8027#[cfg(any(
8028    feature = "connectivity",
8029    feature = "communication",
8030    feature = "multimedia"
8031))]
8032pub use volume_x::*;
8033#[cfg(feature = "social")]
8034pub use vote::*;
8035#[cfg(any(feature = "account", feature = "finance"))]
8036pub use wallet::*;
8037#[cfg(any(feature = "account", feature = "finance"))]
8038pub use wallet_cards::*;
8039#[cfg(any(feature = "account", feature = "finance"))]
8040pub use wallet_minimal::*;
8041#[cfg(any(feature = "account", feature = "devices"))]
8042pub use wallpaper::*;
8043#[cfg(any(
8044    feature = "design",
8045    feature = "gaming",
8046    feature = "cursors",
8047    feature = "photography"
8048))]
8049pub use wand::*;
8050#[cfg(any(
8051    feature = "design",
8052    feature = "gaming",
8053    feature = "cursors",
8054    feature = "photography"
8055))]
8056pub use wand_sparkles::*;
8057#[cfg(any(feature = "buildings", feature = "navigation"))]
8058pub use warehouse::*;
8059#[cfg(any(feature = "home", feature = "devices", feature = "travel"))]
8060pub use washing_machine::*;
8061#[cfg(feature = "time")]
8062pub use watch::*;
8063#[cfg(any(
8064    feature = "weather",
8065    feature = "navigation",
8066    feature = "multimedia",
8067    feature = "sustainability"
8068))]
8069pub use waves::*;
8070#[cfg(any(feature = "sports", feature = "home"))]
8071pub use waves_ladder::*;
8072#[cfg(any(
8073    feature = "security",
8074    feature = "account",
8075    feature = "navigation",
8076    feature = "development",
8077    feature = "social"
8078))]
8079pub use waypoints::*;
8080#[cfg(any(
8081    feature = "connectivity",
8082    feature = "devices",
8083    feature = "communication"
8084))]
8085pub use webcam::*;
8086#[cfg(any(feature = "development", feature = "social", feature = "account"))]
8087pub use webhook::*;
8088#[cfg(any(feature = "development", feature = "social", feature = "account"))]
8089pub use webhook_off::*;
8090#[cfg(feature = "math")]
8091pub use weight::*;
8092#[cfg(feature = "food-beverage")]
8093pub use wheat::*;
8094#[cfg(feature = "food-beverage")]
8095pub use wheat_off::*;
8096#[cfg(feature = "text")]
8097pub use whole_word::*;
8098#[cfg(any(feature = "connectivity", feature = "devices"))]
8099pub use wifi::*;
8100#[cfg(any(feature = "connectivity", feature = "devices", feature = "files"))]
8101pub use wifi_cog::*;
8102#[cfg(any(feature = "connectivity", feature = "devices"))]
8103pub use wifi_high::*;
8104#[cfg(any(feature = "connectivity", feature = "devices"))]
8105pub use wifi_low::*;
8106#[cfg(any(feature = "connectivity", feature = "devices"))]
8107pub use wifi_off::*;
8108#[cfg(any(feature = "connectivity", feature = "devices"))]
8109pub use wifi_pen::*;
8110#[cfg(any(feature = "connectivity", feature = "devices"))]
8111pub use wifi_zero::*;
8112#[cfg(any(feature = "weather", feature = "sustainability"))]
8113pub use wind::*;
8114#[cfg(any(feature = "weather", feature = "sustainability"))]
8115pub use wind_arrow_down::*;
8116#[cfg(feature = "food-beverage")]
8117pub use wine::*;
8118#[cfg(feature = "food-beverage")]
8119pub use wine_off::*;
8120#[cfg(feature = "development")]
8121pub use workflow::*;
8122#[cfg(any(feature = "animals", feature = "security"))]
8123pub use worm::*;
8124#[cfg(any(feature = "text", feature = "arrows"))]
8125pub use wrap_text::*;
8126#[cfg(any(feature = "account", feature = "development", feature = "tools"))]
8127pub use wrench::*;
8128#[cfg(any(feature = "notifications", feature = "math"))]
8129pub use x::*;
8130#[cfg(any(feature = "multimedia", feature = "social", feature = "brands"))]
8131pub use youtube::*;
8132#[cfg(any(
8133    feature = "connectivity",
8134    feature = "devices",
8135    feature = "photography",
8136    feature = "weather"
8137))]
8138pub use zap::*;
8139#[cfg(any(
8140    feature = "connectivity",
8141    feature = "devices",
8142    feature = "photography",
8143    feature = "weather"
8144))]
8145pub use zap_off::*;
8146#[cfg(any(
8147    feature = "accessibility",
8148    feature = "layout",
8149    feature = "design",
8150    feature = "text",
8151    feature = "photography"
8152))]
8153pub use zoom_in::*;
8154#[cfg(any(
8155    feature = "accessibility",
8156    feature = "layout",
8157    feature = "design",
8158    feature = "text",
8159    feature = "photography"
8160))]
8161pub use zoom_out::*;