1
2use strum_macros::{EnumIter, EnumProperty, EnumString, IntoStaticStr};
3
4#[derive(
5 EnumIter,
6 EnumProperty,
7 EnumString,
8 IntoStaticStr,
9 PartialEq,
10 Eq,
11 PartialOrd,
12 Ord,
13 Hash,
14 Debug,
15 Clone,
16 Copy,
17)]
18pub enum LucideGlyph {
19 #[cfg(any(feature = "text", feature = "design"))]
20 #[strum(props(
21 svg = "<path d=\"m14 12 4 4 4-4\"></path><path d=\"M18 16V7\"></path><path d=\"m2 16 4.03-9.69a.5.5 0 0 1 .923 0L11 16\"></path><path d=\"M3.30 13h6.39\"></path>",
22 categories = "text,design",
23 tags = "letter,font size,text,formatting,smaller",
24 contributors = "it-is-not,jguddas,danielbayley,ericfennis"
25 ))]
26 AArrowDown,
27 #[cfg(any(feature = "text", feature = "design"))]
28 #[strum(props(
29 svg = "<path d=\"m14 11 4-4 4 4\"></path><path d=\"M18 16V7\"></path><path d=\"m2 16 4.03-9.69a.5.5 0 0 1 .923 0L11 16\"></path><path d=\"M3.30 13h6.39\"></path>",
30 categories = "text,design",
31 tags = "letter,font size,text,formatting,larger,bigger",
32 contributors = "it-is-not,jguddas,danielbayley,ericfennis"
33 ))]
34 AArrowUp,
35 #[cfg(any(feature = "text", feature = "design"))]
36 #[strum(props(
37 svg = "<path d=\"m15 16 2.53-7.32a1.02 1.02 1 0 1 1.92 0L22 16\"></path><path d=\"M15.69 14h5.60\"></path><path d=\"m2 16 4.03-9.69a.5.5 0 0 1 .923 0L11 16\"></path><path d=\"M3.30 13h6.39\"></path>",
38 categories = "text,design",
39 tags = "letter,font size,text,formatting",
40 contributors = "it-is-not,jguddas,danielbayley,ericfennis,vichotech,karsa-mistmere"
41 ))]
42 ALargeSmall,
43 #[cfg(any(feature = "accessibility", feature = "medical"))]
44 #[strum(props(
45 svg = "<circle cx=\"16\" cy=\"4\" r=\"1\"></circle><path d=\"m18 19 1-7-6 1\"></path><path d=\"m5 8 3-3 5.5 3-2.36 3.5\"></path><path d=\"M4.24 14.5a5 5 0 0 0 6.88 6\"></path><path d=\"M13.76 17.5a5 5 0 0 0-6.88-6\"></path>",
46 categories = "accessibility,medical",
47 tags = "disability,disabled,dda,wheelchair",
48 contributors = "karsa-mistmere,jguddas"
49 ))]
50 Accessibility,
51 #[cfg(any(
52 feature = "medical",
53 feature = "account",
54 feature = "social",
55 feature = "science",
56 feature = "multimedia"
57 ))]
58 #[strum(props(
59 svg = "<path d=\"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2\"></path>",
60 categories = "medical,account,social,science,multimedia",
61 tags = "pulse,action,motion,movement,exercise,fitness,healthcare,heart rate monitor,vital signs,vitals,emergency room,er,intensive care,hospital,defibrillator,earthquake,siesmic,magnitude,richter scale,aftershock,tremor,shockwave,audio,waveform,synthesizer,synthesiser,music",
62 contributors = "colebemis,jguddas"
63 ))]
64 Activity,
65 #[cfg(any(feature = "multimedia", feature = "notifications"))]
66 #[strum(props(
67 svg = "<path d=\"M10 13H6\"></path><path d=\"M10 15v-4a2 2 0 0 0-4 0v4\"></path><path d=\"M14 14.5a.5.5 0 0 0 .5.5h1a2.5 2.5 0 0 0 2.5-2.5v-1A2.5 2.5 0 0 0 15.5 9h-1a.5.5 0 0 0-.5.5z\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"5\"></rect>",
68 categories = "multimedia,notifications",
69 tags = "advert,affiliate,brand,campaign,commercial,marketing,monetize,paid,partner,promo,sponsor",
70 contributors = "ahtohbi4,jamiemlaw,karsa-mistmere,jguddas"
71 ))]
72 Ad,
73 #[cfg(feature = "home")]
74 #[strum(props(
75 svg = "<path d=\"M18 17.5a2.5 2.5 0 1 1-4 2.03V12\"></path><path d=\"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2\"></path><path d=\"M6 8h12\"></path><path d=\"M6.6 15.57A2 2 0 1 0 10 17v-5\"></path>",
76 categories = "home",
77 tags = "air conditioner,ac,central air,cooling,climate-control",
78 contributors = "karsa-mistmere,jguddas"
79 ))]
80 AirVent,
81 #[cfg(any(feature = "multimedia", feature = "connectivity"))]
82 #[strum(props(
83 svg = "<path d=\"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1\"></path><path d=\"m12 15 5 6H7Z\"></path>",
84 categories = "multimedia,connectivity",
85 tags = "stream,cast,mirroring,screen,monitor,macos,osx",
86 contributors = "colebemis,csandman,ericfennis"
87 ))]
88 Airplay,
89 #[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
90 #[strum(props(
91 svg = "<circle cx=\"12\" cy=\"13\" r=\"8\"></circle><path d=\"M5 3 2 6\"></path><path d=\"m22 6-3-3\"></path><path d=\"M6.38 18.7 4 21\"></path><path d=\"M17.64 18.67 20 21\"></path><path d=\"m9 13 2 2 4-4\"></path>",
92 categories = "devices,notifications,time",
93 tags = "done,todo,tick,complete,task",
94 contributors = "mittalyashu,ericfennis,jguddas,karsa-mistmere"
95 ))]
96 AlarmClockCheck,
97 #[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
98 #[strum(props(
99 svg = "<circle cx=\"12\" cy=\"13\" r=\"8\"></circle><path d=\"M5 3 2 6\"></path><path d=\"m22 6-3-3\"></path><path d=\"M6.38 18.7 4 21\"></path><path d=\"M17.64 18.67 20 21\"></path><path d=\"M9 13h6\"></path>",
100 categories = "devices,notifications,time",
101 tags = "remove",
102 contributors = "mittalyashu,ericfennis,jguddas,karsa-mistmere"
103 ))]
104 AlarmClockMinus,
105 #[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
106 #[strum(props(
107 svg = "<path d=\"M6.87 6.87a8 8 0 1 0 11.26 11.26\"></path><path d=\"M19.9 14.25a8 8 0 0 0-9.15-9.15\"></path><path d=\"m22 6-3-3\"></path><path d=\"M6.26 18.67 4 21\"></path><path d=\"m2 2 20 20\"></path><path d=\"M4 4 2 6\"></path>",
108 categories = "devices,notifications,time",
109 tags = "morning,turn-off",
110 contributors = "mittalyashu,ericfennis,karsa-mistmere,jguddas"
111 ))]
112 AlarmClockOff,
113 #[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
114 #[strum(props(
115 svg = "<circle cx=\"12\" cy=\"13\" r=\"8\"></circle><path d=\"M5 3 2 6\"></path><path d=\"m22 6-3-3\"></path><path d=\"M6.38 18.7 4 21\"></path><path d=\"M17.64 18.67 20 21\"></path><path d=\"M12 10v6\"></path><path d=\"M9 13h6\"></path>",
116 categories = "devices,notifications,time",
117 tags = "add",
118 contributors = "mittalyashu,ericfennis,jguddas,karsa-mistmere"
119 ))]
120 AlarmClockPlus,
121 #[cfg(any(feature = "devices", feature = "notifications", feature = "time"))]
122 #[strum(props(
123 svg = "<circle cx=\"12\" cy=\"13\" r=\"8\"></circle><path d=\"M12 9v4l2 2\"></path><path d=\"M5 3 2 6\"></path><path d=\"m22 6-3-3\"></path><path d=\"M6.38 18.7 4 21\"></path><path d=\"M17.64 18.67 20 21\"></path>",
124 categories = "devices,notifications,time",
125 tags = "morning",
126 contributors = "lscheibel,johnletey,ericfennis,jguddas,karsa-mistmere"
127 ))]
128 AlarmClock,
129 #[cfg(any(feature = "home", feature = "devices", feature = "travel"))]
130 #[strum(props(
131 svg = "<path d=\"M11 21c0-2.5 2-2.5 2-5\"></path><path d=\"M16 21c0-2.5 2-2.5 2-5\"></path><path d=\"m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8\"></path><path d=\"M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z\"></path><path d=\"M6 21c0-2.5 2-2.5 2-5\"></path>",
132 categories = "home,devices,travel",
133 tags = "fire,alert,warning,detector,carbon monoxide,safety,equipment,amenities",
134 contributors = "danielbayley,karsa-mistmere,jguddas"
135 ))]
136 AlarmSmoke,
137 #[cfg(any(feature = "photography", feature = "multimedia"))]
138 #[strum(props(
139 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><polyline points=\"11 3 11 11 14 8 17 11 17 3\"></polyline>",
140 categories = "photography,multimedia",
141 tags = "photo,book",
142 contributors = "ericfennis,csandman,mittalyashu"
143 ))]
144 Album,
145 #[cfg(feature = "layout")]
146 #[strum(props(
147 svg = "<path d=\"M2 12h20\"></path><path d=\"M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4\"></path><path d=\"M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4\"></path><path d=\"M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1\"></path><path d=\"M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1\"></path>",
148 categories = "layout",
149 tags = "items,flex,justify",
150 contributors = "ericfennis"
151 ))]
152 AlignCenterHorizontal,
153 #[cfg(feature = "layout")]
154 #[strum(props(
155 svg = "<path d=\"M12 2v20\"></path><path d=\"M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4\"></path><path d=\"M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4\"></path><path d=\"M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1\"></path><path d=\"M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1\"></path>",
156 categories = "layout",
157 tags = "items,flex,justify",
158 contributors = "ericfennis"
159 ))]
160 AlignCenterVertical,
161 #[cfg(feature = "layout")]
162 #[strum(props(
163 svg = "<rect height=\"16\" rx=\"2\" width=\"6\" x=\"4\" y=\"2\"></rect><rect height=\"9\" rx=\"2\" width=\"6\" x=\"14\" y=\"9\"></rect><path d=\"M22 22H2\"></path>",
164 categories = "layout",
165 tags = "items,bottom,flex,justify",
166 contributors = "ericfennis"
167 ))]
168 AlignEndHorizontal,
169 #[cfg(feature = "layout")]
170 #[strum(props(
171 svg = "<rect height=\"6\" rx=\"2\" width=\"16\" x=\"2\" y=\"4\"></rect><rect height=\"6\" rx=\"2\" width=\"9\" x=\"9\" y=\"14\"></rect><path d=\"M22 22V2\"></path>",
172 categories = "layout",
173 tags = "items,right,flex,justify",
174 contributors = "ericfennis"
175 ))]
176 AlignEndVertical,
177 #[cfg(feature = "layout")]
178 #[strum(props(
179 svg = "<rect height=\"14\" rx=\"2\" width=\"6\" x=\"4\" y=\"5\"></rect><rect height=\"10\" rx=\"2\" width=\"6\" x=\"14\" y=\"7\"></rect><path d=\"M17 22v-5\"></path><path d=\"M17 7V2\"></path><path d=\"M7 22v-3\"></path><path d=\"M7 5V2\"></path>",
180 categories = "layout",
181 tags = "items,flex,justify,space,evenly,around",
182 contributors = "r4lv,ericfennis"
183 ))]
184 AlignHorizontalDistributeCenter,
185 #[cfg(feature = "layout")]
186 #[strum(props(
187 svg = "<rect height=\"14\" rx=\"2\" width=\"6\" x=\"4\" y=\"5\"></rect><rect height=\"10\" rx=\"2\" width=\"6\" x=\"14\" y=\"7\"></rect><path d=\"M10 2v20\"></path><path d=\"M20 2v20\"></path>",
188 categories = "layout",
189 tags = "right,items,flex,justify",
190 contributors = "r4lv,ericfennis"
191 ))]
192 AlignHorizontalDistributeEnd,
193 #[cfg(feature = "layout")]
194 #[strum(props(
195 svg = "<rect height=\"14\" rx=\"2\" width=\"6\" x=\"4\" y=\"5\"></rect><rect height=\"10\" rx=\"2\" width=\"6\" x=\"14\" y=\"7\"></rect><path d=\"M4 2v20\"></path><path d=\"M14 2v20\"></path>",
196 categories = "layout",
197 tags = "left,items,flex,justify",
198 contributors = "r4lv,ericfennis"
199 ))]
200 AlignHorizontalDistributeStart,
201 #[cfg(feature = "layout")]
202 #[strum(props(
203 svg = "<rect height=\"14\" rx=\"2\" width=\"6\" x=\"2\" y=\"5\"></rect><rect height=\"10\" rx=\"2\" width=\"6\" x=\"16\" y=\"7\"></rect><path d=\"M12 2v20\"></path>",
204 categories = "layout",
205 tags = "center,items,flex,justify",
206 contributors = "ericfennis"
207 ))]
208 AlignHorizontalJustifyCenter,
209 #[cfg(feature = "layout")]
210 #[strum(props(
211 svg = "<rect height=\"14\" rx=\"2\" width=\"6\" x=\"2\" y=\"5\"></rect><rect height=\"10\" rx=\"2\" width=\"6\" x=\"12\" y=\"7\"></rect><path d=\"M22 2v20\"></path>",
212 categories = "layout",
213 tags = "right,items,flex,justify",
214 contributors = "ericfennis"
215 ))]
216 AlignHorizontalJustifyEnd,
217 #[cfg(feature = "layout")]
218 #[strum(props(
219 svg = "<rect height=\"14\" rx=\"2\" width=\"6\" x=\"6\" y=\"5\"></rect><rect height=\"10\" rx=\"2\" width=\"6\" x=\"16\" y=\"7\"></rect><path d=\"M2 2v20\"></path>",
220 categories = "layout",
221 tags = "left,items,flex,justify",
222 contributors = "ericfennis"
223 ))]
224 AlignHorizontalJustifyStart,
225 #[cfg(feature = "layout")]
226 #[strum(props(
227 svg = "<rect height=\"10\" rx=\"2\" width=\"6\" x=\"9\" y=\"7\"></rect><path d=\"M4 22V2\"></path><path d=\"M20 22V2\"></path>",
228 categories = "layout",
229 tags = "center,items,flex,justify,distribute,between",
230 contributors = "ericfennis"
231 ))]
232 AlignHorizontalSpaceAround,
233 #[cfg(feature = "layout")]
234 #[strum(props(
235 svg = "<rect height=\"14\" rx=\"2\" width=\"6\" x=\"3\" y=\"5\"></rect><rect height=\"10\" rx=\"2\" width=\"6\" x=\"15\" y=\"7\"></rect><path d=\"M3 2v20\"></path><path d=\"M21 2v20\"></path>",
236 categories = "layout",
237 tags = "around,items,bottom,flex,justify",
238 contributors = "ericfennis"
239 ))]
240 AlignHorizontalSpaceBetween,
241 #[cfg(feature = "layout")]
242 #[strum(props(
243 svg = "<rect height=\"16\" rx=\"2\" width=\"6\" x=\"4\" y=\"6\"></rect><rect height=\"9\" rx=\"2\" width=\"6\" x=\"14\" y=\"6\"></rect><path d=\"M22 2H2\"></path>",
244 categories = "layout",
245 tags = "top,items,flex,justify",
246 contributors = "ericfennis"
247 ))]
248 AlignStartHorizontal,
249 #[cfg(feature = "layout")]
250 #[strum(props(
251 svg = "<rect height=\"6\" rx=\"2\" width=\"9\" x=\"6\" y=\"14\"></rect><rect height=\"6\" rx=\"2\" width=\"16\" x=\"6\" y=\"4\"></rect><path d=\"M2 2v20\"></path>",
252 categories = "layout",
253 tags = "left,items,flex,justify",
254 contributors = "ericfennis"
255 ))]
256 AlignStartVertical,
257 #[cfg(feature = "layout")]
258 #[strum(props(
259 svg = "<path d=\"M22 17h-3\"></path><path d=\"M22 7h-5\"></path><path d=\"M5 17H2\"></path><path d=\"M7 7H2\"></path><rect height=\"6\" rx=\"2\" width=\"14\" x=\"5\" y=\"14\"></rect><rect height=\"6\" rx=\"2\" width=\"10\" x=\"7\" y=\"4\"></rect>",
260 categories = "layout",
261 tags = "items,flex,justify,space,evenly,around",
262 contributors = "ericfennis,jguddas"
263 ))]
264 AlignVerticalDistributeCenter,
265 #[cfg(feature = "layout")]
266 #[strum(props(
267 svg = "<rect height=\"6\" rx=\"2\" width=\"14\" x=\"5\" y=\"14\"></rect><rect height=\"6\" rx=\"2\" width=\"10\" x=\"7\" y=\"4\"></rect><path d=\"M2 20h20\"></path><path d=\"M2 10h20\"></path>",
268 categories = "layout",
269 tags = "bottom,items,flex,justify",
270 contributors = "ericfennis"
271 ))]
272 AlignVerticalDistributeEnd,
273 #[cfg(feature = "layout")]
274 #[strum(props(
275 svg = "<rect height=\"6\" rx=\"2\" width=\"14\" x=\"5\" y=\"14\"></rect><rect height=\"6\" rx=\"2\" width=\"10\" x=\"7\" y=\"4\"></rect><path d=\"M2 14h20\"></path><path d=\"M2 4h20\"></path>",
276 categories = "layout",
277 tags = "top,items,flex,justify",
278 contributors = "ericfennis"
279 ))]
280 AlignVerticalDistributeStart,
281 #[cfg(feature = "layout")]
282 #[strum(props(
283 svg = "<rect height=\"6\" rx=\"2\" width=\"14\" x=\"5\" y=\"16\"></rect><rect height=\"6\" rx=\"2\" width=\"10\" x=\"7\" y=\"2\"></rect><path d=\"M2 12h20\"></path>",
284 categories = "layout",
285 tags = "center,items,flex,justify,distribute,between",
286 contributors = "ericfennis"
287 ))]
288 AlignVerticalJustifyCenter,
289 #[cfg(feature = "layout")]
290 #[strum(props(
291 svg = "<rect height=\"6\" rx=\"2\" width=\"14\" x=\"5\" y=\"12\"></rect><rect height=\"6\" rx=\"2\" width=\"10\" x=\"7\" y=\"2\"></rect><path d=\"M2 22h20\"></path>",
292 categories = "layout",
293 tags = "bottom,items,flex,justify,distribute,between",
294 contributors = "ericfennis"
295 ))]
296 AlignVerticalJustifyEnd,
297 #[cfg(feature = "layout")]
298 #[strum(props(
299 svg = "<rect height=\"6\" rx=\"2\" width=\"14\" x=\"5\" y=\"16\"></rect><rect height=\"6\" rx=\"2\" width=\"10\" x=\"7\" y=\"6\"></rect><path d=\"M2 2h20\"></path>",
300 categories = "layout",
301 tags = "top,items,flex,justify,distribute,between",
302 contributors = "ericfennis"
303 ))]
304 AlignVerticalJustifyStart,
305 #[cfg(feature = "layout")]
306 #[strum(props(
307 svg = "<rect height=\"6\" rx=\"2\" width=\"10\" x=\"7\" y=\"9\"></rect><path d=\"M22 20H2\"></path><path d=\"M22 4H2\"></path>",
308 categories = "layout",
309 tags = "center,items,flex,justify,distribute,between",
310 contributors = "ericfennis"
311 ))]
312 AlignVerticalSpaceAround,
313 #[cfg(feature = "layout")]
314 #[strum(props(
315 svg = "<rect height=\"6\" rx=\"2\" width=\"14\" x=\"5\" y=\"15\"></rect><rect height=\"6\" rx=\"2\" width=\"10\" x=\"7\" y=\"3\"></rect><path d=\"M2 21h20\"></path><path d=\"M2 3h20\"></path>",
316 categories = "layout",
317 tags = "center,items,flex,justify,distribute,between",
318 contributors = "ericfennis"
319 ))]
320 AlignVerticalSpaceBetween,
321 #[cfg(any(feature = "medical", feature = "transportation"))]
322 #[strum(props(
323 svg = "<path d=\"M10 10H6\"></path><path d=\"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2\"></path><path d=\"M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.92-.641a1 1 0 0 1-.578-.502l-1.53-3.07A1 1 0 0 0 16.38 8H14\"></path><path d=\"M8 8v4\"></path><path d=\"M9 18h6\"></path><circle cx=\"17\" cy=\"18\" r=\"2\"></circle><circle cx=\"7\" cy=\"18\" r=\"2\"></circle>",
324 categories = "medical,transportation",
325 tags = "ambulance,emergency,medical,vehicle,siren,healthcare,transportation,rescue,urgent,first aid",
326 contributors = "jordan808,jguddas,colebemis,ahtohbi4,ericfennis,Andreto,csandman,karsa-mistmere,danielbayley"
327 ))]
328 Ambulance,
329 #[cfg(any(feature = "text", feature = "development"))]
330 #[strum(props(
331 svg = "<path d=\"M16 12h3\"></path><path d=\"M17.5 12a8 8 0 0 1-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13\"></path>",
332 categories = "text,development",
333 tags = "and,typography,operator,join,concatenate,code,&",
334 contributors = "danielbayley,karsa-mistmere,jguddas"
335 ))]
336 Ampersand,
337 #[cfg(any(feature = "text", feature = "development"))]
338 #[strum(props(
339 svg = "<path d=\"M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5\"></path><path d=\"M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5\"></path>",
340 categories = "text,development",
341 tags = "and,operator,then,code,&&",
342 contributors = "danielbayley,karsa-mistmere"
343 ))]
344 Ampersands,
345 #[cfg(any(feature = "food_beverage", feature = "gaming"))]
346 #[strum(props(
347 svg = "<path d=\"M10 2v5.63c0 .424-.272.79-.653.98A6 6 0 0 0 6 14c.006 4 3 7 5 8\"></path><path d=\"M10 5H8a2 2 0 0 0 0 4h.68\"></path><path d=\"M14 2v5.63c0 .424.27.795.65.982A6 6 0 0 1 18 14c0 4-3 7-5 8\"></path><path d=\"M14 5h2a2 2 0 0 1 0 4h-.68\"></path><path d=\"M18 22H6\"></path><path d=\"M9 2h6\"></path>",
348 categories = "food-beverage,gaming",
349 tags = "pottery,artifact,artefact,vase,ceramics,clay,archaeology,museum,wine,oil",
350 contributors = "karsa-mistmere"
351 ))]
352 Amphora,
353 #[cfg(any(feature = "transportation", feature = "text"))]
354 #[strum(props(
355 svg = "<path d=\"M12 6v16\"></path><path d=\"m19 13 2-1a9 9 0 0 1-18 0l2 1\"></path><path d=\"M9 11h6\"></path><circle cx=\"12\" cy=\"4\" r=\"2\"></circle>",
356 categories = "transportation,text",
357 tags = "ship",
358 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
359 ))]
360 Anchor,
361 #[cfg(feature = "emoji")]
362 #[strum(props(
363 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M16 16s-1.5-2-4-2-4 2-4 2\"></path><path d=\"M7.5 8 10 9\"></path><path d=\"m14 9 2.5-1\"></path><path d=\"M9 10h.01\"></path><path d=\"M15 10h.01\"></path>",
364 categories = "emoji",
365 tags = "emoji,anger,face,emotion",
366 contributors = "karsa-mistmere,ericfennis"
367 ))]
368 Angry,
369 #[cfg(feature = "emoji")]
370 #[strum(props(
371 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M8 15h8\"></path><path d=\"M8 9h2\"></path><path d=\"M14 9h2\"></path>",
372 categories = "emoji",
373 tags = "emoji,nuisance,face,emotion",
374 contributors = "karsa-mistmere"
375 ))]
376 Annoyed,
377 #[cfg(any(feature = "devices", feature = "multimedia", feature = "communication"))]
378 #[strum(props(
379 svg = "<path d=\"M2 12 7 2\"></path><path d=\"m7 12 5-10\"></path><path d=\"m12 12 5-10\"></path><path d=\"m17 12 5-10\"></path><path d=\"M4.5 7h15\"></path><path d=\"M12 16v6\"></path>",
380 categories = "devices,multimedia,communication",
381 tags = "signal,connection,connectivity,tv,television,broadcast,live,frequency,tune,scan,channels,aerial,receiver,transmission,transducer,terrestrial,satellite,cable",
382 contributors = "danielbayley"
383 ))]
384 Antenna,
385 #[cfg(any(feature = "buildings", feature = "tools", feature = "gaming"))]
386 #[strum(props(
387 svg = "<path d=\"M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4\"></path><path d=\"M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z\"></path><path d=\"M9 12v5\"></path><path d=\"M15 12v5\"></path><path d=\"M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1\"></path>",
388 categories = "buildings,tools,gaming",
389 tags = "metal,iron,alloy,materials,heavy,weight,blacksmith,forge,acme",
390 contributors = "karsa-mistmere,danielbayley"
391 ))]
392 Anvil,
393 #[cfg(feature = "photography")]
394 #[strum(props(
395 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m14.31 8 5.74 9.94\"></path><path d=\"M9.69 8h11.48\"></path><path d=\"m7.38 12 5.74-9.94\"></path><path d=\"M9.69 16 3.95 6.06\"></path><path d=\"M14.31 16H2.83\"></path><path d=\"m16.62 12-5.74 9.94\"></path>",
396 categories = "photography",
397 tags = "camera,photo,pictures,shutter,exposure",
398 contributors = "colebemis,ericfennis"
399 ))]
400 Aperture,
401 #[cfg(any(
402 feature = "layout",
403 feature = "design",
404 feature = "development",
405 feature = "files"
406 ))]
407 #[strum(props(
408 svg = "<rect height=\"16\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect><path d=\"M6 8h.01\"></path><path d=\"M10 8h.01\"></path><path d=\"M14 8h.01\"></path>",
409 categories = "layout,design,development,files",
410 tags = "application,menu bar,pane,preferences,macos,osx,executable",
411 contributors = "danielbayley"
412 ))]
413 AppWindowMac,
414 #[cfg(any(
415 feature = "layout",
416 feature = "design",
417 feature = "development",
418 feature = "files"
419 ))]
420 #[strum(props(
421 svg = "<rect height=\"16\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect><path d=\"M10 4v4\"></path><path d=\"M2 8h20\"></path><path d=\"M6 4v4\"></path>",
422 categories = "layout,design,development,files",
423 tags = "application,menu bar,pane,executable",
424 contributors = "danielbayley,karsa-mistmere"
425 ))]
426 AppWindow,
427 #[cfg(feature = "food_beverage")]
428 #[strum(props(
429 svg = "<path d=\"M12 6.52V3a1 1 0 0 1 1-1h0\"></path><path d=\"M18.23 21A15 15 0 0 0 22 11a6 6 0 0 0-10-4.47A6 6 0 0 0 2 11a15.1 15.1 0 0 0 3.76 10 3 3 0 0 0 3.64.648 5.5 5.5 0 0 1 5.17 0A3 3 0 0 0 18.23 21\"></path>",
430 categories = "food-beverage",
431 tags = "fruit,food,healthy,snack,nutrition,fresh,produce,grocery,organic,harvest,vitamin,red,green,juicy,sweet,tart,bite,orchard,plant,core,raw,diet",
432 contributors = "karsa-mistmere"
433 ))]
434 Apple,
435 #[cfg(any(feature = "files", feature = "mail"))]
436 #[strum(props(
437 svg = "<rect height=\"5\" rx=\"1\" width=\"20\" x=\"2\" y=\"3\"></rect><path d=\"M4 8v11a2 2 0 0 0 2 2h2\"></path><path d=\"M20 8v11a2 2 0 0 1-2 2h-2\"></path><path d=\"m9 15 3-3 3 3\"></path><path d=\"M12 12v9\"></path>",
438 categories = "files,mail",
439 tags = "unarchive,index,backup,box,storage,records",
440 contributors = "karsa-mistmere,ericfennis,danielbayley"
441 ))]
442 ArchiveRestore,
443 #[cfg(any(feature = "files", feature = "mail"))]
444 #[strum(props(
445 svg = "<rect height=\"5\" rx=\"1\" width=\"20\" x=\"2\" y=\"3\"></rect><path d=\"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8\"></path><path d=\"m9.5 17 5-5\"></path><path d=\"m9.5 12 5 5\"></path>",
446 categories = "files,mail",
447 tags = "index,backup,box,storage,records,junk",
448 contributors = "danielbayley"
449 ))]
450 ArchiveX,
451 #[cfg(any(feature = "files", feature = "mail"))]
452 #[strum(props(
453 svg = "<rect height=\"5\" rx=\"1\" width=\"20\" x=\"2\" y=\"3\"></rect><path d=\"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8\"></path><path d=\"M10 12h4\"></path>",
454 categories = "files,mail",
455 tags = "index,backup,box,storage,records",
456 contributors = "colebemis,ericfennis,karsa-mistmere,danielbayley"
457 ))]
458 Archive,
459 #[cfg(feature = "home")]
460 #[strum(props(
461 svg = "<path d=\"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3\"></path><path d=\"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z\"></path><path d=\"M5 18v2\"></path><path d=\"M19 18v2\"></path>",
462 categories = "home",
463 tags = "sofa,furniture,leisure,lounge,loveseat,couch",
464 contributors = "karsa-mistmere,jguddas"
465 ))]
466 Armchair,
467 #[cfg(any(feature = "arrows", feature = "gaming", feature = "files"))]
468 #[strum(props(
469 svg = "<path d=\"M14 8a1 1 0 0 1 1 1v2a1 1 0 0 0 1 1h3.29a.707.70 0 0 1 .5 1.20l-6.93 6.93a1.20 1.20 0 0 1-1.70 0l-6.94-6.94a.707.70 0 0 1 .5-1.20H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1z\"></path><path d=\"M9 4h6\"></path>",
470 categories = "arrows,gaming,files",
471 tags = "backwards,reverse,slow,direction,south,download",
472 contributors = "danielbayley,karsa-mistmere,jamiemlaw,jguddas"
473 ))]
474 ArrowBigDownDash,
475 #[cfg(any(feature = "arrows", feature = "gaming"))]
476 #[strum(props(
477 svg = "<path d=\"M9 5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v6a1 1 0 0 0 1 1h3.29a.707.70 0 0 1 .5 1.20l-7.08 7.08a1 1 0 0 1-1.41 0l-7.08-7.08a.707.70 0 0 1 .5-1.20H8a1 1 0 0 0 1-1z\"></path>",
478 categories = "arrows,gaming",
479 tags = "backwards,reverse,direction,south",
480 contributors = "Andreto,mittalyashu,danielbayley,karsa-mistmere,jamiemlaw,jguddas"
481 ))]
482 ArrowBigDown,
483 #[cfg(any(feature = "arrows", feature = "gaming"))]
484 #[strum(props(
485 svg = "<path d=\"M13 9a1 1 0 0 1-1-1V4.70a.707.70 0 0 0-1.20-.5l-6.94 6.94a1.20 1.20 0 0 0 0 1.70l6.94 6.94a.707.70 0 0 0 1.20-.5V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z\"></path><path d=\"M20 9v6\"></path>",
486 categories = "arrows,gaming",
487 tags = "previous,back,direction,west,turn,corner",
488 contributors = "danielbayley,karsa-mistmere,jamiemlaw,jguddas"
489 ))]
490 ArrowBigLeftDash,
491 #[cfg(any(feature = "arrows", feature = "gaming"))]
492 #[strum(props(
493 svg = "<path d=\"M10.79 19.79a.707.70 0 0 0 1.20-.5V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-6a1 1 0 0 1-1-1V4.70a.707.70 0 0 0-1.20-.5l-6.94 6.94a1.20 1.20 0 0 0 0 1.70z\"></path>",
494 categories = "arrows,gaming",
495 tags = "previous,back,direction,west,indicate turn",
496 contributors = "Andreto,mittalyashu,ericfennis,danielbayley,karsa-mistmere,jamiemlaw,jguddas"
497 ))]
498 ArrowBigLeft,
499 #[cfg(any(feature = "arrows", feature = "gaming"))]
500 #[strum(props(
501 svg = "<path d=\"M11 9a1 1 0 0 0 1-1V4.70a.707.70 0 0 1 1.20-.5l6.94 6.94a1.20 1.20 0 0 1 0 1.70l-6.94 6.94a.707.70 0 0 1-1.20-.5V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z\"></path><path d=\"M4 9v6\"></path>",
502 categories = "arrows,gaming",
503 tags = "next,forward,direction,east,turn,corner",
504 contributors = "danielbayley,karsa-mistmere,jamiemlaw,jguddas"
505 ))]
506 ArrowBigRightDash,
507 #[cfg(any(feature = "arrows", feature = "gaming"))]
508 #[strum(props(
509 svg = "<path d=\"M13.20 19.79a.707.70 0 0 1-1.20-.5V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1V4.70a.707.70 0 0 1 1.20-.5l6.94 6.94a1.20 1.20 0 0 1 0 1.70z\"></path>",
510 categories = "arrows,gaming",
511 tags = "next,forward,direction,east,indicate turn",
512 contributors = "Andreto,mittalyashu,ericfennis,danielbayley,karsa-mistmere,jamiemlaw,jguddas"
513 ))]
514 ArrowBigRight,
515 #[cfg(any(
516 feature = "arrows",
517 feature = "text",
518 feature = "development",
519 feature = "gaming"
520 ))]
521 #[strum(props(
522 svg = "<path d=\"M14 16a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1h3.29a.707.70 0 0 0 .5-1.20l-6.93-6.93a1.20 1.20 0 0 0-1.70 0l-6.94 6.94a.707.70 0 0 0 .5 1.20H8a1 1 0 0 1 1 1v2a1 1 0 0 0 1 1z\"></path><path d=\"M9 20h6\"></path>",
523 categories = "arrows,text,development,gaming",
524 tags = "caps lock,capitals,keyboard,button,mac,forward,direction,north,faster,speed,boost",
525 contributors = "danielbayley,karsa-mistmere,jamiemlaw,jguddas"
526 ))]
527 ArrowBigUpDash,
528 #[cfg(any(
529 feature = "arrows",
530 feature = "text",
531 feature = "development",
532 feature = "gaming"
533 ))]
534 #[strum(props(
535 svg = "<path d=\"M9 19a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-6a1 1 0 0 1 1-1h3.29a.707.70 0 0 0 .5-1.20l-7.08-7.08a1 1 0 0 0-1.41 0l-7.08 7.08a.707.70 0 0 0 .5 1.20H8a1 1 0 0 1 1 1z\"></path>",
536 categories = "arrows,text,development,gaming",
537 tags = "shift,keyboard,button,mac,capitalize,capitalise,forward,direction,north",
538 contributors = "Andreto,mittalyashu,danielbayley,karsa-mistmere,jamiemlaw,jguddas"
539 ))]
540 ArrowBigUp,
541 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
542 #[strum(props(
543 svg = "<path d=\"m3 16 4 4 4-4\"></path><path d=\"M7 20V4\"></path><rect height=\"6\" ry=\"2\" width=\"4\" x=\"15\" y=\"4\"></rect><path d=\"M17 20v-6h-2\"></path><path d=\"M15 20h4\"></path>",
544 categories = "text,layout,arrows",
545 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling,numerical",
546 contributors = "karsa-mistmere,danielbayley"
547 ))]
548 ArrowDown01,
549 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
550 #[strum(props(
551 svg = "<path d=\"m3 16 4 4 4-4\"></path><path d=\"M7 20V4\"></path><path d=\"M17 10V4h-2\"></path><path d=\"M15 10h4\"></path><rect height=\"6\" ry=\"2\" width=\"4\" x=\"15\" y=\"14\"></rect>",
552 categories = "text,layout,arrows",
553 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling,numerical",
554 contributors = "karsa-mistmere,danielbayley"
555 ))]
556 ArrowDown10,
557 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
558 #[strum(props(
559 svg = "<path d=\"m3 16 4 4 4-4\"></path><path d=\"M7 20V4\"></path><path d=\"M20 8h-5\"></path><path d=\"M15 10V6.5a2.5 2.5 0 0 1 5 0V10\"></path><path d=\"M15 14h5l-5 6h5\"></path>",
560 categories = "text,layout,arrows",
561 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling,alphabetical",
562 contributors = "karsa-mistmere,danielbayley"
563 ))]
564 ArrowDownAZ,
565 #[cfg(any(feature = "arrows", feature = "files"))]
566 #[strum(props(
567 svg = "<path d=\"M19 3H5\"></path><path d=\"M12 21V7\"></path><path d=\"m6 15 6 6 6-6\"></path>",
568 categories = "arrows,files",
569 tags = "backwards,reverse,direction,south,download,expand,fold,vertical",
570 contributors = "danielbayley,ericfennis"
571 ))]
572 ArrowDownFromLine,
573 #[cfg(feature = "arrows")]
574 #[strum(props(
575 svg = "<path d=\"M17 7 7 17\"></path><path d=\"M17 17H7V7\"></path>",
576 categories = "arrows",
577 tags = "direction,south-west,diagonal",
578 contributors = "colebemis,ericfennis"
579 ))]
580 ArrowDownLeft,
581 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
582 #[strum(props(
583 svg = "<path d=\"m3 16 4 4 4-4\"></path><path d=\"M7 20V4\"></path><path d=\"M11 4h4\"></path><path d=\"M11 8h7\"></path><path d=\"M11 12h10\"></path>",
584 categories = "text,layout,arrows",
585 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling",
586 contributors = "karsa-mistmere"
587 ))]
588 ArrowDownNarrowWide,
589 #[cfg(feature = "arrows")]
590 #[strum(props(
591 svg = "<path d=\"m7 7 10 10\"></path><path d=\"M17 7v10H7\"></path>",
592 categories = "arrows",
593 tags = "direction,south-east,diagonal",
594 contributors = "colebemis,ericfennis"
595 ))]
596 ArrowDownRight,
597 #[cfg(feature = "arrows")]
598 #[strum(props(
599 svg = "<path d=\"M12 2v14\"></path><path d=\"m19 9-7 7-7-7\"></path><circle cx=\"12\" cy=\"21\" r=\"1\"></circle>",
600 categories = "arrows",
601 tags = "direction,south,waypoint,location,step,into",
602 contributors = "danielbayley"
603 ))]
604 ArrowDownToDot,
605 #[cfg(any(feature = "arrows", feature = "files", feature = "development"))]
606 #[strum(props(
607 svg = "<path d=\"M12 17V3\"></path><path d=\"m6 11 6 6 6-6\"></path><path d=\"M19 21H5\"></path>",
608 categories = "arrows,files,development",
609 tags = "behind,direction,south,download,save,git,version control,pull,collapse,fold,vertical",
610 contributors = "danielbayley,ericfennis"
611 ))]
612 ArrowDownToLine,
613 #[cfg(feature = "arrows")]
614 #[strum(props(
615 svg = "<path d=\"m3 16 4 4 4-4\"></path><path d=\"M7 20V4\"></path><path d=\"m21 8-4-4-4 4\"></path><path d=\"M17 4v16\"></path>",
616 categories = "arrows",
617 tags = "bidirectional,two-way,2-way,swap,switch,network,traffic,flow,mobile data,internet,sort,reorder,move",
618 contributors = "karsa-mistmere"
619 ))]
620 ArrowDownUp,
621 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
622 #[strum(props(
623 svg = "<path d=\"m3 16 4 4 4-4\"></path><path d=\"M7 20V4\"></path><path d=\"M11 4h10\"></path><path d=\"M11 8h7\"></path><path d=\"M11 12h4\"></path>",
624 categories = "text,layout,arrows",
625 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling",
626 contributors = "ericfennis,csandman,karsa-mistmere"
627 ))]
628 ArrowDownWideNarrow,
629 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
630 #[strum(props(
631 svg = "<path d=\"m3 16 4 4 4-4\"></path><path d=\"M7 4v16\"></path><path d=\"M15 4h5l-5 6h5\"></path><path d=\"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20\"></path><path d=\"M20 18h-5\"></path>",
632 categories = "text,layout,arrows",
633 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling,alphabetical,reverse",
634 contributors = "karsa-mistmere,danielbayley"
635 ))]
636 ArrowDownZA,
637 #[cfg(feature = "arrows")]
638 #[strum(props(
639 svg = "<path d=\"M12 5v14\"></path><path d=\"m19 12-7 7-7-7\"></path>",
640 categories = "arrows",
641 tags = "backwards,reverse,direction,south",
642 contributors = "colebemis,ericfennis"
643 ))]
644 ArrowDown,
645 #[cfg(feature = "arrows")]
646 #[strum(props(
647 svg = "<path d=\"m9 6-6 6 6 6\"></path><path d=\"M3 12h14\"></path><path d=\"M21 19V5\"></path>",
648 categories = "arrows",
649 tags = "previous,back,direction,west,expand,fold,horizontal,<-|",
650 contributors = "danielbayley,ericfennis"
651 ))]
652 ArrowLeftFromLine,
653 #[cfg(feature = "arrows")]
654 #[strum(props(
655 svg = "<path d=\"M8 3 4 7l4 4\"></path><path d=\"M4 7h16\"></path><path d=\"m16 21 4-4-4-4\"></path><path d=\"M20 17H4\"></path>",
656 categories = "arrows",
657 tags = "bidirectional,two-way,2-way,swap,switch,transaction,reorder,move,<-,->",
658 contributors = "wojtekmaj,ericfennis"
659 ))]
660 ArrowLeftRight,
661 #[cfg(feature = "arrows")]
662 #[strum(props(
663 svg = "<path d=\"M3 19V5\"></path><path d=\"m13 6-6 6 6 6\"></path><path d=\"M7 12h14\"></path>",
664 categories = "arrows",
665 tags = "previous,back,direction,west,collapse,fold,horizontal,|<-",
666 contributors = "danielbayley,ericfennis"
667 ))]
668 ArrowLeftToLine,
669 #[cfg(feature = "arrows")]
670 #[strum(props(
671 svg = "<path d=\"m12 19-7-7 7-7\"></path><path d=\"M19 12H5\"></path>",
672 categories = "arrows",
673 tags = "previous,back,direction,west,<-",
674 contributors = "colebemis,ericfennis"
675 ))]
676 ArrowLeft,
677 #[cfg(feature = "arrows")]
678 #[strum(props(
679 svg = "<path d=\"M3 5v14\"></path><path d=\"M21 12H7\"></path><path d=\"m15 18 6-6-6-6\"></path>",
680 categories = "arrows",
681 tags = "next,forward,direction,east,export,expand,fold,horizontal,|->",
682 contributors = "danielbayley,ericfennis"
683 ))]
684 ArrowRightFromLine,
685 #[cfg(feature = "arrows")]
686 #[strum(props(
687 svg = "<path d=\"m16 3 4 4-4 4\"></path><path d=\"M20 7H4\"></path><path d=\"m8 21-4-4 4-4\"></path><path d=\"M4 17h16\"></path>",
688 categories = "arrows",
689 tags = "bidirectional,two-way,2-way,swap,switch,transaction,reorder,move,<-,->",
690 contributors = "karsa-mistmere"
691 ))]
692 ArrowRightLeft,
693 #[cfg(any(feature = "arrows", feature = "development"))]
694 #[strum(props(
695 svg = "<path d=\"M17 12H3\"></path><path d=\"m11 18 6-6-6-6\"></path><path d=\"M21 5v14\"></path>",
696 categories = "arrows,development",
697 tags = "next,forward,direction,east,tab,keyboard,mac,indent,collapse,fold,horizontal,->|",
698 contributors = "danielbayley,ericfennis"
699 ))]
700 ArrowRightToLine,
701 #[cfg(feature = "arrows")]
702 #[strum(props(
703 svg = "<path d=\"M5 12h14\"></path><path d=\"m12 5 7 7-7 7\"></path>",
704 categories = "arrows",
705 tags = "forward,next,direction,east,->",
706 contributors = "colebemis,ericfennis"
707 ))]
708 ArrowRight,
709 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
710 #[strum(props(
711 svg = "<path d=\"m3 8 4-4 4 4\"></path><path d=\"M7 4v16\"></path><rect height=\"6\" ry=\"2\" width=\"4\" x=\"15\" y=\"4\"></rect><path d=\"M17 20v-6h-2\"></path><path d=\"M15 20h4\"></path>",
712 categories = "text,layout,arrows",
713 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling,numerical",
714 contributors = "karsa-mistmere,danielbayley"
715 ))]
716 ArrowUp01,
717 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
718 #[strum(props(
719 svg = "<path d=\"m3 8 4-4 4 4\"></path><path d=\"M7 4v16\"></path><path d=\"M17 10V4h-2\"></path><path d=\"M15 10h4\"></path><rect height=\"6\" ry=\"2\" width=\"4\" x=\"15\" y=\"14\"></rect>",
720 categories = "text,layout,arrows",
721 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling,numerical",
722 contributors = "karsa-mistmere,danielbayley"
723 ))]
724 ArrowUp10,
725 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
726 #[strum(props(
727 svg = "<path d=\"m3 8 4-4 4 4\"></path><path d=\"M7 4v16\"></path><path d=\"M20 8h-5\"></path><path d=\"M15 10V6.5a2.5 2.5 0 0 1 5 0V10\"></path><path d=\"M15 14h5l-5 6h5\"></path>",
728 categories = "text,layout,arrows",
729 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling,alphabetical",
730 contributors = "karsa-mistmere,danielbayley"
731 ))]
732 ArrowUpAZ,
733 #[cfg(feature = "arrows")]
734 #[strum(props(
735 svg = "<path d=\"m21 16-4 4-4-4\"></path><path d=\"M17 20V4\"></path><path d=\"m3 8 4-4 4 4\"></path><path d=\"M7 4v16\"></path>",
736 categories = "arrows",
737 tags = "bidirectional,two-way,2-way,swap,switch,network,mobile data,internet,sort,reorder,move",
738 contributors = "it-is-not,karsa-mistmere,ericfennis"
739 ))]
740 ArrowUpDown,
741 #[cfg(feature = "arrows")]
742 #[strum(props(
743 svg = "<path d=\"m5 9 7-7 7 7\"></path><path d=\"M12 16V2\"></path><circle cx=\"12\" cy=\"21\" r=\"1\"></circle>",
744 categories = "arrows",
745 tags = "direction,north,step,out",
746 contributors = "danielbayley"
747 ))]
748 ArrowUpFromDot,
749 #[cfg(any(feature = "arrows", feature = "files", feature = "development"))]
750 #[strum(props(
751 svg = "<path d=\"m18 9-6-6-6 6\"></path><path d=\"M12 3v14\"></path><path d=\"M5 21h14\"></path>",
752 categories = "arrows,files,development",
753 tags = "forward,direction,north,upload,git,version control,push,expand,fold,vertical",
754 contributors = "danielbayley,ericfennis"
755 ))]
756 ArrowUpFromLine,
757 #[cfg(feature = "arrows")]
758 #[strum(props(
759 svg = "<path d=\"M7 17V7h10\"></path><path d=\"M17 17 7 7\"></path>",
760 categories = "arrows",
761 tags = "direction,north-west,diagonal",
762 contributors = "colebemis,ericfennis"
763 ))]
764 ArrowUpLeft,
765 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
766 #[strum(props(
767 svg = "<path d=\"m3 8 4-4 4 4\"></path><path d=\"M7 4v16\"></path><path d=\"M11 12h4\"></path><path d=\"M11 16h7\"></path><path d=\"M11 20h10\"></path>",
768 categories = "text,layout,arrows",
769 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling",
770 contributors = "lukesmurray,ericfennis,csandman,karsa-mistmere"
771 ))]
772 ArrowUpNarrowWide,
773 #[cfg(feature = "arrows")]
774 #[strum(props(
775 svg = "<path d=\"M7 7h10v10\"></path><path d=\"M7 17 17 7\"></path>",
776 categories = "arrows",
777 tags = "direction,north-east,diagonal",
778 contributors = "colebemis,ericfennis"
779 ))]
780 ArrowUpRight,
781 #[cfg(any(feature = "arrows", feature = "files"))]
782 #[strum(props(
783 svg = "<path d=\"M5 3h14\"></path><path d=\"m18 13-6-6-6 6\"></path><path d=\"M12 7v14\"></path>",
784 categories = "arrows,files",
785 tags = "forward,direction,north,upload,collapse,fold,vertical",
786 contributors = "danielbayley,ericfennis"
787 ))]
788 ArrowUpToLine,
789 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
790 #[strum(props(
791 svg = "<path d=\"m3 8 4-4 4 4\"></path><path d=\"M7 4v16\"></path><path d=\"M11 12h10\"></path><path d=\"M11 16h7\"></path><path d=\"M11 20h4\"></path>",
792 categories = "text,layout,arrows",
793 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling",
794 contributors = "karsa-mistmere"
795 ))]
796 ArrowUpWideNarrow,
797 #[cfg(any(feature = "text", feature = "layout", feature = "arrows"))]
798 #[strum(props(
799 svg = "<path d=\"m3 8 4-4 4 4\"></path><path d=\"M7 4v16\"></path><path d=\"M15 4h5l-5 6h5\"></path><path d=\"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20\"></path><path d=\"M20 18h-5\"></path>",
800 categories = "text,layout,arrows",
801 tags = "filter,sort,ascending,descending,increasing,decreasing,rising,falling,alphabetical,reverse",
802 contributors = "karsa-mistmere,danielbayley"
803 ))]
804 ArrowUpZA,
805 #[cfg(feature = "arrows")]
806 #[strum(props(
807 svg = "<path d=\"m5 12 7-7 7 7\"></path><path d=\"M12 19V5\"></path>",
808 categories = "arrows",
809 tags = "forward,direction,north",
810 contributors = "colebemis,ericfennis"
811 ))]
812 ArrowUp,
813 #[cfg(any(feature = "arrows", feature = "transportation", feature = "mail"))]
814 #[strum(props(
815 svg = "<path d=\"m4 6 3-3 3 3\"></path><path d=\"M7 17V3\"></path><path d=\"m14 6 3-3 3 3\"></path><path d=\"M17 17V3\"></path><path d=\"M4 21h16\"></path>",
816 categories = "arrows,transportation,mail",
817 tags = "direction,orientation,this way up,vertical,package,box,fragile,postage,shipping",
818 contributors = "danielbayley,ericfennis"
819 ))]
820 ArrowsUpFromLine,
821 #[cfg(any(feature = "text", feature = "math", feature = "development"))]
822 #[strum(props(
823 svg = "<path d=\"M12 6v12\"></path><path d=\"M17.19 9 6.80 15\"></path><path d=\"m6.80 9 10.39 6\"></path>",
824 categories = "text,math,development",
825 tags = "reference,times,multiply,multiplication,operator,code,glob pattern,wildcard,*",
826 contributors = "mittalyashu,ericfennis"
827 ))]
828 Asterisk,
829 #[cfg(any(feature = "shapes", feature = "math"))]
830 #[strum(props(
831 svg = "<path d=\"M12.98 21.18a1 1 0 0 1-1.96 0 10 10 0 0 0-8.20-8.20 1 1 0 0 1 0-1.96 10 10 0 0 0 8.20-8.20 1 1 0 0 1 1.96 0 10 10 0 0 0 8.20 8.20 1 1 0 0 1 0 1.96 10 10 0 0 0-8.20 8.20\"></path>",
832 categories = "shapes,math",
833 tags = "star,math,shape,curve,sharp,four-pointed,hypocycloid,ai,artificial intelligence",
834 contributors = "whoisBugsbunny"
835 ))]
836 Astroid,
837 #[cfg(any(feature = "text", feature = "account"))]
838 #[strum(props(
839 svg = "<circle cx=\"12\" cy=\"12\" r=\"4\"></circle><path d=\"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8\"></path>",
840 categories = "text,account",
841 tags = "mention,at,email,message,@",
842 contributors = "colebemis,csandman,ericfennis,danielbayley"
843 ))]
844 AtSign,
845 #[cfg(feature = "science")]
846 #[strum(props(
847 svg = "<circle cx=\"12\" cy=\"12\" r=\"1\"></circle><path d=\"M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z\"></path><path d=\"M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z\"></path>",
848 categories = "science",
849 tags = "atomic,nuclear,physics,particle,element,molecule,electricity,energy,chemistry",
850 contributors = "danielbayley,karsa-mistmere"
851 ))]
852 Atom,
853 #[cfg(any(feature = "multimedia", feature = "communication"))]
854 #[strum(props(
855 svg = "<path d=\"M2 10v3\"></path><path d=\"M6 6v11\"></path><path d=\"M10 3v18\"></path><path d=\"M14 8v7\"></path><path d=\"M18 5v13\"></path><path d=\"M22 10v3\"></path>",
856 categories = "multimedia,communication",
857 tags = "graphic equaliser,sound,noise,listen,hearing,hertz,frequency,wavelength,vibrate,sine,synthesizer,synthesiser,levels,track,music,playback,radio,broadcast,airwaves,voice,vocals,singer,song",
858 contributors = "danielbayley"
859 ))]
860 AudioLines,
861 #[cfg(any(feature = "multimedia", feature = "communication"))]
862 #[strum(props(
863 svg = "<path d=\"M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2\"></path>",
864 categories = "multimedia,communication",
865 tags = "sound,noise,listen,hearing,hertz,frequency,wavelength,vibrate,sine,synthesizer,synthesiser,levels,track,music,playback,radio,broadcast,airwaves,voice,vocals,singer,song",
866 contributors = "danielbayley"
867 ))]
868 AudioWaveform,
869 #[cfg(any(feature = "account", feature = "sports", feature = "gaming"))]
870 #[strum(props(
871 svg = "<path d=\"m15.47 12.89 1.51 8.52a.5.5 0 0 1-.81.47l-3.58-2.68a1 1 0 0 0-1.19 0l-3.58 2.68a.5.5 0 0 1-.81-.469l1.51-8.52\"></path><circle cx=\"12\" cy=\"8\" r=\"6\"></circle>",
872 categories = "account,sports,gaming",
873 tags = "achievement,badge,rosette,prize,winner",
874 contributors = "colebemis,karsa-mistmere"
875 ))]
876 Award,
877 #[cfg(any(feature = "tools", feature = "gaming"))]
878 #[strum(props(
879 svg = "<path d=\"m14 12-8.38 8.38a1 1 0 0 1-3.00-3L11 9\"></path><path d=\"M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.67a2 2 0 0 1-1.41-.586l-5.06-5.06a1.20 1.20 0 0 0-1.70 0L9.35 5.64a1.20 1.20 0 0 0 0 1.70l5.06 5.06A2 2 0 0 1 15 13.82z\"></path>",
880 categories = "tools,gaming",
881 tags = "hatchet,weapon,chop,sharp,equipment,fireman,firefighter,brigade,lumberjack,woodcutter,logger,forestry",
882 contributors = "Andreto,ericfennis,csandman,jguddas,karsa-mistmere"
883 ))]
884 Axe,
885 #[cfg(feature = "design")]
886 #[strum(props(
887 svg = "<path d=\"M13.5 10.5 15 9\"></path><path d=\"M4 4v15a1 1 0 0 0 1 1h15\"></path><path d=\"M4.29 19.70 6 18\"></path><path d=\"m9 15 1.5-1.5\"></path>",
888 categories = "design",
889 tags = "gizmo,coordinates",
890 contributors = "lscheibel,jguddas"
891 ))]
892 Axis3D,
893 #[cfg(any(feature = "accessibility", feature = "people"))]
894 #[strum(props(
895 svg = "<path d=\"M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5\"></path><path d=\"M15 12h.01\"></path><path d=\"M19.38 6.81A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1\"></path><path d=\"M9 12h.01\"></path>",
896 categories = "accessibility,people",
897 tags = "child,childproof,children",
898 contributors = "karsa-mistmere,ericfennis,jguddas"
899 ))]
900 Baby,
901 #[cfg(any(feature = "gaming", feature = "photography", feature = "travel"))]
902 #[strum(props(
903 svg = "<path d=\"M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z\"></path><path d=\"M8 10h8\"></path><path d=\"M8 18h8\"></path><path d=\"M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6\"></path><path d=\"M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2\"></path>",
904 categories = "gaming,photography,travel",
905 tags = "bag,hiking,travel,camping,school,childhood",
906 contributors = "karsa-mistmere,jguddas"
907 ))]
908 Backpack,
909 #[cfg(any(feature = "account", feature = "social"))]
910 #[strum(props(
911 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><line x1=\"12\" x2=\"12\" y1=\"8\" y2=\"12\"></line><line x1=\"12\" x2=\"12.01\" y1=\"16\" y2=\"16\"></line>",
912 categories = "account,social",
913 tags = "check,verified,unverified,security,safety,issue",
914 contributors = "karsa-mistmere,jguddas"
915 ))]
916 BadgeAlert,
917 #[cfg(any(feature = "shopping", feature = "finance"))]
918 #[strum(props(
919 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><path d=\"M12 7v10\"></path><path d=\"M15.4 10a4 4 0 1 0 0 4\"></path>",
920 categories = "shopping,finance",
921 tags = "discount,offer,sale,voucher,tag,monetization,marketing,finance,financial,exchange,transaction,payment,cents,dollar,usd,$,¢",
922 contributors = "danielbayley"
923 ))]
924 BadgeCent,
925 #[cfg(feature = "social")]
926 #[strum(props(
927 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><path d=\"m9 12 2 2 4-4\"></path>",
928 categories = "social",
929 tags = "verified,check",
930 contributors = "karsa-mistmere,jguddas"
931 ))]
932 BadgeCheck,
933 #[cfg(any(feature = "shopping", feature = "finance"))]
934 #[strum(props(
935 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><path d=\"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8\"></path><path d=\"M12 18V6\"></path>",
936 categories = "shopping,finance",
937 tags = "discount,offer,sale,voucher,tag,monetization,marketing,finance,financial,exchange,transaction,payment,usd,$",
938 contributors = "karsa-mistmere,jguddas"
939 ))]
940 BadgeDollarSign,
941 #[cfg(any(feature = "shopping", feature = "finance"))]
942 #[strum(props(
943 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><path d=\"M7 12h5\"></path><path d=\"M15 9.4a4 4 0 1 0 0 5.2\"></path>",
944 categories = "shopping,finance",
945 tags = "discount,offer,sale,voucher,tag,monetization,marketing,finance,financial,exchange,transaction,payment,€",
946 contributors = "danielbayley"
947 ))]
948 BadgeEuro,
949 #[cfg(any(feature = "shopping", feature = "finance"))]
950 #[strum(props(
951 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><path d=\"M8 8h8\"></path><path d=\"M8 12h8\"></path><path d=\"m13 17-5-1h1a4 4 0 0 0 0-8\"></path>",
952 categories = "shopping,finance",
953 tags = "discount,offer,sale,voucher,tag,monetization,marketing,finance,financial,exchange,transaction,payment,inr,₹",
954 contributors = "danielbayley"
955 ))]
956 BadgeIndianRupee,
957 #[cfg(any(feature = "account", feature = "accessibility", feature = "social"))]
958 #[strum(props(
959 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><line x1=\"12\" x2=\"12\" y1=\"16\" y2=\"12\"></line><line x1=\"12\" x2=\"12.01\" y1=\"8\" y2=\"8\"></line>",
960 categories = "account,accessibility,social",
961 tags = "verified,unverified,help",
962 contributors = "karsa-mistmere,jguddas"
963 ))]
964 BadgeInfo,
965 #[cfg(any(feature = "shopping", feature = "finance"))]
966 #[strum(props(
967 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><path d=\"m9 8 3 3v7\"></path><path d=\"m12 11 3-3\"></path><path d=\"M9 12h6\"></path><path d=\"M9 16h6\"></path>",
968 categories = "shopping,finance",
969 tags = "discount,offer,sale,voucher,tag,monetization,marketing,finance,financial,exchange,transaction,payment,jpy,¥",
970 contributors = "danielbayley"
971 ))]
972 BadgeJapaneseYen,
973 #[cfg(feature = "social")]
974 #[strum(props(
975 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><line x1=\"8\" x2=\"16\" y1=\"12\" y2=\"12\"></line>",
976 categories = "social",
977 tags = "verified,unverified,delete,remove,erase",
978 contributors = "karsa-mistmere,jguddas"
979 ))]
980 BadgeMinus,
981 #[cfg(any(
982 feature = "social",
983 feature = "finance",
984 feature = "shopping",
985 feature = "math"
986 ))]
987 #[strum(props(
988 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><path d=\"m15 9-6 6\"></path><path d=\"M9 9h.01\"></path><path d=\"M15 15h.01\"></path>",
989 categories = "social,finance,shopping,math",
990 tags = "verified,unverified,sale,discount,offer,marketing,sticker,price tag",
991 contributors = "karsa-mistmere,jguddas"
992 ))]
993 BadgePercent,
994 #[cfg(feature = "social")]
995 #[strum(props(
996 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><line x1=\"12\" x2=\"12\" y1=\"8\" y2=\"16\"></line><line x1=\"8\" x2=\"16\" y1=\"12\" y2=\"12\"></line>",
997 categories = "social",
998 tags = "verified,unverified,add,create,new",
999 contributors = "karsa-mistmere,jguddas"
1000 ))]
1001 BadgePlus,
1002 #[cfg(any(feature = "shopping", feature = "finance"))]
1003 #[strum(props(
1004 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><path d=\"M8 12h4\"></path><path d=\"M10 16V9.5a2.5 2.5 0 0 1 5 0\"></path><path d=\"M8 16h7\"></path>",
1005 categories = "shopping,finance",
1006 tags = "discount,offer,sale,voucher,tag,monetization,marketing,finance,financial,exchange,transaction,payment,british,gbp,£",
1007 contributors = "danielbayley"
1008 ))]
1009 BadgePoundSterling,
1010 #[cfg(any(feature = "accessibility", feature = "social", feature = "shapes"))]
1011 #[strum(props(
1012 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><path d=\"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3\"></path><line x1=\"12\" x2=\"12.01\" y1=\"17\" y2=\"17\"></line>",
1013 categories = "accessibility,social,shapes",
1014 tags = "verified,unverified,help",
1015 contributors = "karsa-mistmere,jguddas"
1016 ))]
1017 BadgeQuestionMark,
1018 #[cfg(any(feature = "shopping", feature = "finance"))]
1019 #[strum(props(
1020 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><path d=\"M9 16h5\"></path><path d=\"M9 12h5a2 2 0 1 0 0-4h-3v9\"></path>",
1021 categories = "shopping,finance",
1022 tags = "discount,offer,sale,voucher,tag,monetization,marketing,finance,financial,exchange,transaction,payment,rub,₽",
1023 contributors = "danielbayley"
1024 ))]
1025 BadgeRussianRuble,
1026 #[cfg(any(feature = "shopping", feature = "finance"))]
1027 #[strum(props(
1028 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><path d=\"M11 17V8h4\"></path><path d=\"M11 12h3\"></path><path d=\"M9 16h4\"></path>",
1029 categories = "shopping,finance",
1030 tags = "discount,offer,sale,voucher,tag,monetization,marketing,finance,financial,exchange,transaction,payment,chf,₣",
1031 contributors = "danielbayley"
1032 ))]
1033 BadgeSwissFranc,
1034 #[cfg(any(feature = "shopping", feature = "finance"))]
1035 #[strum(props(
1036 svg = "<path d=\"M11 7v10a5 5 0 0 0 5-5\"></path><path d=\"m15 8-6 3\"></path><path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76\"></path>",
1037 categories = "shopping,finance",
1038 tags = "discount,offer,sale,voucher,tag,monetization,marketing,finance,financial,exchange,transaction,payment,try,₺",
1039 contributors = "danielbayley,jamiemlaw"
1040 ))]
1041 BadgeTurkishLira,
1042 #[cfg(feature = "social")]
1043 #[strum(props(
1044 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path><line x1=\"15\" x2=\"9\" y1=\"9\" y2=\"15\"></line><line x1=\"9\" x2=\"15\" y1=\"9\" y2=\"15\"></line>",
1045 categories = "social",
1046 tags = "verified,unverified,lost,delete,remove",
1047 contributors = "karsa-mistmere,jguddas"
1048 ))]
1049 BadgeX,
1050 #[cfg(any(feature = "account", feature = "social", feature = "shapes"))]
1051 #[strum(props(
1052 svg = "<path d=\"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\"></path>",
1053 categories = "account,social,shapes",
1054 tags = "check,verified,unverified",
1055 contributors = "karsa-mistmere,jguddas"
1056 ))]
1057 Badge,
1058 #[cfg(any(feature = "transportation", feature = "travel"))]
1059 #[strum(props(
1060 svg = "<path d=\"M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2\"></path><path d=\"M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10\"></path><rect height=\"8\" rx=\"1\" width=\"13\" x=\"8\" y=\"6\"></rect><circle cx=\"18\" cy=\"20\" r=\"2\"></circle><circle cx=\"9\" cy=\"20\" r=\"2\"></circle>",
1061 categories = "transportation,travel",
1062 tags = "baggage,luggage,travel,cart,trolley,suitcase",
1063 contributors = "karsa-mistmere,ericfennis"
1064 ))]
1065 BaggageClaim,
1066 #[cfg(feature = "emoji")]
1067 #[strum(props(
1068 svg = "<path d=\"M12 16v1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1\"></path><path d=\"M12 6a2 2 0 0 1 2 2\"></path><path d=\"M18 8c0 4-3.5 8-6 8s-6-4-6-8a6 6 0 0 1 12 0\"></path>",
1069 categories = "emoji",
1070 tags = "party,festival,congratulations,celebration,decoration,colorful,floating,fun,birthday,event,entertainment",
1071 contributors = "peteruithoven"
1072 ))]
1073 Balloon,
1074 #[cfg(feature = "account")]
1075 #[strum(props(
1076 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M4.92 4.92 19.07 19.07\"></path>",
1077 categories = "account",
1078 tags = "cancel,no,stop,forbidden,prohibited,error,incorrect,mistake,wrong,failure,circle,slash,null,void",
1079 contributors = "colebemis"
1080 ))]
1081 Ban,
1082 #[cfg(feature = "food_beverage")]
1083 #[strum(props(
1084 svg = "<path d=\"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5\"></path><path d=\"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z\"></path>",
1085 categories = "food-beverage",
1086 tags = "fruit,food",
1087 contributors = "karsa-mistmere"
1088 ))]
1089 Banana,
1090 #[cfg(feature = "medical")]
1091 #[strum(props(
1092 svg = "<path d=\"M10 10.01h.01\"></path><path d=\"M10 14.01h.01\"></path><path d=\"M14 10.01h.01\"></path><path d=\"M14 14.01h.01\"></path><path d=\"M18 6v12\"></path><path d=\"M6 6v12\"></path><rect height=\"12\" rx=\"2\" width=\"20\" x=\"2\" y=\"6\"></rect>",
1093 categories = "medical",
1094 tags = "plaster,band-aid,first aid,medical,health,wound,injury,care,treatment,healing,protection,emergency,aid,safety,patch",
1095 contributors = "karsa-mistmere,jamiemlaw,jguddas"
1096 ))]
1097 Bandage,
1098 #[cfg(feature = "finance")]
1099 #[strum(props(
1100 svg = "<path d=\"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5\"></path><path d=\"m16 19 3 3 3-3\"></path><path d=\"M18 12h.01\"></path><path d=\"M19 16v6\"></path><path d=\"M6 12h.01\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle>",
1101 categories = "finance",
1102 tags = "bill,currency,money,payment,funds,transaction,cash,finance,withdraw,expense,out,payout,refund,debit,spending,decrease",
1103 contributors = "AnnaSasDev,joffx,ericfennis,mittalyashu"
1104 ))]
1105 BanknoteArrowDown,
1106 #[cfg(feature = "finance")]
1107 #[strum(props(
1108 svg = "<path d=\"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5\"></path><path d=\"M18 12h.01\"></path><path d=\"M19 22v-6\"></path><path d=\"m22 19-3-3-3 3\"></path><path d=\"M6 12h.01\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle>",
1109 categories = "finance",
1110 tags = "bill,currency,money,payment,funds,transaction,cash,finance,deposit,earnings,income,in,credit,prepaid,growth,increase",
1111 contributors = "AnnaSasDev,joffx,ericfennis,mittalyashu"
1112 ))]
1113 BanknoteArrowUp,
1114 #[cfg(feature = "finance")]
1115 #[strum(props(
1116 svg = "<path d=\"M11.74 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4.87\"></path><path d=\"m16 19 2 2 4-4\"></path><path d=\"M18 12h.01\"></path><path d=\"M6 12h.01\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle>",
1117 categories = "finance",
1118 tags = "banknote,bill,currency,payment,money,finance,document,verification,tick,verified,accepted,done,complete,found,paid,task,check,success",
1119 contributors = "mfjramirezf"
1120 ))]
1121 BanknoteCheck,
1122 #[cfg(feature = "finance")]
1123 #[strum(props(
1124 svg = "<path d=\"M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5\"></path><path d=\"m17 17 5 5\"></path><path d=\"M18 12h.01\"></path><path d=\"m22 17-5 5\"></path><path d=\"M6 12h.01\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle>",
1125 categories = "finance",
1126 tags = "bill,currency,money,payment,funds,transaction,cash,finance,error,failed,rejected,canceled,declined,lost,delete,remove",
1127 contributors = "AnnaSasDev,joffx,ericfennis,mittalyashu"
1128 ))]
1129 BanknoteX,
1130 #[cfg(feature = "finance")]
1131 #[strum(props(
1132 svg = "<rect height=\"12\" rx=\"2\" width=\"20\" x=\"2\" y=\"6\"></rect><circle cx=\"12\" cy=\"12\" r=\"2\"></circle><path d=\"M6 12h.01M18 12h.01\"></path>",
1133 categories = "finance",
1134 tags = "currency,money,payment",
1135 contributors = "ericfennis,mittalyashu"
1136 ))]
1137 Banknote,
1138 #[cfg(feature = "shopping")]
1139 #[strum(props(
1140 svg = "<path d=\"M3 5v14\"></path><path d=\"M8 5v14\"></path><path d=\"M12 5v14\"></path><path d=\"M17 5v14\"></path><path d=\"M21 5v14\"></path>",
1141 categories = "shopping",
1142 tags = "scan,checkout,till,cart,transaction,purchase,buy,product,packaging,retail,consumer",
1143 contributors = "danielbayley"
1144 ))]
1145 Barcode,
1146 #[cfg(any(feature = "food_beverage", feature = "navigation"))]
1147 #[strum(props(
1148 svg = "<path d=\"M10 3a41 41 0 0 0 0 18\"></path><path d=\"M14 3a41 41 0 0 1 0 18\"></path><path d=\"M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z\"></path><path d=\"M3.84 17h16.32\"></path><path d=\"M3.84 7h16.32\"></path>",
1149 categories = "food-beverage,navigation",
1150 tags = "keg,drum,tank,wine,beer,oak,wood,firkin,hogshead,kilderkin,barrique,solera,aging,whiskey,brewery,distillery,winery,vineyard",
1151 contributors = "karsa-mistmere,jamiemlaw"
1152 ))]
1153 Barrel,
1154 #[cfg(feature = "text")]
1155 #[strum(props(
1156 svg = "<path d=\"M4 20h16\"></path><path d=\"m6 16 6-12 6 12\"></path><path d=\"M8 12h8\"></path>",
1157 categories = "text",
1158 tags = "text,format,color",
1159 contributors = "ericfennis"
1160 ))]
1161 Baseline,
1162 #[cfg(feature = "travel")]
1163 #[strum(props(
1164 svg = "<path d=\"M10 4 8 6\"></path><path d=\"M17 19v2\"></path><path d=\"M2 12h20\"></path><path d=\"M7 19v2\"></path><path d=\"M9 5 7.62 3.62A2.12 2.12 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5\"></path>",
1165 categories = "travel",
1166 tags = "amenities,services,bathroom,shower",
1167 contributors = "karsa-mistmere,ericfennis,jamiemlaw"
1168 ))]
1169 Bath,
1170 #[cfg(any(feature = "connectivity", feature = "devices"))]
1171 #[strum(props(
1172 svg = "<path d=\"m11 7-3 5h4l-3 5\"></path><path d=\"M14.85 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.93\"></path><path d=\"M22 14v-4\"></path><path d=\"M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.93\"></path>",
1173 categories = "connectivity,devices",
1174 tags = "power,electricity,energy,accumulator,charge",
1175 contributors = "colebemis,ericfennis,csandman,karsa-mistmere,johnletey,jguddas"
1176 ))]
1177 BatteryCharging,
1178 #[cfg(any(feature = "connectivity", feature = "devices"))]
1179 #[strum(props(
1180 svg = "<path d=\"M10 10v4\"></path><path d=\"M14 10v4\"></path><path d=\"M22 14v-4\"></path><path d=\"M6 10v4\"></path><rect height=\"12\" rx=\"2\" width=\"16\" x=\"2\" y=\"6\"></rect>",
1181 categories = "connectivity,devices",
1182 tags = "power,electricity,energy,accumulator,charge",
1183 contributors = "ericfennis,karsa-mistmere,johnletey,jguddas"
1184 ))]
1185 BatteryFull,
1186 #[cfg(any(feature = "connectivity", feature = "devices"))]
1187 #[strum(props(
1188 svg = "<path d=\"M22 14v-4\"></path><path d=\"M6 14v-4\"></path><rect height=\"12\" rx=\"2\" width=\"16\" x=\"2\" y=\"6\"></rect>",
1189 categories = "connectivity,devices",
1190 tags = "power,electricity,energy,accumulator,charge",
1191 contributors = "ericfennis,johnletey,karsa-mistmere,jguddas"
1192 ))]
1193 BatteryLow,
1194 #[cfg(any(feature = "connectivity", feature = "devices"))]
1195 #[strum(props(
1196 svg = "<path d=\"M10 14v-4\"></path><path d=\"M22 14v-4\"></path><path d=\"M6 14v-4\"></path><rect height=\"12\" rx=\"2\" width=\"16\" x=\"2\" y=\"6\"></rect>",
1197 categories = "connectivity,devices",
1198 tags = "power,electricity,energy,accumulator,charge",
1199 contributors = "ericfennis,johnletey,karsa-mistmere,jguddas"
1200 ))]
1201 BatteryMedium,
1202 #[cfg(feature = "devices")]
1203 #[strum(props(
1204 svg = "<path d=\"M10 9v6\"></path><path d=\"M12.54 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.60\"></path><path d=\"M22 14v-4\"></path><path d=\"M7 12h6\"></path><path d=\"M7.60 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.60\"></path>",
1205 categories = "devices",
1206 tags = "power,electricity,energy,accumulator,charge,plus,economy,health,add,new,maximum,upgrade,extra,+",
1207 contributors = "colebemis,ericfennis,jguddas,johnletey,Footagesus"
1208 ))]
1209 BatteryPlus,
1210 #[cfg(any(feature = "connectivity", feature = "devices"))]
1211 #[strum(props(
1212 svg = "<path d=\"M10 17h.01\"></path><path d=\"M10 7v6\"></path><path d=\"M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2\"></path><path d=\"M22 14v-4\"></path><path d=\"M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2\"></path>",
1213 categories = "connectivity,devices",
1214 tags = "power,electricity,energy,accumulator,charge,exclamation mark",
1215 contributors = "Kaladii,ericfennis,jguddas"
1216 ))]
1217 BatteryWarning,
1218 #[cfg(any(feature = "connectivity", feature = "devices"))]
1219 #[strum(props(
1220 svg = "<path d=\"M 22 14 L 22 10\"></path><rect height=\"12\" rx=\"2\" width=\"16\" x=\"2\" y=\"6\"></rect>",
1221 categories = "connectivity,devices",
1222 tags = "power,electricity,energy,accumulator,charge",
1223 contributors = "colebemis,ericfennis,johnletey,jguddas"
1224 ))]
1225 Battery,
1226 #[cfg(any(feature = "science", feature = "gaming"))]
1227 #[strum(props(
1228 svg = "<path d=\"M4.5 3h15\"></path><path d=\"M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3\"></path><path d=\"M6 14h12\"></path>",
1229 categories = "science,gaming",
1230 tags = "cup,lab,chemistry,experiment,test",
1231 contributors = "Andreto,ericfennis"
1232 ))]
1233 Beaker,
1234 #[cfg(feature = "food_beverage")]
1235 #[strum(props(
1236 svg = "<path d=\"M9 9c-.64.64-1.52.954-2.40 1.16A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1\"></path><path d=\"M10.75 5.09A6 6 0 0 1 22 8c0 2.41-.61 4.68-1.68 6.66\"></path><path d=\"M5.34 10.62a4 4 0 0 0 6.48 1.20M10.62 5.34a4.01 4.01 0 0 1 2.03 2.04\"></path><line x1=\"2\" x2=\"22\" y1=\"2\" y2=\"22\"></line>",
1237 categories = "food-beverage",
1238 tags = "soy free,legume,soy,food,seed,allergy,intolerance,diet",
1239 contributors = "karsa-mistmere,ericfennis"
1240 ))]
1241 BeanOff,
1242 #[cfg(feature = "food_beverage")]
1243 #[strum(props(
1244 svg = "<path d=\"M10.16 6.59C9.95 7.47 9.64 8.36 9 9c-.64.64-1.52.954-2.40 1.16A6 6 0 0 0 8 22c7.73 0 14-6.26 14-14a6 6 0 0 0-11.83-1.40Z\"></path><path d=\"M5.34 10.62a4 4 0 1 0 5.27-5.28\"></path>",
1245 categories = "food-beverage",
1246 tags = "legume,soy,food,seed",
1247 contributors = "karsa-mistmere,jguddas"
1248 ))]
1249 Bean,
1250 #[cfg(feature = "home")]
1251 #[strum(props(
1252 svg = "<path d=\"M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8\"></path><path d=\"M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4\"></path><path d=\"M12 4v6\"></path><path d=\"M2 18h20\"></path>",
1253 categories = "home",
1254 tags = "sleep,hotel,furniture",
1255 contributors = "karsa-mistmere,ericfennis"
1256 ))]
1257 BedDouble,
1258 #[cfg(feature = "home")]
1259 #[strum(props(
1260 svg = "<path d=\"M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8\"></path><path d=\"M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4\"></path><path d=\"M3 18h18\"></path>",
1261 categories = "home",
1262 tags = "sleep,hotel,furniture",
1263 contributors = "karsa-mistmere,ericfennis"
1264 ))]
1265 BedSingle,
1266 #[cfg(feature = "home")]
1267 #[strum(props(
1268 svg = "<path d=\"M2 4v16\"></path><path d=\"M2 8h18a2 2 0 0 1 2 2v10\"></path><path d=\"M2 17h20\"></path><path d=\"M6 8v9\"></path>",
1269 categories = "home",
1270 tags = "sleep,hotel,furniture",
1271 contributors = "karsa-mistmere,ericfennis"
1272 ))]
1273 Bed,
1274 #[cfg(feature = "food_beverage")]
1275 #[strum(props(
1276 svg = "<path d=\"M11.77 6.10a2.5 2.5 0 0 1 3.12 3.12\"></path><path d=\"M17.85 12.18a6.5 6.5 0 0 0-9.03-9.04\"></path><path d=\"M18.01 18.01C15.02 20.34 10.83 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5\"></path><path d=\"m18.5 6 2.19 4.5a6.48 6.48 0 0 1-.139 4.39\"></path><path d=\"m2 2 20 20\"></path><path d=\"M6.35 6.37a7 7 0 0 0-.075.23c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c3.35 0 6.99-1.26 9.85-3.15\"></path>",
1277 categories = "food-beverage",
1278 tags = "food,dish,restaurant,course,meal,meat,bbq,steak,vegetarian",
1279 contributors = "kemie,ericfennis,karsa-mistmere,jguddas"
1280 ))]
1281 BeefOff,
1282 #[cfg(feature = "food_beverage")]
1283 #[strum(props(
1284 svg = "<path d=\"M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3\"></path><path d=\"m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5\"></path><circle cx=\"12.5\" cy=\"8.5\" r=\"2.5\"></circle>",
1285 categories = "food-beverage",
1286 tags = "food,dish,restaurant,course,meal,meat,bbq,steak",
1287 contributors = "kemie,ericfennis,karsa-mistmere"
1288 ))]
1289 Beef,
1290 #[cfg(feature = "food_beverage")]
1291 #[strum(props(
1292 svg = "<path d=\"M13 13v5\"></path><path d=\"M17 11.47V8\"></path><path d=\"M17 11h1a3 3 0 0 1 2.74 4.21\"></path><path d=\"m2 2 20 20\"></path><path d=\"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3\"></path><path d=\"M7.53 7.53C6.76 7.64 6.15 8 5.5 8a2.5 2.5 0 0 1-1.76-4.26\"></path><path d=\"M8.72 3.20C9.30 2.76 9.88 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.14 3.14 0 0 0-.842.12\"></path><path d=\"M9 14.6V18\"></path>",
1293 categories = "food-beverage",
1294 tags = "alcohol,bar,beverage,brewery,drink",
1295 contributors = "karsa-mistmere,ericfennis,jguddas"
1296 ))]
1297 BeerOff,
1298 #[cfg(feature = "food_beverage")]
1299 #[strum(props(
1300 svg = "<path d=\"M17 11h1a3 3 0 0 1 0 6h-1\"></path><path d=\"M9 12v6\"></path><path d=\"M13 12v6\"></path><path d=\"M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z\"></path><path d=\"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8\"></path>",
1301 categories = "food-beverage",
1302 tags = "alcohol,bar,beverage,brewery,drink",
1303 contributors = "karsa-mistmere,ericfennis"
1304 ))]
1305 Beer,
1306 #[cfg(any(feature = "account", feature = "notifications"))]
1307 #[strum(props(
1308 svg = "<path d=\"M10.26 21a2 2 0 0 0 3.46 0\"></path><path d=\"m15 8 2 2 4-4\"></path><path d=\"M16.86 4.48A6 6 0 0 0 6 8C6 12.49 4.58 13.95 3.26 15.32\"></path><path d=\"M3.26 15.32A1 1 0 0 0 4 17H20A1 1 0 0 0 20.74 15.32C20.20 14.77 19.66 14.21 19.20 13.45\"></path>",
1309 categories = "account,notifications",
1310 tags = "alarm,notification,sound,reminder",
1311 contributors = "colebemis,csandman,ericfennis,danielbayley,pettelau"
1312 ))]
1313 BellCheck,
1314 #[cfg(any(feature = "account", feature = "notifications"))]
1315 #[strum(props(
1316 svg = "<path d=\"M10.26 21a2 2 0 0 0 3.46 0\"></path><path d=\"M11.68 2.00A6 6 0 0 0 6 8c0 4.49-1.41 5.95-2.73 7.32A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.67c-.824-.85-1.67-1.73-2.21-3.34\"></path><circle cx=\"18\" cy=\"5\" r=\"3\"></circle>",
1317 categories = "account,notifications",
1318 tags = "alarm,notification,sound,reminder,unread",
1319 contributors = "danielbayley,jguddas"
1320 ))]
1321 BellDot,
1322 #[cfg(any(feature = "devices", feature = "notifications", feature = "home"))]
1323 #[strum(props(
1324 svg = "<path d=\"M18.51 17.34A7 7 0 0 1 14 19\"></path><path d=\"M18.8 4A11 11 0 0 1 20 9\"></path><path d=\"M9 9h.01\"></path><circle cx=\"20\" cy=\"16\" r=\"2\"></circle><circle cx=\"9\" cy=\"9\" r=\"7\"></circle><rect height=\"6\" rx=\"2\" width=\"10\" x=\"4\" y=\"16\"></rect>",
1325 categories = "devices,notifications,home",
1326 tags = "fire alarm,flames,smoke,firefighter,fireman,department,brigade,station,emergency,alert,safety,school bell,period break,recess,doorbell,entrance,entry,ring,reception",
1327 contributors = "danielbayley,jguddas"
1328 ))]
1329 BellElectric,
1330 #[cfg(feature = "notifications")]
1331 #[strum(props(
1332 svg = "<path d=\"M10.26 21a2 2 0 0 0 3.46 0\"></path><path d=\"M15 8h6\"></path><path d=\"M16.24 3.75A6 6 0 0 0 6 8c0 4.49-1.41 5.95-2.73 7.32A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.67A9.4 9.4 0 0 1 18.66 12\"></path>",
1333 categories = "notifications",
1334 tags = "alarm,notification,silent,reminder,delete,remove,erase",
1335 contributors = "mittalyashu,ericfennis,danielbayley"
1336 ))]
1337 BellMinus,
1338 #[cfg(feature = "notifications")]
1339 #[strum(props(
1340 svg = "<path d=\"M10.26 21a2 2 0 0 0 3.46 0\"></path><path d=\"M17 17H4a1 1 0 0 1-.74-1.67C4.59 13.95 6 12.49 6 8a6 6 0 0 1 .258-1.74\"></path><path d=\"m2 2 20 20\"></path><path d=\"M8.66 3.01A6 6 0 0 1 18 8c0 2.68.77 4.65 1.70 6.05\"></path>",
1341 categories = "notifications",
1342 tags = "alarm,notification,silent,reminder",
1343 contributors = "colebemis,csandman,mittalyashu,ericfennis,danielbayley"
1344 ))]
1345 BellOff,
1346 #[cfg(feature = "notifications")]
1347 #[strum(props(
1348 svg = "<path d=\"M10.26 21a2 2 0 0 0 3.46 0\"></path><path d=\"M15 8h6\"></path><path d=\"M18 5v6\"></path><path d=\"M20.00 14.46a9 9 0 0 0 .738.86A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.67C4.59 13.95 6 12.49 6 8a6 6 0 0 1 8.75-5.33\"></path>",
1349 categories = "notifications",
1350 tags = "notification,silent,reminder,add,create,new",
1351 contributors = "mittalyashu,ericfennis,danielbayley"
1352 ))]
1353 BellPlus,
1354 #[cfg(feature = "notifications")]
1355 #[strum(props(
1356 svg = "<path d=\"M10.26 21a2 2 0 0 0 3.46 0\"></path><path d=\"M22 8c0-2.3-.8-4.3-2-6\"></path><path d=\"M3.26 15.32A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.67C19.41 13.95 18 12.49 18 8A6 6 0 0 0 6 8c0 4.49-1.41 5.95-2.73 7.32\"></path><path d=\"M4 2C2.8 3.7 2 5.7 2 8\"></path>",
1357 categories = "notifications",
1358 tags = "alarm,notification,sound,reminder",
1359 contributors = "ericfennis,danielbayley"
1360 ))]
1361 BellRing,
1362 #[cfg(any(feature = "account", feature = "notifications"))]
1363 #[strum(props(
1364 svg = "<path d=\"M10.26 21a2 2 0 0 0 3.46 0\"></path><path d=\"M3.26 15.32A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.67C19.41 13.95 18 12.49 18 8A6 6 0 0 0 6 8c0 4.49-1.41 5.95-2.73 7.32\"></path>",
1365 categories = "account,notifications",
1366 tags = "alarm,notification,sound,reminder",
1367 contributors = "colebemis,csandman,ericfennis,danielbayley"
1368 ))]
1369 Bell,
1370 #[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
1371 #[strum(props(
1372 svg = "<rect height=\"7\" rx=\"1\" width=\"13\" x=\"3\" y=\"3\"></rect><path d=\"m22 15-3-3 3-3\"></path><rect height=\"7\" rx=\"1\" width=\"13\" x=\"3\" y=\"14\"></rect>",
1373 categories = "layout,design,tools",
1374 tags = "insert,add,left,slot,squeeze,space,vertical,grid,table,rows,cells,excel,spreadsheet,accountancy,data,enter,entry,entries,blocks,rectangles,chevron",
1375 contributors = "danielbayley"
1376 ))]
1377 BetweenHorizontalEnd,
1378 #[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
1379 #[strum(props(
1380 svg = "<rect height=\"7\" rx=\"1\" width=\"13\" x=\"8\" y=\"3\"></rect><path d=\"m2 9 3 3-3 3\"></path><rect height=\"7\" rx=\"1\" width=\"13\" x=\"8\" y=\"14\"></rect>",
1381 categories = "layout,design,tools",
1382 tags = "insert,add,right,slot,squeeze,space,vertical,grid,table,rows,cells,excel,spreadsheet,accountancy,data,enter,entry,entries,blocks,rectangles,chevron",
1383 contributors = "danielbayley"
1384 ))]
1385 BetweenHorizontalStart,
1386 #[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
1387 #[strum(props(
1388 svg = "<rect height=\"13\" rx=\"1\" width=\"7\" x=\"3\" y=\"3\"></rect><path d=\"m9 22 3-3 3 3\"></path><rect height=\"13\" rx=\"1\" width=\"7\" x=\"14\" y=\"3\"></rect>",
1389 categories = "layout,design,tools",
1390 tags = "insert,add,top,slot,squeeze,space,vertical,grid,table,columns,cells,data,enter,entry,entries,blocks,rectangles,chevron",
1391 contributors = "danielbayley"
1392 ))]
1393 BetweenVerticalEnd,
1394 #[cfg(any(feature = "layout", feature = "design", feature = "tools"))]
1395 #[strum(props(
1396 svg = "<rect height=\"13\" rx=\"1\" width=\"7\" x=\"3\" y=\"8\"></rect><path d=\"m15 2-3 3-3-3\"></path><rect height=\"13\" rx=\"1\" width=\"7\" x=\"14\" y=\"8\"></rect>",
1397 categories = "layout,design,tools",
1398 tags = "insert,add,bottom,slot,squeeze,space,vertical,grid,table,columns,cells,data,enter,entry,entries,blocks,rectangles,chevron",
1399 contributors = "danielbayley"
1400 ))]
1401 BetweenVerticalStart,
1402 #[cfg(feature = "emoji")]
1403 #[strum(props(
1404 svg = "<path d=\"M12.40 13.01A5 5 0 0 1 22 15c0 3.86-4 7-9 7-4.07 0-8.15-.82-10.37-2.46-.426-.316-.631-.832-.62-1.36C2.11 12.72 2.62 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.10 0-1.64-.444-2-1\"></path><path d=\"M15 14a5 5 0 0 0-7.58 2\"></path><path d=\"M9.96 6.82C8.01 7.97 9.5 13 8 15\"></path>",
1405 categories = "emoji",
1406 tags = "arm,muscle,strong,working out,athletic,toned,muscular,forelimb,curled",
1407 contributors = "karsa-mistmere"
1408 ))]
1409 BicepsFlexed,
1410 #[cfg(feature = "transportation")]
1411 #[strum(props(
1412 svg = "<circle cx=\"18.5\" cy=\"17.5\" r=\"3.5\"></circle><circle cx=\"5.5\" cy=\"17.5\" r=\"3.5\"></circle><circle cx=\"15\" cy=\"5\" r=\"1\"></circle><path d=\"M12 17.5V14l-3-3 4-3 2 3h2\"></path>",
1413 categories = "transportation",
1414 tags = "bicycle,transport,trip",
1415 contributors = "ahtohbi4,ericfennis,Andreto,csandman,jguddas,karsa-mistmere"
1416 ))]
1417 Bike,
1418 #[cfg(any(feature = "text", feature = "development"))]
1419 #[strum(props(
1420 svg = "<rect height=\"6\" rx=\"2\" width=\"4\" x=\"14\" y=\"14\"></rect><rect height=\"6\" rx=\"2\" width=\"4\" x=\"6\" y=\"4\"></rect><path d=\"M6 20h4\"></path><path d=\"M14 10h4\"></path><path d=\"M6 14h2v6\"></path><path d=\"M14 4h2v6\"></path>",
1421 categories = "text,development",
1422 tags = "code,digits,computer,zero,one,boolean",
1423 contributors = "mittalyashu,karsa-mistmere,ericfennis"
1424 ))]
1425 Binary,
1426 #[cfg(any(
1427 feature = "navigation",
1428 feature = "nature",
1429 feature = "photography",
1430 feature = "science",
1431 feature = "travel",
1432 feature = "development"
1433 ))]
1434 #[strum(props(
1435 svg = "<path d=\"M10 10h4\"></path><path d=\"M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3\"></path><path d=\"M20 21a2 2 0 0 0 2-2v-3.85c0-1.39-2-2.96-2-4.82V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z\"></path><path d=\"M 22 16 L 2 16\"></path><path d=\"M4 21a2 2 0 0 1-2-2v-3.85c0-1.39 2-2.96 2-4.82V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z\"></path><path d=\"M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3\"></path>",
1436 categories = "navigation,nature,photography,science,travel,development",
1437 tags = "field glasses,lorgnette,pince-nez,observation,sightseeing,nature,wildlife,birdwatching,scouting,surveillance,search,discovery,monitoring,lookout,viewpoint,travel,tourism,research",
1438 contributors = "karsa-mistmere"
1439 ))]
1440 Binoculars,
1441 #[cfg(feature = "science")]
1442 #[strum(props(
1443 svg = "<circle cx=\"12\" cy=\"11.9\" r=\"2\"></circle><path d=\"M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6\"></path><path d=\"m8.9 10.1 1.4.8\"></path><path d=\"M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5\"></path><path d=\"m15.1 10.1-1.4.8\"></path><path d=\"M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2\"></path><path d=\"M12 13.9v1.6\"></path><path d=\"M13.5 5.4c-1-.2-2-.2-3 0\"></path><path d=\"M17 16.4c.7-.7 1.2-1.6 1.5-2.5\"></path><path d=\"M5.5 13.9c.3.9.8 1.8 1.5 2.5\"></path>",
1444 categories = "science",
1445 tags = "fallout,waste,biology,chemistry,chemical,element",
1446 contributors = "karsa-mistmere,danielbayley,ericfennis"
1447 ))]
1448 Biohazard,
1449 #[cfg(feature = "animals")]
1450 #[strum(props(
1451 svg = "<path d=\"M16 7h.01\"></path><path d=\"M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20\"></path><path d=\"m20 7 2 .5-2 .5\"></path><path d=\"M10 18v3\"></path><path d=\"M14 17.75V21\"></path><path d=\"M7 18a6 6 0 0 0 3.84-10.61\"></path>",
1452 categories = "animals",
1453 tags = "peace,freedom,wing,avian,tweet",
1454 contributors = "karsa-mistmere,it-is-not"
1455 ))]
1456 Bird,
1457 #[cfg(any(
1458 feature = "nature",
1459 feature = "animals",
1460 feature = "navigation",
1461 feature = "home"
1462 ))]
1463 #[strum(props(
1464 svg = "<path d=\"M12 18v4\"></path><path d=\"m17 18 1.95-11.46\"></path><path d=\"m3 8 7.82-5.61a2 2 0 0 1 2.36 0L21 8\"></path><path d=\"M4 18h16\"></path><path d=\"M7 18 5.04 6.53\"></path><circle cx=\"12\" cy=\"10\" r=\"2\"></circle>",
1465 categories = "nature,animals,navigation,home",
1466 tags = "birdhouse,bird,garden,home,house,woodwork",
1467 contributors = "hieu-onefold,karsa-mistmere"
1468 ))]
1469 Birdhouse,
1470 #[cfg(any(feature = "development", feature = "finance"))]
1471 #[strum(props(
1472 svg = "<path d=\"M11.76 19.08c4.92.868 6.14-6.02 1.21-6.89m-1.21 6.89L5.86 18.04m5.90 1.04-.347 1.97m1.56-8.86c4.92.869 6.14-6.02 1.21-6.89m-1.21 6.89-3.94-.694m5.15-6.2L8.29 4.26m5.90 1.04.348-1.97M7.48 20.36l3.12-17.72\"></path>",
1473 categories = "development,finance",
1474 tags = "cryptocurrency,digital,blockchain,finance,coin,market,decentralized,investment,crypto,currency,money,payment",
1475 contributors = "ericfennis,mittalyashu"
1476 ))]
1477 Bitcoin,
1478 #[cfg(any(
1479 feature = "design",
1480 feature = "photography",
1481 feature = "tools",
1482 feature = "development"
1483 ))]
1484 #[strum(props(
1485 svg = "<circle cx=\"9\" cy=\"9\" r=\"7\"></circle><circle cx=\"15\" cy=\"15\" r=\"7\"></circle>",
1486 categories = "design,photography,tools,development",
1487 tags = "mode,overlay,multiply,screen,opacity,transparency,alpha,filters,lenses,mixed,shades,tints,hues,saturation,brightness,overlap,colors,colours",
1488 contributors = "danielbayley"
1489 ))]
1490 Blend,
1491 #[cfg(any(feature = "food_beverage", feature = "home"))]
1492 #[strum(props(
1493 svg = "<path d=\"M8 14a2 2 0 0 0-1.96 1.61l-1.01 5.19A1 1 0 0 0 6 22h12a1 1 0 0 0 .981-1.19l-1.01-5.19A2 2 0 0 0 16 14z\"></path><path d=\"m17 2-1 12\"></path><path d=\"M8.00 14 7 2\"></path><path d=\"M7.56 8.78A5 5 0 0 0 12 8a5 5 0 0 1 4.56-.75\"></path><path d=\"M19 2H5a2 2 0 0 0-2 2v5a2 2 0 0 0 .688 1.5\"></path><path d=\"M12 18h.01\"></path>",
1494 categories = "food-beverage,home",
1495 tags = "mixer,appliances,food,liquid,juicer,vitamizer,mix,emulsify,smoothie,drink,blade,container,kitchen,milkshake,cocktail,beverage,culinary,shredder,processor,cooking,recipe,chef,restaurant",
1496 contributors = "rrod497"
1497 ))]
1498 Blender,
1499 #[cfg(feature = "home")]
1500 #[strum(props(
1501 svg = "<path d=\"M3 3h18\"></path><path d=\"M20 7H8\"></path><path d=\"M20 11H8\"></path><path d=\"M10 19h10\"></path><path d=\"M8 15h12\"></path><path d=\"M4 3v14\"></path><circle cx=\"4\" cy=\"19\" r=\"2\"></circle>",
1502 categories = "home",
1503 tags = "shades,screen,curtain,shutter,roller blind,window,lighting,household,home",
1504 contributors = "karsa-mistmere,it-is-not"
1505 ))]
1506 Blinds,
1507 #[cfg(any(feature = "development", feature = "layout", feature = "shapes"))]
1508 #[strum(props(
1509 svg = "<path d=\"M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2\"></path><rect height=\"8\" rx=\"1\" width=\"8\" x=\"14\" y=\"2\"></rect>",
1510 categories = "development,layout,shapes",
1511 tags = "addon,plugin,integration,extension,package,build,stack,toys,kids,children,learning,squares,corner",
1512 contributors = "danielbayley,jguddas"
1513 ))]
1514 Blocks,
1515 #[cfg(any(feature = "connectivity", feature = "devices"))]
1516 #[strum(props(
1517 svg = "<path d=\"m7 7 10 10-5 5V2l5 5L7 17\"></path><line x1=\"18\" x2=\"21\" y1=\"12\" y2=\"12\"></line><line x1=\"3\" x2=\"6\" y1=\"12\" y2=\"12\"></line>",
1518 categories = "connectivity,devices",
1519 tags = "paired",
1520 contributors = "ericfennis,csandman"
1521 ))]
1522 BluetoothConnected,
1523 #[cfg(any(feature = "connectivity", feature = "devices"))]
1524 #[strum(props(
1525 svg = "<path d=\"m17 17-5 5V12l-5 5\"></path><path d=\"m2 2 20 20\"></path><path d=\"M14.5 9.5 17 7l-5-5v4.5\"></path>",
1526 categories = "connectivity,devices",
1527 tags = "lost",
1528 contributors = "ericfennis,csandman"
1529 ))]
1530 BluetoothOff,
1531 #[cfg(any(feature = "connectivity", feature = "devices"))]
1532 #[strum(props(
1533 svg = "<path d=\"m7 7 10 10-5 5V2l5 5L7 17\"></path><path d=\"M20.83 14.83a4 4 0 0 0 0-5.66\"></path><path d=\"M18 12h.01\"></path>",
1534 categories = "connectivity,devices",
1535 tags = "pairing",
1536 contributors = "ericfennis,csandman"
1537 ))]
1538 BluetoothSearching,
1539 #[cfg(any(feature = "connectivity", feature = "devices"))]
1540 #[strum(props(
1541 svg = "<path d=\"m7 7 10 10-5 5V2l5 5L7 17\"></path>",
1542 categories = "connectivity,devices",
1543 tags = "wireless",
1544 contributors = "colebemis,ericfennis,csandman"
1545 ))]
1546 Bluetooth,
1547 #[cfg(feature = "text")]
1548 #[strum(props(
1549 svg = "<path d=\"M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8\"></path>",
1550 categories = "text",
1551 tags = "text,strong,format",
1552 contributors = "colebemis,csandman,ericfennis,jguddas,karsa-mistmere"
1553 ))]
1554 Bold,
1555 #[cfg(any(feature = "tools", feature = "home"))]
1556 #[strum(props(
1557 svg = "<path d=\"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z\"></path><circle cx=\"12\" cy=\"12\" r=\"4\"></circle>",
1558 categories = "tools,home",
1559 tags = "nut,screw,settings,preferences,configuration,controls,edit,diy,fixed,build,construction,parts",
1560 contributors = "danielbayley"
1561 ))]
1562 Bolt,
1563 #[cfg(any(feature = "security", feature = "tools"))]
1564 #[strum(props(
1565 svg = "<circle cx=\"11\" cy=\"13\" r=\"9\"></circle><path d=\"M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95\"></path><path d=\"m22 2-1.5 1.5\"></path>",
1566 categories = "security,tools",
1567 tags = "fatal,error,crash,blockbuster,mine,explosion,explode,explosive",
1568 contributors = "karsa-mistmere,ericfennis"
1569 ))]
1570 Bomb,
1571 #[cfg(any(feature = "animals", feature = "medical", feature = "gaming"))]
1572 #[strum(props(
1573 svg = "<path d=\"M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z\"></path>",
1574 categories = "animals,medical,gaming",
1575 tags = "health,skeleton,skull,death,pets,dog",
1576 contributors = "karsa-mistmere,jguddas"
1577 ))]
1578 Bone,
1579 #[cfg(any(feature = "text", feature = "gaming"))]
1580 #[strum(props(
1581 svg = "<path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"m8 13 4-7 4 7\"></path><path d=\"M9.1 11h5.7\"></path>",
1582 categories = "text,gaming",
1583 tags = "dictionary,define,definition,thesaurus,encyclopedia,encyclopaedia,reading,booklet,magazine,leaflet,pamphlet,tome,library,writing,written,writer,author,story,script,fiction,novel,information,knowledge,education,high school,university,college,academy,student,study,learning,homework,research,language,translate,alphabetical,a-z,ordered",
1584 contributors = "danielbayley"
1585 ))]
1586 BookA,
1587 #[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
1588 #[strum(props(
1589 svg = "<path d=\"M12 13h.01\"></path><path d=\"M12 6v3\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path>",
1590 categories = "text,development,gaming",
1591 tags = "reading,paperback,booklet,magazine,leaflet,pamphlet,tome,library,writing,written,writer,author,story,script,fiction,novel,information,knowledge,education,high school,university,college,academy,student,study,learning,homework,research,documentation,warning,alert,danger,exclamation mark",
1592 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,lscheibel,domasmark"
1593 ))]
1594 BookAlert,
1595 #[cfg(any(feature = "multimedia", feature = "text"))]
1596 #[strum(props(
1597 svg = "<path d=\"M12 6v7\"></path><path d=\"M16 8v3\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"M8 8v3\"></path>",
1598 categories = "multimedia,text",
1599 tags = "audiobook,reading,listening,sound,story,fiction,novel,information,knowledge,education,student,study,learning,research",
1600 contributors = "danielbayley"
1601 ))]
1602 BookAudio,
1603 #[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
1604 #[strum(props(
1605 svg = "<path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"m9 9.5 2 2 4-4\"></path>",
1606 categories = "text,development,gaming",
1607 tags = "read,booklet,magazine,leaflet,pamphlet,library,written,authored,published,informed,knowledgeable,educated,schooled,homework,examined,tested,marked,passed,graduated,studied,learned,lesson,researched,documented,revealed,blank,plain language,true,truth,verified,corrected,task,todo,done,completed,finished,ticked",
1608 contributors = "danielbayley"
1609 ))]
1610 BookCheck,
1611 #[cfg(any(feature = "development", feature = "text", feature = "gaming"))]
1612 #[strum(props(
1613 svg = "<path d=\"M5 7a2 2 0 0 0-2 2v11\"></path><path d=\"M5.80 18H5a2 2 0 0 0 0 4h9.5a.5.5 0 0 0 .5-.5V21\"></path><path d=\"M9 15V4a2 2 0 0 1 2-2h9.5a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H11a2 2 0 0 1 0-4h10\"></path>",
1614 categories = "development,text,gaming",
1615 tags = "code,coding,version control,git,repository,clone,fork,duplicate,multiple,books,library,copies,copied,plagiarism,plagiarised,plagiarized,reading list,information,informed,knowledge,knowledgeable,knowledgable,education,high school,university,college,academy,student,study,learning,research,smart,intelligent,intellectual",
1616 contributors = "danielbayley,jguddas,karsa-mistmere"
1617 ))]
1618 BookCopy,
1619 #[cfg(feature = "development")]
1620 #[strum(props(
1621 svg = "<path d=\"M12 17h1.5\"></path><path d=\"M12 22h1.5\"></path><path d=\"M12 2h1.5\"></path><path d=\"M17.5 22H19a1 1 0 0 0 1-1\"></path><path d=\"M17.5 2H19a1 1 0 0 1 1 1v1.5\"></path><path d=\"M20 14v3h-2.5\"></path><path d=\"M20 8.5V10\"></path><path d=\"M4 10V8.5\"></path><path d=\"M4 19.5V14\"></path><path d=\"M4 4.5A2.5 2.5 0 0 1 6.5 2H8\"></path><path d=\"M8 22H6.5a1 1 0 0 1 0-5H8\"></path>",
1622 categories = "development",
1623 tags = "code,coding,version control,git,repository,template,draft,script,screenplay,writing,writer,author,unwritten,unpublished,untold",
1624 contributors = "danielbayley,jguddas"
1625 ))]
1626 BookDashed,
1627 #[cfg(feature = "development")]
1628 #[strum(props(
1629 svg = "<path d=\"M12 13V7\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"m9 10 3 3 3-3\"></path>",
1630 categories = "development",
1631 tags = "code,coding,version control,git,repository,pull",
1632 contributors = "danielbayley"
1633 ))]
1634 BookDown,
1635 #[cfg(any(feature = "multimedia", feature = "text"))]
1636 #[strum(props(
1637 svg = "<path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"M8 12v-2a4 4 0 0 1 8 0v2\"></path><circle cx=\"15\" cy=\"12\" r=\"1\"></circle><circle cx=\"9\" cy=\"12\" r=\"1\"></circle>",
1638 categories = "multimedia,text",
1639 tags = "audiobook,reading,listening,sound,story,fiction,novel,information,knowledge,education,student,study,learning,research",
1640 contributors = "danielbayley"
1641 ))]
1642 BookHeadphones,
1643 #[cfg(any(feature = "social", feature = "text", feature = "gaming"))]
1644 #[strum(props(
1645 svg = "<path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"M8.62 9.8A2.25 2.25 0 1 1 12 6.83a2.25 2.25 0 1 1 3.38 2.96l-2.62 2.85a.998.99 0 0 1-1.50 0z\"></path>",
1646 categories = "social,text,gaming",
1647 tags = "diary,romance,novel,journal,entry,entries,personal,private,secret,crush,like,love,emotion,feminine,girls,teens,teenager,therapy,theraputic,therapist,planner,organizer,organiser,notes,notepad,stationery,sketchbook,writing,written,reading,favorite,favourite,high school",
1648 contributors = "danielbayley,karsa-mistmere"
1649 ))]
1650 BookHeart,
1651 #[cfg(any(
1652 feature = "photography",
1653 feature = "text",
1654 feature = "multimedia",
1655 feature = "files",
1656 feature = "social",
1657 feature = "shopping",
1658 feature = "travel"
1659 ))]
1660 #[strum(props(
1661 svg = "<path d=\"m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><circle cx=\"10\" cy=\"8\" r=\"2\"></circle>",
1662 categories = "photography,text,multimedia,files,social,shopping,travel",
1663 tags = "images,pictures,photos,album,collection,event,magazine,catalog,catalogue,brochure,browse,gallery",
1664 contributors = "danielbayley,jguddas"
1665 ))]
1666 BookImage,
1667 #[cfg(any(feature = "development", feature = "security", feature = "gaming"))]
1668 #[strum(props(
1669 svg = "<path d=\"M13 2H6.5A2.5 2.5 0 0 0 4 4.5v15\"></path><path d=\"M17 2v6\"></path><path d=\"M17 4h2\"></path><path d=\"M20 15.2V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><circle cx=\"17\" cy=\"10\" r=\"2\"></circle>",
1670 categories = "development,security,gaming",
1671 tags = "code,coding,version control,git,repository,private,public,secret,unlocked,hidden,revealed,knowledge,learning",
1672 contributors = "danielbayley,jguddas,karsa-mistmere"
1673 ))]
1674 BookKey,
1675 #[cfg(any(feature = "development", feature = "security", feature = "gaming"))]
1676 #[strum(props(
1677 svg = "<path d=\"M18 6V4a2 2 0 1 0-4 0v2\"></path><path d=\"M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10\"></path><rect height=\"5\" rx=\"1\" width=\"8\" x=\"12\" y=\"6\"></rect>",
1678 categories = "development,security,gaming",
1679 tags = "code,coding,version control,git,repository,private,secret,hidden,knowledge",
1680 contributors = "danielbayley"
1681 ))]
1682 BookLock,
1683 #[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
1684 #[strum(props(
1685 svg = "<path d=\"M10 2v8l3-3 3 3V2\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path>",
1686 categories = "text,development,gaming",
1687 tags = "dictionary,reading,booklet,magazine,leaflet,pamphlet,tome,library,writing,written,writer,author,story,script,fiction,novel,information,knowledge,education,high school,university,college,academy,student,study,learning,homework,research,documentation,saved,later,future,reference,index,code,coding,version control,git,repository",
1688 contributors = "danielbayley"
1689 ))]
1690 BookMarked,
1691 #[cfg(any(feature = "development", feature = "text", feature = "gaming"))]
1692 #[strum(props(
1693 svg = "<path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"M9 10h6\"></path>",
1694 categories = "development,text,gaming",
1695 tags = "code,coding,version control,git,repository,remove,delete,censor,cancel,forbid,prohibit,ban,uneducated,re-educate,unlearn,downgrade",
1696 contributors = "danielbayley"
1697 ))]
1698 BookMinus,
1699 #[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
1700 #[strum(props(
1701 svg = "<path d=\"M12 21V7\"></path><path d=\"m16 12 2 2 4-4\"></path><path d=\"M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3\"></path>",
1702 categories = "text,development,gaming",
1703 tags = "read,pages,booklet,magazine,leaflet,pamphlet,library,written,authored,published,informed,knowledgeable,educated,schooled,homework,examined,tested,marked,passed,graduated,studied,learned,lesson,researched,documented,revealed,blank,plain language,true,truth,verified,corrected,task,todo,done,completed,finished,ticked",
1704 contributors = "schmidt-oliver,karsa-mistmere,ericfennis"
1705 ))]
1706 BookOpenCheck,
1707 #[cfg(any(feature = "text", feature = "development"))]
1708 #[strum(props(
1709 svg = "<path d=\"M12 7v14\"></path><path d=\"M16 12h2\"></path><path d=\"M16 8h2\"></path><path d=\"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z\"></path><path d=\"M6 12h2\"></path><path d=\"M6 8h2\"></path>",
1710 categories = "text,development",
1711 tags = "reading,pages,booklet,magazine,leaflet,pamphlet,library,writing,written,writer,author,story,script,fiction,novel,information,knowledge,education,high school,university,college,academy,student,study,learning,homework,research,documentation,revealed",
1712 contributors = "danielbayley"
1713 ))]
1714 BookOpenText,
1715 #[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
1716 #[strum(props(
1717 svg = "<path d=\"M12 7v14\"></path><path d=\"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z\"></path>",
1718 categories = "text,development,gaming",
1719 tags = "reading,pages,booklet,magazine,leaflet,pamphlet,library,writing,written,writer,author,story,script,screenplay,fiction,novel,information,knowledge,education,high school,university,college,academy,student,study,learning,homework,research,documentation,revealed,blank,plain",
1720 contributors = "colebemis,csandman,ericfennis"
1721 ))]
1722 BookOpen,
1723 #[cfg(any(feature = "development", feature = "text", feature = "gaming"))]
1724 #[strum(props(
1725 svg = "<path d=\"M12 7v6\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"M9 10h6\"></path>",
1726 categories = "development,text,gaming",
1727 tags = "code,coding,version control,git,repository,remove,delete,read,write,author,publish,inform,graduate,re-educate,study,learn,research,knowledge,improve,upgrade,level up",
1728 contributors = "danielbayley"
1729 ))]
1730 BookPlus,
1731 #[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
1732 #[strum(props(
1733 svg = "<path d=\"M11 22H5.5a1 1 0 0 1 0-5h4.50\"></path><path d=\"m21 22-1.87-1.87\"></path><path d=\"M3 19.5v-15A2.5 2.5 0 0 1 5.5 2H18a1 1 0 0 1 1 1v8\"></path><circle cx=\"17\" cy=\"18\" r=\"3\"></circle>",
1734 categories = "text,development,gaming",
1735 tags = "reading,library,study,education,research,knowledge,discover,browsing,lookup,finding,scanning",
1736 contributors = "karsa-mistmere,Muhammad-Aqib-Bashir"
1737 ))]
1738 BookSearch,
1739 #[cfg(any(feature = "text", feature = "gaming"))]
1740 #[strum(props(
1741 svg = "<path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"M8 11h8\"></path><path d=\"M8 7h6\"></path>",
1742 categories = "text,gaming",
1743 tags = "reading,booklet,magazine,leaflet,pamphlet,tome,library,writing,written,writer,author,story,script,fiction,novel,information,knowledge,education,high school,university,college,academy,student,study,learning,homework,research,documentation",
1744 contributors = "danielbayley"
1745 ))]
1746 BookText,
1747 #[cfg(any(feature = "text", feature = "design", feature = "gaming"))]
1748 #[strum(props(
1749 svg = "<path d=\"M10 13h4\"></path><path d=\"M12 6v7\"></path><path d=\"M16 8V6H8v2\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path>",
1750 categories = "text,design,gaming",
1751 tags = "thesaurus,synonym,reading,booklet,magazine,leaflet,pamphlet,tome,library,writing,written,writer,author,story,script,fiction,novel,information,knowledge,education,high school,university,college,academy,student,study,learning,homework,research,language,translate,typography,fonts,collection",
1752 contributors = "danielbayley"
1753 ))]
1754 BookType,
1755 #[cfg(feature = "development")]
1756 #[strum(props(
1757 svg = "<path d=\"M12 13V7\"></path><path d=\"M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2\"></path><path d=\"m9 10 3-3 3 3\"></path><path d=\"m9 5 3-3 3 3\"></path>",
1758 categories = "development",
1759 tags = "code,coding,version control,git,repository,push,force",
1760 contributors = "danielbayley"
1761 ))]
1762 BookUp2,
1763 #[cfg(feature = "development")]
1764 #[strum(props(
1765 svg = "<path d=\"M12 13V7\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"m9 10 3-3 3 3\"></path>",
1766 categories = "development",
1767 tags = "code,coding,version control,git,repository,push",
1768 contributors = "danielbayley"
1769 ))]
1770 BookUp,
1771 #[cfg(any(
1772 feature = "account",
1773 feature = "connectivity",
1774 feature = "communication",
1775 feature = "social"
1776 ))]
1777 #[strum(props(
1778 svg = "<path d=\"M15 13a3 3 0 1 0-6 0\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><circle cx=\"12\" cy=\"8\" r=\"2\"></circle>",
1779 categories = "account,connectivity,communication,social",
1780 tags = "person,people,family,friends,acquaintances,contacts,details,addresses,phone numbers,directory,listing,networking",
1781 contributors = "danielbayley"
1782 ))]
1783 BookUser,
1784 #[cfg(any(feature = "text", feature = "gaming"))]
1785 #[strum(props(
1786 svg = "<path d=\"m14.5 7-5 5\"></path><path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path><path d=\"m9.5 7 5 5\"></path>",
1787 categories = "text,gaming",
1788 tags = "code,coding,version control,git,repository,remove,delete,reading,misinformation,disinformation,misinformed,charlatan,sophistry,false,lies,untruth,propaganda,censored,cancelled,forbidden,prohibited,banned,uneducated,re-education,unlearn",
1789 contributors = "danielbayley"
1790 ))]
1791 BookX,
1792 #[cfg(any(feature = "text", feature = "development", feature = "gaming"))]
1793 #[strum(props(
1794 svg = "<path d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"></path>",
1795 categories = "text,development,gaming",
1796 tags = "reading,paperback,booklet,magazine,leaflet,pamphlet,tome,library,writing,written,writer,author,story,script,fiction,novel,information,knowledge,education,high school,university,college,academy,student,study,learning,homework,research,documentation",
1797 contributors = "colebemis,csandman,ericfennis"
1798 ))]
1799 Book,
1800 #[cfg(feature = "account")]
1801 #[strum(props(
1802 svg = "<path d=\"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.49.868l-4.51-2.57a2 2 0 0 0-1.98 0l-4.51 2.57A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z\"></path><path d=\"m9 10 2 2 4-4\"></path>",
1803 categories = "account",
1804 tags = "read,finished,complete,clip,marker,tag,task,todo",
1805 contributors = "danielbayley,jguddas"
1806 ))]
1807 BookmarkCheck,
1808 #[cfg(feature = "account")]
1809 #[strum(props(
1810 svg = "<path d=\"M15 10H9\"></path><path d=\"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.49.868l-4.51-2.57a2 2 0 0 0-1.98 0l-4.51 2.57A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z\"></path>",
1811 categories = "account",
1812 tags = "delete,remove",
1813 contributors = "siarie,ericfennis,jguddas"
1814 ))]
1815 BookmarkMinus,
1816 #[cfg(feature = "account")]
1817 #[strum(props(
1818 svg = "<path d=\"M19 19v1a1 1 0 0 1-1.49.868l-4.51-2.57a2 2 0 0 0-1.98 0l-4.51 2.57A1 1 0 0 1 5 20V5\"></path><path d=\"m2 2 20 20\"></path><path d=\"M8.65 3H17a2 2 0 0 1 2 2v8.34\"></path>",
1819 categories = "account",
1820 tags = "unsaved,unfavorite,unmarked,unlabel,disabled,removed,unpin,unread,unclip,marker,untag",
1821 contributors = "colebemis,csandman,siarie,ericfennis,jguddas,ZeenatLawal,swastik7805,karsa-mistmere"
1822 ))]
1823 BookmarkOff,
1824 #[cfg(feature = "account")]
1825 #[strum(props(
1826 svg = "<path d=\"M12 7v6\"></path><path d=\"M15 10H9\"></path><path d=\"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.49.868l-4.51-2.57a2 2 0 0 0-1.98 0l-4.51 2.57A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z\"></path>",
1827 categories = "account",
1828 tags = "add",
1829 contributors = "siarie,ericfennis,jguddas"
1830 ))]
1831 BookmarkPlus,
1832 #[cfg(feature = "account")]
1833 #[strum(props(
1834 svg = "<path d=\"m14.5 7.5-5 5\"></path><path d=\"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.49.868l-4.51-2.57a2 2 0 0 0-1.98 0l-4.51 2.57A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z\"></path><path d=\"m9.5 7.5 5 5\"></path>",
1835 categories = "account",
1836 tags = "read,clip,marker,tag,cancel,close,delete,remove,clear",
1837 contributors = "danielbayley,jguddas"
1838 ))]
1839 BookmarkX,
1840 #[cfg(feature = "account")]
1841 #[strum(props(
1842 svg = "<path d=\"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.49.868l-4.51-2.57a2 2 0 0 0-1.98 0l-4.51 2.57A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z\"></path>",
1843 categories = "account",
1844 tags = "save,favorite,mark,label,attachment,file,stick,pin,read,clip,marker,tag",
1845 contributors = "colebemis,csandman,siarie,ericfennis,jguddas"
1846 ))]
1847 Bookmark,
1848 #[cfg(any(feature = "devices", feature = "multimedia", feature = "social"))]
1849 #[strum(props(
1850 svg = "<path d=\"M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4\"></path><path d=\"M8 8v1\"></path><path d=\"M12 8v1\"></path><path d=\"M16 8v1\"></path><rect height=\"12\" rx=\"2\" width=\"20\" x=\"2\" y=\"9\"></rect><circle cx=\"8\" cy=\"15\" r=\"2\"></circle><circle cx=\"16\" cy=\"15\" r=\"2\"></circle>",
1851 categories = "devices,multimedia,social",
1852 tags = "radio,speakers,audio,music,sound,broadcast,live,frequency",
1853 contributors = "danielbayley"
1854 ))]
1855 BoomBox,
1856 #[cfg(any(feature = "development", feature = "social"))]
1857 #[strum(props(
1858 svg = "<path d=\"M12 6V2H8\"></path><path d=\"M15 11v2\"></path><path d=\"M2 12h2\"></path><path d=\"M20 12h2\"></path><path d=\"M20 16a2 2 0 0 1-2 2H8.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 4 20.28V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z\"></path><path d=\"M9 11v2\"></path>",
1859 categories = "development,social",
1860 tags = "robot,ai,chat,assistant",
1861 contributors = "danielbayley,karsa-mistmere"
1862 ))]
1863 BotMessageSquare,
1864 #[cfg(any(feature = "development", feature = "social"))]
1865 #[strum(props(
1866 svg = "<path d=\"M13.67 8H18a2 2 0 0 1 2 2v4.33\"></path><path d=\"M2 14h2\"></path><path d=\"M20 14h2\"></path><path d=\"M22 22 2 2\"></path><path d=\"M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.41-.586\"></path><path d=\"M9 13v2\"></path><path d=\"M9.67 4H12v2.33\"></path>",
1867 categories = "development,social",
1868 tags = "robot,ai,chat,assistant",
1869 contributors = "taichimaeda,ericfennis"
1870 ))]
1871 BotOff,
1872 #[cfg(any(feature = "development", feature = "social"))]
1873 #[strum(props(
1874 svg = "<path d=\"M12 8V4H8\"></path><rect height=\"12\" rx=\"2\" width=\"16\" x=\"4\" y=\"8\"></rect><path d=\"M2 14h2\"></path><path d=\"M20 14h2\"></path><path d=\"M15 13v2\"></path><path d=\"M9 13v2\"></path>",
1875 categories = "development,social",
1876 tags = "robot,ai,chat,assistant",
1877 contributors = "ericfennis"
1878 ))]
1879 Bot,
1880 #[cfg(feature = "food_beverage")]
1881 #[strum(props(
1882 svg = "<path d=\"M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z\"></path><path d=\"M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4\"></path>",
1883 categories = "food-beverage",
1884 tags = "alcohol,drink,glass,goblet,chalice,vineyard,winery,red,white,rose,dry,sparkling,bar,party,nightclub,nightlife,sommelier,restaurant,dinner,meal",
1885 contributors = "jamiemlaw"
1886 ))]
1887 BottleWine,
1888 #[cfg(any(feature = "gaming", feature = "tools"))]
1889 #[strum(props(
1890 svg = "<path d=\"M17 3h4v4\"></path><path d=\"M18.57 11.08a13 13 0 0 1 1.04 9.02 1.17 1.17 0 0 1-1.91.597L14 17\"></path><path d=\"M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05\"></path><path d=\"M7 14a1.7 1.7 0 0 0-1.20.5l-2.64 2.64A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.35L9.5 18.20A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z\"></path><path d=\"M9.70 14.29 21 3\"></path>",
1891 categories = "gaming,tools",
1892 tags = "archer,archery,game,war,weapon",
1893 contributors = "jamiemlaw"
1894 ))]
1895 BowArrow,
1896 #[cfg(any(
1897 feature = "shapes",
1898 feature = "gaming",
1899 feature = "development",
1900 feature = "math"
1901 ))]
1902 #[strum(props(
1903 svg = "<path d=\"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z\"></path><path d=\"m3.3 7 8.7 5 8.7-5\"></path><path d=\"M12 22V12\"></path>",
1904 categories = "shapes,gaming,development,math",
1905 tags = "cube,package,container,storage,geometry,3d,isometric",
1906 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
1907 ))]
1908 Box,
1909 #[cfg(any(feature = "shapes", feature = "gaming", feature = "development"))]
1910 #[strum(props(
1911 svg = "<path d=\"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z\"></path><path d=\"m7 16.5-4.74-2.85\"></path><path d=\"m7 16.5 5-3\"></path><path d=\"M7 16.5v5.17\"></path><path d=\"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z\"></path><path d=\"m17 16.5-5-3\"></path><path d=\"m17 16.5 4.74-2.85\"></path><path d=\"M17 16.5v5.17\"></path><path d=\"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z\"></path><path d=\"M12 8 7.26 5.15\"></path><path d=\"m12 8 4.74-2.85\"></path><path d=\"M12 13.5V8\"></path>",
1912 categories = "shapes,gaming,development",
1913 tags = "cubes,packages,parts,group,units,collection,cluster,geometry",
1914 contributors = "karsa-mistmere"
1915 ))]
1916 Boxes,
1917 #[cfg(any(feature = "development", feature = "files"))]
1918 #[strum(props(
1919 svg = "<path d=\"M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1\"></path><path d=\"M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1\"></path>",
1920 categories = "development,files",
1921 tags = "json,code,token,curly brackets,data,{,}",
1922 contributors = "danielbayley,karsa-mistmere"
1923 ))]
1924 Braces,
1925 #[cfg(any(feature = "development", feature = "files"))]
1926 #[strum(props(
1927 svg = "<path d=\"M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3\"></path><path d=\"M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3\"></path>",
1928 categories = "development,files",
1929 tags = "code,token,array,list,square,[,]",
1930 contributors = "danielbayley,karsa-mistmere,jguddas"
1931 ))]
1932 Brackets,
1933 #[cfg(any(feature = "science", feature = "development"))]
1934 #[strum(props(
1935 svg = "<path d=\"M12 5a3 3 0 1 0-5.99.125 4 4 0 0 0-2.52 5.77 4 4 0 0 0 .556 6.58A4 4 0 1 0 12 18Z\"></path><path d=\"M9 13a4.5 4.5 0 0 0 3-4\"></path><path d=\"M6.00 5.12A3 3 0 0 0 6.40 6.5\"></path><path d=\"M3.47 10.89a4 4 0 0 1 .585-.396\"></path><path d=\"M6 18a4 4 0 0 1-1.96-.516\"></path><path d=\"M12 13h4\"></path><path d=\"M12 18h6a2 2 0 0 1 2 2v1\"></path><path d=\"M12 8h8\"></path><path d=\"M16 8V5a2 2 0 0 1 2-2\"></path><circle cx=\"16\" cy=\"13\" r=\".5\"></circle><circle cx=\"18\" cy=\"3\" r=\".5\"></circle><circle cx=\"20\" cy=\"21\" r=\".5\"></circle><circle cx=\"20\" cy=\"8\" r=\".5\"></circle>",
1936 categories = "science,development",
1937 tags = "mind,intellect,artificial intelligence,ai,deep learning,machine learning,computing",
1938 contributors = "karsa-mistmere,jguddas,it-is-not,ericfennis"
1939 ))]
1940 BrainCircuit,
1941 #[cfg(any(feature = "science", feature = "development"))]
1942 #[strum(props(
1943 svg = "<path d=\"m10.85 14.77-.383.92\"></path><path d=\"m10.85 9.22-.383-.923\"></path><path d=\"m13.14 14.77.382.92\"></path><path d=\"m13.53 8.30-.383.92\"></path><path d=\"m14.77 10.85.923-.383\"></path><path d=\"m14.77 13.14.923.38\"></path><path d=\"M17.59 6.5A3 3 0 1 0 12 5a3 3 0 0 0-5.63-1.44 3 3 0 0 0-.368 1.57 4 4 0 0 0-2.52 5.77\"></path><path d=\"M17.99 5.12a4 4 0 0 1 2.52 5.77\"></path><path d=\"M19.50 10.29a4 4 0 0 1-1.5 7.70\"></path><path d=\"M4.03 17.48A4 4 0 0 0 11.46 20c.18-.311.89-.311 1.07 0a4 4 0 0 0 7.43-2.51\"></path><path d=\"M4.5 10.29A4 4 0 0 0 6 18\"></path><path d=\"M6.00 5.12a3 3 0 0 0 .4 1.37\"></path><path d=\"m9.22 10.85-.923-.383\"></path><path d=\"m9.22 13.14-.923.38\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle>",
1944 categories = "science,development",
1945 tags = "mind,intellect,artificial intelligence,ai,deep learning,machine learning,computing",
1946 contributors = "karsa-mistmere,jguddas,it-is-not,UsamaKhan"
1947 ))]
1948 BrainCog,
1949 #[cfg(any(feature = "medical", feature = "science"))]
1950 #[strum(props(
1951 svg = "<path d=\"M12 18V5\"></path><path d=\"M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4\"></path><path d=\"M17.59 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.59 1.5\"></path><path d=\"M17.99 5.12a4 4 0 0 1 2.52 5.77\"></path><path d=\"M18 18a4 4 0 0 0 2-7.46\"></path><path d=\"M19.96 17.48A4 4 0 1 1 12 18a4 4 0 1 1-7.96-.517\"></path><path d=\"M6 18a4 4 0 0 1-2-7.46\"></path><path d=\"M6.00 5.12a4 4 0 0 0-2.52 5.77\"></path>",
1952 categories = "medical,science",
1953 tags = "medical,mind,mental,intellect,cerebral,consciousness,genius,artificial intelligence,ai,think,thought,insight,intelligent,smart",
1954 contributors = "karsa-mistmere,jguddas,it-is-not,jamiemlaw"
1955 ))]
1956 Brain,
1957 #[cfg(any(feature = "security", feature = "home", feature = "connectivity"))]
1958 #[strum(props(
1959 svg = "<path d=\"M16 3v2.10\"></path><path d=\"M17 9c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 22 17a5 5 0 0 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C13 11.5 16 9 17 9\"></path><path d=\"M21 8.27V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.93\"></path><path d=\"M3 15h5.25\"></path><path d=\"M3 9h8.22\"></path><path d=\"M8 15v6\"></path><path d=\"M8 3v6\"></path>",
1960 categories = "security,home,connectivity",
1961 tags = "firewall,security,bricks,mortar,cement,materials,construction,builder,labourer,quantity surveyor,blocks,stone,campfire,camping,wilderness,outdoors,lit,warmth,wood,twigs,sticks",
1962 contributors = "karsa-mistmere,danielbayley"
1963 ))]
1964 BrickWallFire,
1965 #[cfg(any(feature = "security", feature = "home", feature = "connectivity"))]
1966 #[strum(props(
1967 svg = "<path d=\"M12 9v1.25\"></path><path d=\"M16 3v5.46\"></path><path d=\"M21 9.11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5.75\"></path><path d=\"M22 17.5c0 2.49-1.75 3.74-3.83 4.47a.5.5 0 0 1-.335-.005c-2.08-.72-3.83-1.97-3.83-4.47V14a.5.5 0 0 1 .5-.499c1 0 2.25-.6 3.12-1.36a.6.6 0 0 1 .76-.001c.875.76 2.12 1.36 3.12 1.36a.5.5 0 0 1 .5.5z\"></path><path d=\"M3 15h7\"></path><path d=\"M3 9h12.14\"></path><path d=\"M8 15v6\"></path><path d=\"M8 3v6\"></path>",
1968 categories = "security,home,connectivity",
1969 tags = "firewall,security,bricks,mortar,cement,materials,construction,builder,labourer,quantity surveyor,blocks,stone,cybersecurity,secure,safety,protection,guardian,armored,armoured,defense,defence,defender,block,threat,prevention,antivirus,vigilance,vigilant,detection,scan,find,strength,strong,tough,invincible,invincibility,invulnerable,undamaged,audit,admin,verification,crest,bravery,knight,foot soldier,infantry,trooper,pawn,battle,war,military,army,cadet,scout",
1970 contributors = "karsa-mistmere,danielbayley"
1971 ))]
1972 BrickWallShield,
1973 #[cfg(any(feature = "buildings", feature = "home"))]
1974 #[strum(props(
1975 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M12 9v6\"></path><path d=\"M16 15v6\"></path><path d=\"M16 3v6\"></path><path d=\"M3 15h18\"></path><path d=\"M3 9h18\"></path><path d=\"M8 15v6\"></path><path d=\"M8 3v6\"></path>",
1976 categories = "buildings,home",
1977 tags = "bricks,mortar,cement,materials,construction,builder,labourer,quantity surveyor,blocks,stone",
1978 contributors = "karsa-mistmere,danielbayley"
1979 ))]
1980 BrickWall,
1981 #[cfg(feature = "transportation")]
1982 #[strum(props(
1983 svg = "<path d=\"M12 12h.01\"></path><path d=\"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2\"></path><path d=\"M22 13a18.15 18.15 0 0 1-20 0\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"6\"></rect>",
1984 categories = "transportation",
1985 tags = "work,bag,baggage,folder,portfolio",
1986 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
1987 ))]
1988 BriefcaseBusiness,
1989 #[cfg(any(feature = "travel", feature = "transportation"))]
1990 #[strum(props(
1991 svg = "<path d=\"M10 20v2\"></path><path d=\"M14 20v2\"></path><path d=\"M18 20v2\"></path><path d=\"M21 20H3\"></path><path d=\"M6 20v2\"></path><path d=\"M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12\"></path><rect height=\"10\" rx=\"2\" width=\"16\" x=\"4\" y=\"6\"></rect>",
1992 categories = "travel,transportation",
1993 tags = "baggage,luggage,travel,suitcase,conveyor,carousel",
1994 contributors = "karsa-mistmere,jguddas"
1995 ))]
1996 BriefcaseConveyorBelt,
1997 #[cfg(any(feature = "medical", feature = "transportation"))]
1998 #[strum(props(
1999 svg = "<path d=\"M12 11v4\"></path><path d=\"M14 13h-4\"></path><path d=\"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2\"></path><path d=\"M18 6v14\"></path><path d=\"M6 6v14\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"6\"></rect>",
2000 categories = "medical,transportation",
2001 tags = "doctor,medicine,first aid",
2002 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
2003 ))]
2004 BriefcaseMedical,
2005 #[cfg(feature = "transportation")]
2006 #[strum(props(
2007 svg = "<path d=\"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"6\"></rect>",
2008 categories = "transportation",
2009 tags = "work,bag,baggage,folder",
2010 contributors = "colebemis,csandman,ericfennis"
2011 ))]
2012 Briefcase,
2013 #[cfg(any(feature = "design", feature = "layout"))]
2014 #[strum(props(
2015 svg = "<rect height=\"8\" rx=\"2\" width=\"8\" x=\"8\" y=\"8\"></rect><path d=\"M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2\"></path><path d=\"M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2\"></path>",
2016 categories = "design,layout",
2017 tags = "bring,send,move,over,forward,front,overlap,layer,order",
2018 contributors = "james-yeoman,jguddas"
2019 ))]
2020 BringToFront,
2021 #[cfg(feature = "food_beverage")]
2022 #[strum(props(
2023 svg = "<path d=\"M10 13a3 3 0 0 1-2.12-5.12\"></path><path d=\"M15.60 14.20c-3.5 1.5-5.89 4.50-8.89 7.50A1 1 0 0 1 6 22c-2 0-4-2-4-4a1 1 0 0 1 .293-.707c1.91-1.91 3.82-3.57 5.34-5.44\"></path><path d=\"M16.57 14.73A4 4 0 0 1 14 11\"></path><path d=\"M7.14 10.90a4 4 0 1 1 2.75-7.43A4 4 0 0 1 16.7 4.48a2 2 0 0 1 2.82 2.82 4 4 0 0 1 1.00 6.80A4 4 0 1 1 13 16\"></path>",
2024 categories = "food-beverage",
2025 tags = "leafy,crisp,fresh,culinary,vegetation,vegetable,food,healthy,vegan,vegetarian,nutrition,diet,plant,green,produce",
2026 contributors = "rrod497,jamiemlaw,karsa-mistmere"
2027 ))]
2028 Broccoli,
2029 #[cfg(any(feature = "home", feature = "tools", feature = "design"))]
2030 #[strum(props(
2031 svg = "<path d=\"m16 22-1-4\"></path><path d=\"M19 14a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v1a1 1 0 0 0 1 1\"></path><path d=\"M19 14H5l-1.97 6.76A1 1 0 0 0 4 22h16a1 1 0 0 0 .973-1.23z\"></path><path d=\"m8 22 1-4\"></path>",
2032 categories = "home,tools,design",
2033 tags = "cleaning,utensil,housekeeping,tool,sweeping,scrubbing,hygiene,maintenance,household,cleaner,chores,equipment,sanitation,bristles,handle,home care,sanitize,purify,wash,disinfect,sterilize,scrub,polish,decontaminate,wipe,spotless,remove,empty,erase,purge,eliminate",
2034 contributors = "karsa-mistmere,jguddas"
2035 ))]
2036 BrushCleaning,
2037 #[cfg(any(feature = "text", feature = "design", feature = "tools"))]
2038 #[strum(props(
2039 svg = "<path d=\"m11 10 3 3\"></path><path d=\"M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.79A1 1 0 0 0 3 21z\"></path><path d=\"M9.96 17.03 21.37 5.62a1 1 0 0 0-3.00-3.00L6.96 14.03\"></path>",
2040 categories = "text,design,tools",
2041 tags = "clean,sweep,refactor,remove,draw,paint,color,artist",
2042 contributors = "ericfennis,chessurisme,jguddas,karsa-mistmere"
2043 ))]
2044 Brush,
2045 #[cfg(feature = "weather")]
2046 #[strum(props(
2047 svg = "<path d=\"M7.00 15.08A1.5 1.5 0 0 1 9 16.5\"></path><circle cx=\"18.5\" cy=\"8.5\" r=\"3.5\"></circle><circle cx=\"7.5\" cy=\"16.5\" r=\"5.5\"></circle><circle cx=\"7.5\" cy=\"4.5\" r=\"2.5\"></circle>",
2048 categories = "weather",
2049 tags = "water,cleaning,soap,bath,hygiene,freshness,wash,foam,cleanliness,shampoo,purity,splash,lightness,airy,relaxation,spa,bubbly,fluid,floating,drop",
2050 contributors = "vqh2602,jguddas,karsa-mistmere"
2051 ))]
2052 Bubbles,
2053 #[cfg(any(feature = "development", feature = "animals"))]
2054 #[strum(props(
2055 svg = "<path d=\"M12 20v-8\"></path><path d=\"M12.65 7H14a4 4 0 0 1 4 4v1.34\"></path><path d=\"M14.12 3.88 16 2\"></path><path d=\"M17.12 17.12A6 6 0 0 1 6 14v-3a4 4 0 0 1 1.72-3.28\"></path><path d=\"m2 2 20 20\"></path><path d=\"M21 5a4 4 0 0 1-3.55 3.97\"></path><path d=\"M22 13h-3.34\"></path><path d=\"M3 21a4 4 0 0 1 3.81-4\"></path><path d=\"M3 5a4 4 0 0 0 3.55 3.97\"></path><path d=\"M6 13H2\"></path><path d=\"m8 2 1.88 1.88\"></path><path d=\"M9.71 4.06A3 3 0 0 1 15 6v1.13\"></path>",
2056 categories = "development,animals",
2057 tags = "issue,fixed,resolved,testing,debug,code,insect,kill,exterminate,pest control",
2058 contributors = "danielbayley,jamiemlaw,jguddas"
2059 ))]
2060 BugOff,
2061 #[cfg(any(feature = "development", feature = "animals"))]
2062 #[strum(props(
2063 svg = "<path d=\"M10 19.65A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97\"></path><path d=\"M14 15.00a1 1 0 0 1 1.51-.859l4.99 2.99a1 1 0 0 1 0 1.71l-4.99 2.99a1 1 0 0 1-1.51-.86z\"></path><path d=\"M14.12 3.88 16 2\"></path><path d=\"M21 5a4 4 0 0 1-3.55 3.97\"></path><path d=\"M3 21a4 4 0 0 1 3.81-4\"></path><path d=\"M3 5a4 4 0 0 0 3.55 3.97\"></path><path d=\"M6 13H2\"></path><path d=\"m8 2 1.88 1.88\"></path><path d=\"M9 7.13V6a3 3 0 1 1 6 0v1.13\"></path>",
2064 categories = "development,animals",
2065 tags = "issue,testing,debug,reproduce,code,insect",
2066 contributors = "danielbayley,jguddas,karsa-mistmere,jamiemlaw"
2067 ))]
2068 BugPlay,
2069 #[cfg(any(feature = "development", feature = "animals"))]
2070 #[strum(props(
2071 svg = "<path d=\"M12 20v-9\"></path><path d=\"M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z\"></path><path d=\"M14.12 3.88 16 2\"></path><path d=\"M21 21a4 4 0 0 0-3.81-4\"></path><path d=\"M21 5a4 4 0 0 1-3.55 3.97\"></path><path d=\"M22 13h-4\"></path><path d=\"M3 21a4 4 0 0 1 3.81-4\"></path><path d=\"M3 5a4 4 0 0 0 3.55 3.97\"></path><path d=\"M6 13H2\"></path><path d=\"m8 2 1.88 1.88\"></path><path d=\"M9 7.13V6a3 3 0 1 1 6 0v1.13\"></path>",
2072 categories = "development,animals",
2073 tags = "issue,error,defect,testing,troubleshoot,problem,report,debug,code,insect,beetle",
2074 contributors = "danielbayley,jamiemlaw"
2075 ))]
2076 Bug,
2077 #[cfg(any(feature = "account", feature = "buildings"))]
2078 #[strum(props(
2079 svg = "<path d=\"M10 12h4\"></path><path d=\"M10 8h4\"></path><path d=\"M14 21v-3a2 2 0 0 0-4 0v3\"></path><path d=\"M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2\"></path><path d=\"M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16\"></path>",
2080 categories = "account,buildings",
2081 tags = "business,company,enterprise,skyscraper,organisation,organization,city",
2082 contributors = "maxim-s-barabash,ericfennis,karsa-mistmere,jguddas"
2083 ))]
2084 Building2,
2085 #[cfg(any(feature = "account", feature = "buildings"))]
2086 #[strum(props(
2087 svg = "<path d=\"M12 10h.01\"></path><path d=\"M12 14h.01\"></path><path d=\"M12 6h.01\"></path><path d=\"M16 10h.01\"></path><path d=\"M16 14h.01\"></path><path d=\"M16 6h.01\"></path><path d=\"M8 10h.01\"></path><path d=\"M8 14h.01\"></path><path d=\"M8 6h.01\"></path><path d=\"M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3\"></path><rect height=\"20\" rx=\"2\" width=\"16\" x=\"4\" y=\"2\"></rect>",
2088 categories = "account,buildings",
2089 tags = "organisation,organization",
2090 contributors = "ericfennis"
2091 ))]
2092 Building,
2093 #[cfg(feature = "transportation")]
2094 #[strum(props(
2095 svg = "<path d=\"M4 6 2 7\"></path><path d=\"M10 6h4\"></path><path d=\"m22 7-2-1\"></path><rect height=\"16\" rx=\"2\" width=\"16\" x=\"4\" y=\"3\"></rect><path d=\"M4 11h16\"></path><path d=\"M8 15h.01\"></path><path d=\"M16 15h.01\"></path><path d=\"M6 19v2\"></path><path d=\"M18 21v-2\"></path>",
2096 categories = "transportation",
2097 tags = "coach,vehicle,trip,road",
2098 contributors = "danielbayley,karsa-mistmere"
2099 ))]
2100 BusFront,
2101 #[cfg(feature = "transportation")]
2102 #[strum(props(
2103 svg = "<path d=\"M8 6v6\"></path><path d=\"M15 6v6\"></path><path d=\"M2 12h19.6\"></path><path d=\"M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3\"></path><circle cx=\"7\" cy=\"18\" r=\"2\"></circle><path d=\"M9 18h5\"></path><circle cx=\"16\" cy=\"18\" r=\"2\"></circle>",
2104 categories = "transportation",
2105 tags = "bus,vehicle,transport,trip",
2106 contributors = "ahtohbi4,ericfennis,Andreto,karsa-mistmere"
2107 ))]
2108 Bus,
2109 #[cfg(any(feature = "transportation", feature = "travel"))]
2110 #[strum(props(
2111 svg = "<path d=\"M10 3h.01\"></path><path d=\"M14 2h.01\"></path><path d=\"m2 9 20-5\"></path><path d=\"M12 12V6.5\"></path><rect height=\"10\" rx=\"3\" width=\"16\" x=\"4\" y=\"12\"></rect><path d=\"M9 12v5\"></path><path d=\"M15 12v5\"></path><path d=\"M4 17h16\"></path>",
2112 categories = "transportation,travel",
2113 tags = "ski lift,winter holiday,alpine,resort,mountains",
2114 contributors = "danielbayley"
2115 ))]
2116 CableCar,
2117 #[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
2118 #[strum(props(
2119 svg = "<path d=\"M17 19a1 1 0 0 1-1-1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1z\"></path><path d=\"M17 21v-2\"></path><path d=\"M19 14V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V10\"></path><path d=\"M21 21v-2\"></path><path d=\"M3 5V3\"></path><path d=\"M4 10a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2z\"></path><path d=\"M7 5V3\"></path>",
2120 categories = "connectivity,devices,multimedia",
2121 tags = "cord,wire,connector,connection,link,signal,console,computer,equipment,electricity,energy,electronics,recharging,charger,power,supply,disconnected,unplugged,plugs,interface,input,output,audio video,av,rca,scart,tv,television,optical",
2122 contributors = "danielbayley,jguddas"
2123 ))]
2124 Cable,
2125 #[cfg(any(feature = "food_beverage", feature = "social"))]
2126 #[strum(props(
2127 svg = "<path d=\"M16 13H3\"></path><path d=\"M16 17H3\"></path><path d=\"m7.2 7.9-3.38 2.5A2 2 0 0 0 3 12.01V20a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-8.65c0-2-2.44-6.02-6.44-8.02a1 1 0 0 0-1.08.057L10.4 5.6\"></path><circle cx=\"9\" cy=\"7\" r=\"2\"></circle>",
2128 categories = "food-beverage,social",
2129 tags = "birthday,birthdate,celebration,party,surprise,gateaux,dessert,candles,wish,fondant,icing sugar,sweet,baking",
2130 contributors = "danielbayley,jguddas"
2131 ))]
2132 CakeSlice,
2133 #[cfg(any(feature = "food_beverage", feature = "social", feature = "account"))]
2134 #[strum(props(
2135 svg = "<path d=\"M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8\"></path><path d=\"M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1\"></path><path d=\"M2 21h20\"></path><path d=\"M7 8v3\"></path><path d=\"M12 8v3\"></path><path d=\"M17 8v3\"></path><path d=\"M7 4h.01\"></path><path d=\"M12 4h.01\"></path><path d=\"M17 4h.01\"></path>",
2136 categories = "food-beverage,social,account",
2137 tags = "birthday,birthdate,celebration,party,surprise,gateaux,dessert,fondant,icing sugar,sweet,baking",
2138 contributors = "karsa-mistmere,jguddas"
2139 ))]
2140 Cake,
2141 #[cfg(any(feature = "math", feature = "devices"))]
2142 #[strum(props(
2143 svg = "<rect height=\"20\" rx=\"2\" width=\"16\" x=\"4\" y=\"2\"></rect><line x1=\"8\" x2=\"16\" y1=\"6\" y2=\"6\"></line><line x1=\"16\" x2=\"16\" y1=\"14\" y2=\"18\"></line><path d=\"M16 10h.01\"></path><path d=\"M12 10h.01\"></path><path d=\"M8 10h.01\"></path><path d=\"M12 14h.01\"></path><path d=\"M8 14h.01\"></path><path d=\"M12 18h.01\"></path><path d=\"M8 18h.01\"></path>",
2144 categories = "math,devices",
2145 tags = "count,calculating machine",
2146 contributors = "ericfennis,csandman"
2147 ))]
2148 Calculator,
2149 #[cfg(feature = "time")]
2150 #[strum(props(
2151 svg = "<path d=\"M11 14h1v4\"></path><path d=\"M16 2v4\"></path><path d=\"M3 10h18\"></path><path d=\"M8 2v4\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect>",
2152 categories = "time",
2153 tags = "date,month,year,event,single,singular,once,1,first",
2154 contributors = "colebemis,ericfennis,peteruithoven"
2155 ))]
2156 Calendar1,
2157 #[cfg(feature = "time")]
2158 #[strum(props(
2159 svg = "<path d=\"m14 18 4 4 4-4\"></path><path d=\"M16 2v4\"></path><path d=\"M18 14v8\"></path><path d=\"M21 11.35V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.34\"></path><path d=\"M3 10h18\"></path><path d=\"M8 2v4\"></path>",
2160 categories = "time",
2161 tags = "date,month,year,event,sort,order,ascending,descending,increasing,decreasing,rising,falling",
2162 contributors = "karsa-mistmere,colebemis,ericfennis"
2163 ))]
2164 CalendarArrowDown,
2165 #[cfg(feature = "time")]
2166 #[strum(props(
2167 svg = "<path d=\"m14 18 4-4 4 4\"></path><path d=\"M16 2v4\"></path><path d=\"M18 22v-8\"></path><path d=\"M21 11.34V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9\"></path><path d=\"M3 10h18\"></path><path d=\"M8 2v4\"></path>",
2168 categories = "time",
2169 tags = "date,month,year,event,sort,order,ascending,descending,increasing,decreasing,rising,falling",
2170 contributors = "karsa-mistmere,colebemis,ericfennis"
2171 ))]
2172 CalendarArrowUp,
2173 #[cfg(feature = "time")]
2174 #[strum(props(
2175 svg = "<path d=\"M8 2v4\"></path><path d=\"M16 2v4\"></path><path d=\"M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8\"></path><path d=\"M3 10h18\"></path><path d=\"m16 20 2 2 4-4\"></path>",
2176 categories = "time",
2177 tags = "date,day,month,year,event,confirm,subscribe,schedule,done,todo,tick,complete,task",
2178 contributors = "karsa-mistmere,ericfennis"
2179 ))]
2180 CalendarCheck2,
2181 #[cfg(feature = "time")]
2182 #[strum(props(
2183 svg = "<path d=\"M8 2v4\"></path><path d=\"M16 2v4\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect><path d=\"M3 10h18\"></path><path d=\"m9 16 2 2 4-4\"></path>",
2184 categories = "time",
2185 tags = "date,day,month,year,event,confirm,subscribe,schedule,done,todo,tick,complete,task",
2186 contributors = "karsa-mistmere,ericfennis"
2187 ))]
2188 CalendarCheck,
2189 #[cfg(feature = "time")]
2190 #[strum(props(
2191 svg = "<path d=\"M16 14v2.2l1.6 1\"></path><path d=\"M16 2v4\"></path><path d=\"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5\"></path><path d=\"M3 10h5\"></path><path d=\"M8 2v4\"></path><circle cx=\"16\" cy=\"16\" r=\"6\"></circle>",
2192 categories = "time",
2193 tags = "date,day,month,year,event,clock,hour",
2194 contributors = "karsa-mistmere,ericfennis,jamiemlaw"
2195 ))]
2196 CalendarClock,
2197 #[cfg(feature = "time")]
2198 #[strum(props(
2199 svg = "<path d=\"m15.22 16.85-.923-.383\"></path><path d=\"m15.22 19.14-.923.38\"></path><path d=\"M16 2v4\"></path><path d=\"m16.47 14.30.382.92\"></path><path d=\"m16.85 20.77-.383.92\"></path><path d=\"m19.14 15.22.383-.923\"></path><path d=\"m19.53 21.69-.382-.924\"></path><path d=\"m20.77 16.85.924-.383\"></path><path d=\"m20.77 19.14.924.38\"></path><path d=\"M21 10.59V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6\"></path><path d=\"M3 10h18\"></path><path d=\"M8 2v4\"></path><circle cx=\"18\" cy=\"18\" r=\"3\"></circle>",
2200 categories = "time",
2201 tags = "date,day,month,year,events,settings,gear,cog",
2202 contributors = "karsa-mistmere,ericfennis,AlexandrePhilibert,UsamaKhan,jguddas"
2203 ))]
2204 CalendarCog,
2205 #[cfg(feature = "time")]
2206 #[strum(props(
2207 svg = "<path d=\"M8 2v4\"></path><path d=\"M16 2v4\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect><path d=\"M3 10h18\"></path><path d=\"M8 14h.01\"></path><path d=\"M12 14h.01\"></path><path d=\"M16 14h.01\"></path><path d=\"M8 18h.01\"></path><path d=\"M12 18h.01\"></path><path d=\"M16 18h.01\"></path>",
2208 categories = "time",
2209 tags = "date,month,year,event",
2210 contributors = "karsa-mistmere,ericfennis"
2211 ))]
2212 CalendarDays,
2213 #[cfg(any(feature = "time", feature = "files"))]
2214 #[strum(props(
2215 svg = "<path d=\"M3 20a2 2 0 0 0 2 2h10a2.4 2.4 0 0 0 1.70-.706l3.58-3.58A2.4 2.4 0 0 0 21 16V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z\"></path><path d=\"M15 22v-5a1 1 0 0 1 1-1h5\"></path><path d=\"M8 2v4\"></path><path d=\"M16 2v4\"></path><path d=\"M3 10h18\"></path>",
2216 categories = "time,files",
2217 tags = "date,month,year,event,birthday,birthdate,ics",
2218 contributors = "danielbayley"
2219 ))]
2220 CalendarFold,
2221 #[cfg(feature = "time")]
2222 #[strum(props(
2223 svg = "<path d=\"M12.12 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.12\"></path><path d=\"M14.62 18.8A2.25 2.25 0 1 1 18 15.83a2.25 2.25 0 1 1 3.38 2.96l-2.62 2.85a.998.99 0 0 1-1.50 0z\"></path><path d=\"M16 2v4\"></path><path d=\"M3 10h18\"></path><path d=\"M8 2v4\"></path>",
2224 categories = "time",
2225 tags = "date,month,year,event,heart,favourite,subscribe,valentines day",
2226 contributors = "karsa-mistmere"
2227 ))]
2228 CalendarHeart,
2229 #[cfg(feature = "time")]
2230 #[strum(props(
2231 svg = "<path d=\"M8 2v4\"></path><path d=\"M16 2v4\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect><path d=\"M3 10h18\"></path><path d=\"M10 16h4\"></path>",
2232 categories = "time",
2233 tags = "date,day,month,year,event,delete,remove",
2234 contributors = "danielbayley"
2235 ))]
2236 CalendarMinus2,
2237 #[cfg(feature = "time")]
2238 #[strum(props(
2239 svg = "<path d=\"M16 19h6\"></path><path d=\"M16 2v4\"></path><path d=\"M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5\"></path><path d=\"M3 10h18\"></path><path d=\"M8 2v4\"></path>",
2240 categories = "time",
2241 tags = "date,day,month,year,event,delete,remove",
2242 contributors = "karsa-mistmere,ericfennis,jguddas"
2243 ))]
2244 CalendarMinus,
2245 #[cfg(feature = "time")]
2246 #[strum(props(
2247 svg = "<path d=\"M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18\"></path><path d=\"M21 15.5V6a2 2 0 0 0-2-2H9.5\"></path><path d=\"M16 2v4\"></path><path d=\"M3 10h7\"></path><path d=\"M21 10h-5.5\"></path><path d=\"m2 2 20 20\"></path>",
2248 categories = "time",
2249 tags = "date,day,month,year,event,delete,remove",
2250 contributors = "karsa-mistmere,ericfennis"
2251 ))]
2252 CalendarOff,
2253 #[cfg(feature = "time")]
2254 #[strum(props(
2255 svg = "<path d=\"M8 2v4\"></path><path d=\"M16 2v4\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect><path d=\"M3 10h18\"></path><path d=\"M10 16h4\"></path><path d=\"M12 14v4\"></path>",
2256 categories = "time",
2257 tags = "date,day,month,year,event,add,subscribe,create,new",
2258 contributors = "danielbayley"
2259 ))]
2260 CalendarPlus2,
2261 #[cfg(feature = "time")]
2262 #[strum(props(
2263 svg = "<path d=\"M16 19h6\"></path><path d=\"M16 2v4\"></path><path d=\"M19 16v6\"></path><path d=\"M21 12.59V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5\"></path><path d=\"M3 10h18\"></path><path d=\"M8 2v4\"></path>",
2264 categories = "time",
2265 tags = "date,day,month,year,event,add,subscribe,create,new",
2266 contributors = "karsa-mistmere,ericfennis,jguddas"
2267 ))]
2268 CalendarPlus,
2269 #[cfg(feature = "time")]
2270 #[strum(props(
2271 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect><path d=\"M16 2v4\"></path><path d=\"M3 10h18\"></path><path d=\"M8 2v4\"></path><path d=\"M17 14h-6\"></path><path d=\"M13 18H7\"></path><path d=\"M7 14h.01\"></path><path d=\"M17 18h.01\"></path>",
2272 categories = "time",
2273 tags = "date,day,month,year,event,range,period",
2274 contributors = "karsa-mistmere,ericfennis"
2275 ))]
2276 CalendarRange,
2277 #[cfg(feature = "time")]
2278 #[strum(props(
2279 svg = "<path d=\"M16 2v4\"></path><path d=\"M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25\"></path><path d=\"m22 22-1.87-1.87\"></path><path d=\"M3 10h18\"></path><path d=\"M8 2v4\"></path><circle cx=\"18\" cy=\"18\" r=\"3\"></circle>",
2280 categories = "time",
2281 tags = "date,day,month,year,events,search,lens",
2282 contributors = "karsa-mistmere,ericfennis,jguddas"
2283 ))]
2284 CalendarSearch,
2285 #[cfg(any(feature = "arrows", feature = "time"))]
2286 #[strum(props(
2287 svg = "<path d=\"M11 10v4h4\"></path><path d=\"m11 14 1.53-1.60a5 5 0 0 1 8 1.5\"></path><path d=\"M16 2v4\"></path><path d=\"m21 18-1.53 1.60a5 5 0 0 1-8-1.5\"></path><path d=\"M21 22v-4h-4\"></path><path d=\"M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3\"></path><path d=\"M3 10h4\"></path><path d=\"M8 2v4\"></path>",
2288 categories = "arrows,time",
2289 tags = "repeat,refresh,reconnect,transfer,backup,date,month,year,event,subscribe,recurring,schedule,reminder,automatic,auto",
2290 contributors = "danielbayley,jguddas,karsa-mistmere,chessurisme"
2291 ))]
2292 CalendarSync,
2293 #[cfg(feature = "time")]
2294 #[strum(props(
2295 svg = "<path d=\"M8 2v4\"></path><path d=\"M16 2v4\"></path><path d=\"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8\"></path><path d=\"M3 10h18\"></path><path d=\"m17 22 5-5\"></path><path d=\"m17 17 5 5\"></path>",
2296 categories = "time",
2297 tags = "date,day,month,year,event,remove",
2298 contributors = "karsa-mistmere,ericfennis"
2299 ))]
2300 CalendarX2,
2301 #[cfg(feature = "time")]
2302 #[strum(props(
2303 svg = "<path d=\"M8 2v4\"></path><path d=\"M16 2v4\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect><path d=\"M3 10h18\"></path><path d=\"m14 14-4 4\"></path><path d=\"m10 14 4 4\"></path>",
2304 categories = "time",
2305 tags = "date,day,month,year,event,remove,busy",
2306 contributors = "karsa-mistmere,ericfennis"
2307 ))]
2308 CalendarX,
2309 #[cfg(feature = "time")]
2310 #[strum(props(
2311 svg = "<path d=\"M8 2v4\"></path><path d=\"M16 2v4\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect><path d=\"M3 10h18\"></path>",
2312 categories = "time",
2313 tags = "date,month,year,event,birthday,birthdate",
2314 contributors = "colebemis,ericfennis"
2315 ))]
2316 Calendar,
2317 #[cfg(feature = "time")]
2318 #[strum(props(
2319 svg = "<path d=\"M12 2v2\"></path><path d=\"M15.72 21.01A2 2 0 0 1 14 22H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2\"></path><path d=\"M18 2v2\"></path><path d=\"M2 13h2\"></path><path d=\"M8 8h14\"></path><rect height=\"14\" rx=\"2\" width=\"14\" x=\"8\" y=\"3\"></rect>",
2320 categories = "time",
2321 tags = "date,month,year,event,dates,months,years,events",
2322 contributors = "colebemis,ericfennis,jguddas,karsa-mistmere"
2323 ))]
2324 Calendars,
2325 #[cfg(any(
2326 feature = "photography",
2327 feature = "devices",
2328 feature = "communication"
2329 ))]
2330 #[strum(props(
2331 svg = "<path d=\"M14.56 14.55a3 3 0 1 1-4.12-4.12\"></path><path d=\"m2 2 20 20\"></path><path d=\"M20 20H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.99a2 2 0 0 0 .819-.175\"></path><path d=\"M9.69 4.02A2 2 0 0 1 10.00 4h3.99a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.00 7H20a2 2 0 0 1 2 2v7.34\"></path>",
2332 categories = "photography,devices,communication",
2333 tags = "photo,webcam,video",
2334 contributors = "colebemis,lscheibel,Andreto,ericfennis,karsa-mistmere"
2335 ))]
2336 CameraOff,
2337 #[cfg(any(
2338 feature = "photography",
2339 feature = "devices",
2340 feature = "communication"
2341 ))]
2342 #[strum(props(
2343 svg = "<path d=\"M13.99 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.00 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.99a2 2 0 0 0 1.75-1.04l.489-.904A2 2 0 0 1 10.00 4z\"></path><circle cx=\"12\" cy=\"13\" r=\"3\"></circle>",
2344 categories = "photography,devices,communication",
2345 tags = "photography,lens,focus,capture,shot,visual,image,device,equipment,photo,webcam,video",
2346 contributors = "colebemis,lscheibel,ericfennis,karsa-mistmere"
2347 ))]
2348 Camera,
2349 #[cfg(feature = "food_beverage")]
2350 #[strum(props(
2351 svg = "<path d=\"m10.8 5 2.11 4.22\"></path><path d=\"M17.75 7 15 2.1\"></path><path d=\"m4.87 14.64 2.12 4.24\"></path><path d=\"M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.46-2 2 2 0 1 0-3.46-2z\"></path><path d=\"m7.90 9.71 2.00 4.41\"></path>",
2352 categories = "food-beverage",
2353 tags = "sugar,food,sweet,christmas,xmas",
2354 contributors = "danielbayley,karsa-mistmere,jguddas"
2355 ))]
2356 CandyCane,
2357 #[cfg(feature = "food_beverage")]
2358 #[strum(props(
2359 svg = "<path d=\"M10 10v7.9\"></path><path d=\"M11.80 6.14a5 5 0 0 1 6.05 6.05\"></path><path d=\"M14 6.1v2.24\"></path><path d=\"m15.5 15.57-.964.96a5 5 0 0 1-7.07 0 5 5 0 0 1 0-7.07l.964-.965\"></path><path d=\"M16 7V3a1 1 0 0 1 1.70-.707 2.5 2.5 0 0 0 2.15.717 1 1 0 0 1 1.13 1.13 2.5 2.5 0 0 0 .717 2.15A1 1 0 0 1 21 8h-4\"></path><path d=\"m2 2 20 20\"></path><path d=\"M8 17v4a1 1 0 0 1-1.70.707 2.5 2.5 0 0 0-2.15-.717 1 1 0 0 1-1.13-1.13 2.5 2.5 0 0 0-.717-2.15A1 1 0 0 1 3 16h4\"></path>",
2360 categories = "food-beverage",
2361 tags = "sugar free,food,sweet,allergy,intolerance,diet",
2362 contributors = "karsa-mistmere,ericfennis"
2363 ))]
2364 CandyOff,
2365 #[cfg(feature = "food_beverage")]
2366 #[strum(props(
2367 svg = "<path d=\"M10 7v10.9\"></path><path d=\"M14 6.1V17\"></path><path d=\"M16 7V3a1 1 0 0 1 1.70-.707 2.5 2.5 0 0 0 2.15.717 1 1 0 0 1 1.13 1.13 2.5 2.5 0 0 0 .717 2.15A1 1 0 0 1 21 8h-4\"></path><path d=\"M16.53 7.46a5 5 0 0 0-7.07 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.07 0l2-2a5 5 0 0 0 0-7.07\"></path><path d=\"M8 17v4a1 1 0 0 1-1.70.707 2.5 2.5 0 0 0-2.15-.717 1 1 0 0 1-1.13-1.13 2.5 2.5 0 0 0-.717-2.15A1 1 0 0 1 3 16h4\"></path>",
2368 categories = "food-beverage",
2369 tags = "sugar,food,sweet",
2370 contributors = "karsa-mistmere"
2371 ))]
2372 Candy,
2373 #[cfg(feature = "nature")]
2374 #[strum(props(
2375 svg = "<path d=\"M12 22v-4c1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5\"></path><path d=\"M13.98 8.32C13.90 6.05 13.36 3.82 12 2a9.3 9.3 0 0 0-1.44 2.9\"></path><path d=\"M17.37 11.72C18.88 10.53 21 7.84 21 6c-2.32 0-5.08 1.29-6.66 2.68\"></path><path d=\"m2 2 20 20\"></path><path d=\"M21.02 15.37A15 15 0 0 0 22 15c-.426-1.27-2.67-2.55-4.25-2.90\"></path><path d=\"M6.99 6.99C5.71 6.4 4.29 6 3 6c0 2 2.5 5 4 6-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3\"></path>",
2376 categories = "nature",
2377 tags = "cannabis,weed,leaf",
2378 contributors = "nickveles"
2379 ))]
2380 CannabisOff,
2381 #[cfg(feature = "nature")]
2382 #[strum(props(
2383 svg = "<path d=\"M12 22v-4\"></path><path d=\"M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6\"></path>",
2384 categories = "nature",
2385 tags = "cannabis,weed,leaf",
2386 contributors = "jguddas,karsa-mistmere"
2387 ))]
2388 Cannabis,
2389 #[cfg(feature = "multimedia")]
2390 #[strum(props(
2391 svg = "<path d=\"M10.5 5H19a2 2 0 0 1 2 2v8.5\"></path><path d=\"M17 11h-.5\"></path><path d=\"M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2\"></path><path d=\"m2 2 20 20\"></path><path d=\"M7 11h4\"></path><path d=\"M7 15h2.5\"></path>",
2392 categories = "multimedia",
2393 tags = "closed captions,subtitles,subhead,transcription,transcribe,dialogue,accessibility",
2394 contributors = "DefaultLP"
2395 ))]
2396 CaptionsOff,
2397 #[cfg(feature = "multimedia")]
2398 #[strum(props(
2399 svg = "<rect height=\"14\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"5\"></rect><path d=\"M7 15h4M15 15h2M7 11h2M13 11h4\"></path>",
2400 categories = "multimedia",
2401 tags = "closed captions,subtitles,subhead,transcription,transcribe,dialogue,accessibility",
2402 contributors = "DefaultLP"
2403 ))]
2404 Captions,
2405 #[cfg(feature = "transportation")]
2406 #[strum(props(
2407 svg = "<path d=\"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.64 5H8.4a2 2 0 0 0-1.90 1.25L5 10 3 8\"></path><path d=\"M7 14h.01\"></path><path d=\"M17 14h.01\"></path><rect height=\"8\" rx=\"2\" width=\"18\" x=\"3\" y=\"10\"></rect><path d=\"M5 18v2\"></path><path d=\"M19 18v2\"></path>",
2408 categories = "transportation",
2409 tags = "vehicle,drive,trip,journey",
2410 contributors = "danielbayley,karsa-mistmere"
2411 ))]
2412 CarFront,
2413 #[cfg(feature = "transportation")]
2414 #[strum(props(
2415 svg = "<path d=\"M10 2h4\"></path><path d=\"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.64 5H8.4a2 2 0 0 0-1.90 1.25L5 10 3 8\"></path><path d=\"M7 14h.01\"></path><path d=\"M17 14h.01\"></path><rect height=\"8\" rx=\"2\" width=\"18\" x=\"3\" y=\"10\"></rect><path d=\"M5 18v2\"></path><path d=\"M19 18v2\"></path>",
2416 categories = "transportation",
2417 tags = "cab,vehicle,drive,trip,journey",
2418 contributors = "danielbayley,karsa-mistmere"
2419 ))]
2420 CarTaxiFront,
2421 #[cfg(feature = "transportation")]
2422 #[strum(props(
2423 svg = "<path d=\"M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2\"></path><circle cx=\"7\" cy=\"17\" r=\"2\"></circle><path d=\"M9 17h6\"></path><circle cx=\"17\" cy=\"17\" r=\"2\"></circle>",
2424 categories = "transportation",
2425 tags = "vehicle,drive,trip,journey",
2426 contributors = "ahtohbi4,ericfennis,Andreto"
2427 ))]
2428 Car,
2429 #[cfg(any(feature = "transportation", feature = "travel", feature = "nature"))]
2430 #[strum(props(
2431 svg = "<path d=\"M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2\"></path><path d=\"M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2\"></path><path d=\"M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9\"></path><circle cx=\"8\" cy=\"19\" r=\"2\"></circle>",
2432 categories = "transportation,travel,nature",
2433 tags = "trailer,tow,camping,campsite,mobile home,holiday,nomadic,wilderness,outdoors",
2434 contributors = "danielbayley,jguddas"
2435 ))]
2436 Caravan,
2437 #[cfg(any(
2438 feature = "connectivity",
2439 feature = "communication",
2440 feature = "multimedia",
2441 feature = "devices"
2442 ))]
2443 #[strum(props(
2444 svg = "<path d=\"M12 14v4\"></path><path d=\"M14.17 2a2 2 0 0 1 1.41.586l3.82 3.82A2 2 0 0 1 20 7.82V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z\"></path><path d=\"M8 14h8\"></path><rect height=\"8\" rx=\"1\" width=\"8\" x=\"8\" y=\"10\"></rect>",
2445 categories = "connectivity,communication,multimedia,devices",
2446 tags = "cellphone,smartphone,mobile,network,cellular,service,provider,signal,coverage,disk,data,format,storage,flash,digital,contacts,phone book,contractual,circuit board,chip",
2447 contributors = "danielbayley,karsa-mistmere"
2448 ))]
2449 CardSim,
2450 #[cfg(feature = "food_beverage")]
2451 #[strum(props(
2452 svg = "<path d=\"M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46\"></path><path d=\"M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z\"></path><path d=\"M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z\"></path>",
2453 categories = "food-beverage",
2454 tags = "vegetable,food,eat",
2455 contributors = "Andreto,mittalyashu,ericfennis"
2456 ))]
2457 Carrot,
2458 #[cfg(any(feature = "text", feature = "development"))]
2459 #[strum(props(
2460 svg = "<path d=\"M10 9v7\"></path><path d=\"M14 6v10\"></path><circle cx=\"17.5\" cy=\"12.5\" r=\"3.5\"></circle><circle cx=\"6.5\" cy=\"12.5\" r=\"3.5\"></circle>",
2461 categories = "text,development",
2462 tags = "text,letters,characters,font,typography",
2463 contributors = "danielbayley,vichotech,karsa-mistmere"
2464 ))]
2465 CaseLower,
2466 #[cfg(feature = "text")]
2467 #[strum(props(
2468 svg = "<path d=\"m2 16 4.03-9.69a.5.5 0 0 1 .923 0L11 16\"></path><path d=\"M22 9v7\"></path><path d=\"M3.30 13h6.39\"></path><circle cx=\"18.5\" cy=\"12.5\" r=\"3.5\"></circle>",
2469 categories = "text",
2470 tags = "text,letters,characters,font,typography",
2471 contributors = "danielbayley,vichotech,karsa-mistmere"
2472 ))]
2473 CaseSensitive,
2474 #[cfg(any(feature = "text", feature = "development"))]
2475 #[strum(props(
2476 svg = "<path d=\"M15 11h4.5a1 1 0 0 1 0 5h-4a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h3a1 1 0 0 1 0 5\"></path><path d=\"m2 16 4.03-9.69a.5.5 0 0 1 .923 0L11 16\"></path><path d=\"M3.30 13h6.39\"></path>",
2477 categories = "text,development",
2478 tags = "text,letters,characters,font,typography",
2479 contributors = "danielbayley,jguddas,vichotech,karsa-mistmere"
2480 ))]
2481 CaseUpper,
2482 #[cfg(any(
2483 feature = "connectivity",
2484 feature = "devices",
2485 feature = "multimedia",
2486 feature = "communication",
2487 feature = "files"
2488 ))]
2489 #[strum(props(
2490 svg = "<rect height=\"16\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect><circle cx=\"8\" cy=\"10\" r=\"2\"></circle><path d=\"M8 12h8\"></path><circle cx=\"16\" cy=\"10\" r=\"2\"></circle><path d=\"m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3\"></path>",
2491 categories = "connectivity,devices,multimedia,communication,files",
2492 tags = "audio,music,recording,play",
2493 contributors = "danielbayley"
2494 ))]
2495 CassetteTape,
2496 #[cfg(any(feature = "devices", feature = "connectivity"))]
2497 #[strum(props(
2498 svg = "<path d=\"M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6\"></path><path d=\"M2 12a9 9 0 0 1 8 8\"></path><path d=\"M2 16a5 5 0 0 1 4 4\"></path><line x1=\"2\" x2=\"2.01\" y1=\"20\" y2=\"20\"></line>",
2499 categories = "devices,connectivity",
2500 tags = "chromecast,airplay,screen",
2501 contributors = "colebemis,csandman,ericfennis"
2502 ))]
2503 Cast,
2504 #[cfg(any(feature = "buildings", feature = "gaming", feature = "navigation"))]
2505 #[strum(props(
2506 svg = "<path d=\"M10 5V3\"></path><path d=\"M14 5V3\"></path><path d=\"M15 21v-3a3 3 0 0 0-6 0v3\"></path><path d=\"M18 3v8\"></path><path d=\"M18 5H6\"></path><path d=\"M22 11H2\"></path><path d=\"M22 9v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9\"></path><path d=\"M6 3v8\"></path>",
2507 categories = "buildings,gaming,navigation",
2508 tags = "fortress,stronghold,palace,chateau,building",
2509 contributors = "karsa-mistmere"
2510 ))]
2511 Castle,
2512 #[cfg(feature = "animals")]
2513 #[strum(props(
2514 svg = "<path d=\"M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z\"></path><path d=\"M8 14v.5\"></path><path d=\"M16 14v.5\"></path><path d=\"M11.25 16.25h1.5L12 17l-.75-.75Z\"></path>",
2515 categories = "animals",
2516 tags = "animal,pet,kitten,feline",
2517 contributors = "kemie"
2518 ))]
2519 Cat,
2520 #[cfg(any(
2521 feature = "security",
2522 feature = "devices",
2523 feature = "communication",
2524 feature = "connectivity",
2525 feature = "photography"
2526 ))]
2527 #[strum(props(
2528 svg = "<path d=\"m12.30 6.65 4.79 2.40a1 1 0 0 1 .447 1.34l-.501 1.00.605.60h2.72a1 1 0 0 1 .894 1.44l-.724 1.44\"></path><path d=\"m15.16 15.16-.719 1.43a1 1 0 0 1-1.34.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.9 2.9 0 0 1 .873-1.03\"></path><path d=\"M2 19h3.76a2 2 0 0 0 1.8-1.1l1.44-2.90\"></path><path d=\"m2 2 20 20\"></path><path d=\"M2 21v-4\"></path><path d=\"M7 9h.01\"></path>",
2529 categories = "security,devices,communication,connectivity,photography",
2530 tags = "camera,surveillance,recording,film,videotape,crime,watching",
2531 contributors = "danielbayley,karsa-mistmere,rrod497"
2532 ))]
2533 CctvOff,
2534 #[cfg(any(
2535 feature = "security",
2536 feature = "devices",
2537 feature = "communication",
2538 feature = "connectivity",
2539 feature = "photography"
2540 ))]
2541 #[strum(props(
2542 svg = "<path d=\"M16.75 12h3.63a1 1 0 0 1 .894 1.44l-2.03 4.06a1 1 0 0 1-1.70.134l-2.12-2.97\"></path><path d=\"M17.10 9.05a1 1 0 0 1 .447 1.34l-3.10 6.21a1 1 0 0 1-1.34.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z\"></path><path d=\"M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15\"></path><path d=\"M2 21v-4\"></path><path d=\"M7 9h.01\"></path>",
2543 categories = "security,devices,communication,connectivity,photography",
2544 tags = "camera,surveillance,recording,film,videotape,crime,watching",
2545 contributors = "danielbayley,karsa-mistmere"
2546 ))]
2547 Cctv,
2548 #[cfg(feature = "charts")]
2549 #[strum(props(
2550 svg = "<path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><path d=\"M7 11.20a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.29 3.29a.5.5 0 0 0 .708 0l4.29-4.29a.5.5 0 0 1 .854.35V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z\"></path>",
2551 categories = "charts",
2552 tags = "statistics,analytics,diagram,graph,area",
2553 contributors = "nstokoe"
2554 ))]
2555 ChartArea,
2556 #[cfg(feature = "charts")]
2557 #[strum(props(
2558 svg = "<path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><rect height=\"4\" rx=\"1\" width=\"9\" x=\"7\" y=\"13\"></rect><rect height=\"4\" rx=\"1\" width=\"12\" x=\"7\" y=\"5\"></rect>",
2559 categories = "charts",
2560 tags = "statistics,analytics,diagram,graph",
2561 contributors = "danielbayley,karsa-mistmere"
2562 ))]
2563 ChartBarBig,
2564 #[cfg(feature = "charts")]
2565 #[strum(props(
2566 svg = "<path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><path d=\"M7 11h8\"></path><path d=\"M7 16h3\"></path><path d=\"M7 6h12\"></path>",
2567 categories = "charts",
2568 tags = "statistics,analytics,diagram,graph,trending down",
2569 contributors = "karsa-mistmere"
2570 ))]
2571 ChartBarDecreasing,
2572 #[cfg(feature = "charts")]
2573 #[strum(props(
2574 svg = "<path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><path d=\"M7 11h8\"></path><path d=\"M7 16h12\"></path><path d=\"M7 6h3\"></path>",
2575 categories = "charts",
2576 tags = "statistics,analytics,diagram,graph,trending up",
2577 contributors = "karsa-mistmere"
2578 ))]
2579 ChartBarIncreasing,
2580 #[cfg(feature = "charts")]
2581 #[strum(props(
2582 svg = "<path d=\"M11 13v4\"></path><path d=\"M15 5v4\"></path><path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><rect height=\"4\" rx=\"1\" width=\"9\" x=\"7\" y=\"13\"></rect><rect height=\"4\" rx=\"1\" width=\"12\" x=\"7\" y=\"5\"></rect>",
2583 categories = "charts",
2584 tags = "statistics,analytics,diagram,graph,multivariate,categorical,comparison",
2585 contributors = "karsa-mistmere,danielbayley"
2586 ))]
2587 ChartBarStacked,
2588 #[cfg(feature = "charts")]
2589 #[strum(props(
2590 svg = "<path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><path d=\"M7 16h8\"></path><path d=\"M7 11h12\"></path><path d=\"M7 6h3\"></path>",
2591 categories = "charts",
2592 tags = "statistics,analytics,diagram,graph",
2593 contributors = "karsa-mistmere,danielbayley"
2594 ))]
2595 ChartBar,
2596 #[cfg(any(feature = "charts", feature = "finance"))]
2597 #[strum(props(
2598 svg = "<path d=\"M9 5v4\"></path><rect height=\"6\" rx=\"1\" width=\"4\" x=\"7\" y=\"9\"></rect><path d=\"M9 15v2\"></path><path d=\"M17 3v2\"></path><rect height=\"8\" rx=\"1\" width=\"4\" x=\"15\" y=\"5\"></rect><path d=\"M17 13v3\"></path><path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path>",
2599 categories = "charts,finance",
2600 tags = "trading,trader,financial,markets,portfolio,assets,prices,value,valuation,commodities,currencies,currency,stocks,exchange,hedge fund,statistics,analytics,diagram,graph",
2601 contributors = "danielbayley"
2602 ))]
2603 ChartCandlestick,
2604 #[cfg(feature = "charts")]
2605 #[strum(props(
2606 svg = "<path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><rect height=\"12\" rx=\"1\" width=\"4\" x=\"15\" y=\"5\"></rect><rect height=\"9\" rx=\"1\" width=\"4\" x=\"7\" y=\"8\"></rect>",
2607 categories = "charts",
2608 tags = "statistics,analytics,diagram,graph",
2609 contributors = "danielbayley,karsa-mistmere"
2610 ))]
2611 ChartColumnBig,
2612 #[cfg(feature = "charts")]
2613 #[strum(props(
2614 svg = "<path d=\"M13 17V9\"></path><path d=\"M18 17v-3\"></path><path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><path d=\"M8 17V5\"></path>",
2615 categories = "charts",
2616 tags = "statistics,analytics,diagram,graph,trending down",
2617 contributors = "karsa-mistmere"
2618 ))]
2619 ChartColumnDecreasing,
2620 #[cfg(feature = "charts")]
2621 #[strum(props(
2622 svg = "<path d=\"M13 17V9\"></path><path d=\"M18 17V5\"></path><path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><path d=\"M8 17v-3\"></path>",
2623 categories = "charts",
2624 tags = "statistics,analytics,diagram,graph,trending up",
2625 contributors = "karsa-mistmere,danielbayley"
2626 ))]
2627 ChartColumnIncreasing,
2628 #[cfg(feature = "charts")]
2629 #[strum(props(
2630 svg = "<path d=\"M11 13H7\"></path><path d=\"M19 9h-4\"></path><path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><rect height=\"12\" rx=\"1\" width=\"4\" x=\"15\" y=\"5\"></rect><rect height=\"9\" rx=\"1\" width=\"4\" x=\"7\" y=\"8\"></rect>",
2631 categories = "charts",
2632 tags = "statistics,analytics,diagram,graph,multivariate,categorical,comparison",
2633 contributors = "karsa-mistmere,danielbayley"
2634 ))]
2635 ChartColumnStacked,
2636 #[cfg(feature = "charts")]
2637 #[strum(props(
2638 svg = "<path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><path d=\"M18 17V9\"></path><path d=\"M13 17V5\"></path><path d=\"M8 17v-3\"></path>",
2639 categories = "charts",
2640 tags = "statistics,analytics,diagram,graph",
2641 contributors = "karsa-mistmere,danielbayley"
2642 ))]
2643 ChartColumn,
2644 #[cfg(feature = "charts")]
2645 #[strum(props(
2646 svg = "<path d=\"M10 6h8\"></path><path d=\"M12 16h6\"></path><path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><path d=\"M8 11h7\"></path>",
2647 categories = "charts",
2648 tags = "diagram,graph,timeline,planning",
2649 contributors = "karsa-mistmere,danielbayley,jguddas"
2650 ))]
2651 ChartGantt,
2652 #[cfg(feature = "charts")]
2653 #[strum(props(
2654 svg = "<path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><path d=\"m19 9-5 5-4-4-3 3\"></path>",
2655 categories = "charts",
2656 tags = "statistics,analytics,diagram,graph",
2657 contributors = "karsa-mistmere"
2658 ))]
2659 ChartLine,
2660 #[cfg(feature = "charts")]
2661 #[strum(props(
2662 svg = "<path d=\"m13.11 7.66 1.78 2.67\"></path><path d=\"m14.16 12.78-3.32 1.42\"></path><path d=\"m20 4-6.06 1.51\"></path><path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><circle cx=\"12\" cy=\"6\" r=\"2\"></circle><circle cx=\"16\" cy=\"12\" r=\"2\"></circle><circle cx=\"9\" cy=\"15\" r=\"2\"></circle>",
2663 categories = "charts",
2664 tags = "statistics,analytics,diagram,graph,topology,cluster,web,nodes,connections,edges",
2665 contributors = "karsa-mistmere"
2666 ))]
2667 ChartNetwork,
2668 #[cfg(feature = "charts")]
2669 #[strum(props(
2670 svg = "<path d=\"M5 21V3\"></path><path d=\"M12 21V9\"></path><path d=\"M19 21v-6\"></path>",
2671 categories = "charts",
2672 tags = "statistics,analytics,diagram,graph,trending down",
2673 contributors = "karsa-mistmere"
2674 ))]
2675 ChartNoAxesColumnDecreasing,
2676 #[cfg(feature = "charts")]
2677 #[strum(props(
2678 svg = "<path d=\"M5 21v-6\"></path><path d=\"M12 21V9\"></path><path d=\"M19 21V3\"></path>",
2679 categories = "charts",
2680 tags = "statistics,analytics,diagram,graph,trending up",
2681 contributors = "colebemis,ericfennis,karsa-mistmere"
2682 ))]
2683 ChartNoAxesColumnIncreasing,
2684 #[cfg(feature = "charts")]
2685 #[strum(props(
2686 svg = "<path d=\"M5 21v-6\"></path><path d=\"M12 21V3\"></path><path d=\"M19 21V9\"></path>",
2687 categories = "charts",
2688 tags = "statistics,analytics,diagram,graph",
2689 contributors = "colebemis,ericfennis,karsa-mistmere"
2690 ))]
2691 ChartNoAxesColumn,
2692 #[cfg(feature = "charts")]
2693 #[strum(props(
2694 svg = "<path d=\"M12 16v5\"></path><path d=\"M16 14.63V21\"></path><path d=\"M20 10.65V21\"></path><path d=\"m22 3-8.64 8.64a.5.5 0 0 1-.708 0L9.35 8.35a.5.5 0 0 0-.707 0L2 15\"></path><path d=\"M4 18.46V21\"></path><path d=\"M8 14.65V21\"></path>",
2695 categories = "charts",
2696 tags = "statistics,analytics,diagram,graph,trending up",
2697 contributors = "karsa-mistmere,jguddas"
2698 ))]
2699 ChartNoAxesCombined,
2700 #[cfg(any(
2701 feature = "charts",
2702 feature = "time",
2703 feature = "development",
2704 feature = "design"
2705 ))]
2706 #[strum(props(
2707 svg = "<path d=\"M6 5h12\"></path><path d=\"M4 12h10\"></path><path d=\"M12 19h8\"></path>",
2708 categories = "charts,time,development,design",
2709 tags = "projects,manage,overview,roadmap,plan,intentions,timeline,deadline,date,event,range,period,productivity,work,agile,code,coding",
2710 contributors = "danielbayley,karsa-mistmere"
2711 ))]
2712 ChartNoAxesGantt,
2713 #[cfg(any(feature = "charts", feature = "files"))]
2714 #[strum(props(
2715 svg = "<path d=\"M21 12c.552 0 1.00-.449.95-.998a10 10 0 0 0-8.95-8.95c-.55-.055-.998.39-.998.95v8a1 1 0 0 0 1 1z\"></path><path d=\"M21.21 15.89A10 10 0 1 1 8 2.83\"></path>",
2716 categories = "charts,files",
2717 tags = "statistics,analytics,diagram,presentation",
2718 contributors = "colebemis,csandman,ericfennis"
2719 ))]
2720 ChartPie,
2721 #[cfg(feature = "charts")]
2722 #[strum(props(
2723 svg = "<circle cx=\"7.5\" cy=\"7.5\" fill=\"currentColor\" r=\".5\"></circle><circle cx=\"18.5\" cy=\"5.5\" fill=\"currentColor\" r=\".5\"></circle><circle cx=\"11.5\" cy=\"11.5\" fill=\"currentColor\" r=\".5\"></circle><circle cx=\"7.5\" cy=\"16.5\" fill=\"currentColor\" r=\".5\"></circle><circle cx=\"17.5\" cy=\"14.5\" fill=\"currentColor\" r=\".5\"></circle><path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path>",
2724 categories = "charts",
2725 tags = "statistics,analytics,diagram,graph",
2726 contributors = "danielbayley,ericfennis"
2727 ))]
2728 ChartScatter,
2729 #[cfg(feature = "charts")]
2730 #[strum(props(
2731 svg = "<path d=\"M3 3v16a2 2 0 0 0 2 2h16\"></path><path d=\"M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7\"></path>",
2732 categories = "charts",
2733 tags = "statistics,analytics,diagram,graph,curve,continuous,smooth,polynomial,quadratic,function,interpolation",
2734 contributors = "karsa-mistmere"
2735 ))]
2736 ChartSpline,
2737 #[cfg(feature = "notifications")]
2738 #[strum(props(
2739 svg = "<path d=\"M18 6 7 17l-5-5\"></path><path d=\"m22 10-7.5 7.5L13 16\"></path>",
2740 categories = "notifications",
2741 tags = "done,received,double,todo,tick,complete,task",
2742 contributors = "ericfennis"
2743 ))]
2744 CheckCheck,
2745 #[cfg(feature = "notifications")]
2746 #[strum(props(
2747 svg = "<path d=\"M20 4L9 15\"></path><path d=\"M21 19L3 19\"></path><path d=\"M9 15L4 10\"></path>",
2748 categories = "notifications",
2749 tags = "done,todo,tick,complete,task",
2750 contributors = "colebemis,oosawy"
2751 ))]
2752 CheckLine,
2753 #[cfg(feature = "notifications")]
2754 #[strum(props(
2755 svg = "<path d=\"M20 6 9 17l-5-5\"></path>",
2756 categories = "notifications",
2757 tags = "done,todo,tick,complete,task",
2758 contributors = "colebemis"
2759 ))]
2760 Check,
2761 #[cfg(feature = "food_beverage")]
2762 #[strum(props(
2763 svg = "<path d=\"M17 21a1 1 0 0 0 1-1v-5.35c0-.457.31-.844.72-1.04a4 4 0 0 0-2.13-7.58 5 5 0 0 0-9.18 0 4 4 0 0 0-2.13 7.58c.411.19.727.58.727 1.04V20a1 1 0 0 0 1 1Z\"></path><path d=\"M6 17h12\"></path>",
2764 categories = "food-beverage",
2765 tags = "cooking,food,kitchen,restaurant",
2766 contributors = "karsa-mistmere,ericfennis,jguddas"
2767 ))]
2768 ChefHat,
2769 #[cfg(feature = "food_beverage")]
2770 #[strum(props(
2771 svg = "<path d=\"M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z\"></path><path d=\"M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z\"></path><path d=\"M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12\"></path><path d=\"M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z\"></path>",
2772 categories = "food-beverage",
2773 tags = "fruit,food",
2774 contributors = "karsa-mistmere"
2775 ))]
2776 Cherry,
2777 #[cfg(any(feature = "gaming", feature = "emoji"))]
2778 #[strum(props(
2779 svg = "<path d=\"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z\"></path><path d=\"M15 18c1.5-.615 3-2.46 3-4.92C18 8.76 14.5 4.46 12 2 9.5 4.46 6 8.77 6 13.07 6 15.53 7.5 17.38 9 18\"></path><path d=\"m16 7-2.5 2.5\"></path><path d=\"M9 2h6\"></path>",
2780 categories = "gaming,emoji",
2781 tags = "mitre,miter,piece,board game,religion",
2782 contributors = "karsa-mistmere"
2783 ))]
2784 ChessBishop,
2785 #[cfg(any(feature = "gaming", feature = "emoji"))]
2786 #[strum(props(
2787 svg = "<path d=\"M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z\"></path><path d=\"m6.7 18-1-1C4.35 15.68 3 14.09 3 12a5 5 0 0 1 4.95-5c1.58 0 2.7.45 4.05 1.81C13.35 7.45 14.46 7 16.05 7A5 5 0 0 1 21 12c0 2.08-1.35 3.67-2.7 5l-1 1\"></path><path d=\"M10 4h4\"></path><path d=\"M12 2v6.81\"></path>",
2788 categories = "gaming,emoji",
2789 tags = "ruler,crown,piece,board game,stalemate",
2790 contributors = "karsa-mistmere"
2791 ))]
2792 ChessKing,
2793 #[cfg(any(feature = "gaming", feature = "emoji"))]
2794 #[strum(props(
2795 svg = "<path d=\"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z\"></path><path d=\"M16.5 18c1-2 2.5-5 2.5-9a7 7 0 0 0-7-7H6.63a1 1 0 0 0-.768 1.64L7 5l-2.32 5.80a2 2 0 0 0 .95 2.52l2.87 1.45\"></path><path d=\"m15 5 1.42-1.42\"></path><path d=\"m17 8 1.53-1.53\"></path><path d=\"M9.71 12.18 7 18\"></path>",
2796 categories = "gaming,emoji",
2797 tags = "piece,horse,board game",
2798 contributors = "karsa-mistmere"
2799 ))]
2800 ChessKnight,
2801 #[cfg(any(feature = "gaming", feature = "emoji"))]
2802 #[strum(props(
2803 svg = "<path d=\"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z\"></path><path d=\"m14.5 10 1.5 8\"></path><path d=\"M7 10h10\"></path><path d=\"m8 18 1.5-8\"></path><circle cx=\"12\" cy=\"6\" r=\"4\"></circle>",
2804 categories = "gaming,emoji",
2805 tags = "piece,board game",
2806 contributors = "karsa-mistmere"
2807 ))]
2808 ChessPawn,
2809 #[cfg(any(feature = "gaming", feature = "emoji"))]
2810 #[strum(props(
2811 svg = "<path d=\"M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z\"></path><path d=\"m12.47 5.94 1.56 5.34a1 1 0 0 0 1.75.32l2.61-3.40\"></path><path d=\"m20 9-3 9\"></path><path d=\"m5.59 8.20 2.61 3.40a1 1 0 0 0 1.75-.329l1.56-5.34\"></path><path d=\"M7 18 4 9\"></path><circle cx=\"12\" cy=\"4\" r=\"2\"></circle><circle cx=\"20\" cy=\"7\" r=\"2\"></circle><circle cx=\"4\" cy=\"7\" r=\"2\"></circle>",
2812 categories = "gaming,emoji",
2813 tags = "ruler,crown,piece,board game,stalemate",
2814 contributors = "karsa-mistmere"
2815 ))]
2816 ChessQueen,
2817 #[cfg(any(feature = "gaming", feature = "emoji"))]
2818 #[strum(props(
2819 svg = "<path d=\"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z\"></path><path d=\"M10 2v2\"></path><path d=\"M14 2v2\"></path><path d=\"m17 18-1-9\"></path><path d=\"M6 2v5a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2\"></path><path d=\"M6 4h12\"></path><path d=\"m7 18 1-9\"></path>",
2820 categories = "gaming,emoji",
2821 tags = "castle,piece,board game",
2822 contributors = "karsa-mistmere,jguddas"
2823 ))]
2824 ChessRook,
2825 #[cfg(any(feature = "arrows", feature = "gaming"))]
2826 #[strum(props(
2827 svg = "<path d=\"m6 9 6 6 6-6\"></path>",
2828 categories = "arrows,gaming",
2829 tags = "backwards,reverse,slow,dropdown",
2830 contributors = "colebemis"
2831 ))]
2832 ChevronDown,
2833 #[cfg(any(feature = "arrows", feature = "multimedia"))]
2834 #[strum(props(
2835 svg = "<path d=\"m17 18-6-6 6-6\"></path><path d=\"M7 6v12\"></path>",
2836 categories = "arrows,multimedia",
2837 tags = "previous,music",
2838 contributors = "dperezcabrera,ericfennis"
2839 ))]
2840 ChevronFirst,
2841 #[cfg(any(feature = "arrows", feature = "multimedia"))]
2842 #[strum(props(
2843 svg = "<path d=\"m7 18 6-6-6-6\"></path><path d=\"M17 6v12\"></path>",
2844 categories = "arrows,multimedia",
2845 tags = "skip,next,music",
2846 contributors = "dperezcabrera,ericfennis"
2847 ))]
2848 ChevronLast,
2849 #[cfg(feature = "arrows")]
2850 #[strum(props(
2851 svg = "<path d=\"m15 18-6-6 6-6\"></path>",
2852 categories = "arrows",
2853 tags = "back,previous,less than,fewer,menu,<",
2854 contributors = "colebemis"
2855 ))]
2856 ChevronLeft,
2857 #[cfg(any(feature = "arrows", feature = "math", feature = "development"))]
2858 #[strum(props(
2859 svg = "<path d=\"m9 18 6-6-6-6\"></path>",
2860 categories = "arrows,math,development",
2861 tags = "forward,next,more than,greater,menu,code,coding,command line,terminal,prompt,shell,>",
2862 contributors = "colebemis"
2863 ))]
2864 ChevronRight,
2865 #[cfg(any(feature = "arrows", feature = "math", feature = "gaming"))]
2866 #[strum(props(
2867 svg = "<path d=\"m18 15-6-6-6 6\"></path>",
2868 categories = "arrows,math,gaming",
2869 tags = "caret,keyboard,mac,control,ctrl,superscript,exponential,power,ahead,fast,^,dropdown",
2870 contributors = "colebemis"
2871 ))]
2872 ChevronUp,
2873 #[cfg(feature = "arrows")]
2874 #[strum(props(
2875 svg = "<path d=\"m7 20 5-5 5 5\"></path><path d=\"m7 4 5 5 5-5\"></path>",
2876 categories = "arrows",
2877 tags = "collapse,fold,vertical",
2878 contributors = "PeterlitsZo,mittalyashu,ericfennis"
2879 ))]
2880 ChevronsDownUp,
2881 #[cfg(any(feature = "arrows", feature = "gaming"))]
2882 #[strum(props(
2883 svg = "<path d=\"m7 6 5 5 5-5\"></path><path d=\"m7 13 5 5 5-5\"></path>",
2884 categories = "arrows,gaming",
2885 tags = "backwards,reverse,slower",
2886 contributors = "colebemis"
2887 ))]
2888 ChevronsDown,
2889 #[cfg(any(
2890 feature = "communication",
2891 feature = "devices",
2892 feature = "multimedia",
2893 feature = "gaming"
2894 ))]
2895 #[strum(props(
2896 svg = "<path d=\"M12 12h.01\"></path><path d=\"M16 12h.01\"></path><path d=\"m17 7 5 5-5 5\"></path><path d=\"m7 7-5 5 5 5\"></path><path d=\"M8 12h.01\"></path>",
2897 categories = "communication,devices,multimedia,gaming",
2898 tags = "internet,network,connection,cable,lan,port,router,switch,hub,modem,web,online,networking,communication,socket,plug,slot,controller,connector,interface,console,signal,data,input,output",
2899 contributors = "ericfennis,jguddas,karsa-mistmere"
2900 ))]
2901 ChevronsLeftRightEllipsis,
2902 #[cfg(feature = "arrows")]
2903 #[strum(props(
2904 svg = "<path d=\"m9 7-5 5 5 5\"></path><path d=\"m15 7 5 5-5 5\"></path>",
2905 categories = "arrows",
2906 tags = "expand,horizontal,unfold",
2907 contributors = "karsa-mistmere"
2908 ))]
2909 ChevronsLeftRight,
2910 #[cfg(any(feature = "arrows", feature = "gaming"))]
2911 #[strum(props(
2912 svg = "<path d=\"m11 17-5-5 5-5\"></path><path d=\"m18 17-5-5 5-5\"></path>",
2913 categories = "arrows,gaming",
2914 tags = "turn,corner",
2915 contributors = "colebemis"
2916 ))]
2917 ChevronsLeft,
2918 #[cfg(feature = "arrows")]
2919 #[strum(props(
2920 svg = "<path d=\"m20 17-5-5 5-5\"></path><path d=\"m4 17 5-5-5-5\"></path>",
2921 categories = "arrows",
2922 tags = "collapse,fold,horizontal",
2923 contributors = "karsa-mistmere"
2924 ))]
2925 ChevronsRightLeft,
2926 #[cfg(any(feature = "arrows", feature = "gaming"))]
2927 #[strum(props(
2928 svg = "<path d=\"m6 17 5-5-5-5\"></path><path d=\"m13 17 5-5-5-5\"></path>",
2929 categories = "arrows,gaming",
2930 tags = "turn,corner",
2931 contributors = "colebemis"
2932 ))]
2933 ChevronsRight,
2934 #[cfg(feature = "arrows")]
2935 #[strum(props(
2936 svg = "<path d=\"m7 15 5 5 5-5\"></path><path d=\"m7 9 5-5 5 5\"></path>",
2937 categories = "arrows",
2938 tags = "expand,unfold,vertical",
2939 contributors = "mittalyashu,ericfennis"
2940 ))]
2941 ChevronsUpDown,
2942 #[cfg(any(feature = "arrows", feature = "gaming"))]
2943 #[strum(props(
2944 svg = "<path d=\"m17 11-5-5-5 5\"></path><path d=\"m17 18-5-5-5 5\"></path>",
2945 categories = "arrows,gaming",
2946 tags = "forward,ahead,faster,speed,boost",
2947 contributors = "colebemis"
2948 ))]
2949 ChevronsUp,
2950 #[cfg(any(feature = "buildings", feature = "navigation"))]
2951 #[strum(props(
2952 svg = "<path d=\"M10 9h4\"></path><path d=\"M12 7v5\"></path><path d=\"M14 21v-3a2 2 0 0 0-4 0v3\"></path><path d=\"m18 9 3.52 2.14a1 1 0 0 1 .48.85V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6.99a1 1 0 0 1 .48-.854L6 9\"></path><path d=\"M6 21V7a1 1 0 0 1 .376-.782l5-3.99a1 1 0 0 1 1.24.001l5 4A1 1 0 0 1 18 7v14\"></path>",
2953 categories = "buildings,navigation",
2954 tags = "temple,building",
2955 contributors = "karsa-mistmere,jguddas"
2956 ))]
2957 Church,
2958 #[cfg(any(feature = "travel", feature = "transportation", feature = "medical"))]
2959 #[strum(props(
2960 svg = "<path d=\"M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13\"></path><path d=\"M18 8c0-2.5-2-2.5-2-5\"></path><path d=\"m2 2 20 20\"></path><path d=\"M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.86\"></path><path d=\"M22 8c0-2.5-2-2.5-2-5\"></path><path d=\"M7 12v4\"></path>",
2961 categories = "travel,transportation,medical",
2962 tags = "smoking,no-smoking",
2963 contributors = "karsa-mistmere,ericfennis,jguddas"
2964 ))]
2965 CigaretteOff,
2966 #[cfg(any(feature = "travel", feature = "transportation", feature = "medical"))]
2967 #[strum(props(
2968 svg = "<path d=\"M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14\"></path><path d=\"M18 8c0-2.5-2-2.5-2-5\"></path><path d=\"M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1\"></path><path d=\"M22 8c0-2.5-2-2.5-2-5\"></path><path d=\"M7 12v4\"></path>",
2969 categories = "travel,transportation,medical",
2970 tags = "smoking",
2971 contributors = "karsa-mistmere,ericfennis,jguddas"
2972 ))]
2973 Cigarette,
2974 #[cfg(feature = "notifications")]
2975 #[strum(props(
2976 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" x2=\"12\" y1=\"8\" y2=\"12\"></line><line x1=\"12\" x2=\"12.01\" y1=\"16\" y2=\"16\"></line>",
2977 categories = "notifications",
2978 tags = "warning,alert,danger,exclamation mark",
2979 contributors = "colebemis,ericfennis"
2980 ))]
2981 CircleAlert,
2982 #[cfg(any(feature = "arrows", feature = "gaming"))]
2983 #[strum(props(
2984 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 8v8\"></path><path d=\"m8 12 4 4 4-4\"></path>",
2985 categories = "arrows,gaming",
2986 tags = "backwards,reverse,direction,south,sign,button",
2987 contributors = "colebemis,ericfennis"
2988 ))]
2989 CircleArrowDown,
2990 #[cfg(any(feature = "arrows", feature = "gaming"))]
2991 #[strum(props(
2992 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m12 8-4 4 4 4\"></path><path d=\"M16 12H8\"></path>",
2993 categories = "arrows,gaming",
2994 tags = "previous,back,direction,west,sign,turn,button,<-",
2995 contributors = "colebemis,ericfennis"
2996 ))]
2997 CircleArrowLeft,
2998 #[cfg(feature = "arrows")]
2999 #[strum(props(
3000 svg = "<path d=\"M2 12a10 10 0 1 1 10 10\"></path><path d=\"m2 22 10-10\"></path><path d=\"M8 22H2v-6\"></path>",
3001 categories = "arrows",
3002 tags = "outwards,direction,south-west,diagonal",
3003 contributors = "danielbayley"
3004 ))]
3005 CircleArrowOutDownLeft,
3006 #[cfg(feature = "arrows")]
3007 #[strum(props(
3008 svg = "<path d=\"M12 22a10 10 0 1 1 10-10\"></path><path d=\"M22 22 12 12\"></path><path d=\"M22 16v6h-6\"></path>",
3009 categories = "arrows",
3010 tags = "outwards,direction,south-east,diagonal",
3011 contributors = "danielbayley"
3012 ))]
3013 CircleArrowOutDownRight,
3014 #[cfg(any(feature = "arrows", feature = "development"))]
3015 #[strum(props(
3016 svg = "<path d=\"M2 8V2h6\"></path><path d=\"m2 2 10 10\"></path><path d=\"M12 2A10 10 0 1 1 2 12\"></path>",
3017 categories = "arrows,development",
3018 tags = "outwards,direction,north-west,diagonal,keyboard,button,escape",
3019 contributors = "danielbayley"
3020 ))]
3021 CircleArrowOutUpLeft,
3022 #[cfg(feature = "arrows")]
3023 #[strum(props(
3024 svg = "<path d=\"M22 12A10 10 0 1 1 12 2\"></path><path d=\"M22 2 12 12\"></path><path d=\"M16 2h6v6\"></path>",
3025 categories = "arrows",
3026 tags = "outwards,direction,north-east,diagonal",
3027 contributors = "danielbayley"
3028 ))]
3029 CircleArrowOutUpRight,
3030 #[cfg(any(feature = "arrows", feature = "gaming"))]
3031 #[strum(props(
3032 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m12 16 4-4-4-4\"></path><path d=\"M8 12h8\"></path>",
3033 categories = "arrows,gaming",
3034 tags = "next,forward,direction,east,sign,turn,button,->",
3035 contributors = "colebemis,ericfennis"
3036 ))]
3037 CircleArrowRight,
3038 #[cfg(any(feature = "arrows", feature = "gaming"))]
3039 #[strum(props(
3040 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m16 12-4-4-4 4\"></path><path d=\"M12 16V8\"></path>",
3041 categories = "arrows,gaming",
3042 tags = "forward,direction,north,sign,button",
3043 contributors = "colebemis,ericfennis"
3044 ))]
3045 CircleArrowUp,
3046 #[cfg(feature = "notifications")]
3047 #[strum(props(
3048 svg = "<path d=\"M21.80 10A10 10 0 1 1 17 3.33\"></path><path d=\"m9 11 3 3L22 4\"></path>",
3049 categories = "notifications",
3050 tags = "done,todo,tick,complete,task",
3051 contributors = "colebemis,csandman,ericfennis,jguddas"
3052 ))]
3053 CircleCheckBig,
3054 #[cfg(feature = "notifications")]
3055 #[strum(props(
3056 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m9 12 2 2 4-4\"></path>",
3057 categories = "notifications",
3058 tags = "done,todo,tick,complete,task",
3059 contributors = "mittalyashu,ericfennis"
3060 ))]
3061 CircleCheck,
3062 #[cfg(feature = "arrows")]
3063 #[strum(props(
3064 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m16 10-4 4-4-4\"></path>",
3065 categories = "arrows",
3066 tags = "back,menu",
3067 contributors = "danielbayley,ericfennis"
3068 ))]
3069 CircleChevronDown,
3070 #[cfg(feature = "arrows")]
3071 #[strum(props(
3072 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m14 16-4-4 4-4\"></path>",
3073 categories = "arrows",
3074 tags = "back,previous,less than,fewer,menu,<",
3075 contributors = "danielbayley"
3076 ))]
3077 CircleChevronLeft,
3078 #[cfg(feature = "arrows")]
3079 #[strum(props(
3080 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m10 8 4 4-4 4\"></path>",
3081 categories = "arrows",
3082 tags = "back,more than,greater,menu,>",
3083 contributors = "danielbayley"
3084 ))]
3085 CircleChevronRight,
3086 #[cfg(feature = "arrows")]
3087 #[strum(props(
3088 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m8 14 4-4 4 4\"></path>",
3089 categories = "arrows",
3090 tags = "caret,ahead,menu,^",
3091 contributors = "danielbayley"
3092 ))]
3093 CircleChevronUp,
3094 #[cfg(any(feature = "development", feature = "shapes"))]
3095 #[strum(props(
3096 svg = "<path d=\"M10.1 2.18a10 10 0 0 1 3.8 0\"></path><path d=\"M13.9 21.81a10 10 0 0 1-3.8 0\"></path><path d=\"M17.60 3.72a10 10 0 0 1 2.69 2.7\"></path><path d=\"M2.18 13.9a10 10 0 0 1 0-3.8\"></path><path d=\"M20.27 17.60a10 10 0 0 1-2.7 2.69\"></path><path d=\"M21.81 10.1a10 10 0 0 1 0 3.8\"></path><path d=\"M3.72 6.39a10 10 0 0 1 2.7-2.69\"></path><path d=\"M6.39 20.27a10 10 0 0 1-2.69-2.7\"></path>",
3097 categories = "development,shapes",
3098 tags = "pending,dot,progress,issue,draft,code,coding,version control",
3099 contributors = "danielbayley,jguddas"
3100 ))]
3101 CircleDashed,
3102 #[cfg(feature = "math")]
3103 #[strum(props(
3104 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"8\" x2=\"16\" y1=\"12\" y2=\"12\"></line><line x1=\"12\" x2=\"12\" y1=\"16\" y2=\"16\"></line><line x1=\"12\" x2=\"12\" y1=\"8\" y2=\"8\"></line>",
3105 categories = "math",
3106 tags = "calculate,math,÷,/",
3107 contributors = "csandman,ericfennis"
3108 ))]
3109 CircleDivide,
3110 #[cfg(feature = "finance")]
3111 #[strum(props(
3112 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8\"></path><path d=\"M12 18V6\"></path>",
3113 categories = "finance",
3114 tags = "monetization,marketing,currency,money,payment",
3115 contributors = "karsa-mistmere,jguddas"
3116 ))]
3117 CircleDollarSign,
3118 #[cfg(any(feature = "development", feature = "shapes"))]
3119 #[strum(props(
3120 svg = "<path d=\"M10.1 2.18a9.93 9.93 0 0 1 3.8 0\"></path><path d=\"M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7\"></path><path d=\"M21.82 10.1a9.93 9.93 0 0 1 0 3.8\"></path><path d=\"M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69\"></path><path d=\"M13.9 21.82a9.94 9.94 0 0 1-3.8 0\"></path><path d=\"M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7\"></path><path d=\"M2.18 13.9a9.93 9.93 0 0 1 0-3.8\"></path><path d=\"M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69\"></path><circle cx=\"12\" cy=\"12\" r=\"1\"></circle>",
3121 categories = "development,shapes",
3122 tags = "pending,dot,progress,issue,draft,code,coding,version control",
3123 contributors = "danielbayley"
3124 ))]
3125 CircleDotDashed,
3126 #[cfg(any(feature = "development", feature = "shapes"))]
3127 #[strum(props(
3128 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><circle cx=\"12\" cy=\"12\" r=\"1\"></circle>",
3129 categories = "development,shapes",
3130 tags = "pending,dot,progress,issue,code,coding,version control,choices,multiple choice,choose",
3131 contributors = "karsa-mistmere"
3132 ))]
3133 CircleDot,
3134 #[cfg(any(feature = "layout", feature = "development"))]
3135 #[strum(props(
3136 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M17 12h.01\"></path><path d=\"M12 12h.01\"></path><path d=\"M7 12h.01\"></path>",
3137 categories = "layout,development",
3138 tags = "ellipsis,et cetera,etc,loader,loading,progress,pending,throbber,menu,options,operator,code,spread,rest,more,further,extra,overflow,dots,…,...",
3139 contributors = "karsa-mistmere,ericfennis"
3140 ))]
3141 CircleEllipsis,
3142 #[cfg(feature = "math")]
3143 #[strum(props(
3144 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M7 10h10\"></path><path d=\"M7 14h10\"></path>",
3145 categories = "math",
3146 tags = "calculate,shape,=",
3147 contributors = "danielbayley"
3148 ))]
3149 CircleEqual,
3150 #[cfg(any(feature = "arrows", feature = "development"))]
3151 #[strum(props(
3152 svg = "<path d=\"M12 2a10 10 0 0 1 7.38 16.75\"></path><path d=\"m16 12-4-4-4 4\"></path><path d=\"M12 16V8\"></path><path d=\"M2.5 8.87a10 10 0 0 0-.5 3\"></path><path d=\"M2.83 16a10 10 0 0 0 2.43 3.4\"></path><path d=\"M4.63 5.23a10 10 0 0 1 .891-.857\"></path><path d=\"M8.64 21.42a10 10 0 0 0 7.63-.38\"></path>",
3153 categories = "arrows,development",
3154 tags = "north,up,upgrade,improve,circle,button",
3155 contributors = "jordan808,jguddas,colebemis,ericfennis,mosch"
3156 ))]
3157 CircleFadingArrowUp,
3158 #[cfg(any(feature = "communication", feature = "social"))]
3159 #[strum(props(
3160 svg = "<path d=\"M12 2a10 10 0 0 1 7.38 16.75\"></path><path d=\"M12 8v8\"></path><path d=\"M16 12H8\"></path><path d=\"M2.5 8.87a10 10 0 0 0-.5 3\"></path><path d=\"M2.83 16a10 10 0 0 0 2.43 3.4\"></path><path d=\"M4.63 5.23a10 10 0 0 1 .891-.857\"></path><path d=\"M8.64 21.42a10 10 0 0 0 7.63-.38\"></path>",
3161 categories = "communication,social",
3162 tags = "stories,social media,instagram,facebook,meta,snapchat,sharing,content",
3163 contributors = "jordan808,jguddas"
3164 ))]
3165 CircleFadingPlus,
3166 #[cfg(any(feature = "transportation", feature = "sports", feature = "science"))]
3167 #[strum(props(
3168 svg = "<path d=\"M15.6 2.7a10 10 0 1 0 5.7 5.7\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle><path d=\"M13.4 10.6 19 5\"></path>",
3169 categories = "transportation,sports,science",
3170 tags = "dashboard,dial,meter,speed,pressure,measure,level",
3171 contributors = "danielbayley"
3172 ))]
3173 CircleGauge,
3174 #[cfg(feature = "math")]
3175 #[strum(props(
3176 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M8 12h8\"></path>",
3177 categories = "math",
3178 tags = "subtract,remove,decrease,reduce,calculate,line,operator,code,coding,minimum,downgrade,-",
3179 contributors = "colebemis,ericfennis"
3180 ))]
3181 CircleMinus,
3182 #[cfg(feature = "shapes")]
3183 #[strum(props(
3184 svg = "<path d=\"m2 2 20 20\"></path><path d=\"M8.35 2.69A10 10 0 0 1 21.3 15.65\"></path><path d=\"M19.08 19.08A10 10 0 1 1 4.92 4.92\"></path>",
3185 categories = "shapes",
3186 tags = "diameter,zero,Ø,nothing,null,void,cancel,ban,no,stop,forbidden,prohibited,error,incorrect,mistake,wrong,failure",
3187 contributors = "danielbayley"
3188 ))]
3189 CircleOff,
3190 #[cfg(any(feature = "transportation", feature = "navigation"))]
3191 #[strum(props(
3192 svg = "<path d=\"M12.65 7H13a3 3 0 0 1 2.98 3.30\"></path><path d=\"M13 13H9\"></path><path d=\"M19.07 19.07A1 1 0 0 1 4.93 4.93\"></path><path d=\"m2 2 20 20\"></path><path d=\"M8.35 2.68a10 10 0 0 1 12.95 12.95\"></path><path d=\"M9 17V9\"></path>",
3193 categories = "transportation,navigation",
3194 tags = "parking lot,car park,no parking",
3195 contributors = "karsa-mistmere,jguddas,ericfennis"
3196 ))]
3197 CircleParkingOff,
3198 #[cfg(any(feature = "transportation", feature = "navigation"))]
3199 #[strum(props(
3200 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M9 17V7h4a3 3 0 0 1 0 6H9\"></path>",
3201 categories = "transportation,navigation",
3202 tags = "parking lot,car park",
3203 contributors = "karsa-mistmere,jguddas"
3204 ))]
3205 CircleParking,
3206 #[cfg(feature = "multimedia")]
3207 #[strum(props(
3208 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"10\" x2=\"10\" y1=\"15\" y2=\"9\"></line><line x1=\"14\" x2=\"14\" y1=\"15\" y2=\"9\"></line>",
3209 categories = "multimedia",
3210 tags = "music,audio,stop",
3211 contributors = "colebemis,ericfennis"
3212 ))]
3213 CirclePause,
3214 #[cfg(any(
3215 feature = "social",
3216 feature = "finance",
3217 feature = "shopping",
3218 feature = "math"
3219 ))]
3220 #[strum(props(
3221 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m15 9-6 6\"></path><path d=\"M9 9h.01\"></path><path d=\"M15 15h.01\"></path>",
3222 categories = "social,finance,shopping,math",
3223 tags = "verified,unverified,sale,discount,offer,marketing,sticker,price tag",
3224 contributors = "danielbayley"
3225 ))]
3226 CirclePercent,
3227 #[cfg(feature = "shapes")]
3228 #[strum(props(
3229 svg = "<circle cx=\"12\" cy=\"19\" r=\"2\"></circle><circle cx=\"12\" cy=\"5\" r=\"2\"></circle><circle cx=\"16\" cy=\"12\" r=\"2\"></circle><circle cx=\"20\" cy=\"19\" r=\"2\"></circle><circle cx=\"4\" cy=\"19\" r=\"2\"></circle><circle cx=\"8\" cy=\"12\" r=\"2\"></circle>",
3230 categories = "shapes",
3231 tags = "off,zero,record,shape,circle-pile,circle,pile,stack,layer,structure,form,group,collection,stock,inventory,materials,warehouse",
3232 contributors = "colebemis,nathan-de-pachtere"
3233 ))]
3234 CirclePile,
3235 #[cfg(feature = "multimedia")]
3236 #[strum(props(
3237 svg = "<path d=\"M9 9.00a1 1 0 0 1 1.51-.859l4.99 2.99a1 1 0 0 1 0 1.71l-4.99 2.99A1 1 0 0 1 9 14.99z\"></path><circle cx=\"12\" cy=\"12\" r=\"10\"></circle>",
3238 categories = "multimedia",
3239 tags = "music,start,run",
3240 contributors = "colebemis,karsa-mistmere"
3241 ))]
3242 CirclePlay,
3243 #[cfg(any(
3244 feature = "math",
3245 feature = "development",
3246 feature = "cursors",
3247 feature = "gaming"
3248 ))]
3249 #[strum(props(
3250 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M8 12h8\"></path><path d=\"M12 8v8\"></path>",
3251 categories = "math,development,cursors,gaming",
3252 tags = "add,new,increase,increment,positive,calculate,crosshair,aim,target,scope,sight,reticule,maximum,upgrade,extra,operator,join,concatenate,code,coding,+",
3253 contributors = "colebemis,ericfennis"
3254 ))]
3255 CirclePlus,
3256 #[cfg(feature = "finance")]
3257 #[strum(props(
3258 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M10 16V9.5a1 1 0 0 1 5 0\"></path><path d=\"M8 12h4\"></path><path d=\"M8 16h7\"></path>",
3259 categories = "finance",
3260 tags = "monetization,coin,penny,marketing,currency,money,payment,british,gbp,£",
3261 contributors = "karsa-mistmere,jguddas,danielbayley,LieOnLion"
3262 ))]
3263 CirclePoundSterling,
3264 #[cfg(feature = "connectivity")]
3265 #[strum(props(
3266 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 7v4\"></path><path d=\"M7.99 9.00a5 5 0 1 0 8-.005\"></path>",
3267 categories = "connectivity",
3268 tags = "on,off,device,switch,toggle,binary,boolean,reboot,restart,button,keyboard,troubleshoot",
3269 contributors = "danielbayley,jguddas"
3270 ))]
3271 CirclePower,
3272 #[cfg(any(feature = "accessibility", feature = "text", feature = "notifications"))]
3273 #[strum(props(
3274 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3\"></path><path d=\"M12 17h.01\"></path>",
3275 categories = "accessibility,text,notifications",
3276 tags = "question mark",
3277 contributors = "danbovey,colebemis,csandman,ericfennis,danielbayley"
3278 ))]
3279 CircleQuestionMark,
3280 #[cfg(any(feature = "shapes", feature = "math", feature = "development"))]
3281 #[strum(props(
3282 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M22 2 2 22\"></path>",
3283 categories = "shapes,math,development",
3284 tags = "diameter,zero,ø,nothing,null,void,ban,math,divide,division,half,split,/,average,avg,mean,median,normal",
3285 contributors = "danielbayley"
3286 ))]
3287 CircleSlash2,
3288 #[cfg(any(feature = "development", feature = "math"))]
3289 #[strum(props(
3290 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"9\" x2=\"15\" y1=\"15\" y2=\"9\"></line>",
3291 categories = "development,math",
3292 tags = "diameter,zero,Ø,nothing,null,void,cancel,ban,no,stop,forbidden,prohibited,error,incorrect,mistake,wrong,failure,divide,division,or,/",
3293 contributors = "danielbayley"
3294 ))]
3295 CircleSlash,
3296 #[cfg(any(feature = "shapes", feature = "medical"))]
3297 #[strum(props(
3298 svg = "<circle cx=\"12\" cy=\"12\" r=\"6\"></circle>",
3299 categories = "shapes,medical",
3300 tags = "shape,bullet,gender,genderless",
3301 contributors = "jamiemlaw"
3302 ))]
3303 CircleSmall,
3304 #[cfg(any(feature = "sports", feature = "gaming"))]
3305 #[strum(props(
3306 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M11.05 7.61a1 1 0 0 1 1.90.024l.737 1.45a1 1 0 0 0 .737.53l1.63.256a1 1 0 0 1 .588 1.80l-1.17 1.16a1 1 0 0 0-.282.86l.259 1.61a1 1 0 0 1-1.54 1.13l-1.46-.75a1 1 0 0 0-.912 0l-1.46.75a1 1 0 0 1-1.53-1.13l.258-1.61a1 1 0 0 0-.282-.867l-1.15-1.15a1 1 0 0 1 .572-1.82l1.63-.256a1 1 0 0 0 .737-.535z\"></path>",
3307 categories = "sports,gaming",
3308 tags = "badge,medal,honour,decoration,order,pin,laurel,trophy,medallion,insignia,bronze,silver,gold",
3309 contributors = "karsa-mistmere"
3310 ))]
3311 CircleStar,
3312 #[cfg(feature = "multimedia")]
3313 #[strum(props(
3314 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><rect height=\"6\" rx=\"1\" width=\"6\" x=\"9\" y=\"9\"></rect>",
3315 categories = "multimedia",
3316 tags = "media,music",
3317 contributors = "colebemis,ericfennis"
3318 ))]
3319 CircleStop,
3320 #[cfg(feature = "account")]
3321 #[strum(props(
3322 svg = "<path d=\"M17.92 20.05a6 6 0 0 0-11.85.001\"></path><circle cx=\"12\" cy=\"11\" r=\"4\"></circle><circle cx=\"12\" cy=\"12\" r=\"10\"></circle>",
3323 categories = "account",
3324 tags = "person,account,contact",
3325 contributors = "karsa-mistmere"
3326 ))]
3327 CircleUserRound,
3328 #[cfg(feature = "account")]
3329 #[strum(props(
3330 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><circle cx=\"12\" cy=\"10\" r=\"3\"></circle><path d=\"M7 20.66V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.66\"></path>",
3331 categories = "account",
3332 tags = "person,account,contact",
3333 contributors = "karsa-mistmere"
3334 ))]
3335 CircleUser,
3336 #[cfg(any(feature = "math", feature = "development"))]
3337 #[strum(props(
3338 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m15 9-6 6\"></path><path d=\"m9 9 6 6\"></path>",
3339 categories = "math,development",
3340 tags = "cancel,close,delete,remove,times,clear,error,incorrect,wrong,mistake,failure,linter,multiply,multiplication",
3341 contributors = "colebemis,ericfennis"
3342 ))]
3343 CircleX,
3344 #[cfg(feature = "shapes")]
3345 #[strum(props(
3346 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle>",
3347 categories = "shapes",
3348 tags = "off,zero,record,shape",
3349 contributors = "colebemis"
3350 ))]
3351 Circle,
3352 #[cfg(any(feature = "science", feature = "development"))]
3353 #[strum(props(
3354 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M11 9h4a2 2 0 0 0 2-2V3\"></path><circle cx=\"9\" cy=\"9\" r=\"2\"></circle><path d=\"M7 21v-4a2 2 0 0 1 2-2h4\"></path><circle cx=\"15\" cy=\"15\" r=\"2\"></circle>",
3355 categories = "science,development",
3356 tags = "computing,electricity,electronics",
3357 contributors = "danielbayley,jguddas"
3358 ))]
3359 CircuitBoard,
3360 #[cfg(feature = "food_beverage")]
3361 #[strum(props(
3362 svg = "<path d=\"M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z\"></path><path d=\"M19.65 15.66A8 8 0 0 1 8.35 4.34\"></path><path d=\"m14 10-5.5 5.5\"></path><path d=\"M14 17.85V10H6.15\"></path>",
3363 categories = "food-beverage",
3364 tags = "lemon,orange,grapefruit,fruit",
3365 contributors = "karsa-mistmere,jguddas"
3366 ))]
3367 Citrus,
3368 #[cfg(feature = "multimedia")]
3369 #[strum(props(
3370 svg = "<path d=\"m12.29 3.46 3.02 3.95\"></path><path d=\"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3z\"></path><path d=\"M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"></path><path d=\"m6.18 5.27 3.1 3.89\"></path>",
3371 categories = "multimedia",
3372 tags = "movie,film,video,camera,cinema,cut,action,television,tv,show,entertainment",
3373 contributors = "it-is-not,ericfennis,danielbayley,torfmuer"
3374 ))]
3375 Clapperboard,
3376 #[cfg(feature = "text")]
3377 #[strum(props(
3378 svg = "<rect height=\"4\" rx=\"1\" ry=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><path d=\"m9 14 2 2 4-4\"></path>",
3379 categories = "text",
3380 tags = "copied,pasted,done,todo,tick,complete,task",
3381 contributors = "mittalyashu,ericfennis,karsa-mistmere"
3382 ))]
3383 ClipboardCheck,
3384 #[cfg(any(feature = "time", feature = "text"))]
3385 #[strum(props(
3386 svg = "<path d=\"M16 14v2.2l1.6 1\"></path><path d=\"M16 4h2a2 2 0 0 1 2 2v.832\"></path><path d=\"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2\"></path><circle cx=\"16\" cy=\"16\" r=\"6\"></circle><rect height=\"4\" rx=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect>",
3387 categories = "time,text",
3388 tags = "copy,paste,history,log,clock,time,watch,alarm,hour,minute,reminder,scheduled,deadline,pending,time tracking,timesheets,appointment,logbook",
3389 contributors = "beanduong,colebemis,csandman,ericfennis,karsa-mistmere,jamiemlaw"
3390 ))]
3391 ClipboardClock,
3392 #[cfg(any(feature = "text", feature = "arrows"))]
3393 #[strum(props(
3394 svg = "<rect height=\"4\" rx=\"1\" ry=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect><path d=\"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2\"></path><path d=\"M16 4h2a2 2 0 0 1 2 2v4\"></path><path d=\"M21 14H11\"></path><path d=\"m15 10-4 4 4 4\"></path>",
3395 categories = "text,arrows",
3396 tags = "copy,paste",
3397 contributors = "mittalyashu,ericfennis,karsa-mistmere"
3398 ))]
3399 ClipboardCopy,
3400 #[cfg(feature = "text")]
3401 #[strum(props(
3402 svg = "<rect height=\"4\" rx=\"1\" ry=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><path d=\"M12 11h4\"></path><path d=\"M12 16h4\"></path><path d=\"M8 11h.01\"></path><path d=\"M8 16h.01\"></path>",
3403 categories = "text",
3404 tags = "copy,paste,tasks",
3405 contributors = "mittalyashu,ericfennis,karsa-mistmere"
3406 ))]
3407 ClipboardList,
3408 #[cfg(any(feature = "text", feature = "medical"))]
3409 #[strum(props(
3410 svg = "<rect height=\"4\" rx=\"1\" ry=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><path d=\"M9 14h6\"></path>",
3411 categories = "text,medical",
3412 tags = "copy,delete,remove,erase,document,medical,report,doctor",
3413 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
3414 ))]
3415 ClipboardMinus,
3416 #[cfg(any(feature = "text", feature = "arrows"))]
3417 #[strum(props(
3418 svg = "<path d=\"M11 14h10\"></path><path d=\"M16 4h2a2 2 0 0 1 2 2v1.34\"></path><path d=\"m17 18 4-4-4-4\"></path><path d=\"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.79-1.11\"></path><rect height=\"4\" rx=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect>",
3419 categories = "text,arrows",
3420 tags = "copy,paste",
3421 contributors = "xnousnow,ericfennis,jguddas"
3422 ))]
3423 ClipboardPaste,
3424 #[cfg(feature = "text")]
3425 #[strum(props(
3426 svg = "<rect height=\"4\" rx=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect><path d=\"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5\"></path><path d=\"M16 4h2a2 2 0 0 1 1.73 1\"></path><path d=\"M8 18h1\"></path><path d=\"M21.37 12.62a1 1 0 0 0-3.00-3.00l-4.01 4.01a2 2 0 0 0-.506.85l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z\"></path>",
3427 categories = "text",
3428 tags = "paste",
3429 contributors = "karsa-mistmere,ericfennis"
3430 ))]
3431 ClipboardPenLine,
3432 #[cfg(feature = "text")]
3433 #[strum(props(
3434 svg = "<path d=\"M16 4h2a2 2 0 0 1 2 2v2\"></path><path d=\"M21.34 15.66a1 1 0 1 0-3.00-3.00l-5.01 5.01a2 2 0 0 0-.506.85l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z\"></path><path d=\"M8 22H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><rect height=\"4\" rx=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect>",
3435 categories = "text",
3436 tags = "paste,signature",
3437 contributors = "karsa-mistmere,ericfennis,Spleefies"
3438 ))]
3439 ClipboardPen,
3440 #[cfg(any(feature = "text", feature = "medical"))]
3441 #[strum(props(
3442 svg = "<rect height=\"4\" rx=\"1\" ry=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><path d=\"M9 14h6\"></path><path d=\"M12 17v-6\"></path>",
3443 categories = "text,medical",
3444 tags = "copy,paste,add,create,new,document,medical,report,doctor",
3445 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
3446 ))]
3447 ClipboardPlus,
3448 #[cfg(feature = "text")]
3449 #[strum(props(
3450 svg = "<rect height=\"4\" rx=\"1\" ry=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><path d=\"M9 12v-1h6v1\"></path><path d=\"M11 17h2\"></path><path d=\"M12 11v6\"></path>",
3451 categories = "text",
3452 tags = "paste,format,text",
3453 contributors = "karsa-mistmere,ericfennis"
3454 ))]
3455 ClipboardType,
3456 #[cfg(feature = "text")]
3457 #[strum(props(
3458 svg = "<rect height=\"4\" rx=\"1\" ry=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><path d=\"m15 11-6 6\"></path><path d=\"m9 11 6 6\"></path>",
3459 categories = "text",
3460 tags = "copy,paste,discard,remove",
3461 contributors = "mittalyashu,ericfennis,karsa-mistmere"
3462 ))]
3463 ClipboardX,
3464 #[cfg(feature = "text")]
3465 #[strum(props(
3466 svg = "<rect height=\"4\" rx=\"1\" ry=\"1\" width=\"8\" x=\"8\" y=\"2\"></rect><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path>",
3467 categories = "text",
3468 tags = "copy,paste",
3469 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
3470 ))]
3471 Clipboard,
3472 #[cfg(feature = "time")]
3473 #[strum(props(
3474 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6l2-4\"></path>",
3475 categories = "time",
3476 tags = "time,watch,alarm",
3477 contributors = "wojtekmaj,ericfennis,danielbayley,jamiemlaw"
3478 ))]
3479 Clock1,
3480 #[cfg(feature = "time")]
3481 #[strum(props(
3482 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6l-4-2\"></path>",
3483 categories = "time",
3484 tags = "time,watch,alarm",
3485 contributors = "wojtekmaj,ericfennis,danielbayley"
3486 ))]
3487 Clock10,
3488 #[cfg(feature = "time")]
3489 #[strum(props(
3490 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6l-2-4\"></path>",
3491 categories = "time",
3492 tags = "time,watch,alarm",
3493 contributors = "wojtekmaj,ericfennis,danielbayley,jamiemlaw"
3494 ))]
3495 Clock11,
3496 #[cfg(feature = "time")]
3497 #[strum(props(
3498 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6\"></path>",
3499 categories = "time",
3500 tags = "time,watch,alarm,noon,midnight",
3501 contributors = "wojtekmaj,ericfennis,danielbayley"
3502 ))]
3503 Clock12,
3504 #[cfg(feature = "time")]
3505 #[strum(props(
3506 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6l4-2\"></path>",
3507 categories = "time",
3508 tags = "time,watch,alarm",
3509 contributors = "wojtekmaj,ericfennis,danielbayley"
3510 ))]
3511 Clock2,
3512 #[cfg(feature = "time")]
3513 #[strum(props(
3514 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6h4\"></path>",
3515 categories = "time",
3516 tags = "time,watch,alarm",
3517 contributors = "wojtekmaj,ericfennis,danielbayley,jamiemlaw"
3518 ))]
3519 Clock3,
3520 #[cfg(feature = "time")]
3521 #[strum(props(
3522 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6l4 2\"></path>",
3523 categories = "time",
3524 tags = "time,watch,alarm",
3525 contributors = "wojtekmaj"
3526 ))]
3527 Clock4,
3528 #[cfg(feature = "time")]
3529 #[strum(props(
3530 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6l2 4\"></path>",
3531 categories = "time",
3532 tags = "time,watch,alarm",
3533 contributors = "wojtekmaj,ericfennis,danielbayley,jamiemlaw"
3534 ))]
3535 Clock5,
3536 #[cfg(feature = "time")]
3537 #[strum(props(
3538 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v10\"></path>",
3539 categories = "time",
3540 tags = "time,watch,alarm",
3541 contributors = "wojtekmaj,ericfennis,danielbayley,jamiemlaw"
3542 ))]
3543 Clock6,
3544 #[cfg(feature = "time")]
3545 #[strum(props(
3546 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6l-2 4\"></path>",
3547 categories = "time",
3548 tags = "time,watch,alarm",
3549 contributors = "wojtekmaj,ericfennis,danielbayley,jamiemlaw"
3550 ))]
3551 Clock7,
3552 #[cfg(feature = "time")]
3553 #[strum(props(
3554 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6l-4 2\"></path>",
3555 categories = "time",
3556 tags = "time,watch,alarm",
3557 contributors = "wojtekmaj,ericfennis,danielbayley"
3558 ))]
3559 Clock8,
3560 #[cfg(feature = "time")]
3561 #[strum(props(
3562 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6H8\"></path>",
3563 categories = "time",
3564 tags = "time,watch,alarm",
3565 contributors = "wojtekmaj,ericfennis,danielbayley,jamiemlaw"
3566 ))]
3567 Clock9,
3568 #[cfg(feature = "time")]
3569 #[strum(props(
3570 svg = "<path d=\"M12 6v6l4 2\"></path><path d=\"M20 12v5\"></path><path d=\"M20 21h.01\"></path><path d=\"M21.25 8.2A10 10 0 1 0 16 21.16\"></path>",
3571 categories = "time",
3572 tags = "time,watch,alarm,warning,wrong",
3573 contributors = "colebemis,jguddas,jamiemlaw"
3574 ))]
3575 ClockAlert,
3576 #[cfg(feature = "time")]
3577 #[strum(props(
3578 svg = "<path d=\"M12 6v6l2 1\"></path><path d=\"M12.33 21.99a10 10 0 1 1 9.58-8.76\"></path><path d=\"m14 18 4 4 4-4\"></path><path d=\"M18 14v8\"></path>",
3579 categories = "time",
3580 tags = "time,watch,alarm,sort,order,ascending,descending,increasing,decreasing,rising,falling",
3581 contributors = "karsa-mistmere,colebemis"
3582 ))]
3583 ClockArrowDown,
3584 #[cfg(feature = "time")]
3585 #[strum(props(
3586 svg = "<path d=\"M12 6v6l1.5.8\"></path><path d=\"M12.33 21.99a10 10 0 1 1 9.58-8.76\"></path><path d=\"M14 18h8\"></path><path d=\"m18 22-4-4 4-4\"></path>",
3587 categories = "time",
3588 tags = "time,watch,alarm,assign,range",
3589 contributors = "colebemis,jguddas"
3590 ))]
3591 ClockArrowLeft,
3592 #[cfg(any(feature = "time", feature = "people", feature = "arrows"))]
3593 #[strum(props(
3594 svg = "<path d=\"M12 6v6l2 1\"></path><path d=\"M13.5 21.88A10 10 0 1 1 22 12\"></path><path d=\"M14 18h8\"></path><path d=\"m18 22 4-4-4-4\"></path>",
3595 categories = "time,people,arrows",
3596 tags = "time,watch,alarm,range,unassign",
3597 contributors = "colebemis,jguddas"
3598 ))]
3599 ClockArrowRight,
3600 #[cfg(feature = "time")]
3601 #[strum(props(
3602 svg = "<path d=\"M12 6v6l1.56.78\"></path><path d=\"M13.22 21.92a10 10 0 1 1 8.76-9.58\"></path><path d=\"m14 18 4-4 4 4\"></path><path d=\"M18 22v-8\"></path>",
3603 categories = "time",
3604 tags = "time,watch,alarm,sort,order,ascending,descending,increasing,decreasing,rising,falling",
3605 contributors = "karsa-mistmere,colebemis"
3606 ))]
3607 ClockArrowUp,
3608 #[cfg(feature = "time")]
3609 #[strum(props(
3610 svg = "<path d=\"M12 6v6l4 2\"></path><path d=\"M22 12a10 10 0 1 0-11 9.95\"></path><path d=\"m22 16-5.5 5.5L14 19\"></path>",
3611 categories = "time",
3612 tags = "time,watch,alarm",
3613 contributors = "colebemis,jguddas,karsa-mistmere"
3614 ))]
3615 ClockCheck,
3616 #[cfg(feature = "time")]
3617 #[strum(props(
3618 svg = "<path d=\"M12 2a10 10 0 0 1 7.38 16.75\"></path><path d=\"M12 6v6l4 2\"></path><path d=\"M2.5 8.87a10 10 0 0 0-.5 3\"></path><path d=\"M2.83 16a10 10 0 0 0 2.43 3.4\"></path><path d=\"M4.63 5.23a10 10 0 0 1 .891-.857\"></path><path d=\"M8.64 21.42a10 10 0 0 0 7.63-.38\"></path>",
3619 categories = "time",
3620 tags = "time,watch,alarm",
3621 contributors = "colebemis,jguddas"
3622 ))]
3623 ClockFading,
3624 #[cfg(feature = "time")]
3625 #[strum(props(
3626 svg = "<path d=\"M12 6v6l3.64 1.82\"></path><path d=\"M16 19h6\"></path><path d=\"M19 16v6\"></path><path d=\"M21.92 13.26a10 10 0 1 0-8.65 8.65\"></path>",
3627 categories = "time",
3628 tags = "time,watch,alarm,add,create,new",
3629 contributors = "karsa-mistmere,colebemis,gubser"
3630 ))]
3631 ClockPlus,
3632 #[cfg(feature = "time")]
3633 #[strum(props(
3634 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 6v6l4 2\"></path>",
3635 categories = "time",
3636 tags = "time,watch,alarm",
3637 contributors = "colebemis"
3638 ))]
3639 Clock,
3640 #[cfg(any(feature = "accessibility", feature = "multimedia"))]
3641 #[strum(props(
3642 svg = "<path d=\"M10 9.17a3 3 0 1 0 0 5.66\"></path><path d=\"M17 9.17a3 3 0 1 0 0 5.66\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"5\"></rect>",
3643 categories = "accessibility,multimedia",
3644 tags = "tv,movie,video,closed captions,subtitles,subhead,transcription,transcribe,dialogue,accessibility",
3645 contributors = "ericfennis,UsamaKhan"
3646 ))]
3647 ClosedCaption,
3648 #[cfg(feature = "development")]
3649 #[strum(props(
3650 svg = "<path d=\"M12 12v4\"></path><path d=\"M12 20h.01\"></path><path d=\"M8.12 16.94A7 7 0 1 1 15.71 8h1.79a1 1 0 0 1 0 9h-1.64\"></path>",
3651 categories = "development",
3652 tags = "weather,danger,warning,alert,error,sync,network,exclamation",
3653 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,lscheibel,jguddas"
3654 ))]
3655 CloudAlert,
3656 #[cfg(any(feature = "arrows", feature = "files"))]
3657 #[strum(props(
3658 svg = "<path d=\"M21 15.25A4.5 4.5 0 0 0 17.5 8h-1.79A7 7 0 1 0 3 13.60\"></path><path d=\"M7 11v4h4\"></path><path d=\"M8 19a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5 4.82 4.82 0 0 0-3.41 1.41L7 15\"></path>",
3659 categories = "arrows,files",
3660 tags = "storage,memory,bytes,servers,backup,timemachine,rotate,synchronize,synchronise,refresh,reconnect,transfer,data,security,upload,save,remote,safety",
3661 contributors = "ericfennis,jguddas,danielbayley,karsa-mistmere"
3662 ))]
3663 CloudBackup,
3664 #[cfg(feature = "development")]
3665 #[strum(props(
3666 svg = "<path d=\"m17 15-5.5 5.5L9 18\"></path><path d=\"M5.51 16.07A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 3.50 7.32\"></path>",
3667 categories = "development",
3668 tags = "sync,network,success,done,completed,saved,persisted",
3669 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,jguddas,lscheibel"
3670 ))]
3671 CloudCheck,
3672 #[cfg(feature = "development")]
3673 #[strum(props(
3674 svg = "<path d=\"m10.85 19.77-.383.92\"></path><path d=\"m13.14 14.22.383-.923\"></path><path d=\"M13.14 19.77a3 3 0 1 0-2.29-5.54l-.383-.923\"></path><path d=\"m13.53 20.69-.382-.924a3 3 0 1 1-2.29-5.54\"></path><path d=\"m14.77 15.85.923-.383\"></path><path d=\"m14.77 18.14.923.38\"></path><path d=\"M4.2 15.1a7 7 0 1 1 9.93-9.85A7 7 0 0 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2\"></path><path d=\"m9.22 15.85-.923-.383\"></path><path d=\"m9.22 18.14-.923.38\"></path>",
3675 categories = "development",
3676 tags = "computing,ai,cluster,network",
3677 contributors = "karsa-mistmere,UsamaKhan"
3678 ))]
3679 CloudCog,
3680 #[cfg(any(feature = "arrows", feature = "files"))]
3681 #[strum(props(
3682 svg = "<path d=\"M12 13v8l-4-4\"></path><path d=\"m12 21 4-4\"></path><path d=\"M4.39 15.26A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.43 8.28\"></path>",
3683 categories = "arrows,files",
3684 tags = "import",
3685 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
3686 ))]
3687 CloudDownload,
3688 #[cfg(feature = "weather")]
3689 #[strum(props(
3690 svg = "<path d=\"M4 14.89A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.24\"></path><path d=\"M8 19v1\"></path><path d=\"M8 14v1\"></path><path d=\"M16 19v1\"></path><path d=\"M16 14v1\"></path><path d=\"M12 21v1\"></path><path d=\"M12 16v1\"></path>",
3691 categories = "weather",
3692 tags = "weather,shower",
3693 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
3694 ))]
3695 CloudDrizzle,
3696 #[cfg(feature = "weather")]
3697 #[strum(props(
3698 svg = "<path d=\"M4 14.89A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.24\"></path><path d=\"M16 17H7\"></path><path d=\"M17 21H9\"></path>",
3699 categories = "weather",
3700 tags = "weather,mist",
3701 contributors = "ericfennis,karsa-mistmere,mittalyashu"
3702 ))]
3703 CloudFog,
3704 #[cfg(feature = "weather")]
3705 #[strum(props(
3706 svg = "<path d=\"M4 14.89A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.24\"></path><path d=\"M16 14v2\"></path><path d=\"M8 14v2\"></path><path d=\"M16 20h.01\"></path><path d=\"M8 20h.01\"></path><path d=\"M12 16v2\"></path><path d=\"M12 22h.01\"></path>",
3707 categories = "weather",
3708 tags = "weather,rainfall",
3709 contributors = "ericfennis,karsa-mistmere"
3710 ))]
3711 CloudHail,
3712 #[cfg(feature = "weather")]
3713 #[strum(props(
3714 svg = "<path d=\"M6 16.32A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.97\"></path><path d=\"m13 12-3 5h4l-3 5\"></path>",
3715 categories = "weather",
3716 tags = "weather,bolt",
3717 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
3718 ))]
3719 CloudLightning,
3720 #[cfg(feature = "weather")]
3721 #[strum(props(
3722 svg = "<path d=\"M11 20v2\"></path><path d=\"M18.37 14.51a6 6 0 0 0 3.46-4.12c.148-.625-.659-.97-1.24-.714a4 4 0 0 1-5.25-5.26c.255-.589-.09-1.39-.716-1.24a6 6 0 0 0-4.59 5.36\"></path><path d=\"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24\"></path><path d=\"M7 19v2\"></path>",
3723 categories = "weather",
3724 tags = "weather,partly,night,rainfall",
3725 contributors = "it-is-not,karsa-mistmere,jguddas"
3726 ))]
3727 CloudMoonRain,
3728 #[cfg(feature = "weather")]
3729 #[strum(props(
3730 svg = "<path d=\"M13 16a3 3 0 0 1 0 6H7a5 5 0 1 1 4.9-6z\"></path><path d=\"M18.37 14.51a6 6 0 0 0 3.46-4.12c.148-.625-.659-.97-1.24-.714a4 4 0 0 1-5.25-5.26c.255-.589-.09-1.39-.716-1.24a6 6 0 0 0-4.59 5.36\"></path>",
3731 categories = "weather",
3732 tags = "weather,night",
3733 contributors = "ericfennis,karsa-mistmere,jguddas"
3734 ))]
3735 CloudMoon,
3736 #[cfg(any(feature = "connectivity", feature = "weather"))]
3737 #[strum(props(
3738 svg = "<path d=\"M10.94 5.27A7 7 0 0 1 15.71 10h1.79a4.5 4.5 0 0 1 4.22 6.05\"></path><path d=\"M18.79 18.81A4.5 4.5 0 0 1 17.5 19H9A7 7 0 0 1 5.79 5.78\"></path><path d=\"m2 2 20 20\"></path>",
3739 categories = "connectivity,weather",
3740 tags = "disconnect",
3741 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
3742 ))]
3743 CloudOff,
3744 #[cfg(feature = "weather")]
3745 #[strum(props(
3746 svg = "<path d=\"M4 14.89A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.24\"></path><path d=\"m9.2 22 3-7\"></path><path d=\"m9 13-3 7\"></path><path d=\"m17 13-3 7\"></path>",
3747 categories = "weather",
3748 tags = "weather,rainfall",
3749 contributors = "ericfennis,karsa-mistmere"
3750 ))]
3751 CloudRainWind,
3752 #[cfg(feature = "weather")]
3753 #[strum(props(
3754 svg = "<path d=\"M4 14.89A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.24\"></path><path d=\"M16 14v6\"></path><path d=\"M8 14v6\"></path><path d=\"M12 16v6\"></path>",
3755 categories = "weather",
3756 tags = "weather,rainfall",
3757 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
3758 ))]
3759 CloudRain,
3760 #[cfg(feature = "weather")]
3761 #[strum(props(
3762 svg = "<path d=\"M4 14.89A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.24\"></path><path d=\"M8 15h.01\"></path><path d=\"M8 19h.01\"></path><path d=\"M12 17h.01\"></path><path d=\"M12 21h.01\"></path><path d=\"M16 15h.01\"></path><path d=\"M16 19h.01\"></path>",
3763 categories = "weather",
3764 tags = "weather,blizzard",
3765 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
3766 ))]
3767 CloudSnow,
3768 #[cfg(feature = "weather")]
3769 #[strum(props(
3770 svg = "<path d=\"M12 2v2\"></path><path d=\"m4.93 4.93 1.41 1.41\"></path><path d=\"M20 12h2\"></path><path d=\"m19.07 4.93-1.41 1.41\"></path><path d=\"M15.94 12.65a4 4 0 0 0-5.92-4.12\"></path><path d=\"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24\"></path><path d=\"M11 20v2\"></path><path d=\"M7 19v2\"></path>",
3771 categories = "weather",
3772 tags = "weather,partly,rainfall",
3773 contributors = "it-is-not,karsa-mistmere"
3774 ))]
3775 CloudSunRain,
3776 #[cfg(feature = "weather")]
3777 #[strum(props(
3778 svg = "<path d=\"M12 2v2\"></path><path d=\"m4.93 4.93 1.41 1.41\"></path><path d=\"M20 12h2\"></path><path d=\"m19.07 4.93-1.41 1.41\"></path><path d=\"M15.94 12.65a4 4 0 0 0-5.92-4.12\"></path><path d=\"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z\"></path>",
3779 categories = "weather",
3780 tags = "weather,partly",
3781 contributors = "ericfennis,karsa-mistmere"
3782 ))]
3783 CloudSun,
3784 #[cfg(any(feature = "arrows", feature = "files"))]
3785 #[strum(props(
3786 svg = "<path d=\"m17 18-1.53 1.60a5 5 0 0 1-8-1.5\"></path><path d=\"M17 22v-4h-4\"></path><path d=\"M20.99 15.25A4.5 4.5 0 0 0 17.49 8h-1.79a7 7 0 1 0-12.70 5.60\"></path><path d=\"M7 10v4h4\"></path><path d=\"m7 14 1.53-1.60a5 5 0 0 1 8 1.5\"></path>",
3787 categories = "arrows,files",
3788 tags = "synchronize,synchronise,refresh,reconnect,transfer,backup,storage,upload,download,connection,network,data",
3789 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
3790 ))]
3791 CloudSync,
3792 #[cfg(any(feature = "arrows", feature = "files"))]
3793 #[strum(props(
3794 svg = "<path d=\"M12 13v8\"></path><path d=\"M4 14.89A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.24\"></path><path d=\"m8 17 4-4 4 4\"></path>",
3795 categories = "arrows,files",
3796 tags = "file",
3797 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,jguddas"
3798 ))]
3799 CloudUpload,
3800 #[cfg(feature = "weather")]
3801 #[strum(props(
3802 svg = "<path d=\"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z\"></path>",
3803 categories = "weather",
3804 tags = "weather",
3805 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
3806 ))]
3807 Cloud,
3808 #[cfg(feature = "weather")]
3809 #[strum(props(
3810 svg = "<path d=\"M17.5 12a1 1 0 1 1 0 9H9.00a7 7 0 1 1 6.70-9z\"></path><path d=\"M21.83 9A3 3 0 0 0 19 7h-2.20a5.5 5.5 0 0 0-10.72.61\"></path>",
3811 categories = "weather",
3812 tags = "weather,clouds",
3813 contributors = "ericfennis,karsa-mistmere,jguddas"
3814 ))]
3815 Cloudy,
3816 #[cfg(feature = "gaming")]
3817 #[strum(props(
3818 svg = "<path d=\"M16.17 7.83 2 22\"></path><path d=\"M4.02 12a2.82 2.82 0 1 1 3.81-4.17A2.82 2.82 0 1 1 12 4.02a2.82 2.82 0 1 1 4.17 3.81A2.82 2.82 0 1 1 19.98 12a2.82 2.82 0 1 1-3.81 4.17A2.82 2.82 0 1 1 12 19.98a2.82 2.82 0 1 1-4.17-3.81A1 1 0 1 1 4 12\"></path><path d=\"m7.83 7.83 8.34 8.34\"></path>",
3819 categories = "gaming",
3820 tags = "leaf,luck,plant",
3821 contributors = "ericfennis,csandman,jguddas"
3822 ))]
3823 Clover,
3824 #[cfg(any(feature = "shapes", feature = "gaming"))]
3825 #[strum(props(
3826 svg = "<path d=\"M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z\"></path><path d=\"M12 17.66L12 22\"></path>",
3827 categories = "shapes,gaming",
3828 tags = "shape,suit,playing,cards",
3829 contributors = "danielbayley,karsa-mistmere"
3830 ))]
3831 Club,
3832 #[cfg(any(feature = "text", feature = "development"))]
3833 #[strum(props(
3834 svg = "<path d=\"m18 16 4-4-4-4\"></path><path d=\"m6 8-4 4 4 4\"></path><path d=\"m14.5 4-5 16\"></path>",
3835 categories = "text,development",
3836 tags = "source,programming,html,xml",
3837 contributors = "ericfennis,mittalyashu"
3838 ))]
3839 CodeXml,
3840 #[cfg(any(feature = "text", feature = "development"))]
3841 #[strum(props(
3842 svg = "<path d=\"m16 18 6-6-6-6\"></path><path d=\"m8 6-6 6 6 6\"></path>",
3843 categories = "text,development",
3844 tags = "source,programming,html,xml",
3845 contributors = "colebemis"
3846 ))]
3847 Code,
3848 #[cfg(feature = "food_beverage")]
3849 #[strum(props(
3850 svg = "<path d=\"M10 2v2\"></path><path d=\"M14 2v2\"></path><path d=\"M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1\"></path><path d=\"M6 2v2\"></path>",
3851 categories = "food-beverage",
3852 tags = "drink,cup,mug,tea,cafe,hot,beverage",
3853 contributors = "colebemis,csandman,mittalyashu,ericfennis,karsa-mistmere,jguddas"
3854 ))]
3855 Coffee,
3856 #[cfg(feature = "account")]
3857 #[strum(props(
3858 svg = "<path d=\"M11 10.27 7 3.34\"></path><path d=\"m11 13.73-4 6.93\"></path><path d=\"M12 22v-2\"></path><path d=\"M12 2v2\"></path><path d=\"M14 12h8\"></path><path d=\"m17 20.66-1-1.73\"></path><path d=\"m17 3.34-1 1.73\"></path><path d=\"M2 12h2\"></path><path d=\"m20.66 17-1.73-1\"></path><path d=\"m20.66 7-1.73 1\"></path><path d=\"m3.34 17 1.73-1\"></path><path d=\"m3.34 7 1.73 1\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle><circle cx=\"12\" cy=\"12\" r=\"8\"></circle>",
3859 categories = "account",
3860 tags = "computing,settings,cog,edit,gear,preferences,controls,configuration,fixed,build,construction,parts",
3861 contributors = "colebemis,karsa-mistmere"
3862 ))]
3863 Cog,
3864 #[cfg(feature = "gaming")]
3865 #[strum(props(
3866 svg = "<path d=\"M13.74 17.73a6 6 0 1 1-7.48-7.48\"></path><path d=\"M15 6h1v4\"></path><path d=\"m6.13 14.76.866-.5 2 3.46\"></path><circle cx=\"16\" cy=\"8\" r=\"6\"></circle>",
3867 categories = "gaming",
3868 tags = "money,cash,finance,gamble",
3869 contributors = "lscheibel,ericfennis,karsa-mistmere,jguddas"
3870 ))]
3871 Coins,
3872 #[cfg(any(feature = "layout", feature = "design", feature = "text"))]
3873 #[strum(props(
3874 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M12 3v18\"></path>",
3875 categories = "layout,design,text",
3876 tags = "lines,list,queue,preview,panel,parallel,series,split,vertical,horizontal,half,center,middle,even,sidebar,drawer,gutter,fold,reflow,typography,pagination,pages",
3877 contributors = "zenoamaro,ericfennis,csandman,mittalyashu"
3878 ))]
3879 Columns2,
3880 #[cfg(any(feature = "layout", feature = "design"))]
3881 #[strum(props(
3882 svg = "<path d=\"M10.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.5\"></path><path d=\"m14.3 19.6 1-.4\"></path><path d=\"M15 3v7.5\"></path><path d=\"m15.2 16.9-.9-.3\"></path><path d=\"m16.6 21.7.3-.9\"></path><path d=\"m16.8 15.3-.4-1\"></path><path d=\"m19.1 15.2.3-.9\"></path><path d=\"m19.6 21.7-.4-1\"></path><path d=\"m20.7 16.8 1-.4\"></path><path d=\"m21.7 19.4-.9-.3\"></path><path d=\"M9 3v18\"></path><circle cx=\"18\" cy=\"18\" r=\"3\"></circle>",
3883 categories = "layout,design",
3884 tags = "columns,settings,customize,table,grid,adjust,configuration,panel,layout",
3885 contributors = "irvineacosta,danielbayley,karsa-mistmere"
3886 ))]
3887 Columns3Cog,
3888 #[cfg(any(feature = "layout", feature = "design", feature = "text"))]
3889 #[strum(props(
3890 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M9 3v18\"></path><path d=\"M15 3v18\"></path>",
3891 categories = "layout,design,text",
3892 tags = "lines,list,queue,preview,parallel,series,split,vertical,horizontal,thirds,triple,center,middle,alignment,even,sidebars,drawers,gutters,fold,reflow,typography,pagination,pages",
3893 contributors = "danielbayley"
3894 ))]
3895 Columns3,
3896 #[cfg(any(
3897 feature = "layout",
3898 feature = "design",
3899 feature = "text",
3900 feature = "security"
3901 ))]
3902 #[strum(props(
3903 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M7.5 3v18\"></path><path d=\"M12 3v18\"></path><path d=\"M16.5 3v18\"></path>",
3904 categories = "layout,design,text,security",
3905 tags = "lines,list,queue,preview,parallel,series,split,vertical,horizontal,thirds,triple,center,middle,alignment,even,sidebars,drawers,gutters,fold,reflow,typography,pagination,pages,prison,jail,bars,sentence,police,cops,cell,crime,criminal,justice,law,enforcement,grill",
3906 contributors = "danielbayley"
3907 ))]
3908 Columns4,
3909 #[cfg(any(feature = "development", feature = "files"))]
3910 #[strum(props(
3911 svg = "<path d=\"M14 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1\"></path><path d=\"M19 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1\"></path><path d=\"m7 15 3 3\"></path><path d=\"m7 21 3-3H5a2 2 0 0 1-2-2v-2\"></path><rect height=\"7\" rx=\"1\" width=\"7\" x=\"14\" y=\"14\"></rect><rect height=\"7\" rx=\"1\" width=\"7\" x=\"3\" y=\"3\"></rect>",
3912 categories = "development,files",
3913 tags = "cubes,packages,parts,units,collection,cluster,combine,gather,merge",
3914 contributors = "danielbayley,ericfennis,jguddas"
3915 ))]
3916 Combine,
3917 #[cfg(feature = "development")]
3918 #[strum(props(
3919 svg = "<path d=\"M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3\"></path>",
3920 categories = "development",
3921 tags = "keyboard,key,mac,cmd,button",
3922 contributors = "colebemis,csandman,ericfennis,jguddas"
3923 ))]
3924 Command,
3925 #[cfg(any(feature = "navigation", feature = "travel"))]
3926 #[strum(props(
3927 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m16.24 7.76-1.80 5.41a2 2 0 0 1-1.26 1.26L7.76 16.24l1.80-5.41a2 2 0 0 1 1.26-1.26z\"></path>",
3928 categories = "navigation,travel",
3929 tags = "direction,north,east,south,west,safari,browser",
3930 contributors = "colebemis,jguddas"
3931 ))]
3932 Compass,
3933 #[cfg(any(feature = "design", feature = "development"))]
3934 #[strum(props(
3935 svg = "<path d=\"M15.53 11.29a1 1 0 0 0 0 1.41l2.37 2.37a1 1 0 0 0 1.41 0l2.37-2.37a1 1 0 0 0 0-1.41l-2.37-2.37a1 1 0 0 0-1.41 0z\"></path><path d=\"M2.29 11.29a1 1 0 0 0 0 1.41l2.37 2.37a1 1 0 0 0 1.41 0l2.37-2.37a1 1 0 0 0 0-1.41L6.08 8.91a1 1 0 0 0-1.41 0z\"></path><path d=\"M8.91 17.91a1 1 0 0 0 0 1.41l2.37 2.37a1 1 0 0 0 1.41 0l2.37-2.37a1 1 0 0 0 0-1.41l-2.37-2.37a1 1 0 0 0-1.41 0z\"></path><path d=\"M8.91 4.67a1 1 0 0 0 0 1.41l2.37 2.37a1 1 0 0 0 1.41 0l2.37-2.37a1 1 0 0 0 0-1.41l-2.37-2.37a1 1 0 0 0-1.41 0z\"></path>",
3936 categories = "design,development",
3937 tags = "design,element,group,module,part,symbol",
3938 contributors = "karsa-mistmere,jguddas"
3939 ))]
3940 Component,
3941 #[cfg(any(feature = "devices", feature = "development", feature = "gaming"))]
3942 #[strum(props(
3943 svg = "<rect height=\"8\" rx=\"2\" width=\"14\" x=\"5\" y=\"2\"></rect><rect height=\"8\" rx=\"2\" width=\"20\" x=\"2\" y=\"14\"></rect><path d=\"M6 18h2\"></path><path d=\"M12 18h6\"></path>",
3944 categories = "devices,development,gaming",
3945 tags = "pc,chassis,codespaces,github",
3946 contributors = "danielbayley"
3947 ))]
3948 Computer,
3949 #[cfg(feature = "travel")]
3950 #[strum(props(
3951 svg = "<path d=\"M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z\"></path><path d=\"M20 16a8 8 0 1 0-16 0\"></path><path d=\"M12 4v4\"></path><path d=\"M10 4h4\"></path>",
3952 categories = "travel",
3953 tags = "reception,bell,porter",
3954 contributors = "karsa-mistmere,ericfennis"
3955 ))]
3956 ConciergeBell,
3957 #[cfg(any(feature = "shapes", feature = "math"))]
3958 #[strum(props(
3959 svg = "<path d=\"m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98\"></path><ellipse cx=\"12\" cy=\"19\" rx=\"9\" ry=\"3\"></ellipse>",
3960 categories = "shapes,math",
3961 tags = "conical,triangle,triangular,geometry,filter,funnel,hopper,spotlight,searchlight",
3962 contributors = "danielbayley,karsa-mistmere"
3963 ))]
3964 Cone,
3965 #[cfg(feature = "development")]
3966 #[strum(props(
3967 svg = "<rect height=\"8\" rx=\"1\" width=\"20\" x=\"2\" y=\"6\"></rect><path d=\"M17 14v7\"></path><path d=\"M7 14v7\"></path><path d=\"M17 3v3\"></path><path d=\"M7 3v3\"></path><path d=\"M10 14 2.3 6.3\"></path><path d=\"m14 6 7.7 7.7\"></path><path d=\"m8 6 8 8\"></path>",
3968 categories = "development",
3969 tags = "roadwork,maintenance,blockade,barricade",
3970 contributors = "karsa-mistmere,ericfennis,jguddas"
3971 ))]
3972 Construction,
3973 #[cfg(any(
3974 feature = "account",
3975 feature = "connectivity",
3976 feature = "communication",
3977 feature = "social"
3978 ))]
3979 #[strum(props(
3980 svg = "<path d=\"M16 2v2\"></path><path d=\"M17.91 22a6 6 0 0 0-12 0\"></path><path d=\"M8 2v2\"></path><circle cx=\"12\" cy=\"12\" r=\"4\"></circle><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect>",
3981 categories = "account,connectivity,communication,social",
3982 tags = "user,person,family,friend,acquaintance,listing,networking",
3983 contributors = "karsa-mistmere,jguddas"
3984 ))]
3985 ContactRound,
3986 #[cfg(any(
3987 feature = "account",
3988 feature = "connectivity",
3989 feature = "communication",
3990 feature = "social"
3991 ))]
3992 #[strum(props(
3993 svg = "<path d=\"M16 2v2\"></path><path d=\"M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2\"></path><path d=\"M8 2v2\"></path><circle cx=\"12\" cy=\"11\" r=\"3\"></circle><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect>",
3994 categories = "account,connectivity,communication,social",
3995 tags = "user,person,family,friend,acquaintance,listing,networking",
3996 contributors = "lscheibel,karsa-mistmere,FPDK,ericfennis,jguddas"
3997 ))]
3998 Contact,
3999 #[cfg(any(feature = "development", feature = "transportation", feature = "mail"))]
4000 #[strum(props(
4001 svg = "<path d=\"M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z\"></path><path d=\"M10 21.9V14L2.1 9.1\"></path><path d=\"m10 14 11.9-6.9\"></path><path d=\"M14 19.8v-8.1\"></path><path d=\"M18 17.5V9.4\"></path>",
4002 categories = "development,transportation,mail",
4003 tags = "storage,shipping,freight,supply chain,docker,environment,devops,code,coding",
4004 contributors = "danielbayley"
4005 ))]
4006 Container,
4007 #[cfg(any(feature = "photography", feature = "accessibility", feature = "design"))]
4008 #[strum(props(
4009 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 18a6 6 0 0 0 0-12v12z\"></path>",
4010 categories = "photography,accessibility,design",
4011 tags = "display,accessibility",
4012 contributors = "lscheibel,csandman,ericfennis"
4013 ))]
4014 Contrast,
4015 #[cfg(any(feature = "account", feature = "food_beverage"))]
4016 #[strum(props(
4017 svg = "<path d=\"M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5\"></path><path d=\"M8.5 8.5v.01\"></path><path d=\"M16 15.5v.01\"></path><path d=\"M12 12v.01\"></path><path d=\"M11 17v.01\"></path><path d=\"M7 14v.01\"></path>",
4018 categories = "account,food-beverage",
4019 tags = "biscuit,privacy,legal,food",
4020 contributors = "it-is-not,ericfennis"
4021 ))]
4022 Cookie,
4023 #[cfg(any(feature = "food_beverage", feature = "home"))]
4024 #[strum(props(
4025 svg = "<path d=\"M2 12h20\"></path><path d=\"M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8\"></path><path d=\"m4 8 16-4\"></path><path d=\"m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8\"></path>",
4026 categories = "food-beverage,home",
4027 tags = "pod,cooking,recipe,food,kitchen,chef,restaurant,dinner,lunch,breakfast,meal,eat",
4028 contributors = "guillermo-angeles,ericfennis"
4029 ))]
4030 CookingPot,
4031 #[cfg(any(feature = "text", feature = "notifications"))]
4032 #[strum(props(
4033 svg = "<path d=\"m12 15 2 2 4-4\"></path><rect height=\"14\" rx=\"2\" ry=\"2\" width=\"14\" x=\"8\" y=\"8\"></rect><path d=\"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2\"></path>",
4034 categories = "text,notifications",
4035 tags = "clone,duplicate,done,multiple",
4036 contributors = "danielbayley,jguddas"
4037 ))]
4038 CopyCheck,
4039 #[cfg(any(feature = "text", feature = "math"))]
4040 #[strum(props(
4041 svg = "<line x1=\"12\" x2=\"18\" y1=\"15\" y2=\"15\"></line><rect height=\"14\" rx=\"2\" ry=\"2\" width=\"14\" x=\"8\" y=\"8\"></rect><path d=\"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2\"></path>",
4042 categories = "text,math",
4043 tags = "clone,duplicate,remove,delete,collapse,subtract,multiple,-",
4044 contributors = "danielbayley,jguddas"
4045 ))]
4046 CopyMinus,
4047 #[cfg(any(feature = "text", feature = "math"))]
4048 #[strum(props(
4049 svg = "<line x1=\"15\" x2=\"15\" y1=\"12\" y2=\"18\"></line><line x1=\"12\" x2=\"18\" y1=\"15\" y2=\"15\"></line><rect height=\"14\" rx=\"2\" ry=\"2\" width=\"14\" x=\"8\" y=\"8\"></rect><path d=\"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2\"></path>",
4050 categories = "text,math",
4051 tags = "clone,duplicate,add,multiple,expand,+",
4052 contributors = "danielbayley,jguddas"
4053 ))]
4054 CopyPlus,
4055 #[cfg(any(feature = "text", feature = "development", feature = "math"))]
4056 #[strum(props(
4057 svg = "<line x1=\"12\" x2=\"18\" y1=\"18\" y2=\"12\"></line><rect height=\"14\" rx=\"2\" ry=\"2\" width=\"14\" x=\"8\" y=\"8\"></rect><path d=\"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2\"></path>",
4058 categories = "text,development,math",
4059 tags = "clone,duplicate,cancel,ban,no,stop,forbidden,prohibited,error,multiple,divide,division,split,or,/",
4060 contributors = "danielbayley,jguddas"
4061 ))]
4062 CopySlash,
4063 #[cfg(any(feature = "notifications", feature = "math"))]
4064 #[strum(props(
4065 svg = "<line x1=\"12\" x2=\"18\" y1=\"12\" y2=\"18\"></line><line x1=\"12\" x2=\"18\" y1=\"18\" y2=\"12\"></line><rect height=\"14\" rx=\"2\" ry=\"2\" width=\"14\" x=\"8\" y=\"8\"></rect><path d=\"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2\"></path>",
4066 categories = "notifications,math",
4067 tags = "cancel,close,delete,remove,clear,multiple,multiply,multiplication,times",
4068 contributors = "danielbayley,jguddas"
4069 ))]
4070 CopyX,
4071 #[cfg(feature = "text")]
4072 #[strum(props(
4073 svg = "<rect height=\"14\" rx=\"2\" ry=\"2\" width=\"14\" x=\"8\" y=\"8\"></rect><path d=\"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2\"></path>",
4074 categories = "text",
4075 tags = "clone,duplicate,multiple",
4076 contributors = "colebemis,csandman,ericfennis,danielbayley,jguddas"
4077 ))]
4078 Copy,
4079 #[cfg(feature = "text")]
4080 #[strum(props(
4081 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M9.17 14.83a4 4 0 1 0 0-5.66\"></path>",
4082 categories = "text",
4083 tags = "licence",
4084 contributors = "ericfennis,johnletey,csandman"
4085 ))]
4086 Copyleft,
4087 #[cfg(feature = "text")]
4088 #[strum(props(
4089 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M14.83 14.83a4 4 0 1 1 0-5.66\"></path>",
4090 categories = "text",
4091 tags = "licence,license",
4092 contributors = "ericfennis,johnletey,csandman"
4093 ))]
4094 Copyright,
4095 #[cfg(feature = "arrows")]
4096 #[strum(props(
4097 svg = "<path d=\"M20 4v7a4 4 0 0 1-4 4H4\"></path><path d=\"m9 10-5 5 5 5\"></path>",
4098 categories = "arrows",
4099 tags = "arrow,return",
4100 contributors = "colebemis,csandman,ericfennis"
4101 ))]
4102 CornerDownLeft,
4103 #[cfg(any(feature = "arrows", feature = "text", feature = "development"))]
4104 #[strum(props(
4105 svg = "<path d=\"m15 10 5 5-5 5\"></path><path d=\"M4 4v7a4 4 0 0 0 4 4h12\"></path>",
4106 categories = "arrows,text,development",
4107 tags = "arrow,indent,tab",
4108 contributors = "colebemis,csandman,ericfennis"
4109 ))]
4110 CornerDownRight,
4111 #[cfg(feature = "arrows")]
4112 #[strum(props(
4113 svg = "<path d=\"m14 15-5 5-5-5\"></path><path d=\"M20 4h-7a4 4 0 0 0-4 4v12\"></path>",
4114 categories = "arrows",
4115 tags = "arrow",
4116 contributors = "colebemis,csandman,ericfennis"
4117 ))]
4118 CornerLeftDown,
4119 #[cfg(feature = "arrows")]
4120 #[strum(props(
4121 svg = "<path d=\"M14 9 9 4 4 9\"></path><path d=\"M20 20h-7a4 4 0 0 1-4-4V4\"></path>",
4122 categories = "arrows",
4123 tags = "arrow",
4124 contributors = "colebemis,csandman,ericfennis"
4125 ))]
4126 CornerLeftUp,
4127 #[cfg(feature = "arrows")]
4128 #[strum(props(
4129 svg = "<path d=\"m10 15 5 5 5-5\"></path><path d=\"M4 4h7a4 4 0 0 1 4 4v12\"></path>",
4130 categories = "arrows",
4131 tags = "arrow",
4132 contributors = "colebemis,csandman,ericfennis"
4133 ))]
4134 CornerRightDown,
4135 #[cfg(feature = "arrows")]
4136 #[strum(props(
4137 svg = "<path d=\"m10 9 5-5 5 5\"></path><path d=\"M4 20h7a4 4 0 0 0 4-4V4\"></path>",
4138 categories = "arrows",
4139 tags = "arrow",
4140 contributors = "colebemis,csandman,ericfennis"
4141 ))]
4142 CornerRightUp,
4143 #[cfg(feature = "arrows")]
4144 #[strum(props(
4145 svg = "<path d=\"M20 20v-7a4 4 0 0 0-4-4H4\"></path><path d=\"M9 14 4 9l5-5\"></path>",
4146 categories = "arrows",
4147 tags = "arrow",
4148 contributors = "colebemis,csandman,ericfennis"
4149 ))]
4150 CornerUpLeft,
4151 #[cfg(feature = "arrows")]
4152 #[strum(props(
4153 svg = "<path d=\"m15 14 5-5-5-5\"></path><path d=\"M4 20v-7a4 4 0 0 1 4-4h12\"></path>",
4154 categories = "arrows",
4155 tags = "arrow",
4156 contributors = "colebemis,csandman,ericfennis"
4157 ))]
4158 CornerUpRight,
4159 #[cfg(feature = "devices")]
4160 #[strum(props(
4161 svg = "<path d=\"M12 20v2\"></path><path d=\"M12 2v2\"></path><path d=\"M17 20v2\"></path><path d=\"M17 2v2\"></path><path d=\"M2 12h2\"></path><path d=\"M2 17h2\"></path><path d=\"M2 7h2\"></path><path d=\"M20 12h2\"></path><path d=\"M20 17h2\"></path><path d=\"M20 7h2\"></path><path d=\"M7 20v2\"></path><path d=\"M7 2v2\"></path><rect height=\"16\" rx=\"2\" width=\"16\" x=\"4\" y=\"4\"></rect><rect height=\"8\" rx=\"1\" width=\"8\" x=\"8\" y=\"8\"></rect>",
4162 categories = "devices",
4163 tags = "processor,cores,technology,computer,chip,circuit,memory,ram,specs,gigahertz,ghz",
4164 contributors = "colebemis,karsa-mistmere,ericfennis,jguddas"
4165 ))]
4166 Cpu,
4167 #[cfg(feature = "text")]
4168 #[strum(props(
4169 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1\"></path><path d=\"M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1\"></path>",
4170 categories = "text",
4171 tags = "licence,license",
4172 contributors = "ericfennis"
4173 ))]
4174 CreativeCommons,
4175 #[cfg(any(feature = "account", feature = "finance"))]
4176 #[strum(props(
4177 svg = "<rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"5\"></rect><line x1=\"2\" x2=\"22\" y1=\"10\" y2=\"10\"></line>",
4178 categories = "account,finance",
4179 tags = "bank,purchase,payment,cc",
4180 contributors = "colebemis,karsa-mistmere,ericfennis"
4181 ))]
4182 CreditCard,
4183 #[cfg(feature = "food_beverage")]
4184 #[strum(props(
4185 svg = "<path d=\"M10.2 18H4.77a1.5 1.5 0 0 1-1.35-.97 11 11 0 0 1 .132-6.48\"></path><path d=\"M18 10.2V4.77a1.5 1.5 0 0 0-.97-1.35 11 11 0 0 0-6.48.132\"></path><path d=\"M18 5a4 3 0 0 1 4 3 2 2 0 0 1-2 2 10 10 0 0 0-5.13 1.42\"></path><path d=\"M5 18a3 4 0 0 0 3 4 2 2 0 0 0 2-2 10 10 0 0 1 1.42-5.14\"></path><path d=\"M8.70 2.55a10 10 0 0 0-6.15 6.15 1.5 1.5 0 0 0 .676 1.62l9.80 5.42a2 2 0 0 0 2.71-2.71l-5.42-9.80a1.5 1.5 0 0 0-1.62-.676\"></path>",
4186 categories = "food-beverage",
4187 tags = "bakery,cooking,food,pastry",
4188 contributors = "karsa-mistmere"
4189 ))]
4190 Croissant,
4191 #[cfg(any(feature = "photography", feature = "design"))]
4192 #[strum(props(
4193 svg = "<path d=\"M6 2v14a2 2 0 0 0 2 2h14\"></path><path d=\"M18 22V8a2 2 0 0 0-2-2H2\"></path>",
4194 categories = "photography,design",
4195 tags = "photo,image",
4196 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
4197 ))]
4198 Crop,
4199 #[cfg(feature = "shapes")]
4200 #[strum(props(
4201 svg = "<path d=\"M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z\"></path>",
4202 categories = "shapes",
4203 tags = "healthcare,first aid",
4204 contributors = "lscheibel,ericfennis"
4205 ))]
4206 Cross,
4207 #[cfg(feature = "photography")]
4208 #[strum(props(
4209 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"22\" x2=\"18\" y1=\"12\" y2=\"12\"></line><line x1=\"6\" x2=\"2\" y1=\"12\" y2=\"12\"></line><line x1=\"12\" x2=\"12\" y1=\"6\" y2=\"2\"></line><line x1=\"12\" x2=\"12\" y1=\"22\" y2=\"18\"></line>",
4210 categories = "photography",
4211 tags = "aim,target",
4212 contributors = "colebemis,ericfennis"
4213 ))]
4214 Crosshair,
4215 #[cfg(feature = "gaming")]
4216 #[strum(props(
4217 svg = "<path d=\"M11.56 3.26a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.51.294L21.18 5.5a.5.5 0 0 1 .798.51l-2.83 10.24a1 1 0 0 1-.956.73H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.27 3.66a1 1 0 0 0 1.51-.294z\"></path><path d=\"M5 21h14\"></path>",
4218 categories = "gaming",
4219 tags = "diadem,tiara,circlet,corona,king,ruler,winner,favourite",
4220 contributors = "ahtohbi4,ericfennis,csandman,karsa-mistmere"
4221 ))]
4222 Crown,
4223 #[cfg(any(feature = "shapes", feature = "math", feature = "food_beverage"))]
4224 #[strum(props(
4225 svg = "<path d=\"M10 22v-8\"></path><path d=\"M2.33 8.89 10 14l11.71-7.02\"></path><path d=\"M22 14a2 2 0 0 1-.971 1.71l-10 6a2 2 0 0 1-2.13-.05l-6-4A2 2 0 0 1 2 16v-6a2 2 0 0 1 .971-1.71l10-6a2 2 0 0 1 2.13.05l6 4A2 2 0 0 1 22 8z\"></path>",
4226 categories = "shapes,math,food-beverage",
4227 tags = "brick,block,box,3d,solid,volume,container,storage,shipping,carton,geometry,rectangular,hexahedron,butter,tofu,soap,cheese,package,parcel,crate",
4228 contributors = "danielbayley,karsa-mistmere"
4229 ))]
4230 Cuboid,
4231 #[cfg(feature = "food_beverage")]
4232 #[strum(props(
4233 svg = "<path d=\"m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8\"></path><path d=\"M5 8h14\"></path><path d=\"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0\"></path><path d=\"m12 8 1-6h2\"></path>",
4234 categories = "food-beverage",
4235 tags = "beverage,cup,drink,soda,straw,water",
4236 contributors = "karsa-mistmere,ericfennis,jguddas"
4237 ))]
4238 CupSoda,
4239 #[cfg(feature = "finance")]
4240 #[strum(props(
4241 svg = "<circle cx=\"12\" cy=\"12\" r=\"8\"></circle><line x1=\"3\" x2=\"6\" y1=\"3\" y2=\"6\"></line><line x1=\"21\" x2=\"18\" y1=\"3\" y2=\"6\"></line><line x1=\"3\" x2=\"6\" y1=\"21\" y2=\"18\"></line><line x1=\"21\" x2=\"18\" y1=\"21\" y2=\"18\"></line>",
4242 categories = "finance",
4243 tags = "finance,money",
4244 contributors = "connium,ericfennis"
4245 ))]
4246 Currency,
4247 #[cfg(any(feature = "shapes", feature = "design", feature = "math"))]
4248 #[strum(props(
4249 svg = "<ellipse cx=\"12\" cy=\"5\" rx=\"9\" ry=\"3\"></ellipse><path d=\"M3 5v14a9 3 0 0 0 18 0V5\"></path>",
4250 categories = "shapes,design,math",
4251 tags = "shape,elliptical,geometry,container,storage,tin,pot",
4252 contributors = "danielbayley"
4253 ))]
4254 Cylinder,
4255 #[cfg(any(
4256 feature = "buildings",
4257 feature = "sustainability",
4258 feature = "navigation"
4259 ))]
4260 #[strum(props(
4261 svg = "<path d=\"M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1\"></path><path d=\"M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1\"></path><path d=\"M2 10h4\"></path><path d=\"M2 14h4\"></path><path d=\"M2 18h4\"></path><path d=\"M2 6h4\"></path><path d=\"M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z\"></path>",
4262 categories = "buildings,sustainability,navigation",
4263 tags = "electricity,energy,water",
4264 contributors = "AnnaSasDev"
4265 ))]
4266 Dam,
4267 #[cfg(any(
4268 feature = "devices",
4269 feature = "arrows",
4270 feature = "design",
4271 feature = "development",
4272 feature = "photography"
4273 ))]
4274 #[strum(props(
4275 svg = "<ellipse cx=\"12\" cy=\"5\" rx=\"9\" ry=\"3\"></ellipse><path d=\"M3 12a9 3 0 0 0 5 2.69\"></path><path d=\"M21 9.3V5\"></path><path d=\"M3 5v14a9 3 0 0 0 6.47 2.88\"></path><path d=\"M12 12v4h4\"></path><path d=\"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16\"></path>",
4276 categories = "devices,arrows,design,development,photography",
4277 tags = "storage,memory,bytes,servers,backup,timemachine,rotate,arrow,left",
4278 contributors = "ericfennis,jguddas,danielbayley,karsa-mistmere"
4279 ))]
4280 DatabaseBackup,
4281 #[cfg(any(feature = "devices", feature = "development"))]
4282 #[strum(props(
4283 svg = "<path d=\"M21 11.69V5\"></path><path d=\"m22 22-1.87-1.87\"></path><path d=\"M3 12a9 3 0 0 0 8.69 2.99\"></path><path d=\"M3 5v14a9 3 0 0 0 9.28 2.99\"></path><circle cx=\"18\" cy=\"18\" r=\"3\"></circle><ellipse cx=\"12\" cy=\"5\" rx=\"9\" ry=\"3\"></ellipse>",
4284 categories = "devices,development",
4285 tags = "storage,memory,container,tin,pot,bytes,servers",
4286 contributors = "colebemis,jguddas,Spleefies"
4287 ))]
4288 DatabaseSearch,
4289 #[cfg(any(feature = "devices", feature = "development"))]
4290 #[strum(props(
4291 svg = "<ellipse cx=\"12\" cy=\"5\" rx=\"9\" ry=\"3\"></ellipse><path d=\"M3 5V19A9 3 0 0 0 15 21.84\"></path><path d=\"M21 5V8\"></path><path d=\"M21 12L18 17H22L19 22\"></path><path d=\"M3 12A9 3 0 0 0 14.59 14.87\"></path>",
4292 categories = "devices,development",
4293 tags = "cache busting,storage,memory,bytes,servers,power,crash",
4294 contributors = "danielbayley"
4295 ))]
4296 DatabaseZap,
4297 #[cfg(any(feature = "devices", feature = "development"))]
4298 #[strum(props(
4299 svg = "<ellipse cx=\"12\" cy=\"5\" rx=\"9\" ry=\"3\"></ellipse><path d=\"M3 5V19A9 3 0 0 0 21 19V5\"></path><path d=\"M3 12A9 3 0 0 0 21 12\"></path>",
4300 categories = "devices,development",
4301 tags = "storage,memory,container,tin,pot,bytes,servers",
4302 contributors = "colebemis,jguddas"
4303 ))]
4304 Database,
4305 #[cfg(any(
4306 feature = "design",
4307 feature = "text",
4308 feature = "arrows",
4309 feature = "math"
4310 ))]
4311 #[strum(props(
4312 svg = "<path d=\"m13 21-3-3 3-3\"></path><path d=\"M20 18H10\"></path><path d=\"M3 11h.01\"></path><rect height=\"8\" rx=\"2.5\" width=\"5\" x=\"6\" y=\"3\"></rect>",
4313 categories = "design,text,arrows,math",
4314 tags = "numerical,decimal,decrease,less,fewer,precision,rounding,digits,fraction,float,number",
4315 contributors = "AnnaSasDev,karsa-mistmere"
4316 ))]
4317 DecimalsArrowLeft,
4318 #[cfg(any(
4319 feature = "design",
4320 feature = "text",
4321 feature = "arrows",
4322 feature = "math"
4323 ))]
4324 #[strum(props(
4325 svg = "<path d=\"M10 18h10\"></path><path d=\"m17 21 3-3-3-3\"></path><path d=\"M3 11h.01\"></path><rect height=\"8\" rx=\"2.5\" width=\"5\" x=\"15\" y=\"3\"></rect><rect height=\"8\" rx=\"2.5\" width=\"5\" x=\"6\" y=\"3\"></rect>",
4326 categories = "design,text,arrows,math",
4327 tags = "numerical,decimal,increase,more,precision,rounding,digits,fraction,float,number",
4328 contributors = "AnnaSasDev,karsa-mistmere"
4329 ))]
4330 DecimalsArrowRight,
4331 #[cfg(any(feature = "text", feature = "arrows"))]
4332 #[strum(props(
4333 svg = "<path d=\"M10 5a2 2 0 0 0-1.34.519l-6.32 5.74a1 1 0 0 0 0 1.48l6.32 5.74A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z\"></path><path d=\"m12 9 6 6\"></path><path d=\"m18 9-6 6\"></path>",
4334 categories = "text,arrows",
4335 tags = "backspace,remove",
4336 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,jguddas"
4337 ))]
4338 Delete,
4339 #[cfg(feature = "food_beverage")]
4340 #[strum(props(
4341 svg = "<path d=\"M10.16 3.16A10 10 0 0 0 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4-.006 10 10 0 0 0-8.16-9.82\"></path><path d=\"M20.80 14.86a9 9 0 0 1-17.60 0\"></path><circle cx=\"12\" cy=\"4\" r=\"2\"></circle>",
4342 categories = "food-beverage",
4343 tags = "pudding,christmas,xmas,custard,iced bun,icing,fondant,cake,ice cream,gelato,sundae,scoop,dollop,sugar,food,sweet",
4344 contributors = "danielbayley,jguddas"
4345 ))]
4346 Dessert,
4347 #[cfg(any(
4348 feature = "shapes",
4349 feature = "math",
4350 feature = "design",
4351 feature = "tools"
4352 ))]
4353 #[strum(props(
4354 svg = "<circle cx=\"19\" cy=\"19\" r=\"2\"></circle><circle cx=\"5\" cy=\"5\" r=\"2\"></circle><path d=\"M6.48 3.66a10 10 0 0 1 13.86 13.86\"></path><path d=\"m6.41 6.41 11.18 11.18\"></path><path d=\"M3.66 6.48a10 10 0 0 0 13.86 13.86\"></path>",
4355 categories = "shapes,math,design,tools",
4356 tags = "shape,circle,geometry,trigonometry,width,height,size,calculate,measure",
4357 contributors = "danielbayley,karsa-mistmere"
4358 ))]
4359 Diameter,
4360 #[cfg(any(
4361 feature = "multimedia",
4362 feature = "photography",
4363 feature = "tools",
4364 feature = "devices"
4365 ))]
4366 #[strum(props(
4367 svg = "<path d=\"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z\"></path><path d=\"M8 12h8\"></path>",
4368 categories = "multimedia,photography,tools,devices",
4369 tags = "keyframe,subtract,remove,decrease,reduce,calculator,button,keyboard,line,divider,separator,horizontal rule,hr,html,markup,markdown,---,toolbar,operator,code,coding,minimum,downgrade",
4370 contributors = "chessurisme"
4371 ))]
4372 DiamondMinus,
4373 #[cfg(any(
4374 feature = "social",
4375 feature = "finance",
4376 feature = "shopping",
4377 feature = "math"
4378 ))]
4379 #[strum(props(
4380 svg = "<path d=\"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z\"></path><path d=\"M9.2 9.2h.01\"></path><path d=\"m14.5 9.5-5 5\"></path><path d=\"M14.7 14.8h.01\"></path>",
4381 categories = "social,finance,shopping,math",
4382 tags = "verified,unverified,sale,discount,offer,marketing,sticker,price tag",
4383 contributors = "danielbayley"
4384 ))]
4385 DiamondPercent,
4386 #[cfg(any(
4387 feature = "multimedia",
4388 feature = "photography",
4389 feature = "tools",
4390 feature = "devices"
4391 ))]
4392 #[strum(props(
4393 svg = "<path d=\"M12 8v8\"></path><path d=\"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z\"></path><path d=\"M8 12h8\"></path>",
4394 categories = "multimedia,photography,tools,devices",
4395 tags = "keyframe,add,new,increase,increment,positive,calculate,toolbar,crosshair,aim,target,scope,sight,reticule,maximum,upgrade,extra,+",
4396 contributors = "chessurisme"
4397 ))]
4398 DiamondPlus,
4399 #[cfg(any(feature = "shapes", feature = "gaming"))]
4400 #[strum(props(
4401 svg = "<path d=\"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z\"></path>",
4402 categories = "shapes,gaming",
4403 tags = "square,rectangle,oblique,rhombus,shape,suit,playing,cards",
4404 contributors = "karsa-mistmere,ericfennis,jguddas"
4405 ))]
4406 Diamond,
4407 #[cfg(feature = "gaming")]
4408 #[strum(props(
4409 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M12 12h.01\"></path>",
4410 categories = "gaming",
4411 tags = "dice,random,tabletop,1,board,game",
4412 contributors = "mittalyashu,ericfennis"
4413 ))]
4414 Dice1,
4415 #[cfg(feature = "gaming")]
4416 #[strum(props(
4417 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M15 9h.01\"></path><path d=\"M9 15h.01\"></path>",
4418 categories = "gaming",
4419 tags = "dice,random,tabletop,2,board,game",
4420 contributors = "mittalyashu,ericfennis"
4421 ))]
4422 Dice2,
4423 #[cfg(feature = "gaming")]
4424 #[strum(props(
4425 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M16 8h.01\"></path><path d=\"M12 12h.01\"></path><path d=\"M8 16h.01\"></path>",
4426 categories = "gaming",
4427 tags = "dice,random,tabletop,3,board,game",
4428 contributors = "mittalyashu,ericfennis"
4429 ))]
4430 Dice3,
4431 #[cfg(feature = "gaming")]
4432 #[strum(props(
4433 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M16 8h.01\"></path><path d=\"M8 8h.01\"></path><path d=\"M8 16h.01\"></path><path d=\"M16 16h.01\"></path>",
4434 categories = "gaming",
4435 tags = "dice,random,tabletop,4,board,game",
4436 contributors = "mittalyashu,ericfennis"
4437 ))]
4438 Dice4,
4439 #[cfg(feature = "gaming")]
4440 #[strum(props(
4441 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M16 8h.01\"></path><path d=\"M8 8h.01\"></path><path d=\"M8 16h.01\"></path><path d=\"M16 16h.01\"></path><path d=\"M12 12h.01\"></path>",
4442 categories = "gaming",
4443 tags = "dice,random,tabletop,5,board,game",
4444 contributors = "mittalyashu,ericfennis"
4445 ))]
4446 Dice5,
4447 #[cfg(feature = "gaming")]
4448 #[strum(props(
4449 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M16 8h.01\"></path><path d=\"M16 12h.01\"></path><path d=\"M16 16h.01\"></path><path d=\"M8 8h.01\"></path><path d=\"M8 12h.01\"></path><path d=\"M8 16h.01\"></path>",
4450 categories = "gaming",
4451 tags = "dice,random,tabletop,6,board,game",
4452 contributors = "mittalyashu,ericfennis"
4453 ))]
4454 Dice6,
4455 #[cfg(feature = "gaming")]
4456 #[strum(props(
4457 svg = "<rect height=\"12\" rx=\"2\" ry=\"2\" width=\"12\" x=\"2\" y=\"10\"></rect><path d=\"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6\"></path><path d=\"M6 18h.01\"></path><path d=\"M10 14h.01\"></path><path d=\"M15 6h.01\"></path><path d=\"M18 9h.01\"></path>",
4458 categories = "gaming",
4459 tags = "dice,random,tabletop,board,game",
4460 contributors = "karsa-mistmere,ericfennis"
4461 ))]
4462 Dices,
4463 #[cfg(any(feature = "development", feature = "files"))]
4464 #[strum(props(
4465 svg = "<path d=\"M12 3v14\"></path><path d=\"M5 10h14\"></path><path d=\"M5 21h14\"></path>",
4466 categories = "development,files",
4467 tags = "patch,difference,compare,plus,minus,plus-minus,math",
4468 contributors = "karsa-mistmere,danielbayley"
4469 ))]
4470 Diff,
4471 #[cfg(any(feature = "devices", feature = "multimedia"))]
4472 #[strum(props(
4473 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><circle cx=\"12\" cy=\"12\" r=\"4\"></circle><path d=\"M12 12h.01\"></path>",
4474 categories = "devices,multimedia",
4475 tags = "album,music,vinyl,record,cd,dvd,format,dj,spin,rotate,rpm",
4476 contributors = "danielbayley,jguddas,ericfennis"
4477 ))]
4478 Disc2,
4479 #[cfg(any(feature = "devices", feature = "multimedia"))]
4480 #[strum(props(
4481 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M6 12c0-1.7.7-3.2 1.8-4.2\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle><path d=\"M18 12c0 1.7-.7 3.2-1.8 4.2\"></path>",
4482 categories = "devices,multimedia",
4483 tags = "album,music,vinyl,record,cd,dvd,format,dj,spin,rotate,rpm",
4484 contributors = "danielbayley"
4485 ))]
4486 Disc3,
4487 #[cfg(any(feature = "devices", feature = "multimedia"))]
4488 #[strum(props(
4489 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><circle cx=\"12\" cy=\"12\" r=\"5\"></circle><path d=\"M12 12h.01\"></path>",
4490 categories = "devices,multimedia",
4491 tags = "album,music,songs,format,cd,dvd,vinyl,sleeve,cover,platinum,compilation,ep,recording,playback,spin,rotate,rpm,dj",
4492 contributors = "danielbayley"
4493 ))]
4494 DiscAlbum,
4495 #[cfg(any(feature = "devices", feature = "multimedia"))]
4496 #[strum(props(
4497 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><circle cx=\"12\" cy=\"12\" r=\"2\"></circle>",
4498 categories = "devices,multimedia",
4499 tags = "album,music,songs,format,cd,dvd,vinyl,sleeve,cover,platinum,compilation,ep,recording,playback,spin,rotate,rpm,dj",
4500 contributors = "colebemis,danielbayley,jguddas,ericfennis"
4501 ))]
4502 Disc,
4503 #[cfg(any(feature = "math", feature = "development"))]
4504 #[strum(props(
4505 svg = "<circle cx=\"12\" cy=\"6\" r=\"1\"></circle><line x1=\"5\" x2=\"19\" y1=\"12\" y2=\"12\"></line><circle cx=\"12\" cy=\"18\" r=\"1\"></circle>",
4506 categories = "math,development",
4507 tags = "calculate,math,division,operator,code,÷,/",
4508 contributors = "csandman,ericfennis"
4509 ))]
4510 Divide,
4511 #[cfg(any(feature = "medical", feature = "food_beverage"))]
4512 #[strum(props(
4513 svg = "<path d=\"M15 2c-1.35 1.5-2.09 3-2.5 4.5L14 8\"></path><path d=\"m17 6-2.89-2.89\"></path><path d=\"M2 15c3.33-3 6.66-3 10-3\"></path><path d=\"m2 2 20 20\"></path><path d=\"m20 9 .891.89\"></path><path d=\"M22 9c-1.5 1.35-3 2.09-4.5 2.5l-1-1\"></path><path d=\"M3.10 14.10 4 15\"></path><path d=\"m6.5 12.5 1 1\"></path><path d=\"m7 18 2.89 2.89\"></path><path d=\"M9 22c1.35-1.5 2.09-3 2.5-4.5L10 16\"></path>",
4514 categories = "medical,food-beverage",
4515 tags = "gene,gmo free,helix,heredity,chromosome,nucleic acid",
4516 contributors = "karsa-mistmere,ericfennis"
4517 ))]
4518 DnaOff,
4519 #[cfg(feature = "medical")]
4520 #[strum(props(
4521 svg = "<path d=\"m10 16 1.5 1.5\"></path><path d=\"m14 8-1.5-1.5\"></path><path d=\"M15 2c-1.79 1.99-2.51 3.99-2.80 5.99\"></path><path d=\"m16.5 10.5 1 1\"></path><path d=\"m17 6-2.89-2.89\"></path><path d=\"M2 15c6.66-6 13.33 0 20-6\"></path><path d=\"m20 9 .891.89\"></path><path d=\"M3.10 14.10 4 15\"></path><path d=\"m6.5 12.5 1 1\"></path><path d=\"m7 18 2.89 2.89\"></path><path d=\"M9 22c1.79-1.99 2.51-3.99 2.80-5.99\"></path>",
4522 categories = "medical",
4523 tags = "gene,gmo,helix,heredity,chromosome,nucleic acid",
4524 contributors = "karsa-mistmere"
4525 ))]
4526 Dna,
4527 #[cfg(any(
4528 feature = "layout",
4529 feature = "design",
4530 feature = "development",
4531 feature = "files"
4532 ))]
4533 #[strum(props(
4534 svg = "<path d=\"M2 8h20\"></path><rect height=\"16\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect><path d=\"M6 16h12\"></path>",
4535 categories = "layout,design,development,files",
4536 tags = "desktop,applications,launch,home,menu bar,bottom,line,macos,osx",
4537 contributors = "danielbayley"
4538 ))]
4539 Dock,
4540 #[cfg(feature = "animals")]
4541 #[strum(props(
4542 svg = "<path d=\"M11.25 16.25h1.5L12 17z\"></path><path d=\"M16 14v.5\"></path><path d=\"M4.42 11.24A13.15 13.15 0 0 0 4 14.55C4 18.72 7.58 21 12 21s8-2.27 8-6.44a11.70 11.70 0 0 0-.493-3.30\"></path><path d=\"M8 14v.5\"></path><path d=\"M8.5 8.5c-.384 1.05-1.08 2.02-2.34 2.5-1.93.722-3.57-.297-3.65-1-.113-.994 1.17-6.53 4-7 1.92-.321 3.65.845 3.65 2.23A7.49 7.49 0 0 1 14 5.27c0-1.39 1.84-2.59 3.76-2.27 2.82.47 4.11 6.00 4 7-.08.70-1.72 1.72-3.65 1-1.26-.472-1.85-1.45-2.23-2.5\"></path>",
4543 categories = "animals",
4544 tags = "animal,pet,puppy,hound,canine",
4545 contributors = "kemie,jguddas"
4546 ))]
4547 Dog,
4548 #[cfg(feature = "finance")]
4549 #[strum(props(
4550 svg = "<line x1=\"12\" x2=\"12\" y1=\"2\" y2=\"22\"></line><path d=\"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6\"></path>",
4551 categories = "finance",
4552 tags = "currency,money,payment",
4553 contributors = "colebemis,csandman,ericfennis"
4554 ))]
4555 DollarSign,
4556 #[cfg(feature = "food_beverage")]
4557 #[strum(props(
4558 svg = "<path d=\"M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle>",
4559 categories = "food-beverage",
4560 tags = "doughnut,sprinkles,topping,fast food,junk food,snack,treat,sweet,sugar,dessert,hollow,ring",
4561 contributors = "danielbayley"
4562 ))]
4563 Donut,
4564 #[cfg(any(feature = "home", feature = "travel", feature = "security"))]
4565 #[strum(props(
4566 svg = "<path d=\"M10 12h.01\"></path><path d=\"M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14\"></path><path d=\"M2 20h8\"></path><path d=\"M20 17v-2a2 2 0 1 0-4 0v2\"></path><rect height=\"5\" rx=\"1\" width=\"8\" x=\"14\" y=\"17\"></rect>",
4567 categories = "home,travel,security",
4568 tags = "entrance,entry,exit,ingress,egress,gate,gateway,emergency exit,lock",
4569 contributors = "karsa-mistmere,lukedukeus"
4570 ))]
4571 DoorClosedLocked,
4572 #[cfg(any(feature = "home", feature = "travel", feature = "security"))]
4573 #[strum(props(
4574 svg = "<path d=\"M10 12h.01\"></path><path d=\"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14\"></path><path d=\"M2 20h20\"></path>",
4575 categories = "home,travel,security",
4576 tags = "entrance,entry,exit,ingress,egress,gate,gateway,emergency exit",
4577 contributors = "karsa-mistmere"
4578 ))]
4579 DoorClosed,
4580 #[cfg(any(feature = "home", feature = "travel", feature = "security"))]
4581 #[strum(props(
4582 svg = "<path d=\"M11 20H2\"></path><path d=\"M11 4.56v16.15a1 1 0 0 0 1.24.97L19 20V5.56a2 2 0 0 0-1.51-1.94l-4-1A2 2 0 0 0 11 4.56z\"></path><path d=\"M11 4H8a2 2 0 0 0-2 2v14\"></path><path d=\"M14 12h.01\"></path><path d=\"M22 20h-3\"></path>",
4583 categories = "home,travel,security",
4584 tags = "entrance,entry,exit,ingress,egress,gate,gateway,emergency exit",
4585 contributors = "karsa-mistmere"
4586 ))]
4587 DoorOpen,
4588 #[cfg(any(feature = "shapes", feature = "text"))]
4589 #[strum(props(
4590 svg = "<circle cx=\"12.1\" cy=\"12.1\" r=\"1\"></circle>",
4591 categories = "shapes,text",
4592 tags = "interpunct,interpoint,middot,step,punctuation,period,full stop,end,finish,final,characters,font,typography,type,center,.",
4593 contributors = "danielbayley"
4594 ))]
4595 Dot,
4596 #[cfg(any(feature = "arrows", feature = "files"))]
4597 #[strum(props(
4598 svg = "<path d=\"M12 15V3\"></path><path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4\"></path><path d=\"m7 10 5 5 5-5\"></path>",
4599 categories = "arrows,files",
4600 tags = "import,export,save",
4601 contributors = "colebemis,csandman,ericfennis"
4602 ))]
4603 Download,
4604 #[cfg(any(feature = "math", feature = "design", feature = "tools"))]
4605 #[strum(props(
4606 svg = "<path d=\"m12.99 6.74 1.93 3.44\"></path><path d=\"M19.13 12a10 10 0 0 1-14.27 0\"></path><path d=\"m21 21-2.16-3.84\"></path><path d=\"m3 21 8.02-14.26\"></path><circle cx=\"12\" cy=\"5\" r=\"2\"></circle>",
4607 categories = "math,design,tools",
4608 tags = "geometry,trigonometry,radius,diameter,circumference,calculate,measure,arc,curve,draw,sketch",
4609 contributors = "danielbayley,karsa-mistmere,jguddas"
4610 ))]
4611 DraftingCompass,
4612 #[cfg(feature = "multimedia")]
4613 #[strum(props(
4614 svg = "<path d=\"M10 11h.01\"></path><path d=\"M14 6h.01\"></path><path d=\"M18 6h.01\"></path><path d=\"M6.5 13.1h.01\"></path><path d=\"M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3\"></path><path d=\"M17.4 9.9c-.8.8-2 .8-2.8 0\"></path><path d=\"M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7\"></path><path d=\"M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4\"></path>",
4615 categories = "multimedia",
4616 tags = "drama,masks,theater,theatre,entertainment,show",
4617 contributors = "danielbayley"
4618 ))]
4619 Drama,
4620 #[cfg(any(feature = "tools", feature = "home", feature = "devices"))]
4621 #[strum(props(
4622 svg = "<path d=\"M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z\"></path><path d=\"M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.24a1 1 0 0 1-.97.75H8\"></path><path d=\"M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3\"></path><path d=\"M18 6h4\"></path><path d=\"m5 10-2 8\"></path><path d=\"m7 18 2-8\"></path>",
4623 categories = "tools,home,devices",
4624 tags = "power,bit,head,hole,diy,toolbox,build,construction",
4625 contributors = "danielbayley,jguddas"
4626 ))]
4627 Drill,
4628 #[cfg(any(feature = "transportation", feature = "devices"))]
4629 #[strum(props(
4630 svg = "<path d=\"M10 10 7 7\"></path><path d=\"m10 14-3 3\"></path><path d=\"m14 10 3-3\"></path><path d=\"m14 14 3 3\"></path><path d=\"M14.20 4.13a4 4 0 1 1 5.43 5.86\"></path><path d=\"M19.63 14a4 4 0 1 1-5.43 5.86\"></path><path d=\"M4.36 10a4 4 0 1 1 5.43-5.86\"></path><path d=\"M9.79 19.86a4 4 0 1 1-5.42-5.87\"></path><rect height=\"8\" rx=\"1\" width=\"4\" x=\"10\" y=\"8\"></rect>",
4631 categories = "transportation,devices",
4632 tags = "quadcopter,uav,aerial,flight,flying,technology,airborne,robotics",
4633 contributors = "bernatfortet,shopped,karsa-mistmere,jguddas"
4634 ))]
4635 Drone,
4636 #[cfg(any(feature = "weather", feature = "gaming"))]
4637 #[strum(props(
4638 svg = "<path d=\"M18.71 13.18C18.29 11.85 17.38 10.60 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.58\"></path><path d=\"m2 2 20 20\"></path><path d=\"M8.79 8.79A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.22 3.20\"></path>",
4639 categories = "weather,gaming",
4640 tags = "water,weather,liquid,fluid,wet,moisture,damp,bead,globule",
4641 contributors = "colebemis,ericfennis,csandman,johnletey,jguddas,Footagesus"
4642 ))]
4643 DropletOff,
4644 #[cfg(any(feature = "weather", feature = "gaming"))]
4645 #[strum(props(
4646 svg = "<path d=\"M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z\"></path>",
4647 categories = "weather,gaming",
4648 tags = "water,weather,liquid,fluid,wet,moisture,damp,bead,globule",
4649 contributors = "colebemis,ericfennis,csandman,johnletey"
4650 ))]
4651 Droplet,
4652 #[cfg(feature = "weather")]
4653 #[strum(props(
4654 svg = "<path d=\"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z\"></path><path d=\"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97\"></path>",
4655 categories = "weather",
4656 tags = "water,weather,liquid,fluid,wet,moisture,damp,bead,globule",
4657 contributors = "Andreto,ericfennis"
4658 ))]
4659 Droplets,
4660 #[cfg(any(feature = "multimedia", feature = "devices"))]
4661 #[strum(props(
4662 svg = "<path d=\"m2 2 8 8\"></path><path d=\"m22 2-8 8\"></path><ellipse cx=\"12\" cy=\"9\" rx=\"10\" ry=\"5\"></ellipse><path d=\"M7 13.4v7.9\"></path><path d=\"M12 14v8\"></path><path d=\"M17 13.4v7.9\"></path><path d=\"M2 9v8a10 5 0 0 0 20 0V9\"></path>",
4663 categories = "multimedia,devices",
4664 tags = "drummer,kit,sticks,instrument,beat,bang,bass,backing track,band,play,performance,concert,march,music,audio,sound,noise,loud",
4665 contributors = "danielbayley"
4666 ))]
4667 Drum,
4668 #[cfg(feature = "food_beverage")]
4669 #[strum(props(
4670 svg = "<path d=\"M15.4 15.63a7.87 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23\"></path><path d=\"m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59\"></path>",
4671 categories = "food-beverage",
4672 tags = "food,chicken,meat",
4673 contributors = "Andreto,mittalyashu,ericfennis,karsa-mistmere"
4674 ))]
4675 Drumstick,
4676 #[cfg(any(feature = "navigation", feature = "sports"))]
4677 #[strum(props(
4678 svg = "<path d=\"M17.59 12.76a2 2 0 1 0 2.82-2.82l-1.76-1.76a2 2 0 0 0 2.82-2.82l-2.82-2.82a2 2 0 0 0-2.82 2.82l-1.76-1.76a2 2 0 1 0-2.82 2.82z\"></path><path d=\"m2.5 21.5 1.4-1.4\"></path><path d=\"m20.1 3.9 1.4-1.4\"></path><path d=\"M5.34 21.48a2 2 0 1 0 2.82-2.82l1.76 1.76a2 2 0 1 0 2.82-2.82l-6.36-6.36a2 2 0 1 0-2.82 2.82l1.76 1.76a2 2 0 0 0-2.82 2.82z\"></path><path d=\"m9.6 14.4 4.8-4.8\"></path>",
4679 categories = "navigation,sports",
4680 tags = "barbell,weight,workout,gym",
4681 contributors = "jguddas,karsa-mistmere"
4682 ))]
4683 Dumbbell,
4684 #[cfg(any(feature = "medical", feature = "accessibility"))]
4685 #[strum(props(
4686 svg = "<path d=\"M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46\"></path><path d=\"M6 8.5c0-.75.13-1.47.36-2.14\"></path><path d=\"M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76\"></path><path d=\"M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18\"></path><line x1=\"2\" x2=\"22\" y1=\"2\" y2=\"22\"></line>",
4687 categories = "medical,accessibility",
4688 tags = "hearing,hard of hearing,hearing loss,deafness,noise,silence,audio,accessibility",
4689 contributors = "karsa-mistmere,ericfennis"
4690 ))]
4691 EarOff,
4692 #[cfg(any(feature = "medical", feature = "accessibility"))]
4693 #[strum(props(
4694 svg = "<path d=\"M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0\"></path><path d=\"M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4\"></path>",
4695 categories = "medical,accessibility",
4696 tags = "hearing,noise,audio,accessibility",
4697 contributors = "karsa-mistmere,ericfennis"
4698 ))]
4699 Ear,
4700 #[cfg(any(feature = "security", feature = "development", feature = "devices"))]
4701 #[strum(props(
4702 svg = "<path d=\"M7 3.34V5a3 3 0 0 0 3 3\"></path><path d=\"M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05\"></path><path d=\"M21.54 15H17a2 2 0 0 0-2 2v4.54\"></path><path d=\"M12 2a10 10 0 1 0 9.54 13\"></path><path d=\"M20 6V4a2 2 0 1 0-4 0v2\"></path><rect height=\"5\" rx=\"1\" width=\"8\" x=\"14\" y=\"6\"></rect>",
4703 categories = "security,development,devices",
4704 tags = "vpn,private,privacy,network,world,browser,security,encryption,protection,connection",
4705 contributors = "mittalyashu,ericfennis,karsa-mistmere"
4706 ))]
4707 EarthLock,
4708 #[cfg(feature = "navigation")]
4709 #[strum(props(
4710 svg = "<path d=\"M21.54 15H17a2 2 0 0 0-2 2v4.54\"></path><path d=\"M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17\"></path><path d=\"M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05\"></path><circle cx=\"12\" cy=\"12\" r=\"10\"></circle>",
4711 categories = "navigation",
4712 tags = "world,browser,language,translate,globe",
4713 contributors = "mittalyashu,ericfennis,karsa-mistmere"
4714 ))]
4715 Earth,
4716 #[cfg(any(
4717 feature = "science",
4718 feature = "design",
4719 feature = "development",
4720 feature = "accessibility",
4721 feature = "photography"
4722 ))]
4723 #[strum(props(
4724 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 2a7 7 0 1 0 10 10\"></path>",
4725 categories = "science,design,development,accessibility,photography",
4726 tags = "lunar,solar,crescent moon,sun,earth,day,night,planet,space,mode,dark,light,toggle,switch,color,css,styles,display,accessibility,contrast,brightness,blend,shade",
4727 contributors = "danielbayley"
4728 ))]
4729 Eclipse,
4730 #[cfg(feature = "food_beverage")]
4731 #[strum(props(
4732 svg = "<circle cx=\"11.5\" cy=\"12.5\" r=\"3.5\"></circle><path d=\"M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z\"></path>",
4733 categories = "food-beverage",
4734 tags = "food,breakfast",
4735 contributors = "karsa-mistmere,jguddas"
4736 ))]
4737 EggFried,
4738 #[cfg(feature = "food_beverage")]
4739 #[strum(props(
4740 svg = "<path d=\"m2 2 20 20\"></path><path d=\"M20 14.34V14c0-6-4-12-8-12-1.07 0-2.15.436-3.15 1.19\"></path><path d=\"M6.20 6.21C4.87 8.4 4 11.2 4 14a8 8 0 0 0 14.56 4.56\"></path>",
4741 categories = "food-beverage",
4742 tags = "egg free,vegan,hatched,bad egg",
4743 contributors = "karsa-mistmere,ericfennis,jamiemlaw"
4744 ))]
4745 EggOff,
4746 #[cfg(any(feature = "food_beverage", feature = "animals"))]
4747 #[strum(props(
4748 svg = "<path d=\"M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12\"></path>",
4749 categories = "food-beverage,animals",
4750 tags = "bird,chicken,nest,hatch,shell,incubate,soft boiled,hard,breakfast,brunch,morning,easter",
4751 contributors = "mittalyashu,Andreto,ericfennis,jamiemlaw"
4752 ))]
4753 Egg,
4754 #[cfg(feature = "shapes")]
4755 #[strum(props(
4756 svg = "<ellipse cx=\"12\" cy=\"12\" rx=\"10\" ry=\"6\"></ellipse>",
4757 categories = "shapes",
4758 tags = "shape,geometry,rounded,smooth,outline,form,boundary,curve,shapes,ellipse,oval",
4759 contributors = "KISHORE-KUMAR-S"
4760 ))]
4761 Ellipse,
4762 #[cfg(feature = "layout")]
4763 #[strum(props(
4764 svg = "<circle cx=\"12\" cy=\"12\" r=\"1\"></circle><circle cx=\"12\" cy=\"5\" r=\"1\"></circle><circle cx=\"12\" cy=\"19\" r=\"1\"></circle>",
4765 categories = "layout",
4766 tags = "menu,options,spread,more,further,extra,overflow,dots,…,...",
4767 contributors = "colebemis"
4768 ))]
4769 EllipsisVertical,
4770 #[cfg(any(feature = "layout", feature = "development"))]
4771 #[strum(props(
4772 svg = "<circle cx=\"12\" cy=\"12\" r=\"1\"></circle><circle cx=\"19\" cy=\"12\" r=\"1\"></circle><circle cx=\"5\" cy=\"12\" r=\"1\"></circle>",
4773 categories = "layout,development",
4774 tags = "et cetera,etc,loader,loading,progress,pending,throbber,menu,options,operator,code,coding,spread,rest,more,further,extra,overflow,dots,…,...",
4775 contributors = "colebemis"
4776 ))]
4777 Ellipsis,
4778 #[cfg(feature = "math")]
4779 #[strum(props(
4780 svg = "<path d=\"M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0\"></path><path d=\"M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0\"></path>",
4781 categories = "math",
4782 tags = "about,calculate,math,operater",
4783 contributors = "ksk3110"
4784 ))]
4785 EqualApproximately,
4786 #[cfg(any(feature = "math", feature = "development"))]
4787 #[strum(props(
4788 svg = "<line x1=\"5\" x2=\"19\" y1=\"9\" y2=\"9\"></line><line x1=\"5\" x2=\"19\" y1=\"15\" y2=\"15\"></line><line x1=\"19\" x2=\"5\" y1=\"5\" y2=\"19\"></line>",
4789 categories = "math,development",
4790 tags = "calculate,off,math,operator,code,≠",
4791 contributors = "ericfennis"
4792 ))]
4793 EqualNot,
4794 #[cfg(any(feature = "math", feature = "development"))]
4795 #[strum(props(
4796 svg = "<line x1=\"5\" x2=\"19\" y1=\"9\" y2=\"9\"></line><line x1=\"5\" x2=\"19\" y1=\"15\" y2=\"15\"></line>",
4797 categories = "math,development",
4798 tags = "calculate,math,operator,assignment,code,=",
4799 contributors = "ericfennis"
4800 ))]
4801 Equal,
4802 #[cfg(feature = "text")]
4803 #[strum(props(
4804 svg = "<path d=\"M21 21H8a2 2 0 0 1-1.42-.587l-3.99-3.99a2 2 0 0 1 0-2.82l10-10a2 2 0 0 1 2.82 0l5.99 6a2 2 0 0 1 0 2.82L12.83 21\"></path><path d=\"m5.08 11.09 8.82 8.82\"></path>",
4805 categories = "text",
4806 tags = "pencil,drawing,undo,delete,clear,trash,remove",
4807 contributors = "maxwellito,karsa-mistmere,jguddas"
4808 ))]
4809 Eraser,
4810 #[cfg(any(
4811 feature = "communication",
4812 feature = "devices",
4813 feature = "multimedia",
4814 feature = "gaming"
4815 ))]
4816 #[strum(props(
4817 svg = "<path d=\"m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z\"></path><path d=\"M6 8v1\"></path><path d=\"M10 8v1\"></path><path d=\"M14 8v1\"></path><path d=\"M18 8v1\"></path>",
4818 categories = "communication,devices,multimedia,gaming",
4819 tags = "internet,network,connection,cable,lan,port,router,switch,hub,modem,web,online,networking,communication,socket,plug,slot,controller,connector,interface,console,signal,data,input,output",
4820 contributors = "ericfennis"
4821 ))]
4822 EthernetPort,
4823 #[cfg(feature = "finance")]
4824 #[strum(props(
4825 svg = "<path d=\"M4 10h12\"></path><path d=\"M4 14h9\"></path><path d=\"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2\"></path>",
4826 categories = "finance",
4827 tags = "currency,money,payment",
4828 contributors = "ericfennis,mittalyashu"
4829 ))]
4830 Euro,
4831 #[cfg(any(feature = "transportation", feature = "navigation"))]
4832 #[strum(props(
4833 svg = "<path d=\"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.99a2 2 0 0 0-.59-1.42L18 5\"></path><path d=\"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16\"></path><path d=\"M2 21h13\"></path><path d=\"M3 7h11\"></path><path d=\"m9 11-2 3h3l-2 3\"></path>",
4834 categories = "transportation,navigation",
4835 tags = "electric,charger,station,vehicle,fast,plug,ev,power,electricity,energy,accumulator,charge",
4836 contributors = "UsamaKhan,karsa-mistmere,ericfennis,colebemis,csandman,johnletey"
4837 ))]
4838 EvCharger,
4839 #[cfg(any(feature = "text", feature = "arrows"))]
4840 #[strum(props(
4841 svg = "<path d=\"m15 15 6 6\"></path><path d=\"m15 9 6-6\"></path><path d=\"M21 16v5h-5\"></path><path d=\"M21 8V3h-5\"></path><path d=\"M3 16v5h5\"></path><path d=\"m3 21 6-6\"></path><path d=\"M3 8V3h5\"></path><path d=\"M9 9 3 3\"></path>",
4842 categories = "text,arrows",
4843 tags = "scale,fullscreen,maximize,minimize,contract",
4844 contributors = "mittalyashu,ericfennis,jguddas"
4845 ))]
4846 Expand,
4847 #[cfg(any(feature = "arrows", feature = "text", feature = "social"))]
4848 #[strum(props(
4849 svg = "<path d=\"M15 3h6v6\"></path><path d=\"M10 14 21 3\"></path><path d=\"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\"></path>",
4850 categories = "arrows,text,social",
4851 tags = "outbound,open,share",
4852 contributors = "colebemis,csandman,ericfennis"
4853 ))]
4854 ExternalLink,
4855 #[cfg(any(
4856 feature = "accessibility",
4857 feature = "photography",
4858 feature = "design",
4859 feature = "security"
4860 ))]
4861 #[strum(props(
4862 svg = "<path d=\"m15 18-.722-3.25\"></path><path d=\"M2 8a10.64 10.64 0 0 0 20 0\"></path><path d=\"m20 15-1.72-2.05\"></path><path d=\"m4 15 1.72-2.05\"></path><path d=\"m9 18 .722-3.25\"></path>",
4863 categories = "accessibility,photography,design,security",
4864 tags = "view,watch,see,hide,conceal,mask,hidden,visibility,vision",
4865 contributors = "karsa-mistmere"
4866 ))]
4867 EyeClosed,
4868 #[cfg(any(
4869 feature = "accessibility",
4870 feature = "photography",
4871 feature = "design",
4872 feature = "security"
4873 ))]
4874 #[strum(props(
4875 svg = "<path d=\"M13.05 18.94a11 11 0 0 1-2.11 0\"></path><path d=\"M13.05 5.05a11 11 0 0 0-2.11-.001\"></path><path d=\"M17.07 6.27a11 11 0 0 1 1.75 1.17\"></path><path d=\"M18.82 16.55a11 11 0 0 1-1.75 1.17\"></path><path d=\"M2.51 13.30a11 11 0 0 1-.452-.954 1 1 0 0 1 0-.697 11 11 0 0 1 .45-.955\"></path><path d=\"M21.48 10.69a11 11 0 0 1 .453.95 1 1 0 0 1 0 .697 11 11 0 0 1-.453.95\"></path><path d=\"M5.17 7.44a11 11 0 0 1 1.75-1.17\"></path><path d=\"M6.92 17.72a11 11 0 0 1-1.75-1.17\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle>",
4876 categories = "accessibility,photography,design,security",
4877 tags = "view,watch,see,hide,conceal,mask,hidden,invisible,visibility,vision",
4878 contributors = "colebemis,karsa-mistmere,ericfennis"
4879 ))]
4880 EyeDashed,
4881 #[cfg(any(
4882 feature = "accessibility",
4883 feature = "photography",
4884 feature = "design",
4885 feature = "security"
4886 ))]
4887 #[strum(props(
4888 svg = "<path d=\"M10.73 5.07a10.74 10.74 0 0 1 11.20 6.57 1 1 0 0 1 0 .696 10.74 10.74 0 0 1-1.44 2.49\"></path><path d=\"M14.08 14.15a3 3 0 0 1-4.24-4.24\"></path><path d=\"M17.47 17.49a10.75 10.75 0 0 1-15.41-5.15 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.44-5.14\"></path><path d=\"m2 2 20 20\"></path>",
4889 categories = "accessibility,photography,design,security",
4890 tags = "view,watch,see,hide,conceal,mask,hidden,visibility,vision",
4891 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
4892 ))]
4893 EyeOff,
4894 #[cfg(any(
4895 feature = "accessibility",
4896 feature = "photography",
4897 feature = "design",
4898 feature = "security"
4899 ))]
4900 #[strum(props(
4901 svg = "<path d=\"M2.06 12.34a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.87 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.87 0\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle>",
4902 categories = "accessibility,photography,design,security",
4903 tags = "view,watch,see,show,expose,reveal,display,visible,visibility,vision,preview,read",
4904 contributors = "colebemis,karsa-mistmere,ericfennis"
4905 ))]
4906 Eye,
4907 #[cfg(any(feature = "buildings", feature = "navigation"))]
4908 #[strum(props(
4909 svg = "<path d=\"M12 16h.01\"></path><path d=\"M16 16h.01\"></path><path d=\"M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.46 2.84A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.92A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z\"></path><path d=\"M8 16h.01\"></path>",
4910 categories = "buildings,navigation",
4911 tags = "building,business,energy,industry,manufacture,sector",
4912 contributors = "karsa-mistmere,ericfennis"
4913 ))]
4914 Factory,
4915 #[cfg(feature = "home")]
4916 #[strum(props(
4917 svg = "<path d=\"M10.82 16.37a6.08 6.08 0 0 1-8.61-7.00l5.41 1.45a6.08 6.08 0 0 1 7.00-8.61l-1.45 5.41a6.08 6.08 0 0 1 8.61 7.00l-5.41-1.45a6.08 6.08 0 0 1-7.00 8.61l1.45-5.41Z\"></path><path d=\"M12 12v.01\"></path>",
4918 categories = "home",
4919 tags = "air,cooler,ventilation,ventilator,blower",
4920 contributors = "karsa-mistmere"
4921 ))]
4922 Fan,
4923 #[cfg(any(feature = "multimedia", feature = "arrows"))]
4924 #[strum(props(
4925 svg = "<path d=\"M12 6a2 2 0 0 1 3.41-1.41l6 6a2 2 0 0 1 0 2.82l-6 6A2 2 0 0 1 12 18z\"></path><path d=\"M2 6a2 2 0 0 1 3.41-1.41l6 6a2 2 0 0 1 0 2.82l-6 6A2 2 0 0 1 2 18z\"></path>",
4926 categories = "multimedia,arrows",
4927 tags = "music",
4928 contributors = "colebemis,karsa-mistmere"
4929 ))]
4930 FastForward,
4931 #[cfg(feature = "gaming")]
4932 #[strum(props(
4933 svg = "<path d=\"M12.67 19a2 2 0 0 0 1.41-.588l6.15-6.17a6 6 0 0 0-8.49-8.49L5.58 9.91A2 2 0 0 0 5 11.32V18a1 1 0 0 0 1 1z\"></path><path d=\"M16 8 2 22\"></path><path d=\"M17.5 15H9\"></path>",
4934 categories = "gaming",
4935 tags = "logo",
4936 contributors = "colebemis,csandman,ericfennis"
4937 ))]
4938 Feather,
4939 #[cfg(any(feature = "home", feature = "buildings"))]
4940 #[strum(props(
4941 svg = "<path d=\"M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z\"></path><path d=\"M6 8h4\"></path><path d=\"M6 18h4\"></path><path d=\"m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z\"></path><path d=\"M14 8h4\"></path><path d=\"M14 18h4\"></path><path d=\"m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z\"></path>",
4942 categories = "home,buildings",
4943 tags = "picket,panels,woodwork,diy,materials,suburban,garden,property,territory",
4944 contributors = "danielbayley"
4945 ))]
4946 Fence,
4947 #[cfg(feature = "navigation")]
4948 #[strum(props(
4949 svg = "<circle cx=\"12\" cy=\"12\" r=\"2\"></circle><path d=\"M12 2v4\"></path><path d=\"m6.8 15-3.5 2\"></path><path d=\"m20.7 7-3.5 2\"></path><path d=\"M6.8 9 3.3 7\"></path><path d=\"m20.7 17-3.5-2\"></path><path d=\"m9 22 3-8 3 8\"></path><path d=\"M8 22h8\"></path><path d=\"M18 18.7a9 9 0 1 0-12 0\"></path>",
4950 categories = "navigation",
4951 tags = "big wheel,daisy wheel,observation,attraction,entertainment,amusement park,theme park,funfair",
4952 contributors = "karsa-mistmere"
4953 ))]
4954 FerrisWheel,
4955 #[cfg(feature = "files")]
4956 #[strum(props(
4957 svg = "<path d=\"M13.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v11.5\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M8 12v-1\"></path><path d=\"M8 18v-2\"></path><path d=\"M8 7V6\"></path><circle cx=\"8\" cy=\"20\" r=\"2\"></circle>",
4958 categories = "files",
4959 tags = "zip,package,archive",
4960 contributors = "karsa-mistmere,danielbayley,jguddas"
4961 ))]
4962 FileArchive,
4963 #[cfg(any(feature = "design", feature = "files"))]
4964 #[strum(props(
4965 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m8 18 4-4\"></path><path d=\"M8 10v8h8\"></path>",
4966 categories = "design,files",
4967 tags = "model,3d,axis,coordinates",
4968 contributors = "karsa-mistmere,danielbayley"
4969 ))]
4970 FileAxis3D,
4971 #[cfg(feature = "files")]
4972 #[strum(props(
4973 svg = "<path d=\"M13 22h5a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.3\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m7.69 16.47 1.29 4.88a.5.5 0 0 1-.698.59l-1.84-.849a1 1 0 0 0-.879.00l-1.84.85a.5.5 0 0 1-.692-.593l1.29-4.88\"></path><circle cx=\"6\" cy=\"14\" r=\"3\"></circle>",
4974 categories = "files",
4975 tags = "award,achievement,badge,rosette,prize,winner",
4976 contributors = "karsa-mistmere,danielbayley"
4977 ))]
4978 FileBadge,
4979 #[cfg(feature = "files")]
4980 #[strum(props(
4981 svg = "<path d=\"M14.5 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.8\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M11.7 14.2 7 17l-4.7-2.8\"></path><path d=\"M3 13.1a2 2 0 0 0-.999 1.76v3.24a2 2 0 0 0 .969 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01z\"></path><path d=\"M7 17v5\"></path>",
4982 categories = "files",
4983 tags = "box,package,model",
4984 contributors = "karsa-mistmere,danielbayley"
4985 ))]
4986 FileBox,
4987 #[cfg(any(feature = "files", feature = "development"))]
4988 #[strum(props(
4989 svg = "<path d=\"M14 22h4a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M5 14a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1 1 1 0 0 1 1 1v2a1 1 0 0 0 1 1\"></path><path d=\"M9 22a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-2a1 1 0 0 0-1-1\"></path>",
4990 categories = "files,development",
4991 tags = "code,json,curly braces,curly brackets",
4992 contributors = "karsa-mistmere,danielbayley"
4993 ))]
4994 FileBracesCorner,
4995 #[cfg(any(feature = "files", feature = "development"))]
4996 #[strum(props(
4997 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1\"></path><path d=\"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1\"></path>",
4998 categories = "files,development",
4999 tags = "code,json,curly braces,curly brackets",
5000 contributors = "karsa-mistmere,danielbayley"
5001 ))]
5002 FileBraces,
5003 #[cfg(feature = "files")]
5004 #[strum(props(
5005 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M8 18v-2\"></path><path d=\"M12 18v-4\"></path><path d=\"M16 18v-6\"></path>",
5006 categories = "files",
5007 tags = "statistics,analytics,diagram,graph,presentation,trending up",
5008 contributors = "karsa-mistmere,danielbayley"
5009 ))]
5010 FileChartColumnIncreasing,
5011 #[cfg(feature = "files")]
5012 #[strum(props(
5013 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M8 18v-1\"></path><path d=\"M12 18v-6\"></path><path d=\"M16 18v-3\"></path>",
5014 categories = "files",
5015 tags = "statistics,analytics,diagram,graph,presentation",
5016 contributors = "karsa-mistmere,danielbayley"
5017 ))]
5018 FileChartColumn,
5019 #[cfg(feature = "files")]
5020 #[strum(props(
5021 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m16 13-3.5 3.5-2-2L8 17\"></path>",
5022 categories = "files",
5023 tags = "statistics,analytics,diagram,graph,presentation",
5024 contributors = "karsa-mistmere,danielbayley"
5025 ))]
5026 FileChartLine,
5027 #[cfg(feature = "files")]
5028 #[strum(props(
5029 svg = "<path d=\"M15.94 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.51\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M4.01 11.51a6 6 0 1 0 8.46 8.47\"></path><path d=\"M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.00.995-.917a6 6 0 0 1 4.92 4.92c.091.54-.365.99-.917.99z\"></path>",
5030 categories = "files",
5031 tags = "statistics,analytics,diagram,graph,presentation",
5032 contributors = "karsa-mistmere,danielbayley,jguddas"
5033 ))]
5034 FileChartPie,
5035 #[cfg(feature = "files")]
5036 #[strum(props(
5037 svg = "<path d=\"M10.5 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v6\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m14 20 2 2 4-4\"></path>",
5038 categories = "files",
5039 tags = "done,document,todo,tick,complete,task",
5040 contributors = "ericfennis,karsa-mistmere,danielbayley"
5041 ))]
5042 FileCheckCorner,
5043 #[cfg(feature = "files")]
5044 #[strum(props(
5045 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m9 15 2 2 4-4\"></path>",
5046 categories = "files",
5047 tags = "done,document,todo,tick,complete,task",
5048 contributors = "ericfennis,danielbayley"
5049 ))]
5050 FileCheck,
5051 #[cfg(any(feature = "files", feature = "time"))]
5052 #[strum(props(
5053 svg = "<path d=\"M16 22h2a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v2.85\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M8 14v2.2l1.6 1\"></path><circle cx=\"8\" cy=\"16\" r=\"6\"></circle>",
5054 categories = "files,time",
5055 tags = "history,log,clock",
5056 contributors = "karsa-mistmere,danielbayley,jamiemlaw"
5057 ))]
5058 FileClock,
5059 #[cfg(any(feature = "files", feature = "development"))]
5060 #[strum(props(
5061 svg = "<path d=\"M4 12.15V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3.35\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m5 16-3 3 3 3\"></path><path d=\"m9 22 3-3-3-3\"></path>",
5062 categories = "files,development",
5063 tags = "script,document,html,xml,property list,plist",
5064 contributors = "danielbayley,ericfennis,karsa-mistmere"
5065 ))]
5066 FileCodeCorner,
5067 #[cfg(any(feature = "files", feature = "development"))]
5068 #[strum(props(
5069 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M10 12.5 8 15l2 2.5\"></path><path d=\"m14 12.5 2 2.5-2 2.5\"></path>",
5070 categories = "files,development",
5071 tags = "script,document,gist,html,xml,property list,plist",
5072 contributors = "ericfennis,karsa-mistmere,danielbayley"
5073 ))]
5074 FileCode,
5075 #[cfg(feature = "files")]
5076 #[strum(props(
5077 svg = "<path d=\"M15 8a1 1 0 0 1-1-1V2a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8z\"></path><path d=\"M20 8v12a2 2 0 0 1-2 2h-4.18\"></path><path d=\"m3.30 19.53.92-.382\"></path><path d=\"M4 10.59V4a2 2 0 0 1 2-2h8\"></path><path d=\"m4.22 16.85-.924-.383\"></path><path d=\"m5.85 15.22-.383-.923\"></path><path d=\"m5.85 20.77-.383.92\"></path><path d=\"m8.14 15.22.383-.923\"></path><path d=\"m8.53 21.69-.382-.924\"></path><path d=\"m9.77 16.85.922-.383\"></path><path d=\"m9.77 19.14.922.38\"></path><circle cx=\"7\" cy=\"18\" r=\"3\"></circle>",
5078 categories = "files",
5079 tags = "executable,settings,cog,edit,gear",
5080 contributors = "karsa-mistmere,danielbayley,jguddas,UsamaKhan"
5081 ))]
5082 FileCog,
5083 #[cfg(any(feature = "files", feature = "development"))]
5084 #[strum(props(
5085 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M9 10h6\"></path><path d=\"M12 13V7\"></path><path d=\"M9 17h6\"></path>",
5086 categories = "files,development",
5087 tags = "diff,patch",
5088 contributors = "karsa-mistmere,danielbayley"
5089 ))]
5090 FileDiff,
5091 #[cfg(any(feature = "files", feature = "development"))]
5092 #[strum(props(
5093 svg = "<path d=\"M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M10 16h2v6\"></path><path d=\"M10 22h4\"></path><rect height=\"6\" rx=\"2\" width=\"4\" x=\"2\" y=\"16\"></rect>",
5094 categories = "files,development",
5095 tags = "number,document",
5096 contributors = "ericfennis,karsa-mistmere,danielbayley"
5097 ))]
5098 FileDigit,
5099 #[cfg(any(feature = "files", feature = "arrows"))]
5100 #[strum(props(
5101 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M12 18v-6\"></path><path d=\"m9 15 3 3 3-3\"></path>",
5102 categories = "files,arrows",
5103 tags = "download,import,export",
5104 contributors = "karsa-mistmere,danielbayley"
5105 ))]
5106 FileDown,
5107 #[cfg(any(feature = "files", feature = "notifications"))]
5108 #[strum(props(
5109 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M12 9v4\"></path><path d=\"M12 17h.01\"></path>",
5110 categories = "files,notifications",
5111 tags = "hidden,warning,alert,danger,protected,exclamation mark",
5112 contributors = "karsa-mistmere,danielbayley"
5113 ))]
5114 FileExclamationPoint,
5115 #[cfg(feature = "files")]
5116 #[strum(props(
5117 svg = "<path d=\"M4 6.83V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-.343\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M2 19a2 2 0 0 1 4 0v1a2 2 0 0 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 0 1-4 0v-1a2 2 0 0 1 4 0\"></path>",
5118 categories = "files",
5119 tags = "music,audio,sound,headphones",
5120 contributors = "karsa-mistmere,danielbayley"
5121 ))]
5122 FileHeadphone,
5123 #[cfg(feature = "files")]
5124 #[strum(props(
5125 svg = "<path d=\"M13 22h5a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v7\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M3.62 18.8A2.25 2.25 0 1 1 7 15.83a2.25 2.25 0 1 1 3.38 2.96l-2.62 2.85a1 1 0 0 1-1.50 0z\"></path>",
5126 categories = "files",
5127 tags = "heart,favourite,bookmark,quick link",
5128 contributors = "karsa-mistmere,danielbayley"
5129 ))]
5130 FileHeart,
5131 #[cfg(feature = "files")]
5132 #[strum(props(
5133 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><circle cx=\"10\" cy=\"12\" r=\"2\"></circle><path d=\"m20 17-1.29-1.29a2.41 2.41 0 0 0-3.40 0L9 22\"></path>",
5134 categories = "files",
5135 tags = "image,graphics,photo,picture",
5136 contributors = "karsa-mistmere,danielbayley"
5137 ))]
5138 FileImage,
5139 #[cfg(any(feature = "files", feature = "arrows"))]
5140 #[strum(props(
5141 svg = "<path d=\"M4 11V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-1\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M2 15h10\"></path><path d=\"m9 18 3-3-3-3\"></path>",
5142 categories = "files,arrows",
5143 tags = "document",
5144 contributors = "Andreto,ericfennis,karsa-mistmere,danielbayley"
5145 ))]
5146 FileInput,
5147 #[cfg(any(feature = "files", feature = "security"))]
5148 #[strum(props(
5149 svg = "<path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M4 12v6\"></path><path d=\"M4 14h2\"></path><path d=\"M9.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v4\"></path><circle cx=\"4\" cy=\"20\" r=\"2\"></circle>",
5150 categories = "files,security",
5151 tags = "key,private,public,security",
5152 contributors = "karsa-mistmere,danielbayley"
5153 ))]
5154 FileKey,
5155 #[cfg(any(feature = "files", feature = "security"))]
5156 #[strum(props(
5157 svg = "<path d=\"M4 9.8V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M9 17v-2a2 2 0 0 0-4 0v2\"></path><rect height=\"5\" rx=\"1\" width=\"8\" x=\"3\" y=\"17\"></rect>",
5158 categories = "files,security",
5159 tags = "lock,password,security",
5160 contributors = "karsa-mistmere,ericfennis,danielbayley"
5161 ))]
5162 FileLock,
5163 #[cfg(feature = "files")]
5164 #[strum(props(
5165 svg = "<path d=\"M20 14V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M14 18h6\"></path>",
5166 categories = "files",
5167 tags = "document",
5168 contributors = "ericfennis,karsa-mistmere,danielbayley"
5169 ))]
5170 FileMinusCorner,
5171 #[cfg(feature = "files")]
5172 #[strum(props(
5173 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M9 15h6\"></path>",
5174 categories = "files",
5175 tags = "delete,remove,erase,document",
5176 contributors = "colebemis,ericfennis,danielbayley"
5177 ))]
5178 FileMinus,
5179 #[cfg(any(feature = "files", feature = "multimedia"))]
5180 #[strum(props(
5181 svg = "<path d=\"M11.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v10.35\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M8 20v-7l3 1.47\"></path><circle cx=\"6\" cy=\"20\" r=\"2\"></circle>",
5182 categories = "files,multimedia",
5183 tags = "audio,sound,noise,track,digital,recording,playback,piano,keyboard,keys,notes,chord,midi,octave",
5184 contributors = "danielbayley,jguddas"
5185 ))]
5186 FileMusic,
5187 #[cfg(any(feature = "files", feature = "arrows"))]
5188 #[strum(props(
5189 svg = "<path d=\"M4.22 20.92A2 2 0 0 0 6 22h12a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.12\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m5 11-3 3\"></path><path d=\"m5 17-3-3h10\"></path>",
5190 categories = "files,arrows",
5191 tags = "document",
5192 contributors = "Andreto,ericfennis,karsa-mistmere,danielbayley,jguddas"
5193 ))]
5194 FileOutput,
5195 #[cfg(feature = "files")]
5196 #[strum(props(
5197 svg = "<path d=\"M14.36 13.63a2 2 0 0 0-.506.85l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506l4.01-4.00a1 1 0 0 0-3.00-3.00z\"></path><path d=\"M14.48 7.85A1 1 0 0 1 14 7V2\"></path><path d=\"M20 19.64V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l2.51 2.51\"></path><path d=\"M8 18h1\"></path>",
5198 categories = "files",
5199 tags = "edit",
5200 contributors = "karsa-mistmere,jguddas,danielbayley"
5201 ))]
5202 FilePenLine,
5203 #[cfg(feature = "files")]
5204 #[strum(props(
5205 svg = "<path d=\"M12.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v9.34\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M10.37 12.62a1 1 0 0 1 3 3.00L8.36 20.63a2 2 0 0 1-.854.50l-2.86.837a.5.5 0 0 1-.62-.62l.836-2.86a2 2 0 0 1 .506-.853z\"></path>",
5206 categories = "files",
5207 tags = "signature",
5208 contributors = "karsa-mistmere,danielbayley"
5209 ))]
5210 FilePen,
5211 #[cfg(feature = "files")]
5212 #[strum(props(
5213 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M15.03 13.44a.647.64 0 0 1 0 1.12l-4.06 2.35a.645.64 0 0 1-.968-.56v-4.70a.645.64 0 0 1 .967-.56z\"></path>",
5214 categories = "files",
5215 tags = "movie,video,film",
5216 contributors = "karsa-mistmere,danielbayley"
5217 ))]
5218 FilePlay,
5219 #[cfg(feature = "files")]
5220 #[strum(props(
5221 svg = "<path d=\"M11.35 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v5.35\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M14 19h6\"></path><path d=\"M17 16v6\"></path>",
5222 categories = "files",
5223 tags = "add,create,new,document",
5224 contributors = "ericfennis,karsa-mistmere,danielbayley"
5225 ))]
5226 FilePlusCorner,
5227 #[cfg(feature = "files")]
5228 #[strum(props(
5229 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M9 15h6\"></path><path d=\"M12 18v-6\"></path>",
5230 categories = "files",
5231 tags = "add,create,new,document",
5232 contributors = "colebemis,ericfennis,danielbayley"
5233 ))]
5234 FilePlus,
5235 #[cfg(feature = "files")]
5236 #[strum(props(
5237 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M12 17h.01\"></path><path d=\"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3\"></path>",
5238 categories = "files",
5239 tags = "readme,help,question",
5240 contributors = "karsa-mistmere,danielbayley,jguddas"
5241 ))]
5242 FileQuestionMark,
5243 #[cfg(feature = "files")]
5244 #[strum(props(
5245 svg = "<path d=\"M20 10V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4.35\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M16 14a2 2 0 0 0-2 2\"></path><path d=\"M16 22a2 2 0 0 1-2-2\"></path><path d=\"M20 14a2 2 0 0 1 2 2\"></path><path d=\"M20 22a2 2 0 0 0 2-2\"></path>",
5246 categories = "files",
5247 tags = "scan,code,qr-code",
5248 contributors = "karsa-mistmere,ericfennis,danielbayley"
5249 ))]
5250 FileScan,
5251 #[cfg(feature = "files")]
5252 #[strum(props(
5253 svg = "<path d=\"M11.1 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v3.25\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m21 22-2.88-2.88\"></path><circle cx=\"16\" cy=\"17\" r=\"3\"></circle>",
5254 categories = "files",
5255 tags = "lost,document,find,browser,lens",
5256 contributors = "karsa-mistmere,danielbayley"
5257 ))]
5258 FileSearchCorner,
5259 #[cfg(feature = "files")]
5260 #[strum(props(
5261 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><circle cx=\"11.5\" cy=\"14.5\" r=\"2.5\"></circle><path d=\"M13.3 16.3 15 18\"></path>",
5262 categories = "files",
5263 tags = "lost,document,find,browser,lens",
5264 contributors = "ericfennis,karsa-mistmere,danielbayley,jguddas"
5265 ))]
5266 FileSearch,
5267 #[cfg(feature = "files")]
5268 #[strum(props(
5269 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M8 15h.01\"></path><path d=\"M11.5 13.5a2.5 2.5 0 0 1 0 3\"></path><path d=\"M15 12a5 5 0 0 1 0 6\"></path>",
5270 categories = "files",
5271 tags = "audio,music,volume",
5272 contributors = "karsa-mistmere,ericfennis,danielbayley"
5273 ))]
5274 FileSignal,
5275 #[cfg(any(feature = "files", feature = "development"))]
5276 #[strum(props(
5277 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M8 12h8\"></path><path d=\"M10 11v2\"></path><path d=\"M8 17h8\"></path><path d=\"M14 16v2\"></path>",
5278 categories = "files,development",
5279 tags = "cogged,gear,mechanical,machinery,configuration,controls,preferences,settings,system,admin,edit,executable",
5280 contributors = "danielbayley"
5281 ))]
5282 FileSliders,
5283 #[cfg(feature = "files")]
5284 #[strum(props(
5285 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M8 13h2\"></path><path d=\"M14 13h2\"></path><path d=\"M8 17h2\"></path><path d=\"M14 17h2\"></path>",
5286 categories = "files",
5287 tags = "spreadsheet,sheet,table",
5288 contributors = "karsa-mistmere,danielbayley"
5289 ))]
5290 FileSpreadsheet,
5291 #[cfg(any(feature = "files", feature = "development"))]
5292 #[strum(props(
5293 svg = "<path d=\"M11 21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1\"></path><path d=\"M16 16a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1\"></path><path d=\"M21 6a2 2 0 0 0-.586-1.41l-2-2A2 2 0 0 0 17 2h-3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1z\"></path>",
5294 categories = "files,development",
5295 tags = "versions,multiple,copy,documents,revisions,version control,history",
5296 contributors = "danielbayley,karsa-mistmere"
5297 ))]
5298 FileStack,
5299 #[cfg(feature = "files")]
5300 #[strum(props(
5301 svg = "<path d=\"M4 11V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m10 18 3-3-3-3\"></path>",
5302 categories = "files",
5303 tags = "symlink,symbolic,link",
5304 contributors = "karsa-mistmere,danielbayley,jguddas"
5305 ))]
5306 FileSymlink,
5307 #[cfg(any(feature = "files", feature = "development"))]
5308 #[strum(props(
5309 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m8 16 2-2-2-2\"></path><path d=\"M12 18h4\"></path>",
5310 categories = "files,development",
5311 tags = "terminal,bash,script,executable",
5312 contributors = "karsa-mistmere,danielbayley"
5313 ))]
5314 FileTerminal,
5315 #[cfg(any(feature = "files", feature = "text"))]
5316 #[strum(props(
5317 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M10 9H8\"></path><path d=\"M16 13H8\"></path><path d=\"M16 17H8\"></path>",
5318 categories = "files,text",
5319 tags = "data,txt,pdf,document",
5320 contributors = "colebemis,ericfennis,danielbayley"
5321 ))]
5322 FileText,
5323 #[cfg(any(feature = "files", feature = "text"))]
5324 #[strum(props(
5325 svg = "<path d=\"M12 22h6a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M3 16v-1.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5V16\"></path><path d=\"M6 22h2\"></path><path d=\"M7 14v8\"></path>",
5326 categories = "files,text",
5327 tags = "font,text,typography,type",
5328 contributors = "karsa-mistmere,danielbayley"
5329 ))]
5330 FileTypeCorner,
5331 #[cfg(any(feature = "files", feature = "text"))]
5332 #[strum(props(
5333 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M11 18h2\"></path><path d=\"M12 12v6\"></path><path d=\"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5\"></path>",
5334 categories = "files,text",
5335 tags = "font,text,typography,type",
5336 contributors = "karsa-mistmere,danielbayley"
5337 ))]
5338 FileType,
5339 #[cfg(any(feature = "files", feature = "arrows"))]
5340 #[strum(props(
5341 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M12 12v6\"></path><path d=\"m15 15-3-3-3 3\"></path>",
5342 categories = "files,arrows",
5343 tags = "upload,import,export",
5344 contributors = "karsa-mistmere,danielbayley"
5345 ))]
5346 FileUp,
5347 #[cfg(any(feature = "account", feature = "files"))]
5348 #[strum(props(
5349 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M16 22a4 4 0 0 0-8 0\"></path><circle cx=\"12\" cy=\"15\" r=\"3\"></circle>",
5350 categories = "account,files",
5351 tags = "person,personal information,people,listing,networking,document,contact,cover letter,resume,cv,curriculum vitae,application form",
5352 contributors = "danielbayley,colebemis,ericfennis,jguddas"
5353 ))]
5354 FileUser,
5355 #[cfg(feature = "files")]
5356 #[strum(props(
5357 svg = "<path d=\"M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m10 17.84 3.03-1.75a.64.64 0 0 1 .967.56v4.70a.65.65 0 0 1-.967.56L10 20.15\"></path><rect height=\"6\" rx=\"1\" width=\"7\" x=\"3\" y=\"16\"></rect>",
5358 categories = "files",
5359 tags = "movie,video,film",
5360 contributors = "karsa-mistmere,ericfennis,danielbayley"
5361 ))]
5362 FileVideoCamera,
5363 #[cfg(feature = "files")]
5364 #[strum(props(
5365 svg = "<path d=\"M4 11.55V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-1.95\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M12 15a5 5 0 0 1 0 6\"></path><path d=\"M8 14.50a.5.5 0 0 0-.826-.381l-1.89 1.63a1 1 0 0 1-.651.24H3.5a.5.5 0 0 0-.5.50v3.00a.5.5 0 0 0 .5.50h1.12a1 1 0 0 1 .652.24l1.89 1.63a.5.5 0 0 0 .826-.38z\"></path>",
5366 categories = "files",
5367 tags = "audio,music,volume",
5368 contributors = "karsa-mistmere,danielbayley,jguddas"
5369 ))]
5370 FileVolume,
5371 #[cfg(feature = "files")]
5372 #[strum(props(
5373 svg = "<path d=\"M11 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v5\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m15 17 5 5\"></path><path d=\"m20 17-5 5\"></path>",
5374 categories = "files",
5375 tags = "lost,delete,remove,document",
5376 contributors = "ericfennis,danielbayley"
5377 ))]
5378 FileXCorner,
5379 #[cfg(feature = "files")]
5380 #[strum(props(
5381 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"m14.5 12.5-5 5\"></path><path d=\"m9.5 12.5 5 5\"></path>",
5382 categories = "files",
5383 tags = "lost,delete,remove,document",
5384 contributors = "ericfennis,danielbayley"
5385 ))]
5386 FileX,
5387 #[cfg(feature = "files")]
5388 #[strum(props(
5389 svg = "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path>",
5390 categories = "files",
5391 tags = "document",
5392 contributors = "colebemis,ericfennis,danielbayley"
5393 ))]
5394 File,
5395 #[cfg(feature = "files")]
5396 #[strum(props(
5397 svg = "<path d=\"M15 2h-4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8\"></path><path d=\"M16.70 2.70A2.4 2.4 0 0 0 15 2v5a1 1 0 0 0 1 1h5a2.4 2.4 0 0 0-.706-1.70z\"></path><path d=\"M5 7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 1.73-1\"></path>",
5398 categories = "files",
5399 tags = "multiple,copy,documents",
5400 contributors = "ericfennis,danielbayley,karsa-mistmere,jguddas"
5401 ))]
5402 Files,
5403 #[cfg(any(feature = "photography", feature = "multimedia"))]
5404 #[strum(props(
5405 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M7 3v18\"></path><path d=\"M3 7.5h4\"></path><path d=\"M3 12h18\"></path><path d=\"M3 16.5h4\"></path><path d=\"M17 3v18\"></path><path d=\"M17 7.5h4\"></path><path d=\"M17 16.5h4\"></path>",
5406 categories = "photography,multimedia",
5407 tags = "movie,video,reel,camera,cinema,entertainment",
5408 contributors = "colebemis,ericfennis,danielbayley"
5409 ))]
5410 Film,
5411 #[cfg(any(
5412 feature = "account",
5413 feature = "security",
5414 feature = "medical",
5415 feature = "devices"
5416 ))]
5417 #[strum(props(
5418 svg = "<path d=\"M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4\"></path><path d=\"M14 13.12c0 2.38 0 6.38-1 8.88\"></path><path d=\"M17.29 21.02c.12-.6.43-2.3.5-3.02\"></path><path d=\"M2 12a10 10 0 0 1 18-6\"></path><path d=\"M2 16h.01\"></path><path d=\"M21.8 16c.2-2 .131-5.35 0-6\"></path><path d=\"M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2\"></path><path d=\"M8.65 22c.21-.66.45-1.32.57-2\"></path><path d=\"M9 6.8a6 6 0 0 1 9 5.2v2\"></path>",
5419 categories = "account,security,medical,devices",
5420 tags = "2fa,authentication,biometric,identity,security",
5421 contributors = "karsa-mistmere,jguddas"
5422 ))]
5423 FingerprintPattern,
5424 #[cfg(any(feature = "home", feature = "tools", feature = "travel"))]
5425 #[strum(props(
5426 svg = "<path d=\"M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5\"></path><path d=\"M9 18h8\"></path><path d=\"M18 3h-3\"></path><path d=\"M11 3a6 6 0 0 0-6 6v11\"></path><path d=\"M5 13h4\"></path><path d=\"M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z\"></path>",
5427 categories = "home,tools,travel",
5428 tags = "flames,smoke,foam,water,spray,hose,firefighter,fireman,department,brigade,station,emergency,suppress,compressed,tank,cylinder,safety,equipment,amenities",
5429 contributors = "danielbayley,karsa-mistmere"
5430 ))]
5431 FireExtinguisher,
5432 #[cfg(any(feature = "food_beverage", feature = "animals"))]
5433 #[strum(props(
5434 svg = "<path d=\"M18 12.47v.03m0-.5v.47m-.475 5.05A6.74 6.74 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.11-2.43 2.12-3.38m3.44-2.08A8.80 8.80 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.17-1.41 3.05\"></path><path d=\"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.37A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.72-3.61\"></path><path d=\"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20\"></path>",
5435 categories = "food-beverage,animals",
5436 tags = "food,dish,restaurant,course,meal,seafood,animal,pet,sea,marine,allergy,intolerance,diet",
5437 contributors = "jguddas,kemie,ericfennis"
5438 ))]
5439 FishOff,
5440 #[cfg(any(feature = "food_beverage", feature = "animals"))]
5441 #[strum(props(
5442 svg = "<path d=\"M2 16s9-15 20-4C11 23 2 8 2 8\"></path>",
5443 categories = "food-beverage,animals",
5444 tags = "dish,restaurant,course,meal,seafood,pet,sea,marine",
5445 contributors = "danielbayley"
5446 ))]
5447 FishSymbol,
5448 #[cfg(any(feature = "food_beverage", feature = "animals"))]
5449 #[strum(props(
5450 svg = "<path d=\"M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z\"></path><path d=\"M18 12v.5\"></path><path d=\"M16 17.93a9.77 9.77 0 0 1 0-11.86\"></path><path d=\"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33\"></path><path d=\"M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4\"></path><path d=\"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98\"></path>",
5451 categories = "food-beverage,animals",
5452 tags = "dish,restaurant,course,meal,seafood,pet,sea,marine",
5453 contributors = "kemie"
5454 ))]
5455 Fish,
5456 #[cfg(any(feature = "sports", feature = "travel"))]
5457 #[strum(props(
5458 svg = "<path d=\"m17.58 11.41-5.93 5.93a1 1 0 0 1-8-8l3.13-3.13a.707.70 0 0 1 1.20.5V10\"></path><path d=\"M20.41 8.58 22 7\"></path><circle cx=\"19\" cy=\"10\" r=\"2\"></circle>",
5459 categories = "sports,travel",
5460 tags = "sea,boating,angler,bait,reel,tackle,marine,outdoors,fish,fishing,hook,sports,travel",
5461 contributors = "7ender,jguddas,karsa-mistmere,jamiemlaw"
5462 ))]
5463 FishingHook,
5464 #[cfg(any(feature = "sports", feature = "travel"))]
5465 #[strum(props(
5466 svg = "<path d=\"M4 11h1\"></path><path d=\"M8 15a2 2 0 0 1-4 0V3a1 1 0 0 1 1-1h.5C14 2 20 9 20 18v4\"></path><circle cx=\"18\" cy=\"18\" r=\"2\"></circle>",
5467 categories = "sports,travel",
5468 tags = "fishing,rod,hobby,equipment,reel",
5469 contributors = "7ender,jguddas,karsa-mistmere"
5470 ))]
5471 FishingRod,
5472 #[cfg(any(feature = "account", feature = "social"))]
5473 #[strum(props(
5474 svg = "<path d=\"M16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.52\"></path><path d=\"m2 2 20 20\"></path><path d=\"M4 22V4\"></path><path d=\"M7.65 2H8c3 0 5 2 7.33 2q2 0 3.06-.8A1 1 0 0 1 20 4v10.34\"></path>",
5475 categories = "account,social",
5476 tags = "unflag,unmark,report,marker,notification,warning,milestone,goal,notice,signal,attention,banner",
5477 contributors = "karsa-mistmere,cyberalien,ericfennis,jamiemlaw"
5478 ))]
5479 FlagOff,
5480 #[cfg(any(feature = "development", feature = "navigation"))]
5481 #[strum(props(
5482 svg = "<path d=\"M18 22V2.8a.8.8 0 0 0-1.17-.71L5.45 7.78a.8.8 0 0 0 0 1.44L18 15.5\"></path>",
5483 categories = "development,navigation",
5484 tags = "report,timeline,marker,pin",
5485 contributors = "tidoni,ericfennis,jamiemlaw"
5486 ))]
5487 FlagTriangleLeft,
5488 #[cfg(any(feature = "development", feature = "navigation"))]
5489 #[strum(props(
5490 svg = "<path d=\"M6 22V2.8a.8.8 0 0 1 1.17-.71l11.38 5.69a.8.8 0 0 1 0 1.44L6 15.5\"></path>",
5491 categories = "development,navigation",
5492 tags = "report,timeline,marker,pin",
5493 contributors = "tidoni,ericfennis,jamiemlaw"
5494 ))]
5495 FlagTriangleRight,
5496 #[cfg(any(feature = "account", feature = "social"))]
5497 #[strum(props(
5498 svg = "<path d=\"M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.33 2q2 0 3.06-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.52\"></path>",
5499 categories = "account,social",
5500 tags = "report,marker,notification,warning,milestone,goal,notice,signal,attention,banner",
5501 contributors = "colebemis,ericfennis,jamiemlaw"
5502 ))]
5503 Flag,
5504 #[cfg(any(feature = "nature", feature = "social", feature = "gaming"))]
5505 #[strum(props(
5506 svg = "<path d=\"M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z\"></path><path d=\"m5 22 14-4\"></path><path d=\"m5 18 14 4\"></path>",
5507 categories = "nature,social,gaming",
5508 tags = "campfire,camping,wilderness,outdoors,lit,warmth,wood,twigs,sticks",
5509 contributors = "danielbayley"
5510 ))]
5511 FlameKindling,
5512 #[cfg(any(feature = "weather", feature = "social", feature = "gaming"))]
5513 #[strum(props(
5514 svg = "<path d=\"M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4\"></path>",
5515 categories = "weather,social,gaming",
5516 tags = "heat,burn,light,glow,ignite,passion,ember,fire,lit,burning,spark,embers,smoke,firefighter,fireman,department,brigade,station,emergency",
5517 contributors = "ericfennis,johnletey,csandman,jamiemlaw"
5518 ))]
5519 Flame,
5520 #[cfg(any(feature = "photography", feature = "devices"))]
5521 #[strum(props(
5522 svg = "<path d=\"M11.65 6H18\"></path><path d=\"M12 13v1\"></path><path d=\"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V6\"></path><path d=\"m2 2 20 20\"></path><path d=\"M7.64 2H17a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8a4 4 0 0 0-.55 1.00\"></path>",
5523 categories = "photography,devices",
5524 tags = "torch,light,beam,emergency,safety,tool,bright",
5525 contributors = "Andreto,ericfennis,karsa-mistmere,csandman,jamiemlaw"
5526 ))]
5527 FlashlightOff,
5528 #[cfg(any(feature = "photography", feature = "devices"))]
5529 #[strum(props(
5530 svg = "<path d=\"M12 13v1\"></path><path d=\"M17 2a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8A4 4 0 0 0 16 12v8a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V3a1 1 0 0 1 1-1z\"></path><path d=\"M6 6h12\"></path>",
5531 categories = "photography,devices",
5532 tags = "torch,light,beam,emergency,safety,tool,bright",
5533 contributors = "csandman,ericfennis,jamiemlaw"
5534 ))]
5535 Flashlight,
5536 #[cfg(any(feature = "science", feature = "gaming"))]
5537 #[strum(props(
5538 svg = "<path d=\"M10 2v2.34\"></path><path d=\"M14 2v6.34\"></path><path d=\"m2 2 20 20\"></path><path d=\"M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.75-2.96l5.22-9.56\"></path><path d=\"M6.45 15H15\"></path><path d=\"M8.5 2h7\"></path>",
5539 categories = "science,gaming",
5540 tags = "beaker,erlenmeyer,non toxic,lab,chemistry,experiment,test",
5541 contributors = "karsa-mistmere,ericfennis,jamiemlaw"
5542 ))]
5543 FlaskConicalOff,
5544 #[cfg(any(feature = "science", feature = "gaming"))]
5545 #[strum(props(
5546 svg = "<path d=\"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.75-2.96l5.51-10.08A2 2 0 0 0 10 8V2\"></path><path d=\"M6.45 15h11.09\"></path><path d=\"M8.5 2h7\"></path>",
5547 categories = "science,gaming",
5548 tags = "beaker,erlenmeyer,lab,chemistry,experiment,test",
5549 contributors = "Andreto,ericfennis,karsa-mistmere,jamiemlaw"
5550 ))]
5551 FlaskConical,
5552 #[cfg(any(feature = "science", feature = "gaming"))]
5553 #[strum(props(
5554 svg = "<path d=\"M10 2v6.29a7 7 0 1 0 4 0V2\"></path><path d=\"M5 15h14\"></path><path d=\"M8.5 2h7\"></path>",
5555 categories = "science,gaming",
5556 tags = "beaker,lab,chemistry,experiment,test",
5557 contributors = "Andreto,ericfennis,danielbayley,jamiemlaw"
5558 ))]
5559 FlaskRound,
5560 #[cfg(any(feature = "design", feature = "photography"))]
5561 #[strum(props(
5562 svg = "<path d=\"m3 7 5 5-5 5V7\"></path><path d=\"m21 7-5 5 5 5V7\"></path><path d=\"M12 20v2\"></path><path d=\"M12 14v2\"></path><path d=\"M12 8v2\"></path><path d=\"M12 2v2\"></path>",
5563 categories = "design,photography",
5564 tags = "reflect,mirror,alignment,dashed",
5565 contributors = "ericfennis,karsa-mistmere"
5566 ))]
5567 FlipHorizontal2,
5568 #[cfg(any(feature = "design", feature = "photography"))]
5569 #[strum(props(
5570 svg = "<path d=\"m17 3-5 5-5-5h10\"></path><path d=\"m17 21-5-5-5 5h10\"></path><path d=\"M4 12H2\"></path><path d=\"M10 12H8\"></path><path d=\"M16 12h-2\"></path><path d=\"M22 12h-2\"></path>",
5571 categories = "design,photography",
5572 tags = "reflect,mirror,alignment,dashed",
5573 contributors = "ericfennis,karsa-mistmere,jguddas"
5574 ))]
5575 FlipVertical2,
5576 #[cfg(any(feature = "nature", feature = "sustainability", feature = "seasons"))]
5577 #[strum(props(
5578 svg = "<path d=\"M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1\"></path><circle cx=\"12\" cy=\"8\" r=\"2\"></circle><path d=\"M12 10v12\"></path><path d=\"M12 22c4.2 0 7-1.66 7-5-4.2 0-7 1.66-7 5Z\"></path><path d=\"M12 22c-4.2 0-7-1.66-7-5 4.2 0 7 1.66 7 5Z\"></path>",
5579 categories = "nature,sustainability,seasons",
5580 tags = "sustainability,nature,plant",
5581 contributors = "karsa-mistmere"
5582 ))]
5583 Flower2,
5584 #[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
5585 #[strum(props(
5586 svg = "<circle cx=\"12\" cy=\"12\" r=\"3\"></circle><path d=\"M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5\"></path><path d=\"M12 7.5V9\"></path><path d=\"M7.5 12H9\"></path><path d=\"M16.5 12H15\"></path><path d=\"M12 16.5V15\"></path><path d=\"m8 8 1.88 1.88\"></path><path d=\"M14.12 9.88 16 8\"></path><path d=\"m8 16 1.88-1.88\"></path><path d=\"M14.12 14.12 16 16\"></path>",
5587 categories = "nature,gaming,sustainability",
5588 tags = "sustainability,nature,plant,spring",
5589 contributors = "karsa-mistmere,jguddas"
5590 ))]
5591 Flower,
5592 #[cfg(feature = "photography")]
5593 #[strum(props(
5594 svg = "<circle cx=\"12\" cy=\"12\" r=\"3\"></circle><path d=\"M3 7V5a2 2 0 0 1 2-2h2\"></path><path d=\"M17 3h2a2 2 0 0 1 2 2v2\"></path><path d=\"M21 17v2a2 2 0 0 1-2 2h-2\"></path><path d=\"M7 21H5a2 2 0 0 1-2-2v-2\"></path>",
5595 categories = "photography",
5596 tags = "camera,lens,photo,dashed",
5597 contributors = "karsa-mistmere,danielbayley,jguddas,ericfennis"
5598 ))]
5599 Focus,
5600 #[cfg(any(feature = "arrows", feature = "layout"))]
5601 #[strum(props(
5602 svg = "<path d=\"M2 12h6\"></path><path d=\"M22 12h-6\"></path><path d=\"M12 2v2\"></path><path d=\"M12 8v2\"></path><path d=\"M12 14v2\"></path><path d=\"M12 20v2\"></path><path d=\"m19 9-3 3 3 3\"></path><path d=\"m5 15 3-3-3-3\"></path>",
5603 categories = "arrows,layout",
5604 tags = "arrow,collapse,fold,vertical,dashed",
5605 contributors = "danielbayley"
5606 ))]
5607 FoldHorizontal,
5608 #[cfg(any(feature = "arrows", feature = "layout"))]
5609 #[strum(props(
5610 svg = "<path d=\"M12 22v-6\"></path><path d=\"M12 8V2\"></path><path d=\"M4 12H2\"></path><path d=\"M10 12H8\"></path><path d=\"M16 12h-2\"></path><path d=\"M22 12h-2\"></path><path d=\"m15 19-3-3-3 3\"></path><path d=\"m15 5-3 3-3-3\"></path>",
5611 categories = "arrows,layout",
5612 tags = "arrow,collapse,fold,vertical,dashed",
5613 contributors = "danielbayley"
5614 ))]
5615 FoldVertical,
5616 #[cfg(feature = "files")]
5617 #[strum(props(
5618 svg = "<circle cx=\"15\" cy=\"19\" r=\"2\"></circle><path d=\"M20.9 19.8A2 2 0 0 0 22 18V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h5.1\"></path><path d=\"M15 11v-1\"></path><path d=\"M15 17v-2\"></path>",
5619 categories = "files",
5620 tags = "archive,zip,package",
5621 contributors = "karsa-mistmere,jguddas"
5622 ))]
5623 FolderArchive,
5624 #[cfg(feature = "files")]
5625 #[strum(props(
5626 svg = "<path d=\"M12 6v8l3-3 3 3V6\"></path><path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z\"></path>",
5627 categories = "files",
5628 tags = "folder,bookmark,file,mark,storage,archive,directory,project,favorite,save,read later",
5629 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,siarie,jguddas,swastik7805,Spleefies,ramazansancar"
5630 ))]
5631 FolderBookmark,
5632 #[cfg(feature = "files")]
5633 #[strum(props(
5634 svg = "<path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z\"></path><path d=\"m9 13 2 2 4-4\"></path>",
5635 categories = "files",
5636 tags = "done,directory,todo,tick,complete,task",
5637 contributors = "karsa-mistmere,ericfennis"
5638 ))]
5639 FolderCheck,
5640 #[cfg(any(feature = "files", feature = "time"))]
5641 #[strum(props(
5642 svg = "<path d=\"M16 14v2.2l1.6 1\"></path><path d=\"M7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2\"></path><circle cx=\"16\" cy=\"16\" r=\"6\"></circle>",
5643 categories = "files,time",
5644 tags = "history,directory,clock",
5645 contributors = "karsa-mistmere,jguddas,jamiemlaw"
5646 ))]
5647 FolderClock,
5648 #[cfg(feature = "files")]
5649 #[strum(props(
5650 svg = "<path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z\"></path><path d=\"M2 10h20\"></path>",
5651 categories = "files",
5652 tags = "directory,closed",
5653 contributors = "karsa-mistmere,ericfennis"
5654 ))]
5655 FolderClosed,
5656 #[cfg(any(feature = "files", feature = "development"))]
5657 #[strum(props(
5658 svg = "<path d=\"M10 10.5 8 13l2 2.5\"></path><path d=\"m14 10.5 2 2.5-2 2.5\"></path><path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z\"></path>",
5659 categories = "files,development",
5660 tags = "directory,coding,develop,software",
5661 contributors = "jguddas,colebemis,csandman,ericfennis,karsa-mistmere"
5662 ))]
5663 FolderCode,
5664 #[cfg(feature = "files")]
5665 #[strum(props(
5666 svg = "<path d=\"M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.98a2 2 0 0 1 1.69.9l.66 1.2A2 2 0 0 0 12 6h8a2 2 0 0 1 2 2v3.3\"></path><path d=\"m14.30 19.53.92-.382\"></path><path d=\"m15.22 16.85-.923-.383\"></path><path d=\"m16.85 15.22-.383-.923\"></path><path d=\"m16.85 20.77-.383.92\"></path><path d=\"m19.14 15.22.383-.923\"></path><path d=\"m19.53 21.69-.382-.924\"></path><path d=\"m20.77 16.85.924-.383\"></path><path d=\"m20.77 19.14.924.38\"></path><circle cx=\"18\" cy=\"18\" r=\"3\"></circle>",
5667 categories = "files",
5668 tags = "directory,settings,control,preferences,cog,edit,gear",
5669 contributors = "karsa-mistmere,UsamaKhan"
5670 ))]
5671 FolderCog,
5672 #[cfg(any(feature = "files", feature = "development"))]
5673 #[strum(props(
5674 svg = "<path d=\"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z\"></path><circle cx=\"12\" cy=\"13\" r=\"1\"></circle>",
5675 categories = "files,development",
5676 tags = "directory,root,project,pinned,active,current,cogged,gear,mechanical,machinery,configuration,controls,preferences,settings,system,admin,edit",
5677 contributors = "danielbayley"
5678 ))]
5679 FolderDot,
5680 #[cfg(any(feature = "files", feature = "arrows"))]
5681 #[strum(props(
5682 svg = "<path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z\"></path><path d=\"M12 10v6\"></path><path d=\"m15 13-3 3-3-3\"></path>",
5683 categories = "files,arrows",
5684 tags = "directory,download,import,export",
5685 contributors = "karsa-mistmere,jguddas"
5686 ))]
5687 FolderDown,
5688 #[cfg(feature = "files")]
5689 #[strum(props(
5690 svg = "<path d=\"M18 19a5 5 0 0 1-5-5v8\"></path><path d=\"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5\"></path><circle cx=\"13\" cy=\"12\" r=\"2\"></circle><circle cx=\"20\" cy=\"19\" r=\"2\"></circle>",
5691 categories = "files",
5692 tags = "directory,root,project,git,repo",
5693 contributors = "danielbayley,karsa-mistmere,ericfennis,jguddas"
5694 ))]
5695 FolderGit2,
5696 #[cfg(feature = "files")]
5697 #[strum(props(
5698 svg = "<circle cx=\"12\" cy=\"13\" r=\"2\"></circle><path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z\"></path><path d=\"M14 13h3\"></path><path d=\"M7 13h3\"></path>",
5699 categories = "files",
5700 tags = "directory,root,project,git,repo",
5701 contributors = "danielbayley,karsa-mistmere,ericfennis"
5702 ))]
5703 FolderGit,
5704 #[cfg(feature = "files")]
5705 #[strum(props(
5706 svg = "<path d=\"M10.63 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v3.41\"></path><path d=\"M14.62 18.8A2.25 2.25 0 1 1 18 15.83a2.25 2.25 0 1 1 3.38 2.96l-2.62 2.85a.998.99 0 0 1-1.50 0z\"></path>",
5707 categories = "files",
5708 tags = "directory,heart,favourite,bookmark,quick link",
5709 contributors = "karsa-mistmere"
5710 ))]
5711 FolderHeart,
5712 #[cfg(any(feature = "files", feature = "arrows"))]
5713 #[strum(props(
5714 svg = "<path d=\"M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1\"></path><path d=\"M2 13h10\"></path><path d=\"m9 16 3-3-3-3\"></path>",
5715 categories = "files,arrows",
5716 tags = "directory,import,export",
5717 contributors = "karsa-mistmere,jguddas"
5718 ))]
5719 FolderInput,
5720 #[cfg(any(
5721 feature = "charts",
5722 feature = "development",
5723 feature = "design",
5724 feature = "files"
5725 ))]
5726 #[strum(props(
5727 svg = "<path d=\"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z\"></path><path d=\"M8 10v4\"></path><path d=\"M12 10v2\"></path><path d=\"M16 10v6\"></path>",
5728 categories = "charts,development,design,files",
5729 tags = "projects,manage,overview,board,tickets,issues,roadmap,plan,intentions,productivity,work,agile,code,coding,directory,project,root",
5730 contributors = "danielbayley"
5731 ))]
5732 FolderKanban,
5733 #[cfg(any(feature = "files", feature = "security"))]
5734 #[strum(props(
5735 svg = "<path d=\"M13 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v1.36\"></path><path d=\"M19 12v6\"></path><path d=\"M19 14h2\"></path><circle cx=\"19\" cy=\"20\" r=\"2\"></circle>",
5736 categories = "files,security",
5737 tags = "directory,key,private,security,protected",
5738 contributors = "karsa-mistmere"
5739 ))]
5740 FolderKey,
5741 #[cfg(any(feature = "files", feature = "security"))]
5742 #[strum(props(
5743 svg = "<rect height=\"5\" rx=\"1\" width=\"8\" x=\"14\" y=\"17\"></rect><path d=\"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2.5\"></path><path d=\"M20 17v-2a2 2 0 1 0-4 0v2\"></path>",
5744 categories = "files,security",
5745 tags = "directory,lock,private,security,protected",
5746 contributors = "karsa-mistmere,ericfennis"
5747 ))]
5748 FolderLock,
5749 #[cfg(feature = "files")]
5750 #[strum(props(
5751 svg = "<path d=\"M9 13h6\"></path><path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z\"></path>",
5752 categories = "files",
5753 tags = "directory,remove,delete",
5754 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
5755 ))]
5756 FolderMinus,
5757 #[cfg(any(feature = "files", feature = "development"))]
5758 #[strum(props(
5759 svg = "<path d=\"m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2\"></path><circle cx=\"14\" cy=\"15\" r=\"1\"></circle>",
5760 categories = "files,development",
5761 tags = "directory,root,project,active,current,pinned",
5762 contributors = "danielbayley"
5763 ))]
5764 FolderOpenDot,
5765 #[cfg(feature = "files")]
5766 #[strum(props(
5767 svg = "<path d=\"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2\"></path>",
5768 categories = "files",
5769 tags = "directory",
5770 contributors = "ericfennis,karsa-mistmere"
5771 ))]
5772 FolderOpen,
5773 #[cfg(any(feature = "files", feature = "arrows"))]
5774 #[strum(props(
5775 svg = "<path d=\"M2 7.5V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5\"></path><path d=\"M2 13h10\"></path><path d=\"m5 10-3 3 3 3\"></path>",
5776 categories = "files,arrows",
5777 tags = "directory,import,export",
5778 contributors = "karsa-mistmere,jguddas"
5779 ))]
5780 FolderOutput,
5781 #[cfg(feature = "files")]
5782 #[strum(props(
5783 svg = "<path d=\"M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5\"></path><path d=\"M11.37 13.62a1 1 0 1 0-3.00-3.00l-5.01 5.01a2 2 0 0 0-.506.85l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z\"></path>",
5784 categories = "files",
5785 tags = "directory,rename",
5786 contributors = "karsa-mistmere"
5787 ))]
5788 FolderPen,
5789 #[cfg(feature = "files")]
5790 #[strum(props(
5791 svg = "<path d=\"M12 10v6\"></path><path d=\"M9 13h6\"></path><path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z\"></path>",
5792 categories = "files",
5793 tags = "directory,add,create,new",
5794 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
5795 ))]
5796 FolderPlus,
5797 #[cfg(any(feature = "files", feature = "development"))]
5798 #[strum(props(
5799 svg = "<path d=\"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z\"></path><circle cx=\"12\" cy=\"13\" r=\"2\"></circle><path d=\"M12 15v5\"></path>",
5800 categories = "files,development",
5801 tags = "directory,root,project,git,repo",
5802 contributors = "danielbayley"
5803 ))]
5804 FolderRoot,
5805 #[cfg(feature = "files")]
5806 #[strum(props(
5807 svg = "<circle cx=\"11.5\" cy=\"12.5\" r=\"2.5\"></circle><path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z\"></path><path d=\"M13.3 14.3 15 16\"></path>",
5808 categories = "files",
5809 tags = "directory,search,find,lost,browser,lens",
5810 contributors = "karsa-mistmere"
5811 ))]
5812 FolderSearch2,
5813 #[cfg(feature = "files")]
5814 #[strum(props(
5815 svg = "<path d=\"M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1\"></path><path d=\"m21 21-1.9-1.9\"></path><circle cx=\"17\" cy=\"17\" r=\"3\"></circle>",
5816 categories = "files",
5817 tags = "directory,search,find,lost,browser,lens",
5818 contributors = "karsa-mistmere,jguddas"
5819 ))]
5820 FolderSearch,
5821 #[cfg(feature = "files")]
5822 #[strum(props(
5823 svg = "<path d=\"M2 9.35V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7\"></path><path d=\"m8 16 3-3-3-3\"></path>",
5824 categories = "files",
5825 tags = "directory,symlink,symbolic,link",
5826 contributors = "karsa-mistmere,jguddas"
5827 ))]
5828 FolderSymlink,
5829 #[cfg(any(feature = "files", feature = "arrows"))]
5830 #[strum(props(
5831 svg = "<path d=\"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5\"></path><path d=\"M12 10v4h4\"></path><path d=\"m12 14 1.53-1.60a5 5 0 0 1 8 1.5\"></path><path d=\"M22 22v-4h-4\"></path><path d=\"m22 18-1.53 1.60a5 5 0 0 1-8-1.5\"></path>",
5832 categories = "files,arrows",
5833 tags = "directory,synchronize,synchronise,refresh,reconnect,transfer,backup",
5834 contributors = "danielbayley,jguddas"
5835 ))]
5836 FolderSync,
5837 #[cfg(feature = "files")]
5838 #[strum(props(
5839 svg = "<path d=\"M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z\"></path><path d=\"M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z\"></path><path d=\"M3 5a2 2 0 0 0 2 2h3\"></path><path d=\"M3 3v13a2 2 0 0 0 2 2h3\"></path>",
5840 categories = "files",
5841 tags = "directory,tree,browser",
5842 contributors = "karsa-mistmere"
5843 ))]
5844 FolderTree,
5845 #[cfg(any(feature = "files", feature = "arrows"))]
5846 #[strum(props(
5847 svg = "<path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z\"></path><path d=\"M12 10v6\"></path><path d=\"m9 13 3-3 3 3\"></path>",
5848 categories = "files,arrows",
5849 tags = "directory,upload,import,export",
5850 contributors = "karsa-mistmere,jguddas"
5851 ))]
5852 FolderUp,
5853 #[cfg(feature = "files")]
5854 #[strum(props(
5855 svg = "<path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z\"></path><path d=\"m9.5 10.5 5 5\"></path><path d=\"m14.5 10.5-5 5\"></path>",
5856 categories = "files",
5857 tags = "directory,remove,delete",
5858 contributors = "karsa-mistmere,jguddas"
5859 ))]
5860 FolderX,
5861 #[cfg(feature = "files")]
5862 #[strum(props(
5863 svg = "<path d=\"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z\"></path>",
5864 categories = "files",
5865 tags = "directory",
5866 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
5867 ))]
5868 Folder,
5869 #[cfg(feature = "files")]
5870 #[strum(props(
5871 svg = "<path d=\"M20 5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h2.5a1.5 1.5 0 0 1 1.2.6l.6.8a1.5 1.5 0 0 0 1.2.6z\"></path><path d=\"M3 8.26a2 2 0 0 0-1 1.73V19a2 2 0 0 0 2 2h11a2 2 0 0 0 1.73-1\"></path>",
5872 categories = "files",
5873 tags = "multiple,copy,directories",
5874 contributors = "karsa-mistmere,jguddas"
5875 ))]
5876 Folders,
5877 #[cfg(feature = "navigation")]
5878 #[strum(props(
5879 svg = "<path d=\"M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z\"></path><path d=\"M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z\"></path><path d=\"M16 17h4\"></path><path d=\"M4 13h4\"></path>",
5880 categories = "navigation",
5881 tags = "steps,walking,foot,feet,trail,shoe",
5882 contributors = "karsa-mistmere"
5883 ))]
5884 Footprints,
5885 #[cfg(feature = "transportation")]
5886 #[strum(props(
5887 svg = "<path d=\"M12 12H5a2 2 0 0 0-2 2v5\"></path><path d=\"M15 19h7\"></path><path d=\"M16 19V2\"></path><path d=\"M6 12V7a2 2 0 0 1 2-2h2.17a2 2 0 0 1 1.41.586l3.82 3.82A2 2 0 0 1 16 10.82\"></path><path d=\"M7 19h4\"></path><circle cx=\"13\" cy=\"19\" r=\"2\"></circle><circle cx=\"5\" cy=\"19\" r=\"2\"></circle>",
5888 categories = "transportation",
5889 tags = "machinery,industrial,warehouse,lifting,storage,equipment,heavy-duty,moving,vehicle,transport,logistics",
5890 contributors = "ericfennis,jguddas"
5891 ))]
5892 Forklift,
5893 #[cfg(feature = "development")]
5894 #[strum(props(
5895 svg = "<path d=\"M4 14h6\"></path><path d=\"M4 2h10\"></path><rect height=\"4\" rx=\"1\" width=\"16\" x=\"4\" y=\"18\"></rect><rect height=\"4\" rx=\"1\" width=\"16\" x=\"4\" y=\"6\"></rect>",
5896 categories = "development",
5897 tags = "document,page,file,layout,paper,stub,formality,structure,template,inputs,design,components",
5898 contributors = "jguddas,karsa-mistmere"
5899 ))]
5900 Form,
5901 #[cfg(feature = "mail")]
5902 #[strum(props(
5903 svg = "<path d=\"m15 17 5-5-5-5\"></path><path d=\"M4 18v-2a4 4 0 0 1 4-4h12\"></path>",
5904 categories = "mail",
5905 tags = "send,share,email",
5906 contributors = "Andreto,ericfennis,mittalyashu"
5907 ))]
5908 Forward,
5909 #[cfg(any(feature = "design", feature = "photography"))]
5910 #[strum(props(
5911 svg = "<line x1=\"22\" x2=\"2\" y1=\"6\" y2=\"6\"></line><line x1=\"22\" x2=\"2\" y1=\"18\" y2=\"18\"></line><line x1=\"6\" x2=\"6\" y1=\"2\" y2=\"22\"></line><line x1=\"18\" x2=\"18\" y1=\"2\" y2=\"22\"></line>",
5912 categories = "design,photography",
5913 tags = "logo,design,tool",
5914 contributors = "Bowero,ericfennis"
5915 ))]
5916 Frame,
5917 #[cfg(any(feature = "emoji", feature = "account"))]
5918 #[strum(props(
5919 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M16 16s-1.5-2-4-2-4 2-4 2\"></path><line x1=\"9\" x2=\"9.01\" y1=\"9\" y2=\"9\"></line><line x1=\"15\" x2=\"15.01\" y1=\"9\" y2=\"9\"></line>",
5920 categories = "emoji,account",
5921 tags = "emoji,face,bad,sad,emotion",
5922 contributors = "colebemis,csandman,mittalyashu,ericfennis"
5923 ))]
5924 Frown,
5925 #[cfg(any(feature = "transportation", feature = "navigation"))]
5926 #[strum(props(
5927 svg = "<path d=\"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.99a2 2 0 0 0-.59-1.42L18 5\"></path><path d=\"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16\"></path><path d=\"M2 21h13\"></path><path d=\"M3 9h11\"></path>",
5928 categories = "transportation,navigation",
5929 tags = "filling-station,gas,petrol,tank",
5930 contributors = "karsa-mistmere,ericfennis,UsamaKhan"
5931 ))]
5932 Fuel,
5933 #[cfg(any(
5934 feature = "layout",
5935 feature = "multimedia",
5936 feature = "design",
5937 feature = "photography"
5938 ))]
5939 #[strum(props(
5940 svg = "<path d=\"M3 7V5a2 2 0 0 1 2-2h2\"></path><path d=\"M17 3h2a2 2 0 0 1 2 2v2\"></path><path d=\"M21 17v2a2 2 0 0 1-2 2h-2\"></path><path d=\"M7 21H5a2 2 0 0 1-2-2v-2\"></path><rect height=\"8\" rx=\"1\" width=\"10\" x=\"7\" y=\"8\"></rect>",
5941 categories = "layout,multimedia,design,photography",
5942 tags = "expand,zoom,preview,focus,camera,lens,image",
5943 contributors = "danielbayley"
5944 ))]
5945 Fullscreen,
5946 #[cfg(feature = "layout")]
5947 #[strum(props(
5948 svg = "<path d=\"M13.35 3H3a1 1 0 0 0-.742 1.67l7.22 7.98A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.89l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.34l1.21-1.34\"></path><path d=\"M16 6h6\"></path><path d=\"M19 3v6\"></path>",
5949 categories = "layout",
5950 tags = "filter,hopper,add,create,new",
5951 contributors = "gubser,ericfennis,lukedukeus,jguddas,karsa-mistmere"
5952 ))]
5953 FunnelPlus,
5954 #[cfg(feature = "layout")]
5955 #[strum(props(
5956 svg = "<path d=\"M12.53 3H3a1 1 0 0 0-.742 1.67l7.22 7.98A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.89l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.34l.427-.473\"></path><path d=\"m16.5 3.5 5 5\"></path><path d=\"m21.5 3.5-5 5\"></path>",
5957 categories = "layout",
5958 tags = "filter,hopper,remove,delete",
5959 contributors = "gubser,ericfennis,lukedukeus,jguddas,karsa-mistmere"
5960 ))]
5961 FunnelX,
5962 #[cfg(feature = "layout")]
5963 #[strum(props(
5964 svg = "<path d=\"M10 20a1 1 0 0 0 .553.89l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.34L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.22 7.98A2 2 0 0 1 10 14z\"></path>",
5965 categories = "layout",
5966 tags = "filter,hopper",
5967 contributors = "colebemis,lukedukeus,jguddas,karsa-mistmere"
5968 ))]
5969 Funnel,
5970 #[cfg(any(
5971 feature = "layout",
5972 feature = "design",
5973 feature = "development",
5974 feature = "photography",
5975 feature = "multimedia",
5976 feature = "files"
5977 ))]
5978 #[strum(props(
5979 svg = "<path d=\"M2 7v10\"></path><path d=\"M6 5v14\"></path><rect height=\"18\" rx=\"2\" width=\"12\" x=\"10\" y=\"3\"></rect>",
5980 categories = "layout,design,development,photography,multimedia,files",
5981 tags = "carousel,pictures,images,scroll,swipe,album,portfolio,history,versions,backup,time machine",
5982 contributors = "danielbayley"
5983 ))]
5984 GalleryHorizontalEnd,
5985 #[cfg(any(
5986 feature = "layout",
5987 feature = "design",
5988 feature = "development",
5989 feature = "photography",
5990 feature = "multimedia"
5991 ))]
5992 #[strum(props(
5993 svg = "<path d=\"M2 3v18\"></path><rect height=\"18\" rx=\"2\" width=\"12\" x=\"6\" y=\"3\"></rect><path d=\"M22 3v18\"></path>",
5994 categories = "layout,design,development,photography,multimedia",
5995 tags = "carousel,pictures,images,scroll,swipe,album,portfolio",
5996 contributors = "danielbayley"
5997 ))]
5998 GalleryHorizontal,
5999 #[cfg(any(
6000 feature = "layout",
6001 feature = "design",
6002 feature = "development",
6003 feature = "photography",
6004 feature = "multimedia"
6005 ))]
6006 #[strum(props(
6007 svg = "<rect height=\"14\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M4 21h1\"></path><path d=\"M9 21h1\"></path><path d=\"M14 21h1\"></path><path d=\"M19 21h1\"></path>",
6008 categories = "layout,design,development,photography,multimedia",
6009 tags = "carousel,pictures,images,album,portfolio,preview",
6010 contributors = "danielbayley"
6011 ))]
6012 GalleryThumbnails,
6013 #[cfg(any(
6014 feature = "layout",
6015 feature = "design",
6016 feature = "development",
6017 feature = "photography",
6018 feature = "multimedia",
6019 feature = "files"
6020 ))]
6021 #[strum(props(
6022 svg = "<path d=\"M7 2h10\"></path><path d=\"M5 6h14\"></path><rect height=\"12\" rx=\"2\" width=\"18\" x=\"3\" y=\"10\"></rect>",
6023 categories = "layout,design,development,photography,multimedia,files",
6024 tags = "carousel,pictures,images,scroll,swipe,album,portfolio,history,versions,backup,time machine",
6025 contributors = "danielbayley"
6026 ))]
6027 GalleryVerticalEnd,
6028 #[cfg(any(
6029 feature = "layout",
6030 feature = "design",
6031 feature = "development",
6032 feature = "photography",
6033 feature = "multimedia"
6034 ))]
6035 #[strum(props(
6036 svg = "<path d=\"M3 2h18\"></path><rect height=\"12\" rx=\"2\" width=\"18\" x=\"3\" y=\"6\"></rect><path d=\"M3 22h18\"></path>",
6037 categories = "layout,design,development,photography,multimedia",
6038 tags = "carousel,pictures,images,scroll,swipe,album,portfolio",
6039 contributors = "danielbayley"
6040 ))]
6041 GalleryVertical,
6042 #[cfg(any(feature = "gaming", feature = "devices"))]
6043 #[strum(props(
6044 svg = "<line x1=\"6\" x2=\"10\" y1=\"11\" y2=\"11\"></line><line x1=\"8\" x2=\"8\" y1=\"9\" y2=\"13\"></line><line x1=\"15\" x2=\"15.01\" y1=\"12\" y2=\"12\"></line><line x1=\"18\" x2=\"18.01\" y1=\"10\" y2=\"10\"></line><path d=\"M17.32 5H6.68a4 4 0 0 0-3.97 3.59c-.006.05-.01.10-.017.15C2.60 9.41 2 14.45 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.41-1.41A2 2 0 0 1 9.82 16h4.34a2 2 0 0 1 1.41.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.54-.604-6.58-.685-7.25-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z\"></path>",
6045 categories = "gaming,devices",
6046 tags = "console",
6047 contributors = "ericfennis,csandman,johnletey"
6048 ))]
6049 Gamepad2,
6050 #[cfg(any(feature = "gaming", feature = "devices"))]
6051 #[strum(props(
6052 svg = "<path d=\"M11.14 15.85a1.20 1.20 0 0 1 1.70 0l1.56 1.56A2 2 0 0 1 15 18.82V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.17a2 2 0 0 1 .586-1.41z\"></path><path d=\"M18.82 15a2 2 0 0 1-1.41-.586l-1.56-1.56a1.20 1.20 0 0 1 0-1.70l1.56-1.56A2 2 0 0 1 18.82 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z\"></path><path d=\"M6.58 14.41A2 2 0 0 1 5.17 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.17a2 2 0 0 1 1.41.586l1.56 1.56a1.20 1.20 0 0 1 0 1.70z\"></path><path d=\"M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.17a2 2 0 0 1-.586 1.41l-1.56 1.56a1.20 1.20 0 0 1-1.70 0l-1.56-1.56A2 2 0 0 1 9 5.17z\"></path>",
6053 categories = "gaming,devices",
6054 tags = "direction,arrow,controller,navigation,button,move,pointer,arrowhead,console,game,gaming",
6055 contributors = "felipeajzanetti,jguddas"
6056 ))]
6057 GamepadDirectional,
6058 #[cfg(any(feature = "gaming", feature = "devices"))]
6059 #[strum(props(
6060 svg = "<line x1=\"6\" x2=\"10\" y1=\"12\" y2=\"12\"></line><line x1=\"8\" x2=\"8\" y1=\"10\" y2=\"14\"></line><line x1=\"15\" x2=\"15.01\" y1=\"13\" y2=\"13\"></line><line x1=\"18\" x2=\"18.01\" y1=\"11\" y2=\"11\"></line><rect height=\"12\" rx=\"2\" width=\"20\" x=\"2\" y=\"6\"></rect>",
6061 categories = "gaming,devices",
6062 tags = "console",
6063 contributors = "ericfennis,johnletey"
6064 ))]
6065 Gamepad,
6066 #[cfg(any(feature = "transportation", feature = "sports", feature = "science"))]
6067 #[strum(props(
6068 svg = "<path d=\"m12 14 4-4\"></path><path d=\"M3.34 19a10 10 0 1 1 17.32 0\"></path>",
6069 categories = "transportation,sports,science",
6070 tags = "dashboard,dial,meter,speed,pressure,measure,level",
6071 contributors = "ericfennis,Andreto,danielbayley,karsa-mistmere"
6072 ))]
6073 Gauge,
6074 #[cfg(any(feature = "navigation", feature = "tools"))]
6075 #[strum(props(
6076 svg = "<path d=\"m14 13-8.38 8.38a1 1 0 0 1-3.00-3l8.38-8.38\"></path><path d=\"m16 16 6-6\"></path><path d=\"m21.5 10.5-8-8\"></path><path d=\"m8 8 6-6\"></path><path d=\"m8.5 7.5 8 8\"></path>",
6077 categories = "navigation,tools",
6078 tags = "justice,law,court,judgment,legal,hands,penalty,decision,authority,hammer,mallet",
6079 contributors = "Andreto,ericfennis,jguddas,karsa-mistmere"
6080 ))]
6081 Gavel,
6082 #[cfg(any(feature = "gaming", feature = "development", feature = "finance"))]
6083 #[strum(props(
6084 svg = "<path d=\"M10.5 3 8 9l4 13 4-13-2.5-6\"></path><path d=\"M17 3a2 2 0 0 1 1.6.8l3 4a2 2 0 0 1 .013 2.38l-7.99 10.98a2 2 0 0 1-3.24 0l-7.99-10.98A2 2 0 0 1 2.4 7.8l2.99-3.99A2 2 0 0 1 7 3z\"></path><path d=\"M2 9h20\"></path>",
6085 categories = "gaming,development,finance",
6086 tags = "diamond,crystal,ruby,jewellery,price,special,present,gift,ring,wedding,proposal,marriage,rubygems",
6087 contributors = "connium,ericfennis,karsa-mistmere"
6088 ))]
6089 Gem,
6090 #[cfg(feature = "finance")]
6091 #[strum(props(
6092 svg = "<path d=\"M11.5 21a7.5 7.5 0 1 1 7.35-9\"></path><path d=\"M13 12V3\"></path><path d=\"M4 21h16\"></path><path d=\"M9 12V3\"></path>",
6093 categories = "finance",
6094 tags = "currency,money,payment",
6095 contributors = "kivicode"
6096 ))]
6097 GeorgianLari,
6098 #[cfg(feature = "gaming")]
6099 #[strum(props(
6100 svg = "<path d=\"M9 10h.01\"></path><path d=\"M15 10h.01\"></path><path d=\"M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z\"></path>",
6101 categories = "gaming",
6102 tags = "pac-man,spooky",
6103 contributors = "mittalyashu,ericfennis"
6104 ))]
6105 Ghost,
6106 #[cfg(any(feature = "gaming", feature = "account"))]
6107 #[strum(props(
6108 svg = "<path d=\"M12 7v14\"></path><path d=\"M20 11v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8\"></path><path d=\"M7.5 7a1 1 0 0 1 0-5A4.8 8 0 0 1 12 7a4.8 8 0 0 1 4.5-5 1 1 0 0 1 0 5\"></path><rect height=\"4\" rx=\"1\" width=\"18\" x=\"3\" y=\"7\"></rect>",
6109 categories = "gaming,account",
6110 tags = "present,box,birthday,party",
6111 contributors = "colebemis,csandman,ericfennis,jguddas,karsa-mistmere"
6112 ))]
6113 Gift,
6114 #[cfg(feature = "development")]
6115 #[strum(props(
6116 svg = "<path d=\"M15 6a9 9 0 0 0-9 9V3\"></path><path d=\"M21 18h-6\"></path><circle cx=\"18\" cy=\"6\" r=\"3\"></circle><circle cx=\"6\" cy=\"18\" r=\"3\"></circle>",
6117 categories = "development",
6118 tags = "code,version control,vcs,repository,delete,remove,-",
6119 contributors = "joris-gallot"
6120 ))]
6121 GitBranchMinus,
6122 #[cfg(feature = "development")]
6123 #[strum(props(
6124 svg = "<path d=\"M6 3v12\"></path><path d=\"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z\"></path><path d=\"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z\"></path><path d=\"M15 6a9 9 0 0 0-9 9\"></path><path d=\"M18 15v6\"></path><path d=\"M21 18h-6\"></path>",
6125 categories = "development",
6126 tags = "code,version control,vcs,repository,add,create,+",
6127 contributors = "mittalyashu,ericfennis"
6128 ))]
6129 GitBranchPlus,
6130 #[cfg(feature = "development")]
6131 #[strum(props(
6132 svg = "<path d=\"M15 6a9 9 0 0 0-9 9V3\"></path><circle cx=\"18\" cy=\"6\" r=\"3\"></circle><circle cx=\"6\" cy=\"18\" r=\"3\"></circle>",
6133 categories = "development",
6134 tags = "code,version control,vcs,repository",
6135 contributors = "colebemis,csandman,ericfennis,jguddas"
6136 ))]
6137 GitBranch,
6138 #[cfg(any(feature = "development", feature = "navigation"))]
6139 #[strum(props(
6140 svg = "<circle cx=\"12\" cy=\"12\" r=\"3\"></circle><line x1=\"3\" x2=\"9\" y1=\"12\" y2=\"12\"></line><line x1=\"15\" x2=\"21\" y1=\"12\" y2=\"12\"></line>",
6141 categories = "development,navigation",
6142 tags = "code,version control,waypoint,stop,station",
6143 contributors = "colebemis,ericfennis,johnletey"
6144 ))]
6145 GitCommitHorizontal,
6146 #[cfg(any(feature = "development", feature = "navigation"))]
6147 #[strum(props(
6148 svg = "<path d=\"M12 3v6\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle><path d=\"M12 15v6\"></path>",
6149 categories = "development,navigation",
6150 tags = "code,version control,waypoint,stop,station",
6151 contributors = "danielbayley"
6152 ))]
6153 GitCommitVertical,
6154 #[cfg(any(feature = "development", feature = "arrows"))]
6155 #[strum(props(
6156 svg = "<circle cx=\"5\" cy=\"6\" r=\"3\"></circle><path d=\"M12 6h5a2 2 0 0 1 2 2v7\"></path><path d=\"m15 9-3-3 3-3\"></path><circle cx=\"19\" cy=\"18\" r=\"3\"></circle><path d=\"M12 18H7a2 2 0 0 1-2-2V9\"></path><path d=\"m9 15 3 3-3 3\"></path>",
6157 categories = "development,arrows",
6158 tags = "code,version control,diff",
6159 contributors = "danielbayley"
6160 ))]
6161 GitCompareArrows,
6162 #[cfg(feature = "development")]
6163 #[strum(props(
6164 svg = "<circle cx=\"18\" cy=\"18\" r=\"3\"></circle><circle cx=\"6\" cy=\"6\" r=\"3\"></circle><path d=\"M13 6h3a2 2 0 0 1 2 2v7\"></path><path d=\"M11 18H8a2 2 0 0 1-2-2V9\"></path>",
6165 categories = "development",
6166 tags = "code,version control,diff",
6167 contributors = "karsa-mistmere,ericfennis"
6168 ))]
6169 GitCompare,
6170 #[cfg(feature = "development")]
6171 #[strum(props(
6172 svg = "<circle cx=\"12\" cy=\"18\" r=\"3\"></circle><circle cx=\"6\" cy=\"6\" r=\"3\"></circle><circle cx=\"18\" cy=\"6\" r=\"3\"></circle><path d=\"M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9\"></path><path d=\"M12 12v3\"></path>",
6173 categories = "development",
6174 tags = "code,version control",
6175 contributors = "ericfennis,danielbayley"
6176 ))]
6177 GitFork,
6178 #[cfg(feature = "development")]
6179 #[strum(props(
6180 svg = "<circle cx=\"5\" cy=\"6\" r=\"3\"></circle><path d=\"M5 9v6\"></path><circle cx=\"5\" cy=\"18\" r=\"3\"></circle><path d=\"M12 3v18\"></path><circle cx=\"19\" cy=\"6\" r=\"3\"></circle><path d=\"M16 15.7A9 9 0 0 0 19 9\"></path>",
6181 categories = "development",
6182 tags = "code,version control,commit graph,commits,gitlens",
6183 contributors = "danielbayley"
6184 ))]
6185 GitGraph,
6186 #[cfg(feature = "development")]
6187 #[strum(props(
6188 svg = "<path d=\"M12 6h4a2 2 0 0 1 2 2v7\"></path><path d=\"M6 12v9\"></path><path d=\"M9 3 3 9\"></path><path d=\"M9 9 3 3\"></path><circle cx=\"18\" cy=\"18\" r=\"3\"></circle>",
6189 categories = "development",
6190 tags = "code,version control,commits,diff,error,conflict",
6191 contributors = "timmy471,colebemis,csandman,karsa-mistmere,ericfennis"
6192 ))]
6193 GitMergeConflict,
6194 #[cfg(feature = "development")]
6195 #[strum(props(
6196 svg = "<circle cx=\"18\" cy=\"18\" r=\"3\"></circle><circle cx=\"6\" cy=\"6\" r=\"3\"></circle><path d=\"M6 21V9a9 9 0 0 0 9 9\"></path>",
6197 categories = "development",
6198 tags = "code,version control",
6199 contributors = "colebemis,csandman,ericfennis"
6200 ))]
6201 GitMerge,
6202 #[cfg(any(feature = "development", feature = "arrows"))]
6203 #[strum(props(
6204 svg = "<circle cx=\"5\" cy=\"6\" r=\"3\"></circle><path d=\"M5 9v12\"></path><circle cx=\"19\" cy=\"18\" r=\"3\"></circle><path d=\"m15 9-3-3 3-3\"></path><path d=\"M12 6h5a2 2 0 0 1 2 2v7\"></path>",
6205 categories = "development,arrows",
6206 tags = "code,version control,open",
6207 contributors = "danielbayley"
6208 ))]
6209 GitPullRequestArrow,
6210 #[cfg(feature = "development")]
6211 #[strum(props(
6212 svg = "<circle cx=\"6\" cy=\"6\" r=\"3\"></circle><path d=\"M6 9v12\"></path><path d=\"m21 3-6 6\"></path><path d=\"m21 9-6-6\"></path><path d=\"M18 11.5V15\"></path><circle cx=\"18\" cy=\"18\" r=\"3\"></circle>",
6213 categories = "development",
6214 tags = "code,version control,rejected,closed,cancelled,x",
6215 contributors = "karsa-mistmere,ericfennis"
6216 ))]
6217 GitPullRequestClosed,
6218 #[cfg(any(feature = "development", feature = "arrows"))]
6219 #[strum(props(
6220 svg = "<circle cx=\"5\" cy=\"6\" r=\"3\"></circle><path d=\"M5 9v12\"></path><path d=\"m15 9-3-3 3-3\"></path><path d=\"M12 6h5a2 2 0 0 1 2 2v3\"></path><path d=\"M19 15v6\"></path><path d=\"M22 18h-6\"></path>",
6221 categories = "development,arrows",
6222 tags = "code,version control,open,plus,add,+",
6223 contributors = "danielbayley"
6224 ))]
6225 GitPullRequestCreateArrow,
6226 #[cfg(feature = "development")]
6227 #[strum(props(
6228 svg = "<circle cx=\"6\" cy=\"6\" r=\"3\"></circle><path d=\"M6 9v12\"></path><path d=\"M13 6h3a2 2 0 0 1 2 2v3\"></path><path d=\"M18 15v6\"></path><path d=\"M21 18h-6\"></path>",
6229 categories = "development",
6230 tags = "code,version control,open,plus,add,+",
6231 contributors = "danielbayley"
6232 ))]
6233 GitPullRequestCreate,
6234 #[cfg(feature = "development")]
6235 #[strum(props(
6236 svg = "<circle cx=\"18\" cy=\"18\" r=\"3\"></circle><circle cx=\"6\" cy=\"6\" r=\"3\"></circle><path d=\"M18 6V5\"></path><path d=\"M18 11v-1\"></path><line x1=\"6\" x2=\"6\" y1=\"9\" y2=\"21\"></line>",
6237 categories = "development",
6238 tags = "code,version control,open,draft,dashed",
6239 contributors = "karsa-mistmere,ericfennis"
6240 ))]
6241 GitPullRequestDraft,
6242 #[cfg(feature = "development")]
6243 #[strum(props(
6244 svg = "<circle cx=\"18\" cy=\"18\" r=\"3\"></circle><circle cx=\"6\" cy=\"6\" r=\"3\"></circle><path d=\"M13 6h3a2 2 0 0 1 2 2v7\"></path><line x1=\"6\" x2=\"6\" y1=\"9\" y2=\"21\"></line>",
6245 categories = "development",
6246 tags = "code,version control,open",
6247 contributors = "colebemis,csandman,ericfennis"
6248 ))]
6249 GitPullRequest,
6250 #[cfg(feature = "food_beverage")]
6251 #[strum(props(
6252 svg = "<path d=\"M5.11 4.10A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.10L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z\"></path><path d=\"M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0\"></path>",
6253 categories = "food-beverage",
6254 tags = "beverage,drink,glass,water",
6255 contributors = "karsa-mistmere,ericfennis"
6256 ))]
6257 GlassWater,
6258 #[cfg(feature = "accessibility")]
6259 #[strum(props(
6260 svg = "<circle cx=\"6\" cy=\"15\" r=\"4\"></circle><circle cx=\"18\" cy=\"15\" r=\"4\"></circle><path d=\"M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2\"></path><path d=\"M2.5 13 5 7c.7-1.3 1.4-2 3-2\"></path><path d=\"M21.5 13 19 7c-.7-1.3-1.5-2-3-2\"></path>",
6261 categories = "accessibility",
6262 tags = "glasses,spectacles",
6263 contributors = "ahtohbi4,ericfennis"
6264 ))]
6265 Glasses,
6266 #[cfg(feature = "navigation")]
6267 #[strum(props(
6268 svg = "<path d=\"m15 6 2 2 4-4\"></path><path d=\"M2 12h20A10 10 0 1 1 12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 4-10\"></path>",
6269 categories = "navigation",
6270 tags = "world,browser,language,translate,internet,web,check,verified,success,valid,available,online,status",
6271 contributors = "colebemis,csandman,ericfennis,Barakudum"
6272 ))]
6273 GlobeCheck,
6274 #[cfg(any(feature = "security", feature = "development", feature = "devices"))]
6275 #[strum(props(
6276 svg = "<path d=\"M15.68 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.54 13\"></path><path d=\"M2 12h8.5\"></path><path d=\"M20 6V4a2 2 0 1 0-4 0v2\"></path><rect height=\"5\" rx=\"1\" width=\"8\" x=\"14\" y=\"6\"></rect>",
6277 categories = "security,development,devices",
6278 tags = "vpn,private,privacy,network,world,browser,security,encryption,protection,connection",
6279 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
6280 ))]
6281 GlobeLock,
6282 #[cfg(any(feature = "navigation", feature = "connectivity", feature = "devices"))]
6283 #[strum(props(
6284 svg = "<path d=\"M10.11 4.46A14.5 14.5 0 0 1 12 2a10 10 0 0 1 9.31 13.64\"></path><path d=\"M15.55 15.55A14.5 14.5 0 0 1 12 22 10 10 0 0 1 4.92 4.92\"></path><path d=\"M15.89 10.23A14.5 14.5 0 0 0 12 2a10 10 0 0 0-3.64.687\"></path><path d=\"M17.65 12H22\"></path><path d=\"M19.07 19.07A10 10 0 0 1 12 22 14.5 14.5 0 0 1 8.44 8.45\"></path><path d=\"M2 12h10\"></path><path d=\"m2 2 20 20\"></path>",
6285 categories = "navigation,connectivity,devices",
6286 tags = "globe,earth,planet,disable,mute,off,hide,avoid,world,browser,language,translate,internet,offline,disconnected,network,connection,no connection,network failure,signal off",
6287 contributors = "TimNekk,karsa-mistmere,colebemis,csandman,ericfennis"
6288 ))]
6289 GlobeOff,
6290 #[cfg(any(feature = "connectivity", feature = "devices", feature = "navigation"))]
6291 #[strum(props(
6292 svg = "<path d=\"m16 3 5 5\"></path><path d=\"M2 12h20A10 10 0 1 1 12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 4-10\"></path><path d=\"m21 3-5 5\"></path>",
6293 categories = "connectivity,devices,navigation",
6294 tags = "globe,internet,offline,disconnected,network,connection,world,no connection,network failure,signal off",
6295 contributors = "karsa-mistmere,Muhammad-Aqib-Bashir"
6296 ))]
6297 GlobeX,
6298 #[cfg(feature = "navigation")]
6299 #[strum(props(
6300 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20\"></path><path d=\"M2 12h20\"></path>",
6301 categories = "navigation",
6302 tags = "world,browser,language,translate",
6303 contributors = "colebemis,csandman,ericfennis"
6304 ))]
6305 Globe,
6306 #[cfg(feature = "gaming")]
6307 #[strum(props(
6308 svg = "<path d=\"M12 13V2l8 4-8 4\"></path><path d=\"M20.56 10.22a9 9 0 1 1-12.55-5.29\"></path><path d=\"M8.00 9.99a5 5 0 1 0 8.9 2.02\"></path>",
6309 categories = "gaming",
6310 tags = "flag,bullseye",
6311 contributors = "guillermo-angeles,jguddas"
6312 ))]
6313 Goal,
6314 #[cfg(any(feature = "devices", feature = "gaming"))]
6315 #[strum(props(
6316 svg = "<path d=\"M2 17h18a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H2\"></path><path d=\"M2 21V3\"></path><path d=\"M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3\"></path><circle cx=\"16\" cy=\"11\" r=\"2\"></circle><circle cx=\"8\" cy=\"11\" r=\"2\"></circle>",
6317 categories = "devices,gaming",
6318 tags = "processor,cores,technology,computer,chip,circuit,specs,graphics processing unit,video card,display adapter,gddr,rendering,digital image processing,crypto mining",
6319 contributors = "xandykati98,karsa-mistmere"
6320 ))]
6321 Gpu,
6322 #[cfg(feature = "buildings")]
6323 #[strum(props(
6324 svg = "<path d=\"M21.42 10.92a1 1 0 0 0-.019-1.83L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.83l8.57 3.90a2 2 0 0 0 1.66 0z\"></path><path d=\"M22 10v6\"></path><path d=\"M6 12.5V16a6 3 0 0 0 12 0v-3.5\"></path>",
6325 categories = "buildings",
6326 tags = "school,university,learn,study,mortarboard,education,ceremony,academic,hat,diploma,bachlor's,master's,doctorate",
6327 contributors = "Tummerhore,ericfennis,karsa-mistmere,jguddas"
6328 ))]
6329 GraduationCap,
6330 #[cfg(feature = "food_beverage")]
6331 #[strum(props(
6332 svg = "<path d=\"M22 5V2l-5.89 5.89\"></path><circle cx=\"16.6\" cy=\"15.89\" r=\"3\"></circle><circle cx=\"8.11\" cy=\"7.4\" r=\"3\"></circle><circle cx=\"12.35\" cy=\"11.65\" r=\"3\"></circle><circle cx=\"13.91\" cy=\"5.85\" r=\"3\"></circle><circle cx=\"18.15\" cy=\"10.09\" r=\"3\"></circle><circle cx=\"6.56\" cy=\"13.2\" r=\"3\"></circle><circle cx=\"10.8\" cy=\"17.44\" r=\"3\"></circle><circle cx=\"5\" cy=\"19\" r=\"3\"></circle>",
6333 categories = "food-beverage",
6334 tags = "fruit,wine,food",
6335 contributors = "karsa-mistmere"
6336 ))]
6337 Grape,
6338 #[cfg(any(feature = "text", feature = "layout", feature = "math"))]
6339 #[strum(props(
6340 svg = "<path d=\"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3\"></path><path d=\"m16 19 2 2 4-4\"></path>",
6341 categories = "text,layout,math",
6342 tags = "table,rows,columns,blocks,plot,land,geometry,measure,data,size,width,height,distance,surface area,square meter,acre",
6343 contributors = "danielbayley,chessurisme"
6344 ))]
6345 Grid2X2Check,
6346 #[cfg(any(feature = "text", feature = "layout", feature = "math"))]
6347 #[strum(props(
6348 svg = "<path d=\"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3\"></path><path d=\"M16 19h6\"></path><path d=\"M19 22v-6\"></path>",
6349 categories = "text,layout,math",
6350 tags = "table,rows,columns,blocks,plot,land,geometry,measure,data,size,width,height,distance,surface area,square meter,acre",
6351 contributors = "danielbayley,chessurisme,jguddas"
6352 ))]
6353 Grid2X2Plus,
6354 #[cfg(any(feature = "text", feature = "layout", feature = "math"))]
6355 #[strum(props(
6356 svg = "<path d=\"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3\"></path><path d=\"m16 16 5 5\"></path><path d=\"m16 21 5-5\"></path>",
6357 categories = "text,layout,math",
6358 tags = "table,rows,columns,data,blocks,plot,land,geometry,measure,size,width,height,distance,surface area,square meter,acre",
6359 contributors = "danielbayley,chessurisme"
6360 ))]
6361 Grid2X2X,
6362 #[cfg(any(
6363 feature = "text",
6364 feature = "layout",
6365 feature = "design",
6366 feature = "math"
6367 ))]
6368 #[strum(props(
6369 svg = "<path d=\"M12 3v18\"></path><path d=\"M3 12h18\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
6370 categories = "text,layout,design,math",
6371 tags = "table,rows,columns,blocks,plot,land,geometry,measure,size,width,height,distance,surface area,square meter,acre,window,skylight",
6372 contributors = "danielbayley"
6373 ))]
6374 Grid2X2,
6375 #[cfg(any(
6376 feature = "text",
6377 feature = "math",
6378 feature = "layout",
6379 feature = "design"
6380 ))]
6381 #[strum(props(
6382 svg = "<path d=\"M15 3v18\"></path><path d=\"M3 12h18\"></path><path d=\"M9 3v18\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
6383 categories = "text,math,layout,design",
6384 tags = "table,rows,columns,blocks,plot,land,geometry,measure,size,width,height,distance,surface area,square meter,acre,window",
6385 contributors = "qubrat"
6386 ))]
6387 Grid3X2,
6388 #[cfg(any(feature = "text", feature = "layout", feature = "design"))]
6389 #[strum(props(
6390 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M3 9h18\"></path><path d=\"M3 15h18\"></path><path d=\"M9 3v18\"></path><path d=\"M15 3v18\"></path>",
6391 categories = "text,layout,design",
6392 tags = "table,rows,columns",
6393 contributors = "colebemis,zenoamaro,ericfennis,csandman,mittalyashu"
6394 ))]
6395 Grid3X3,
6396 #[cfg(feature = "layout")]
6397 #[strum(props(
6398 svg = "<circle cx=\"12\" cy=\"9\" r=\"1\"></circle><circle cx=\"19\" cy=\"9\" r=\"1\"></circle><circle cx=\"5\" cy=\"9\" r=\"1\"></circle><circle cx=\"12\" cy=\"15\" r=\"1\"></circle><circle cx=\"19\" cy=\"15\" r=\"1\"></circle><circle cx=\"5\" cy=\"15\" r=\"1\"></circle>",
6399 categories = "layout",
6400 tags = "grab,dots,handle,move,drag",
6401 contributors = "ericfennis"
6402 ))]
6403 GripHorizontal,
6404 #[cfg(feature = "layout")]
6405 #[strum(props(
6406 svg = "<circle cx=\"9\" cy=\"12\" r=\"1\"></circle><circle cx=\"9\" cy=\"5\" r=\"1\"></circle><circle cx=\"9\" cy=\"19\" r=\"1\"></circle><circle cx=\"15\" cy=\"12\" r=\"1\"></circle><circle cx=\"15\" cy=\"5\" r=\"1\"></circle><circle cx=\"15\" cy=\"19\" r=\"1\"></circle>",
6407 categories = "layout",
6408 tags = "grab,dots,handle,move,drag",
6409 contributors = "ericfennis,johnletey"
6410 ))]
6411 GripVertical,
6412 #[cfg(feature = "layout")]
6413 #[strum(props(
6414 svg = "<circle cx=\"12\" cy=\"5\" r=\"1\"></circle><circle cx=\"19\" cy=\"5\" r=\"1\"></circle><circle cx=\"5\" cy=\"5\" r=\"1\"></circle><circle cx=\"12\" cy=\"12\" r=\"1\"></circle><circle cx=\"19\" cy=\"12\" r=\"1\"></circle><circle cx=\"5\" cy=\"12\" r=\"1\"></circle><circle cx=\"12\" cy=\"19\" r=\"1\"></circle><circle cx=\"19\" cy=\"19\" r=\"1\"></circle><circle cx=\"5\" cy=\"19\" r=\"1\"></circle>",
6415 categories = "layout",
6416 tags = "grab,dots,handle,move,drag",
6417 contributors = "koole,ericfennis"
6418 ))]
6419 Grip,
6420 #[cfg(feature = "files")]
6421 #[strum(props(
6422 svg = "<path d=\"M3 7V5c0-1.1.9-2 2-2h2\"></path><path d=\"M17 3h2c1.1 0 2 .9 2 2v2\"></path><path d=\"M21 17v2c0 1.1-.9 2-2 2h-2\"></path><path d=\"M7 21H5c-1.1 0-2-.9-2-2v-2\"></path><rect height=\"5\" rx=\"1\" width=\"7\" x=\"7\" y=\"7\"></rect><rect height=\"5\" rx=\"1\" width=\"7\" x=\"10\" y=\"12\"></rect>",
6423 categories = "files",
6424 tags = "cubes,packages,parts,units,collection,cluster,gather,dashed",
6425 contributors = "danielbayley"
6426 ))]
6427 Group,
6428 #[cfg(feature = "multimedia")]
6429 #[strum(props(
6430 svg = "<path d=\"m11.9 12.1 4.51-4.51\"></path><path d=\"M20.1 2.3a1 1 0 0 0-1.4 0l-1.11 1.11A2 2 0 0 0 17 4.82v1.34a2 2 0 0 1-.586 1.41A2 2 0 0 1 17.82 7h1.34a2 2 0 0 0 1.41-.586L21.7 5.3a1 1 0 0 0 0-1.4z\"></path><path d=\"m6 16 2 2\"></path><path d=\"M8.23 9.85A3 3 0 0 1 11 8a5 5 0 0 1 5 5 3 3 0 0 1-1.85 2.77l-.92.38A2 2 0 0 0 12 18a4 4 0 0 1-4 4 6 6 0 0 1-6-6 4 4 0 0 1 4-4 2 2 0 0 0 1.85-1.23z\"></path>",
6431 categories = "multimedia",
6432 tags = "acoustic,instrument,strings,riff,rock,band,country,concert,performance,play,lead,loud,music,audio,sound,noise",
6433 contributors = "danielbayley,jguddas"
6434 ))]
6435 Guitar,
6436 #[cfg(feature = "food_beverage")]
6437 #[strum(props(
6438 svg = "<path d=\"M13.14 21.14A7.27 10.44 45 1 0 2.85 10.85\"></path><path d=\"M13.14 21.14A7.27 4.36 45 0 0 2.85 10.85a7.27 4.36 45 0 0 10.28 10.28\"></path><path d=\"M16.56 10.43 18.6 8.4a2.50 2.50 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.02 2.02\"></path><path d=\"m8.5 16.5-1-1\"></path>",
6439 categories = "food-beverage",
6440 tags = "food,pork,pig,meat,bone,hock,knuckle,gammon,cured",
6441 contributors = "karsa-mistmere"
6442 ))]
6443 Ham,
6444 #[cfg(feature = "food_beverage")]
6445 #[strum(props(
6446 svg = "<path d=\"M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25\"></path><path d=\"M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2\"></path><path d=\"M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0\"></path><path d=\"m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2\"></path>",
6447 categories = "food-beverage",
6448 tags = "burger,cheeseburger,meat,beef,patty,bun,fast food,junk food,takeaway,takeout,snack,dish,restaurant,lunch,meal,savory,savoury,cookery,cooking,grilled,barbecue,barbeque,bbq,lettuce,tomato,relish,pickles,onions,ketchup,mustard,mayonnaise",
6449 contributors = "danielbayley,kemie,karsa-mistmere,jguddas,jamiemlaw"
6450 ))]
6451 Hamburger,
6452 #[cfg(any(feature = "tools", feature = "home"))]
6453 #[strum(props(
6454 svg = "<path d=\"m15 12-9.37 9.37a1 1 0 0 1-3.00-3L12 9\"></path><path d=\"m18 15 4-4\"></path><path d=\"m21.5 11.5-1.91-1.91A2 2 0 0 1 19 8.17v-.344a2 2 0 0 0-.586-1.41l-1.65-1.65A6 6 0 0 0 12.51 3H9l1.24 1.24A6 6 0 0 1 12 8.48V10l2 2h1.17a2 2 0 0 1 1.41.586L18.5 14.5\"></path>",
6455 categories = "tools,home",
6456 tags = "mallet,nails,diy,toolbox,build,construction",
6457 contributors = "Andreto,ericfennis,karsa-mistmere"
6458 ))]
6459 Hammer,
6460 #[cfg(any(feature = "finance", feature = "account"))]
6461 #[strum(props(
6462 svg = "<path d=\"M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17\"></path><path d=\"m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9\"></path><path d=\"m2 16 6 6\"></path><circle cx=\"16\" cy=\"9\" r=\"2.9\"></circle><circle cx=\"6\" cy=\"5\" r=\"3\"></circle>",
6463 categories = "finance,account",
6464 tags = "savings,banking,money,finance,offers,mortgage,payment,received,wage,payroll,allowance,pocket money,handout,pennies",
6465 contributors = "danielbayley,kayleyhill"
6466 ))]
6467 HandCoins,
6468 #[cfg(any(
6469 feature = "social",
6470 feature = "emoji",
6471 feature = "communication",
6472 feature = "sports"
6473 ))]
6474 #[strum(props(
6475 svg = "<path d=\"M12.03 17.01a3 3 0 0 0-3-3l-.311-.002a.72.72 0 0 1-.505-1.22l1.19-1.19A2 2 0 0 1 10.82 11H12a2 2 0 0 0 0-4H9.24a3 3 0 0 0-2.12.879l-2.70 2.70A4.83 4.83 0 0 0 3 14a8 8 0 0 0 8 8h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v2a2 2 0 1 0 4 0\"></path><path d=\"M13.88 9.66A2 2 0 0 0 17 8V5A2 2 0 1 0 13 5\"></path><path d=\"M9 5A2 2 0 1 0 5 5V10\"></path><path d=\"M9 7V4A2 2 0 1 1 13 4V7.26\"></path>",
6476 categories = "social,emoji,communication,sports",
6477 tags = "clench,strength,power,unity,solidarity,rebellion,victory,triumph,support,fight,combat,brawl",
6478 contributors = "karsa-mistmere,ericfennis,jguddas"
6479 ))]
6480 HandFist,
6481 #[cfg(any(feature = "cursors", feature = "design", feature = "layout"))]
6482 #[strum(props(
6483 svg = "<path d=\"M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4\"></path><path d=\"M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2\"></path><path d=\"M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5\"></path><path d=\"M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2\"></path><path d=\"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0\"></path>",
6484 categories = "cursors,design,layout",
6485 tags = "hand",
6486 contributors = "ericfennis"
6487 ))]
6488 HandGrab,
6489 #[cfg(feature = "social")]
6490 #[strum(props(
6491 svg = "<path d=\"M11 14h2a2 2 0 0 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16\"></path><path d=\"m14.45 13.39 5.05-4.69C20.19 8 21 6.85 21 5.75a2.75 2.75 0 0 0-4.79-1.83.276.27 0 0 1-.406 0A2.75 2.75 0 0 0 11 5.75c0 1.2.80 2.24 1.5 2.94L16 11.95\"></path><path d=\"m2 15 6 6\"></path><path d=\"m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a1 1 0 0 0-2.75-2.91\"></path>",
6492 categories = "social",
6493 tags = "love,like,emotion",
6494 contributors = "danielbayley,kayleyhill,karsa-mistmere"
6495 ))]
6496 HandHeart,
6497 #[cfg(feature = "emoji")]
6498 #[strum(props(
6499 svg = "<path d=\"M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14\"></path><path d=\"m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9\"></path><path d=\"m2 13 6 6\"></path>",
6500 categories = "emoji",
6501 tags = "agreement,help,proposal,charity,begging,terms",
6502 contributors = "karsa-mistmere,jguddas,danielbayley"
6503 ))]
6504 HandHelping,
6505 #[cfg(any(feature = "emoji", feature = "multimedia"))]
6506 #[strum(props(
6507 svg = "<path d=\"M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4\"></path><path d=\"M14 11V9a2 2 0 1 0-4 0v2\"></path><path d=\"M10 10.5V5a2 2 0 1 0-4 0v9\"></path><path d=\"m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5\"></path>",
6508 categories = "emoji,multimedia",
6509 tags = "rock",
6510 contributors = "mittalyashu,ericfennis"
6511 ))]
6512 HandMetal,
6513 #[cfg(any(feature = "food_beverage", feature = "people"))]
6514 #[strum(props(
6515 svg = "<path d=\"M12 3V2\"></path><path d=\"m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.30-1.46A1 1 0 0 0 6.15 19H5\"></path><path d=\"M2 14h12a2 2 0 0 1 0 4h-2\"></path><path d=\"M4 10h16\"></path><path d=\"M5 10a7 7 0 0 1 14 0\"></path><path d=\"M5 14v6a1 1 0 0 1-1 1H2\"></path>",
6516 categories = "food-beverage,people",
6517 tags = "waiter,waitress,restaurant,table service,served,dinner,dining,meal,course,luxury",
6518 contributors = "danielbayley"
6519 ))]
6520 HandPlatter,
6521 #[cfg(any(feature = "cursors", feature = "accessibility"))]
6522 #[strum(props(
6523 svg = "<path d=\"M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2\"></path><path d=\"M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2\"></path><path d=\"M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8\"></path><path d=\"M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15\"></path>",
6524 categories = "cursors,accessibility",
6525 tags = "wave,move,mouse,grab",
6526 contributors = "ericfennis"
6527 ))]
6528 Hand,
6529 #[cfg(any(feature = "shopping", feature = "transportation"))]
6530 #[strum(props(
6531 svg = "<path d=\"M2.04 18.56A2 2 0 0 0 4 21h16a2 2 0 0 0 1.95-2.43l-2-9A2 2 0 0 0 18 8H6a2 2 0 0 0-1.95 1.56z\"></path><path d=\"M8 11V6a4 4 0 0 1 8 0v5\"></path>",
6532 categories = "shopping,transportation",
6533 tags = "bag,baggage,carry,clutch,fashion,luggage,purse,tote,travel",
6534 contributors = "jamiemlaw,karsa-mistmere"
6535 ))]
6536 Handbag,
6537 #[cfg(any(
6538 feature = "account",
6539 feature = "social",
6540 feature = "communication",
6541 feature = "finance",
6542 feature = "security"
6543 ))]
6544 #[strum(props(
6545 svg = "<path d=\"m11 17 2 2a1 1 0 1 0 3-3\"></path><path d=\"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4\"></path><path d=\"m21 3 1 11h-2\"></path><path d=\"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3\"></path><path d=\"M3 4h8\"></path>",
6546 categories = "account,social,communication,finance,security",
6547 tags = "agreement,partnership,deal,business,assistance,cooperation,friendship,union,terms",
6548 contributors = "karsa-mistmere,ericfennis"
6549 ))]
6550 Handshake,
6551 #[cfg(any(
6552 feature = "development",
6553 feature = "devices",
6554 feature = "arrows",
6555 feature = "files"
6556 ))]
6557 #[strum(props(
6558 svg = "<path d=\"M12 2v8\"></path><path d=\"m16 6-4 4-4-4\"></path><rect height=\"8\" rx=\"2\" width=\"20\" x=\"2\" y=\"14\"></rect><path d=\"M6 18h.01\"></path><path d=\"M10 18h.01\"></path>",
6559 categories = "development,devices,arrows,files",
6560 tags = "computer,server,memory,data,ssd,disk,hard disk,save",
6561 contributors = "danielbayley"
6562 ))]
6563 HardDriveDownload,
6564 #[cfg(any(
6565 feature = "development",
6566 feature = "devices",
6567 feature = "arrows",
6568 feature = "files"
6569 ))]
6570 #[strum(props(
6571 svg = "<path d=\"m16 6-4-4-4 4\"></path><path d=\"M12 2v8\"></path><rect height=\"8\" rx=\"2\" width=\"20\" x=\"2\" y=\"14\"></rect><path d=\"M6 18h.01\"></path><path d=\"M10 18h.01\"></path>",
6572 categories = "development,devices,arrows,files",
6573 tags = "computer,server,memory,data,ssd,disk,hard disk,save",
6574 contributors = "danielbayley"
6575 ))]
6576 HardDriveUpload,
6577 #[cfg(any(feature = "development", feature = "devices"))]
6578 #[strum(props(
6579 svg = "<path d=\"M10 16h.01\"></path><path d=\"M2.21 11.57a2 2 0 0 0-.212.89V18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5.52a2 2 0 0 0-.212-.896L18.55 5.11A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z\"></path><path d=\"M21.94 12.01H2.05\"></path><path d=\"M6 16h.01\"></path>",
6580 categories = "development,devices",
6581 tags = "computer,server,memory,data,ssd,disk,hard disk,storage,hardware,backup,media",
6582 contributors = "colebemis,csandman,ericfennis,jguddas"
6583 ))]
6584 HardDrive,
6585 #[cfg(feature = "tools")]
6586 #[strum(props(
6587 svg = "<path d=\"M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5\"></path><path d=\"M14 6a6 6 0 0 1 6 6v3\"></path><path d=\"M4 15v-3a6 6 0 0 1 6-6\"></path><rect height=\"4\" rx=\"1\" width=\"20\" x=\"2\" y=\"15\"></rect>",
6588 categories = "tools",
6589 tags = "helmet,construction,safety,savety",
6590 contributors = "Andreto,ericfennis"
6591 ))]
6592 HardHat,
6593 #[cfg(any(feature = "text", feature = "social"))]
6594 #[strum(props(
6595 svg = "<line x1=\"4\" x2=\"20\" y1=\"9\" y2=\"9\"></line><line x1=\"4\" x2=\"20\" y1=\"15\" y2=\"15\"></line><line x1=\"10\" x2=\"8\" y1=\"3\" y2=\"21\"></line><line x1=\"16\" x2=\"14\" y1=\"3\" y2=\"21\"></line>",
6596 categories = "text,social",
6597 tags = "hashtag,number,pound",
6598 contributors = "colebemis,ericfennis"
6599 ))]
6600 Hash,
6601 #[cfg(any(feature = "social", feature = "account", feature = "security"))]
6602 #[strum(props(
6603 svg = "<path d=\"M14 18a2 2 0 0 0-4 0\"></path><path d=\"m19 11-2.11-6.65a2 2 0 0 0-2.75-1.14l-1.27.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.92 1.45L5 11\"></path><path d=\"M2 11h20\"></path><circle cx=\"17\" cy=\"18\" r=\"3\"></circle><circle cx=\"7\" cy=\"18\" r=\"3\"></circle>",
6604 categories = "social,account,security",
6605 tags = "incognito,disguise,costume,masked,anonymous,anonymity,privacy,private browsing,stealth,hidden,undercover,cloak,invisible,ghost,spy,agent,detective,identity,cap,fedora,spectacles,shades,sunglasses,eyewear",
6606 contributors = "karsa-mistmere"
6607 ))]
6608 HatGlasses,
6609 #[cfg(feature = "weather")]
6610 #[strum(props(
6611 svg = "<path d=\"m5.2 6.2 1.4 1.4\"></path><path d=\"M2 13h2\"></path><path d=\"M20 13h2\"></path><path d=\"m17.4 7.6 1.4-1.4\"></path><path d=\"M22 17H2\"></path><path d=\"M22 21H2\"></path><path d=\"M16 13a4 4 0 0 0-8 0\"></path><path d=\"M12 5V2.5\"></path>",
6612 categories = "weather",
6613 tags = "mist,fog",
6614 contributors = "ericfennis"
6615 ))]
6616 Haze,
6617 #[cfg(any(feature = "devices", feature = "multimedia"))]
6618 #[strum(props(
6619 svg = "<path d=\"M10 12H6\"></path><path d=\"M10 15V9\"></path><path d=\"M14 14.5a.5.5 0 0 0 .5.5h1a2.5 2.5 0 0 0 2.5-2.5v-1A2.5 2.5 0 0 0 15.5 9h-1a.5.5 0 0 0-.5.5z\"></path><path d=\"M6 15V9\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"5\"></rect>",
6620 categories = "devices,multimedia",
6621 tags = "tv,resolution,video,high definition,720p,1080p",
6622 contributors = "ahtohbi4,jamiemlaw,karsa-mistmere,jguddas"
6623 ))]
6624 Hd,
6625 #[cfg(any(feature = "devices", feature = "multimedia", feature = "gaming"))]
6626 #[strum(props(
6627 svg = "<path d=\"M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z\"></path><path d=\"M7.5 12h9\"></path>",
6628 categories = "devices,multimedia,gaming",
6629 tags = "socket,plug,slot,controller,connector,interface,console,signal,audio,video,visual,av,data,input,output",
6630 contributors = "danielbayley"
6631 ))]
6632 HdmiPort,
6633 #[cfg(feature = "text")]
6634 #[strum(props(
6635 svg = "<path d=\"M4 12h8\"></path><path d=\"M4 18V6\"></path><path d=\"M12 18V6\"></path><path d=\"m17 12 3-2v8\"></path>",
6636 categories = "text",
6637 tags = "h1,html,markup,markdown",
6638 contributors = "ericfennis"
6639 ))]
6640 Heading1,
6641 #[cfg(feature = "text")]
6642 #[strum(props(
6643 svg = "<path d=\"M4 12h8\"></path><path d=\"M4 18V6\"></path><path d=\"M12 18V6\"></path><path d=\"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1\"></path>",
6644 categories = "text",
6645 tags = "h2,html,markup,markdown",
6646 contributors = "ericfennis"
6647 ))]
6648 Heading2,
6649 #[cfg(feature = "text")]
6650 #[strum(props(
6651 svg = "<path d=\"M4 12h8\"></path><path d=\"M4 18V6\"></path><path d=\"M12 18V6\"></path><path d=\"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2\"></path><path d=\"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2\"></path>",
6652 categories = "text",
6653 tags = "h3,html,markup,markdown",
6654 contributors = "ericfennis,jguddas"
6655 ))]
6656 Heading3,
6657 #[cfg(feature = "text")]
6658 #[strum(props(
6659 svg = "<path d=\"M12 18V6\"></path><path d=\"M17 10v3a1 1 0 0 0 1 1h3\"></path><path d=\"M21 10v8\"></path><path d=\"M4 12h8\"></path><path d=\"M4 18V6\"></path>",
6660 categories = "text",
6661 tags = "h4,html,markup,markdown",
6662 contributors = "ericfennis,jguddas"
6663 ))]
6664 Heading4,
6665 #[cfg(feature = "text")]
6666 #[strum(props(
6667 svg = "<path d=\"M4 12h8\"></path><path d=\"M4 18V6\"></path><path d=\"M12 18V6\"></path><path d=\"M17 13v-3h4\"></path><path d=\"M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17\"></path>",
6668 categories = "text",
6669 tags = "h5,html,markup,markdown",
6670 contributors = "ericfennis,jguddas"
6671 ))]
6672 Heading5,
6673 #[cfg(feature = "text")]
6674 #[strum(props(
6675 svg = "<path d=\"M4 12h8\"></path><path d=\"M4 18V6\"></path><path d=\"M12 18V6\"></path><circle cx=\"19\" cy=\"16\" r=\"2\"></circle><path d=\"M20 10c-2 2-3 3.5-3 6\"></path>",
6676 categories = "text",
6677 tags = "h6,html,markup,markdown",
6678 contributors = "ericfennis"
6679 ))]
6680 Heading6,
6681 #[cfg(feature = "text")]
6682 #[strum(props(
6683 svg = "<path d=\"M6 12h12\"></path><path d=\"M6 20V4\"></path><path d=\"M18 20V4\"></path>",
6684 categories = "text",
6685 tags = "h1,html,markup,markdown",
6686 contributors = "ericfennis"
6687 ))]
6688 Heading,
6689 #[cfg(any(
6690 feature = "multimedia",
6691 feature = "connectivity",
6692 feature = "communication",
6693 feature = "devices",
6694 feature = "gaming"
6695 ))]
6696 #[strum(props(
6697 svg = "<path d=\"M21 14h-1.34\"></path><path d=\"M9.12 3.47A9 9 0 0 1 21 12v3.34\"></path><path d=\"m2 2 20 20\"></path><path d=\"M20.41 20.41A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3\"></path><path d=\"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.63-6.36\"></path>",
6698 categories = "multimedia,connectivity,communication,devices,gaming",
6699 tags = "music,audio,sound,mute,off",
6700 contributors = "colebemis,csandman,ericfennis,jguddas,Need-an-AwP"
6701 ))]
6702 HeadphoneOff,
6703 #[cfg(any(
6704 feature = "multimedia",
6705 feature = "connectivity",
6706 feature = "devices",
6707 feature = "files",
6708 feature = "gaming"
6709 ))]
6710 #[strum(props(
6711 svg = "<path d=\"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3\"></path>",
6712 categories = "multimedia,connectivity,devices,files,gaming",
6713 tags = "music,audio,sound",
6714 contributors = "colebemis,csandman,ericfennis,jguddas"
6715 ))]
6716 Headphones,
6717 #[cfg(any(
6718 feature = "multimedia",
6719 feature = "connectivity",
6720 feature = "devices",
6721 feature = "files",
6722 feature = "gaming"
6723 ))]
6724 #[strum(props(
6725 svg = "<path d=\"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z\"></path><path d=\"M21 16v2a4 4 0 0 1-4 4h-5\"></path>",
6726 categories = "multimedia,connectivity,devices,files,gaming",
6727 tags = "music,audio,sound,gaming,headphones,headset,call,center,phone,telephone,voip,video",
6728 contributors = "ericfennis"
6729 ))]
6730 Headset,
6731 #[cfg(feature = "emoji")]
6732 #[strum(props(
6733 svg = "<path d=\"M12.40 5.82c-.702.79-1.15 1.49-1.41 2.16l2.15 2.15a.5.5 0 0 1 0 .707l-2.29 2.29a.5.5 0 0 0 0 .707L12 15\"></path><path d=\"M13.50 20.31a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.59-3.67.6.6 0 0 0 .818.00A5.5 5.5 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5z\"></path>",
6734 categories = "emoji",
6735 tags = "heartbreak,sadness,emotion",
6736 contributors = "karsa-mistmere,danielbayley,jguddas"
6737 ))]
6738 HeartCrack,
6739 #[cfg(any(feature = "emoji", feature = "account", feature = "security"))]
6740 #[strum(props(
6741 svg = "<path d=\"M19.41 14.41C21 12.82 22 11.5 22 9.5a5.5 5.5 0 0 0-9.59-3.67.6.6 0 0 1-.818.00A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.53 5.36a2 2 0 0 0 2.87.052 2.12 2.12 0 0 0-.004-3 2.12 2.12 0 1 0 3-3 2.12 2.12 0 0 0 3.00 0 2 2 0 0 0 0-2.82l-1.88-1.88a2.41 2.41 0 0 0-3.40 0l-1.71 1.71a2 2 0 0 1-2.82 0 2 2 0 0 1 0-2.82l2.82-2.76\"></path>",
6742 categories = "emoji,account,security",
6743 tags = "agreement,charity,help,deal,terms,emotion,together,handshake",
6744 contributors = "karsa-mistmere,danielbayley,jguddas"
6745 ))]
6746 HeartHandshake,
6747 #[cfg(any(
6748 feature = "medical",
6749 feature = "account",
6750 feature = "multimedia",
6751 feature = "gaming",
6752 feature = "social"
6753 ))]
6754 #[strum(props(
6755 svg = "<path d=\"m14.87 18.99-1.36 1.32a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.59-3.67.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.244 1.57\"></path><path d=\"M15 15h6\"></path>",
6756 categories = "medical,account,multimedia,gaming,social",
6757 tags = "unlike,unfavorite,remove,delete,damage",
6758 contributors = "colebemis,ericfennis,danielbayley,karsa-mistmere,Ayberkyvs,jguddas"
6759 ))]
6760 HeartMinus,
6761 #[cfg(any(feature = "social", feature = "multimedia"))]
6762 #[strum(props(
6763 svg = "<path d=\"M10.5 4.89a5.5 5.5 0 0 1 1.09.931.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 1.87-1.00 3.35-2.18 4.65\"></path><path d=\"m16.96 16.96-3.45 3.34a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 2.74-4.76\"></path><path d=\"m2 2 20 20\"></path>",
6764 categories = "social,multimedia",
6765 tags = "unlike,dislike,hate,emotion",
6766 contributors = "karsa-mistmere,ericfennis,danielbayley,jguddas"
6767 ))]
6768 HeartOff,
6769 #[cfg(any(
6770 feature = "medical",
6771 feature = "account",
6772 feature = "multimedia",
6773 feature = "gaming",
6774 feature = "social"
6775 ))]
6776 #[strum(props(
6777 svg = "<path d=\"m14.47 19.37-.971.93a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.59-3.67.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.219 1.49\"></path><path d=\"M15 15h6\"></path><path d=\"M18 12v6\"></path>",
6778 categories = "medical,account,multimedia,gaming,social",
6779 tags = "plus,like,favorite,add,health,support",
6780 contributors = "colebemis,ericfennis,danielbayley,karsa-mistmere,jguddas,Ayberkyvs,UsamaKhan"
6781 ))]
6782 HeartPlus,
6783 #[cfg(feature = "medical")]
6784 #[strum(props(
6785 svg = "<path d=\"M2 9.5a5.5 5.5 0 0 1 9.59-3.67.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.49 5.31a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5\"></path><path d=\"M3.22 13H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27\"></path>",
6786 categories = "medical",
6787 tags = "heartbeat,pulse,health,medical,blood pressure,cardiac,systole,diastole",
6788 contributors = "karsa-mistmere,danielbayley,jguddas"
6789 ))]
6790 HeartPulse,
6791 #[cfg(any(
6792 feature = "social",
6793 feature = "multimedia",
6794 feature = "design",
6795 feature = "shapes"
6796 ))]
6797 #[strum(props(
6798 svg = "<path d=\"m15.5 12.5 5 5\"></path><path d=\"m20.5 12.5-5 5\"></path><path d=\"M21.95 8.77a5.5 5.5 0 0 0-9.54-2.95.6.6 0 0 1-.818 0A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.50 5.33a2 2 0 0 0 2.57.35\"></path>",
6799 categories = "social,multimedia,design,shapes",
6800 tags = "unlike,unfavorite,remove,reject,dismiss,delete,clear",
6801 contributors = "colebemis,ericfennis,danielbayley,karsa-mistmere,jguddas,Ayberkyvs,UsamaKhan,swastik7805"
6802 ))]
6803 HeartX,
6804 #[cfg(any(
6805 feature = "medical",
6806 feature = "social",
6807 feature = "multimedia",
6808 feature = "emoji",
6809 feature = "gaming",
6810 feature = "shapes"
6811 ))]
6812 #[strum(props(
6813 svg = "<path d=\"M2 9.5a5.5 5.5 0 0 1 9.59-3.67.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.49 5.31a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5\"></path>",
6814 categories = "medical,social,multimedia,emoji,gaming,shapes",
6815 tags = "like,love,emotion,suit,playing,cards",
6816 contributors = "colebemis,ericfennis,danielbayley,karsa-mistmere,jguddas"
6817 ))]
6818 Heart,
6819 #[cfg(any(feature = "home", feature = "devices", feature = "travel"))]
6820 #[strum(props(
6821 svg = "<path d=\"M11 8c2-3-2-3 0-6\"></path><path d=\"M15.5 8c2-3-2-3 0-6\"></path><path d=\"M6 10h.01\"></path><path d=\"M6 14h.01\"></path><path d=\"M10 16v-4\"></path><path d=\"M14 16v-4\"></path><path d=\"M18 16v-4\"></path><path d=\"M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3\"></path><path d=\"M5 20v2\"></path><path d=\"M19 20v2\"></path>",
6822 categories = "home,devices,travel",
6823 tags = "heating,warmth,comfort,fire,stove,electric,electronics,amenities",
6824 contributors = "danielbayley"
6825 ))]
6826 Heater,
6827 #[cfg(any(feature = "transportation", feature = "travel"))]
6828 #[strum(props(
6829 svg = "<path d=\"M11 17v4\"></path><path d=\"M14 3v8a2 2 0 0 0 2 2h5.86\"></path><path d=\"M17 17v4\"></path><path d=\"M18 17a4 4 0 0 0 4-4 8 6 0 0 0-8-6 6 5 0 0 0-6 5v3a2 2 0 0 0 2 2z\"></path><path d=\"M2 10v5\"></path><path d=\"M6 3h16\"></path><path d=\"M7 21h14\"></path><path d=\"M8 13H2\"></path>",
6830 categories = "transportation,travel",
6831 tags = "transport,flying,rotor,aviation,helipad,gear,flyer,technology,helicopter,aircraft,vehicle",
6832 contributors = "liloudreams,ericfennis,jamiemlaw"
6833 ))]
6834 Helicopter,
6835 #[cfg(any(feature = "shapes", feature = "development"))]
6836 #[strum(props(
6837 svg = "<path d=\"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z\"></path>",
6838 categories = "shapes,development",
6839 tags = "shape,node.js,logo",
6840 contributors = "colebemis,csandman,ericfennis"
6841 ))]
6842 Hexagon,
6843 #[cfg(any(feature = "text", feature = "design"))]
6844 #[strum(props(
6845 svg = "<path d=\"m9 11-6 6v3h9l3-3\"></path><path d=\"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4\"></path>",
6846 categories = "text,design",
6847 tags = "mark,text",
6848 contributors = "lscheibel,Andreto,ericfennis"
6849 ))]
6850 Highlighter,
6851 #[cfg(any(feature = "arrows", feature = "time"))]
6852 #[strum(props(
6853 svg = "<path d=\"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8\"></path><path d=\"M3 3v5h5\"></path><path d=\"M12 7v5l4 2\"></path>",
6854 categories = "arrows,time",
6855 tags = "time,redo,undo,rewind,timeline,version,time machine,backup,rotate,ccw",
6856 contributors = "ericfennis,danielbayley,jguddas,karsa-mistmere"
6857 ))]
6858 History,
6859 #[cfg(feature = "food_beverage")]
6860 #[strum(props(
6861 svg = "<path d=\"M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27\"></path><path d=\"M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28\"></path><path d=\"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26\"></path><path d=\"M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25\"></path><path d=\"M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75\"></path><path d=\"M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24\"></path><path d=\"M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28\"></path><path d=\"M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05\"></path><path d=\"m2 2 20 20\"></path>",
6862 categories = "food-beverage",
6863 tags = "beer,brewery,drink,hop free,allergy,intolerance,diet",
6864 contributors = "karsa-mistmere,ericfennis"
6865 ))]
6866 HopOff,
6867 #[cfg(feature = "food_beverage")]
6868 #[strum(props(
6869 svg = "<path d=\"M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18\"></path><path d=\"M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88\"></path><path d=\"M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36\"></path><path d=\"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87\"></path><path d=\"M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08\"></path><path d=\"M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57\"></path><path d=\"M4.93 4.93 3 3a.7.7 0 0 1 0-1\"></path><path d=\"M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15\"></path>",
6870 categories = "food-beverage",
6871 tags = "beer,brewery,drink",
6872 contributors = "karsa-mistmere"
6873 ))]
6874 Hop,
6875 #[cfg(any(
6876 feature = "medical",
6877 feature = "buildings",
6878 feature = "navigation",
6879 feature = "travel"
6880 ))]
6881 #[strum(props(
6882 svg = "<path d=\"M12 7v4\"></path><path d=\"M14 21v-3a2 2 0 0 0-4 0v3\"></path><path d=\"M14 9h-4\"></path><path d=\"M18 11h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2\"></path><path d=\"M18 21V5a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16\"></path>",
6883 categories = "medical,buildings,navigation,travel",
6884 tags = "infirmary,sanatorium,healthcare,doctor,hospice,clinic,emergency room,ward,building,medical,vet",
6885 contributors = "ericfennis,karsa-mistmere"
6886 ))]
6887 Hospital,
6888 #[cfg(any(feature = "buildings", feature = "navigation", feature = "travel"))]
6889 #[strum(props(
6890 svg = "<path d=\"M10 22v-6.57\"></path><path d=\"M12 11h.01\"></path><path d=\"M12 7h.01\"></path><path d=\"M14 15.43V22\"></path><path d=\"M15 16a5 5 0 0 0-6 0\"></path><path d=\"M16 11h.01\"></path><path d=\"M16 7h.01\"></path><path d=\"M8 11h.01\"></path><path d=\"M8 7h.01\"></path><rect height=\"20\" rx=\"2\" width=\"16\" x=\"4\" y=\"2\"></rect>",
6891 categories = "buildings,navigation,travel",
6892 tags = "building,hostel,motel,inn",
6893 contributors = "karsa-mistmere,jguddas"
6894 ))]
6895 Hotel,
6896 #[cfg(any(feature = "time", feature = "gaming"))]
6897 #[strum(props(
6898 svg = "<path d=\"M5 22h14\"></path><path d=\"M5 2h14\"></path><path d=\"M17 22v-4.17a2 2 0 0 0-.586-1.41L12 12l-4.41 4.41A2 2 0 0 0 7 17.82V22\"></path><path d=\"M7 2v4.17a2 2 0 0 0 .586 1.41L12 12l4.41-4.41A2 2 0 0 0 17 6.17V2\"></path>",
6899 categories = "time,gaming",
6900 tags = "timer,time,sandglass",
6901 contributors = "karsa-mistmere"
6902 ))]
6903 Hourglass,
6904 #[cfg(any(feature = "home", feature = "buildings", feature = "medical"))]
6905 #[strum(props(
6906 svg = "<path d=\"M8.62 13.8A2.25 2.25 0 1 1 12 10.83a2.25 2.25 0 1 1 3.38 2.96l-2.62 2.85a.998.99 0 0 1-1.50 0z\"></path><path d=\"M3 10a2 2 0 0 1 .709-1.52l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"></path>",
6907 categories = "home,buildings,medical",
6908 tags = "home sweet home,abode,building,residence,healthy living,lifestyle",
6909 contributors = "danielbayley,jguddas,karsa-mistmere"
6910 ))]
6911 HouseHeart,
6912 #[cfg(any(feature = "buildings", feature = "home", feature = "sustainability"))]
6913 #[strum(props(
6914 svg = "<path d=\"M10 12V8.96\"></path><path d=\"M14 12V8.96\"></path><path d=\"M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z\"></path><path d=\"M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.52l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2\"></path>",
6915 categories = "buildings,home,sustainability",
6916 tags = "home,living,building,residence,architecture,autarky,energy",
6917 contributors = "jguddas,karsa-mistmere"
6918 ))]
6919 HousePlug,
6920 #[cfg(any(feature = "buildings", feature = "medical"))]
6921 #[strum(props(
6922 svg = "<path d=\"M12.35 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .71-1.53l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v2.35\"></path><path d=\"M14.8 12.4A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8\"></path><path d=\"M15 18h6\"></path><path d=\"M18 15v6\"></path>",
6923 categories = "buildings,medical",
6924 tags = "home,living,medical,new,addition,building,residence,architecture",
6925 contributors = "karsa-mistmere,jguddas"
6926 ))]
6927 HousePlus,
6928 #[cfg(any(feature = "home", feature = "buildings", feature = "connectivity"))]
6929 #[strum(props(
6930 svg = "<path d=\"M9.5 13.86a4 4 0 0 1 5 .01\"></path><path d=\"M12 17h.01\"></path><path d=\"M3 10a2 2 0 0 1 .709-1.52l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"></path><path d=\"M7 10.75a8 8 0 0 1 10 0\"></path>",
6931 categories = "home,buildings,connectivity",
6932 tags = "home,living,building,wifi,connectivity",
6933 contributors = "akshaymemane,jguddas,karsa-mistmere"
6934 ))]
6935 HouseWifi,
6936 #[cfg(any(feature = "buildings", feature = "home", feature = "navigation"))]
6937 #[strum(props(
6938 svg = "<path d=\"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8\"></path><path d=\"M3 10a2 2 0 0 1 .709-1.52l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"></path>",
6939 categories = "buildings,home,navigation",
6940 tags = "home,living,building,residence,architecture",
6941 contributors = "jguddas,karsa-mistmere"
6942 ))]
6943 House,
6944 #[cfg(feature = "food_beverage")]
6945 #[strum(props(
6946 svg = "<path d=\"M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0\"></path><path d=\"M12.14 11a3.5 3.5 0 1 1 6.71 0\"></path><path d=\"M15.5 6.5a3.5 3.5 0 1 0-7 0\"></path>",
6947 categories = "food-beverage",
6948 tags = "gelato,food,dessert,dish,restaurant,course,meal",
6949 contributors = "kemie,jguddas,karsa-mistmere,ericfennis"
6950 ))]
6951 IceCreamBowl,
6952 #[cfg(feature = "food_beverage")]
6953 #[strum(props(
6954 svg = "<path d=\"m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11\"></path><path d=\"M17 7A5 5 0 0 0 7 7\"></path><path d=\"M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4\"></path>",
6955 categories = "food-beverage",
6956 tags = "gelato,food",
6957 contributors = "karsa-mistmere"
6958 ))]
6959 IceCreamCone,
6960 #[cfg(any(feature = "security", feature = "account"))]
6961 #[strum(props(
6962 svg = "<path d=\"M13.5 8h-3\"></path><path d=\"m15 2-1 2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3\"></path><path d=\"M16.89 22A5 5 0 0 0 7.1 22\"></path><path d=\"m9 2 3 6\"></path><circle cx=\"12\" cy=\"15\" r=\"3\"></circle>",
6963 categories = "security,account",
6964 tags = "id-card,id-card-lanyard,identity,employee,gate-pass,badge",
6965 contributors = "python2911,UsamaKhan,jguddas"
6966 ))]
6967 IdCardLanyard,
6968 #[cfg(any(feature = "security", feature = "account"))]
6969 #[strum(props(
6970 svg = "<path d=\"M16 10h2\"></path><path d=\"M16 14h2\"></path><path d=\"M6.17 15a3 3 0 0 1 5.66 0\"></path><circle cx=\"9\" cy=\"11\" r=\"2\"></circle><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"5\"></rect>",
6971 categories = "security,account",
6972 tags = "card,badge,identity,authentication,secure",
6973 contributors = "jguddas,karsa-mistmere"
6974 ))]
6975 IdCard,
6976 #[cfg(any(
6977 feature = "photography",
6978 feature = "text",
6979 feature = "multimedia",
6980 feature = "files"
6981 ))]
6982 #[strum(props(
6983 svg = "<path d=\"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.81.014L6 21\"></path><path d=\"m14 19 3 3v-5.5\"></path><path d=\"m17 22 3-3\"></path><circle cx=\"9\" cy=\"9\" r=\"2\"></circle>",
6984 categories = "photography,text,multimedia,files",
6985 tags = "picture,photo,download,save,export",
6986 contributors = "colebemis,karsa-mistmere,ericfennis,jguddas"
6987 ))]
6988 ImageDown,
6989 #[cfg(any(feature = "photography", feature = "multimedia", feature = "files"))]
6990 #[strum(props(
6991 svg = "<path d=\"M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7\"></path><line x1=\"16\" x2=\"22\" y1=\"5\" y2=\"5\"></line><circle cx=\"9\" cy=\"9\" r=\"2\"></circle><path d=\"m21 15-3.08-3.08a2 2 0 0 0-2.82 0L6 21\"></path>",
6992 categories = "photography,multimedia,files",
6993 tags = "remove,delete",
6994 contributors = "mittalyashu,ericfennis,karsa-mistmere"
6995 ))]
6996 ImageMinus,
6997 #[cfg(any(feature = "photography", feature = "multimedia", feature = "files"))]
6998 #[strum(props(
6999 svg = "<line x1=\"2\" x2=\"22\" y1=\"2\" y2=\"22\"></line><path d=\"M10.41 10.41a2 2 0 1 1-2.83-2.83\"></path><line x1=\"13.5\" x2=\"6\" y1=\"13.5\" y2=\"21\"></line><line x1=\"18\" x2=\"21\" y1=\"12\" y2=\"15\"></line><path d=\"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.05-.22 1.41-.59\"></path><path d=\"M21 15V5a2 2 0 0 0-2-2H9\"></path>",
7000 categories = "photography,multimedia,files",
7001 tags = "picture,photo",
7002 contributors = "ericfennis,karsa-mistmere"
7003 ))]
7004 ImageOff,
7005 #[cfg(any(
7006 feature = "photography",
7007 feature = "text",
7008 feature = "multimedia",
7009 feature = "files"
7010 ))]
7011 #[strum(props(
7012 svg = "<path d=\"M15 15.00a1 1 0 0 1 1.51-.859l4.99 2.99a1 1 0 0 1 0 1.71l-4.99 2.99a1 1 0 0 1-1.51-.86z\"></path><path d=\"M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6\"></path><path d=\"m6 21 5-5\"></path><circle cx=\"9\" cy=\"9\" r=\"2\"></circle>",
7013 categories = "photography,text,multimedia,files",
7014 tags = "picture,gif,photo",
7015 contributors = "colebemis,karsa-mistmere,ericfennis,jguddas"
7016 ))]
7017 ImagePlay,
7018 #[cfg(any(feature = "photography", feature = "multimedia", feature = "files"))]
7019 #[strum(props(
7020 svg = "<path d=\"M16 5h6\"></path><path d=\"M19 2v6\"></path><path d=\"M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5\"></path><path d=\"m21 15-3.08-3.08a2 2 0 0 0-2.82 0L6 21\"></path><circle cx=\"9\" cy=\"9\" r=\"2\"></circle>",
7021 categories = "photography,multimedia,files",
7022 tags = "add,create,picture",
7023 contributors = "mittalyashu,ericfennis,karsa-mistmere,jguddas"
7024 ))]
7025 ImagePlus,
7026 #[cfg(any(
7027 feature = "photography",
7028 feature = "text",
7029 feature = "multimedia",
7030 feature = "files"
7031 ))]
7032 #[strum(props(
7033 svg = "<path d=\"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.81.014L6 21\"></path><path d=\"m14 19.5 3-3 3 3\"></path><path d=\"M17 22v-5.5\"></path><circle cx=\"9\" cy=\"9\" r=\"2\"></circle>",
7034 categories = "photography,text,multimedia,files",
7035 tags = "picture,photo,upload,import",
7036 contributors = "colebemis,karsa-mistmere,ericfennis,jguddas"
7037 ))]
7038 ImageUp,
7039 #[cfg(any(feature = "photography", feature = "multimedia"))]
7040 #[strum(props(
7041 svg = "<path d=\"M16 3h5v5\"></path><path d=\"M17 21h2a2 2 0 0 0 2-2\"></path><path d=\"M21 12v3\"></path><path d=\"m21 3-5 5\"></path><path d=\"M3 7V5a2 2 0 0 1 2-2\"></path><path d=\"m5 21 4.14-4.14a1.21 1.21 0 0 1 1.71 0L13 19\"></path><path d=\"M9 3h3\"></path><rect height=\"10\" rx=\"1\" width=\"10\" x=\"3\" y=\"11\"></rect>",
7042 categories = "photography,multimedia",
7043 tags = "resize,picture,sharpen,increase",
7044 contributors = "llaenowyd,mishkaio,ericfennis,karsa-mistmere,jguddas"
7045 ))]
7046 ImageUpscale,
7047 #[cfg(any(
7048 feature = "photography",
7049 feature = "text",
7050 feature = "multimedia",
7051 feature = "files"
7052 ))]
7053 #[strum(props(
7054 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><circle cx=\"9\" cy=\"9\" r=\"2\"></circle><path d=\"m21 15-3.08-3.08a2 2 0 0 0-2.82 0L6 21\"></path>",
7055 categories = "photography,text,multimedia,files",
7056 tags = "picture,photo",
7057 contributors = "colebemis,karsa-mistmere,ericfennis"
7058 ))]
7059 Image,
7060 #[cfg(any(
7061 feature = "photography",
7062 feature = "text",
7063 feature = "multimedia",
7064 feature = "files"
7065 ))]
7066 #[strum(props(
7067 svg = "<path d=\"m22 11-1.29-1.29a2.4 2.4 0 0 0-3.40 0L11 16\"></path><path d=\"M4 8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2\"></path><circle cx=\"13\" cy=\"7\" fill=\"currentColor\" r=\"1\"></circle><rect height=\"14\" rx=\"2\" width=\"14\" x=\"8\" y=\"2\"></rect>",
7068 categories = "photography,text,multimedia,files",
7069 tags = "picture,photo,multiple,copy,gallery,album,collection,slideshow,showcase",
7070 contributors = "karsa-mistmere"
7071 ))]
7072 Images,
7073 #[cfg(any(feature = "arrows", feature = "files"))]
7074 #[strum(props(
7075 svg = "<path d=\"M12 3v12\"></path><path d=\"m8 11 4 4 4-4\"></path><path d=\"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4\"></path>",
7076 categories = "arrows,files",
7077 tags = "save",
7078 contributors = "mittalyashu,ericfennis"
7079 ))]
7080 Import,
7081 #[cfg(any(feature = "account", feature = "mail"))]
7082 #[strum(props(
7083 svg = "<polyline points=\"22 12 16 12 14 15 10 15 8 12 2 12\"></polyline><path d=\"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z\"></path>",
7084 categories = "account,mail",
7085 tags = "email",
7086 contributors = "colebemis,csandman,ericfennis"
7087 ))]
7088 Inbox,
7089 #[cfg(feature = "finance")]
7090 #[strum(props(
7091 svg = "<path d=\"M6 3h12\"></path><path d=\"M6 8h12\"></path><path d=\"m6 13 8.5 8\"></path><path d=\"M6 13h3\"></path><path d=\"M9 13c6.66 0 6.66-10 0-10\"></path>",
7092 categories = "finance",
7093 tags = "currency,money,payment",
7094 contributors = "ericfennis,mittalyashu"
7095 ))]
7096 IndianRupee,
7097 #[cfg(feature = "multimedia")]
7098 #[strum(props(
7099 svg = "<path d=\"M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8\"></path>",
7100 categories = "multimedia",
7101 tags = "unlimited,forever,loop,math",
7102 contributors = "mittalyashu,danielbayley,karsa-mistmere,jamiemlaw"
7103 ))]
7104 Infinity,
7105 #[cfg(any(feature = "accessibility", feature = "notifications"))]
7106 #[strum(props(
7107 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M12 16v-4\"></path><path d=\"M12 8h.01\"></path>",
7108 categories = "accessibility,notifications",
7109 tags = "about,advice,clue,details,help,hint,indicator,information,knowledge,notice,status,support,tooltip",
7110 contributors = "colebemis,ericfennis,danielbayley"
7111 ))]
7112 Info,
7113 #[cfg(feature = "tools")]
7114 #[strum(props(
7115 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M7 7h.01\"></path><path d=\"M17 7h.01\"></path><path d=\"M7 17h.01\"></path><path d=\"M17 17h.01\"></path>",
7116 categories = "tools",
7117 tags = "access,cover,tile,metal,materials,screws",
7118 contributors = "danielbayley"
7119 ))]
7120 InspectionPanel,
7121 #[cfg(feature = "text")]
7122 #[strum(props(
7123 svg = "<line x1=\"19\" x2=\"10\" y1=\"4\" y2=\"4\"></line><line x1=\"14\" x2=\"5\" y1=\"20\" y2=\"20\"></line><line x1=\"15\" x2=\"9\" y1=\"4\" y2=\"20\"></line>",
7124 categories = "text",
7125 tags = "oblique,text,format",
7126 contributors = "colebemis,ericfennis"
7127 ))]
7128 Italic,
7129 #[cfg(any(feature = "arrows", feature = "design"))]
7130 #[strum(props(
7131 svg = "<path d=\"m16 14 4 4-4 4\"></path><path d=\"M20 10a8 8 0 1 0-8 8h8\"></path>",
7132 categories = "arrows,design",
7133 tags = "arrow,right",
7134 contributors = "danielbayley,karsa-mistmere"
7135 ))]
7136 IterationCcw,
7137 #[cfg(any(feature = "arrows", feature = "design"))]
7138 #[strum(props(
7139 svg = "<path d=\"M4 10a8 8 0 1 1 8 8H4\"></path><path d=\"m8 22-4-4 4-4\"></path>",
7140 categories = "arrows,design",
7141 tags = "arrow,left",
7142 contributors = "danielbayley,karsa-mistmere"
7143 ))]
7144 IterationCw,
7145 #[cfg(feature = "finance")]
7146 #[strum(props(
7147 svg = "<path d=\"M12 9.5V21m0-11.5L6 3m6 6.5L18 3\"></path><path d=\"M6 15h12\"></path><path d=\"M6 11h12\"></path>",
7148 categories = "finance",
7149 tags = "currency,money,payment",
7150 contributors = "ericfennis"
7151 ))]
7152 JapaneseYen,
7153 #[cfg(any(feature = "gaming", feature = "devices"))]
7154 #[strum(props(
7155 svg = "<path d=\"M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z\"></path><path d=\"M6 15v-2\"></path><path d=\"M12 15V9\"></path><circle cx=\"12\" cy=\"6\" r=\"3\"></circle>",
7156 categories = "gaming,devices",
7157 tags = "game,console,control stick",
7158 contributors = "mittalyashu,karsa-mistmere,ericfennis"
7159 ))]
7160 Joystick,
7161 #[cfg(any(feature = "charts", feature = "development", feature = "design"))]
7162 #[strum(props(
7163 svg = "<path d=\"M5 3v14\"></path><path d=\"M12 3v8\"></path><path d=\"M19 3v18\"></path>",
7164 categories = "charts,development,design",
7165 tags = "projects,manage,overview,board,tickets,issues,roadmap,plan,intentions,productivity,work,agile,code,coding",
7166 contributors = "danielbayley,karsa-mistmere"
7167 ))]
7168 Kanban,
7169 #[cfg(feature = "transportation")]
7170 #[strum(props(
7171 svg = "<path d=\"M18 17a1 1 0 0 0-1 1v1a2 2 0 1 0 2-2z\"></path><path d=\"M20.97 3.61a.45.45 0 0 0-.58-.58C10.2 6.6 6.6 10.2 3.03 20.39a.45.45 0 0 0 .58.58C13.8 17.4 17.4 13.8 20.97 3.61\"></path><path d=\"m6.70 6.70 10.58 10.58\"></path><path d=\"M7 5a2 2 0 1 0-2 2h1a1 1 0 0 0 1-1z\"></path>",
7172 categories = "transportation",
7173 tags = "kayak,boat,paddle,water,sport,recreation,adventure,outdoors,equipment,lake,ocean",
7174 contributors = "jguddas,jpjacobpadilla"
7175 ))]
7176 Kayak,
7177 #[cfg(any(feature = "security", feature = "account"))]
7178 #[strum(props(
7179 svg = "<path d=\"M2.58 17.41A2 2 0 0 0 2 18.82V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.41-.586l.814-.814a6.5 6.5 0 1 0-4-4z\"></path><circle cx=\"16.5\" cy=\"7.5\" fill=\"currentColor\" r=\".5\"></circle>",
7180 categories = "security,account",
7181 tags = "password,login,authentication,secure,unlock",
7182 contributors = "danielbayley,jguddas"
7183 ))]
7184 KeyRound,
7185 #[cfg(any(feature = "security", feature = "account"))]
7186 #[strum(props(
7187 svg = "<path d=\"M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z\"></path><path d=\"m14 7 3 3\"></path><path d=\"m9.4 10.6-6.81 6.81A2 2 0 0 0 2 18.82V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.41-.586l.814-.814\"></path>",
7188 categories = "security,account",
7189 tags = "password,login,authentication,secure,unlock,car key",
7190 contributors = "danielbayley,jguddas"
7191 ))]
7192 KeySquare,
7193 #[cfg(any(feature = "security", feature = "account"))]
7194 #[strum(props(
7195 svg = "<path d=\"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4\"></path><path d=\"m21 2-9.6 9.6\"></path><circle cx=\"7.5\" cy=\"15.5\" r=\"5.5\"></circle>",
7196 categories = "security,account",
7197 tags = "password,login,authentication,secure,unlock,keychain,key ring,fob",
7198 contributors = "ashygee,csandman,mittalyashu,ericfennis"
7199 ))]
7200 Key,
7201 #[cfg(any(feature = "multimedia", feature = "devices"))]
7202 #[strum(props(
7203 svg = "<rect height=\"16\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect><path d=\"M6 8h4\"></path><path d=\"M14 8h.01\"></path><path d=\"M18 8h.01\"></path><path d=\"M2 12h20\"></path><path d=\"M6 12v4\"></path><path d=\"M10 12v4\"></path><path d=\"M14 12v4\"></path><path d=\"M18 12v4\"></path>",
7204 categories = "multimedia,devices",
7205 tags = "music,audio,sound,noise,notes,keys,chord,octave,midi,controller,instrument,electric,signal,digital,studio,production,producer,pianist,piano,play,performance,concert",
7206 contributors = "danielbayley,karsa-mistmere"
7207 ))]
7208 KeyboardMusic,
7209 #[cfg(any(feature = "devices", feature = "text", feature = "development"))]
7210 #[strum(props(
7211 svg = "<path d=\"M 20 4 A2 2 0 0 1 22 6\"></path><path d=\"M 22 6 L 22 16.41\"></path><path d=\"M 7 16 L 16 16\"></path><path d=\"M 9.69 4 L 20 4\"></path><path d=\"M14 8h.01\"></path><path d=\"M18 8h.01\"></path><path d=\"m2 2 20 20\"></path><path d=\"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2\"></path><path d=\"M6 8h.01\"></path><path d=\"M8 12h.01\"></path>",
7212 categories = "devices,text,development",
7213 tags = "unkeys,layout,spell,settings,mouse",
7214 contributors = "Diottodev,karsa-mistmere"
7215 ))]
7216 KeyboardOff,
7217 #[cfg(any(feature = "text", feature = "devices", feature = "development"))]
7218 #[strum(props(
7219 svg = "<path d=\"M10 8h.01\"></path><path d=\"M12 12h.01\"></path><path d=\"M14 8h.01\"></path><path d=\"M16 12h.01\"></path><path d=\"M18 8h.01\"></path><path d=\"M6 8h.01\"></path><path d=\"M7 16h10\"></path><path d=\"M8 12h.01\"></path><rect height=\"16\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect>",
7220 categories = "text,devices,development",
7221 tags = "layout,spell,settings,mouse",
7222 contributors = "it-is-not,ericfennis"
7223 ))]
7224 Keyboard,
7225 #[cfg(feature = "home")]
7226 #[strum(props(
7227 svg = "<path d=\"M12 2v5\"></path><path d=\"M14.82 15.99a3 3 0 1 1-5.65 0\"></path><path d=\"M20.92 14.60A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.39l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.60z\"></path>",
7228 categories = "home",
7229 tags = "lighting,household,home,furniture",
7230 contributors = "karsa-mistmere,danielbayley,jamiemlaw"
7231 ))]
7232 LampCeiling,
7233 #[cfg(feature = "home")]
7234 #[strum(props(
7235 svg = "<path d=\"M10.29 2.29a1 1 0 0 1 1.41 0l2.5 2.5 5.99 1.22a1 1 0 0 1 .506 1.68l-7 7a1 1 0 0 1-1.68-.506l-1.22-5.99-2.5-2.5a1 1 0 0 1 0-1.41z\"></path><path d=\"m14.20 4.79-3.41 3.41\"></path><path d=\"M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z\"></path><path d=\"m9.08 6.5-4.79 4.79a1 1 0 0 0-.18 1.17L7 18\"></path>",
7236 categories = "home",
7237 tags = "lighting,household,office,desk,home,furniture",
7238 contributors = "karsa-mistmere,jguddas,jamiemlaw"
7239 ))]
7240 LampDesk,
7241 #[cfg(feature = "home")]
7242 #[strum(props(
7243 svg = "<path d=\"M12 10v12\"></path><path d=\"M17.92 7.62A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.37l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.62z\"></path><path d=\"M9 22h6\"></path>",
7244 categories = "home",
7245 tags = "lighting,household,floor,home,furniture",
7246 contributors = "karsa-mistmere,danielbayley,jamiemlaw"
7247 ))]
7248 LampFloor,
7249 #[cfg(feature = "home")]
7250 #[strum(props(
7251 svg = "<path d=\"M19.92 18.62A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.37l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.62z\"></path><path d=\"M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z\"></path><path d=\"M8 6h4a2 2 0 0 1 2 2v5\"></path>",
7252 categories = "home",
7253 tags = "lighting,household,wall,home,furniture",
7254 contributors = "karsa-mistmere,ericfennis,jamiemlaw"
7255 ))]
7256 LampWallDown,
7257 #[cfg(feature = "home")]
7258 #[strum(props(
7259 svg = "<path d=\"M19.92 9.62A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.37l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.62z\"></path><path d=\"M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z\"></path><path d=\"M8 18h4a2 2 0 0 0 2-2v-5\"></path>",
7260 categories = "home",
7261 tags = "lighting,household,wall,home,furniture",
7262 contributors = "karsa-mistmere,ericfennis,jamiemlaw"
7263 ))]
7264 LampWallUp,
7265 #[cfg(feature = "home")]
7266 #[strum(props(
7267 svg = "<path d=\"M12 12v6\"></path><path d=\"M4.07 10.61A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.38l-3.07-7.38A2 2 0 0 0 15 2H9a2 2 0 0 0-1.84 1.23Z\"></path><path d=\"M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z\"></path>",
7268 categories = "home",
7269 tags = "lighting,household,home,furniture",
7270 contributors = "karsa-mistmere,ericfennis"
7271 ))]
7272 Lamp,
7273 #[cfg(any(
7274 feature = "design",
7275 feature = "tools",
7276 feature = "math",
7277 feature = "sports",
7278 feature = "gaming"
7279 ))]
7280 #[strum(props(
7281 svg = "<path d=\"m12 8 6-3-6-3v10\"></path><path d=\"m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12\"></path><path d=\"m6.49 12.85 11.02 6.3\"></path><path d=\"M17.51 12.85 6.5 19.15\"></path>",
7282 categories = "design,tools,math,sports,gaming",
7283 tags = "area,surface,square metres,allotment,parcel,property,plane,acres,measure,distance,isometric,flag,golf course,hole",
7284 contributors = "danielbayley"
7285 ))]
7286 LandPlot,
7287 #[cfg(any(feature = "finance", feature = "navigation", feature = "buildings"))]
7288 #[strum(props(
7289 svg = "<path d=\"M10 18v-7\"></path><path d=\"M11.11 2.20a2 2 0 0 1 1.76 0l7.84 3.84A.5.5 0 0 1 20.5 7h-17a.5.5 0 0 1-.22-.949z\"></path><path d=\"M14 18v-7\"></path><path d=\"M18 18v-7\"></path><path d=\"M3 22h18\"></path><path d=\"M6 18v-7\"></path>",
7290 categories = "finance,navigation,buildings",
7291 tags = "bank,building,capitol,finance,money,museum,art gallery,hall,institute,pediment,portico,doric,columns,pillars,classical,architecture,government,institution,monument,site,history,historic,library,temple,ancient,structure",
7292 contributors = "connium,ericfennis,karsa-mistmere,jamiemlaw"
7293 ))]
7294 Landmark,
7295 #[cfg(feature = "text")]
7296 #[strum(props(
7297 svg = "<path d=\"m5 8 6 6\"></path><path d=\"m4 14 6-6 2-3\"></path><path d=\"M2 5h12\"></path><path d=\"M7 2h1\"></path><path d=\"m22 22-5-10-5 10\"></path><path d=\"M14 18h6\"></path>",
7298 categories = "text",
7299 tags = "translate",
7300 contributors = "ericfennis,mittalyashu,johnletey"
7301 ))]
7302 Languages,
7303 #[cfg(any(feature = "devices", feature = "notifications"))]
7304 #[strum(props(
7305 svg = "<path d=\"M2 20h20\"></path><path d=\"m9 10 2 2 4-4\"></path><rect height=\"12\" rx=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect>",
7306 categories = "devices,notifications",
7307 tags = "computer,screen,remote,success,done,todo,tick,complete,task",
7308 contributors = "ericfennis,jguddas"
7309 ))]
7310 LaptopMinimalCheck,
7311 #[cfg(feature = "devices")]
7312 #[strum(props(
7313 svg = "<rect height=\"12\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"4\"></rect><line x1=\"2\" x2=\"22\" y1=\"20\" y2=\"20\"></line>",
7314 categories = "devices",
7315 tags = "computer,screen,remote",
7316 contributors = "ericfennis"
7317 ))]
7318 LaptopMinimal,
7319 #[cfg(feature = "devices")]
7320 #[strum(props(
7321 svg = "<path d=\"M18 5a2 2 0 0 1 2 2v8.52a2 2 0 0 0 .212.89l1.06 2.12a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45l1.06-2.12A2 2 0 0 0 4 15.52V7a2 2 0 0 1 2-2z\"></path><path d=\"M20.05 15.98H3.94\"></path>",
7322 categories = "devices",
7323 tags = "computer,screen,remote",
7324 contributors = "ericfennis,csandman"
7325 ))]
7326 Laptop,
7327 #[cfg(any(feature = "arrows", feature = "design", feature = "cursors"))]
7328 #[strum(props(
7329 svg = "<path d=\"M7 22a5 5 0 0 1-2-4\"></path><path d=\"M7 16.93c.96.43 1.96.74 2.99.91\"></path><path d=\"M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2\"></path><path d=\"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z\"></path><path d=\"M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z\"></path>",
7330 categories = "arrows,design,cursors",
7331 tags = "select,cursor",
7332 contributors = "mishkaio,ericfennis,csandman"
7333 ))]
7334 LassoSelect,
7335 #[cfg(any(feature = "design", feature = "cursors"))]
7336 #[strum(props(
7337 svg = "<path d=\"M3.70 14.46a10 8 0 1 1 3.11 2.37\"></path><path d=\"M7 22a5 5 0 0 1-2-3.99\"></path><circle cx=\"5\" cy=\"16\" r=\"2\"></circle>",
7338 categories = "design,cursors",
7339 tags = "select,cursor",
7340 contributors = "mishkaio,ericfennis,csandman,jguddas"
7341 ))]
7342 Lasso,
7343 #[cfg(feature = "emoji")]
7344 #[strum(props(
7345 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z\"></path><line x1=\"9\" x2=\"9.01\" y1=\"9\" y2=\"9\"></line><line x1=\"15\" x2=\"15.01\" y1=\"9\" y2=\"9\"></line>",
7346 categories = "emoji",
7347 tags = "emoji,face,happy,good,emotion",
7348 contributors = "karsa-mistmere,ericfennis"
7349 ))]
7350 Laugh,
7351 #[cfg(any(feature = "design", feature = "layout"))]
7352 #[strum(props(
7353 svg = "<path d=\"M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z\"></path><path d=\"m20 14.28 1.5.84a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845\"></path>",
7354 categories = "design,layout",
7355 tags = "stack,pile,pages,sheets,paperwork,copies,copy,duplicate,double,shortcuts",
7356 contributors = "danielbayley,jguddas"
7357 ))]
7358 Layers2,
7359 #[cfg(any(feature = "design", feature = "layout"))]
7360 #[strum(props(
7361 svg = "<path d=\"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 .83.18 2 2 0 0 0 .83-.18l8.58-3.9a1 1 0 0 0 0-1.83z\"></path><path d=\"M16 17h6\"></path><path d=\"M2.00 11.99a1 1 0 0 0 .597.91l8.58 3.91a2 2 0 0 0 .83.18\"></path><path d=\"M2.00 16.99a1 1 0 0 0 .597.91l8.58 3.91a2 2 0 0 0 .83.18 2 2 0 0 0 .83-.18l2.11-.96\"></path><path d=\"M22.01 12.00a1 1 0 0 1-.598.91l-.177.08\"></path>",
7362 categories = "design,layout",
7363 tags = "stack,pile,pages,sheets,paperwork,copies,copy,layers,remove,delete",
7364 contributors = "colebemis,danielbayley,jguddas,juanisidoro,karsa-mistmere,Spleefies"
7365 ))]
7366 LayersMinus,
7367 #[cfg(any(feature = "design", feature = "layout"))]
7368 #[strum(props(
7369 svg = "<path d=\"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 .83.18 2 2 0 0 0 .83-.18l8.58-3.9a1 1 0 0 0 0-1.83z\"></path><path d=\"M16 17h6\"></path><path d=\"M19 14v6\"></path><path d=\"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 .825.17\"></path><path d=\"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l2.11-.962\"></path>",
7370 categories = "design,layout",
7371 tags = "stack,layers,add,new,increase,create,positive,copy,upgrade",
7372 contributors = "juanisidoro,karsa-mistmere"
7373 ))]
7374 LayersPlus,
7375 #[cfg(any(feature = "design", feature = "layout"))]
7376 #[strum(props(
7377 svg = "<path d=\"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z\"></path><path d=\"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12\"></path><path d=\"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17\"></path>",
7378 categories = "design,layout",
7379 tags = "stack,pile,pages,sheets,paperwork,copies,copy",
7380 contributors = "colebemis,danielbayley,jguddas"
7381 ))]
7382 Layers,
7383 #[cfg(any(feature = "design", feature = "layout"))]
7384 #[strum(props(
7385 svg = "<rect height=\"9\" rx=\"1\" width=\"7\" x=\"3\" y=\"3\"></rect><rect height=\"5\" rx=\"1\" width=\"7\" x=\"14\" y=\"3\"></rect><rect height=\"9\" rx=\"1\" width=\"7\" x=\"14\" y=\"12\"></rect><rect height=\"5\" rx=\"1\" width=\"7\" x=\"3\" y=\"16\"></rect>",
7386 categories = "design,layout",
7387 tags = "masonry,brick",
7388 contributors = "ericfennis,danielbayley"
7389 ))]
7390 LayoutDashboard,
7391 #[cfg(any(feature = "design", feature = "layout"))]
7392 #[strum(props(
7393 svg = "<rect height=\"7\" rx=\"1\" width=\"7\" x=\"3\" y=\"3\"></rect><rect height=\"7\" rx=\"1\" width=\"7\" x=\"14\" y=\"3\"></rect><rect height=\"7\" rx=\"1\" width=\"7\" x=\"14\" y=\"14\"></rect><rect height=\"7\" rx=\"1\" width=\"7\" x=\"3\" y=\"14\"></rect>",
7394 categories = "design,layout",
7395 tags = "app,home,start",
7396 contributors = "zenoamaro,ericfennis,csandman,mittalyashu,danielbayley"
7397 ))]
7398 LayoutGrid,
7399 #[cfg(any(
7400 feature = "design",
7401 feature = "layout",
7402 feature = "photography",
7403 feature = "text"
7404 ))]
7405 #[strum(props(
7406 svg = "<rect height=\"7\" rx=\"1\" width=\"7\" x=\"3\" y=\"3\"></rect><rect height=\"7\" rx=\"1\" width=\"7\" x=\"3\" y=\"14\"></rect><path d=\"M14 4h7\"></path><path d=\"M14 9h7\"></path><path d=\"M14 15h7\"></path><path d=\"M14 20h7\"></path>",
7407 categories = "design,layout,photography,text",
7408 tags = "todo,tasks,items,pending,image,photo",
7409 contributors = "ericfennis,danielbayley"
7410 ))]
7411 LayoutList,
7412 #[cfg(any(feature = "design", feature = "layout"))]
7413 #[strum(props(
7414 svg = "<rect height=\"18\" rx=\"1\" width=\"7\" x=\"3\" y=\"3\"></rect><rect height=\"7\" rx=\"1\" width=\"7\" x=\"14\" y=\"3\"></rect><rect height=\"7\" rx=\"1\" width=\"7\" x=\"14\" y=\"14\"></rect>",
7415 categories = "design,layout",
7416 tags = "app,home,start,grid",
7417 contributors = "danielbayley"
7418 ))]
7419 LayoutPanelLeft,
7420 #[cfg(feature = "layout")]
7421 #[strum(props(
7422 svg = "<rect height=\"7\" rx=\"1\" width=\"18\" x=\"3\" y=\"3\"></rect><rect height=\"7\" rx=\"1\" width=\"7\" x=\"3\" y=\"14\"></rect><rect height=\"7\" rx=\"1\" width=\"7\" x=\"14\" y=\"14\"></rect>",
7423 categories = "layout",
7424 tags = "window,webpage,block,section,grid,template,structure",
7425 contributors = "danielbayley"
7426 ))]
7427 LayoutPanelTop,
7428 #[cfg(feature = "layout")]
7429 #[strum(props(
7430 svg = "<rect height=\"7\" rx=\"1\" width=\"18\" x=\"3\" y=\"3\"></rect><rect height=\"7\" rx=\"1\" width=\"9\" x=\"3\" y=\"14\"></rect><rect height=\"7\" rx=\"1\" width=\"5\" x=\"16\" y=\"14\"></rect>",
7431 categories = "layout",
7432 tags = "window,webpage,block,section",
7433 contributors = "mittalyashu,danielbayley"
7434 ))]
7435 LayoutTemplate,
7436 #[cfg(any(feature = "nature", feature = "sustainability", feature = "seasons"))]
7437 #[strum(props(
7438 svg = "<path d=\"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z\"></path><path d=\"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12\"></path>",
7439 categories = "nature,sustainability,seasons",
7440 tags = "sustainability,nature,energy,plant,autumn",
7441 contributors = "karsa-mistmere,ericfennis"
7442 ))]
7443 Leaf,
7444 #[cfg(any(
7445 feature = "food_beverage",
7446 feature = "emoji",
7447 feature = "sustainability"
7448 ))]
7449 #[strum(props(
7450 svg = "<path d=\"M2 22c1.25-.987 2.27-1.97 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.18-2.35 3.5 3.5 0 0 0 3.69-5.11A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.83 1.37 3.5 3.5 0 0 0-5.11 3.69 4 4 0 0 0-2.34 6.15C3.49 15.42 4.40 16.71 4.2 18.1 3.92 19.74 3.01 20.73 2 22\"></path><path d=\"M2 22 17 7\"></path>",
7451 categories = "food-beverage,emoji,sustainability",
7452 tags = "salad,lettuce,vegetable,chard,cabbage,bok choy",
7453 contributors = "karsa-mistmere"
7454 ))]
7455 LeafyGreen,
7456 #[cfg(any(feature = "communication", feature = "multimedia"))]
7457 #[strum(props(
7458 svg = "<path d=\"M16 12h3a2 2 0 0 0 1.90-1.38l1.05-3.33A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.28l1.05 3.33A2 2 0 0 0 5 12h3\"></path><path d=\"M18 6V3a1 1 0 0 0-1-1h-3\"></path><rect height=\"12\" rx=\"1\" width=\"8\" x=\"8\" y=\"10\"></rect>",
7459 categories = "communication,multimedia",
7460 tags = "pulpit,podium,stand",
7461 contributors = "gurtt,karsa-mistmere"
7462 ))]
7463 Lectern,
7464 #[cfg(any(feature = "science", feature = "tools", feature = "shapes"))]
7465 #[strum(props(
7466 svg = "<path d=\"M7 2a1 1 0 0 0-.8 1.6 14 14 0 0 1 0 16.8A1 1 0 0 0 7 22h10a1 1 0 0 0 .8-1.6 14 14 0 0 1 0-16.8A1 1 0 0 0 17 2z\"></path>",
7467 categories = "science,tools,shapes",
7468 tags = "concave,lens,optics,light,magnification,curved,focus,refraction,science,physics,eyeglass,telescope,microscope",
7469 contributors = "Muhammad-Aqib-Bashir,jamiemlaw,karsa-mistmere"
7470 ))]
7471 LensConcave,
7472 #[cfg(any(feature = "science", feature = "tools", feature = "shapes"))]
7473 #[strum(props(
7474 svg = "<path d=\"M13.43 2a1 1 0 0 1 .824.44 18 18 0 0 1 0 19.10 1 1 0 0 1-.824.44h-2.86a1 1 0 0 1-.824-.448 18 18 0 0 1 0-19.10A1 1 0 0 1 10.56 2z\"></path>",
7475 categories = "science,tools,shapes",
7476 tags = "convex,lens,optics,magnification,focus,light,refraction,physics,eyeglass,telescope,microscope,curved,science",
7477 contributors = "Muhammad-Aqib-Bashir,jamiemlaw,karsa-mistmere"
7478 ))]
7479 LensConvex,
7480 #[cfg(any(
7481 feature = "text",
7482 feature = "photography",
7483 feature = "multimedia",
7484 feature = "navigation",
7485 feature = "development"
7486 ))]
7487 #[strum(props(
7488 svg = "<rect height=\"18\" rx=\"1\" width=\"8\" x=\"3\" y=\"3\"></rect><path d=\"M7 3v18\"></path><path d=\"M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z\"></path>",
7489 categories = "text,photography,multimedia,navigation,development",
7490 tags = "books,reading,written,authors,stories,fiction,novels,information,knowledge,education,high school,university,college,academy,learning,study,research,collection,vinyl,records,albums,music,package",
7491 contributors = "danielbayley"
7492 ))]
7493 LibraryBig,
7494 #[cfg(any(
7495 feature = "text",
7496 feature = "photography",
7497 feature = "multimedia",
7498 feature = "navigation",
7499 feature = "development"
7500 ))]
7501 #[strum(props(
7502 svg = "<path d=\"m16 6 4 14\"></path><path d=\"M12 6v14\"></path><path d=\"M8 8v12\"></path><path d=\"M4 4v16\"></path>",
7503 categories = "text,photography,multimedia,navigation,development",
7504 tags = "books,reading,written,authors,stories,fiction,novels,information,knowledge,education,high school,university,college,academy,learning,study,research,collection,vinyl,records,albums,music,package",
7505 contributors = "johnletey,csandman,ericfennis"
7506 ))]
7507 Library,
7508 #[cfg(any(feature = "accessibility", feature = "medical"))]
7509 #[strum(props(
7510 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"m4.93 4.93 4.24 4.24\"></path><path d=\"m14.83 9.17 4.24-4.24\"></path><path d=\"m14.83 14.83 4.24 4.24\"></path><path d=\"m9.17 14.83-4.24 4.24\"></path><circle cx=\"12\" cy=\"12\" r=\"4\"></circle>",
7511 categories = "accessibility,medical",
7512 tags = "preserver,life belt,lifesaver,help,rescue,ship,ring,raft,inflatable,wheel,donut",
7513 contributors = "colebemis,ericfennis,danielbayley,karsa-mistmere"
7514 ))]
7515 LifeBuoy,
7516 #[cfg(feature = "text")]
7517 #[strum(props(
7518 svg = "<path d=\"M14 12h2v8\"></path><path d=\"M14 20h4\"></path><path d=\"M6 12h4\"></path><path d=\"M6 20h4\"></path><path d=\"M8 20V8a4 4 0 0 1 7.46-2\"></path>",
7519 categories = "text",
7520 tags = "text,font,typography,alternates,alternatives",
7521 contributors = "danielbayley"
7522 ))]
7523 Ligature,
7524 #[cfg(feature = "photography")]
7525 #[strum(props(
7526 svg = "<path d=\"M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5\"></path><path d=\"m2 2 20 20\"></path><path d=\"M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5\"></path><path d=\"M9 18h6\"></path><path d=\"M10 22h4\"></path>",
7527 categories = "photography",
7528 tags = "lights",
7529 contributors = "mittalyashu,ericfennis,karsa-mistmere,danielbayley"
7530 ))]
7531 LightbulbOff,
7532 #[cfg(feature = "photography")]
7533 #[strum(props(
7534 svg = "<path d=\"M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5\"></path><path d=\"M9 18h6\"></path><path d=\"M10 22h4\"></path>",
7535 categories = "photography",
7536 tags = "idea,bright,lights",
7537 contributors = "ericfennis,danielbayley"
7538 ))]
7539 Lightbulb,
7540 #[cfg(any(feature = "development", feature = "navigation"))]
7541 #[strum(props(
7542 svg = "<path d=\"M 3 12 L 15 12\"></path><circle cx=\"18\" cy=\"12\" r=\"3\"></circle>",
7543 categories = "development,navigation",
7544 tags = "code,version control,waypoint,stop,station,last,end",
7545 contributors = "colebemis,ericfennis,johnletey,nathan-de-pachtere"
7546 ))]
7547 LineDotRightHorizontal,
7548 #[cfg(any(feature = "shapes", feature = "math", feature = "design"))]
7549 #[strum(props(
7550 svg = "<path d=\"M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2\"></path>",
7551 categories = "shapes,math,design",
7552 tags = "line,snakes,annotate,curve,doodle,stroke,pen,tool,gesture,draw,wave,art,road",
7553 contributors = "chessurisme,jguddas"
7554 ))]
7555 LineSquiggle,
7556 #[cfg(any(feature = "design", feature = "tools"))]
7557 #[strum(props(
7558 svg = "<path d=\"M11 5h2\"></path><path d=\"M15 12h6\"></path><path d=\"M19 5h2\"></path><path d=\"M3 12h6\"></path><path d=\"M3 19h18\"></path><path d=\"M3 5h2\"></path>",
7559 categories = "design,tools",
7560 tags = "line,stroke,style,dashed,border",
7561 contributors = "dg-ac"
7562 ))]
7563 LineStyle,
7564 #[cfg(feature = "text")]
7565 #[strum(props(
7566 svg = "<path d=\"M9 17H7A5 5 0 0 1 7 7\"></path><path d=\"M15 7h2a5 5 0 0 1 4 8\"></path><line x1=\"8\" x2=\"12\" y1=\"12\" y2=\"12\"></line><line x1=\"2\" x2=\"22\" y1=\"2\" y2=\"22\"></line>",
7567 categories = "text",
7568 tags = "unchain,chain",
7569 contributors = "ericfennis,csandman,karsa-mistmere"
7570 ))]
7571 Link2Off,
7572 #[cfg(any(feature = "text", feature = "account"))]
7573 #[strum(props(
7574 svg = "<path d=\"M9 17H7A5 5 0 0 1 7 7h2\"></path><path d=\"M15 7h2a5 5 0 1 1 0 10h-2\"></path><line x1=\"8\" x2=\"16\" y1=\"12\" y2=\"12\"></line>",
7575 categories = "text,account",
7576 tags = "chain,url",
7577 contributors = "colebemis,ericfennis,csandman,karsa-mistmere,johnletey"
7578 ))]
7579 Link2,
7580 #[cfg(any(feature = "text", feature = "account"))]
7581 #[strum(props(
7582 svg = "<path d=\"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71\"></path><path d=\"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71\"></path>",
7583 categories = "text,account",
7584 tags = "chain,url",
7585 contributors = "colebemis,csandman,ericfennis"
7586 ))]
7587 Link,
7588 #[cfg(feature = "text")]
7589 #[strum(props(
7590 svg = "<path d=\"M16 5H3\"></path><path d=\"M16 12H3\"></path><path d=\"M11 19H3\"></path><path d=\"m15 18 2 2 4-4\"></path>",
7591 categories = "text",
7592 tags = "done,check,tick,complete,list,to-do,bom",
7593 contributors = "guanboo-yang,karsa-mistmere"
7594 ))]
7595 ListCheck,
7596 #[cfg(feature = "text")]
7597 #[strum(props(
7598 svg = "<path d=\"M13 5h8\"></path><path d=\"M13 12h8\"></path><path d=\"M13 19h8\"></path><path d=\"m3 17 2 2 4-4\"></path><path d=\"m3 7 2 2 4-4\"></path>",
7599 categories = "text",
7600 tags = "todo,done,check,tick,complete,tasks,items,pending",
7601 contributors = "ericfennis,karsa-mistmere"
7602 ))]
7603 ListChecks,
7604 #[cfg(any(feature = "text", feature = "arrows"))]
7605 #[strum(props(
7606 svg = "<path d=\"M3 5h8\"></path><path d=\"M3 12h8\"></path><path d=\"M3 19h8\"></path><path d=\"m15 5 3 3 3-3\"></path><path d=\"m15 19 3-3 3 3\"></path>",
7607 categories = "text,arrows",
7608 tags = "options,items,collapse,expand,details,disclosure,show,hide,toggle,accordion,more,less,fold,unfold,vertical",
7609 contributors = "colebemis,ericfennis,ocavue,jguddas,PeterlitsZo,mittalyashu,juliankellydesign,karsa-mistmere"
7610 ))]
7611 ListChevronsDownUp,
7612 #[cfg(any(feature = "text", feature = "arrows"))]
7613 #[strum(props(
7614 svg = "<path d=\"M3 5h8\"></path><path d=\"M3 12h8\"></path><path d=\"M3 19h8\"></path><path d=\"m15 8 3-3 3 3\"></path><path d=\"m15 16 3 3 3-3\"></path>",
7615 categories = "text,arrows",
7616 tags = "options,items,collapse,expand,details,disclosure,show,hide,toggle,accordion,more,less,fold,unfold,vertical",
7617 contributors = "colebemis,ericfennis,ocavue,jguddas,PeterlitsZo,mittalyashu,juliankellydesign,karsa-mistmere"
7618 ))]
7619 ListChevronsUpDown,
7620 #[cfg(feature = "text")]
7621 #[strum(props(
7622 svg = "<path d=\"M10 5h11\"></path><path d=\"M10 12h11\"></path><path d=\"M10 19h11\"></path><path d=\"m3 10 3-3-3-3\"></path><path d=\"m3 20 3-3-3-3\"></path>",
7623 categories = "text",
7624 tags = "items,collapse,expand,details,disclosure,show,hide,toggle,accordion,more,less,fold,unfold",
7625 contributors = "ocavue,jguddas,karsa-mistmere"
7626 ))]
7627 ListCollapse,
7628 #[cfg(any(feature = "multimedia", feature = "text"))]
7629 #[strum(props(
7630 svg = "<path d=\"M16 5H3\"></path><path d=\"M16 12H3\"></path><path d=\"M9 19H3\"></path><path d=\"m16 16-3 3 3 3\"></path><path d=\"M21 5v12a2 2 0 0 1-2 2h-6\"></path>",
7631 categories = "multimedia,text",
7632 tags = "queue,bottom,end,playlist",
7633 contributors = "karsa-mistmere"
7634 ))]
7635 ListEnd,
7636 #[cfg(any(feature = "text", feature = "layout"))]
7637 #[strum(props(
7638 svg = "<path d=\"M12 5H2\"></path><path d=\"M6 12h12\"></path><path d=\"M9 19h6\"></path><path d=\"M16 5h6\"></path><path d=\"M19 8V2\"></path>",
7639 categories = "text,layout",
7640 tags = "filter,plus,options,add",
7641 contributors = "abdeniz,karsa-mistmere"
7642 ))]
7643 ListFilterPlus,
7644 #[cfg(feature = "text")]
7645 #[strum(props(
7646 svg = "<path d=\"M2 5h20\"></path><path d=\"M6 12h12\"></path><path d=\"M9 19h6\"></path>",
7647 categories = "text",
7648 tags = "options",
7649 contributors = "danielbayley,karsa-mistmere"
7650 ))]
7651 ListFilter,
7652 #[cfg(any(feature = "text", feature = "development"))]
7653 #[strum(props(
7654 svg = "<path d=\"M21 5H11\"></path><path d=\"M21 12H11\"></path><path d=\"M21 19H11\"></path><path d=\"m7 8-4 4 4 4\"></path>",
7655 categories = "text,development",
7656 tags = "text,tab",
7657 contributors = "Themistoklis,ericfennis,karsa-mistmere"
7658 ))]
7659 ListIndentDecrease,
7660 #[cfg(any(feature = "text", feature = "development"))]
7661 #[strum(props(
7662 svg = "<path d=\"M21 5H11\"></path><path d=\"M21 12H11\"></path><path d=\"M21 19H11\"></path><path d=\"m3 8 4 4-4 4\"></path>",
7663 categories = "text,development",
7664 tags = "text,tab",
7665 contributors = "Themistoklis,ericfennis,karsa-mistmere"
7666 ))]
7667 ListIndentIncrease,
7668 #[cfg(any(feature = "multimedia", feature = "text"))]
7669 #[strum(props(
7670 svg = "<path d=\"M16 5H3\"></path><path d=\"M11 12H3\"></path><path d=\"M16 19H3\"></path><path d=\"M21 12h-6\"></path>",
7671 categories = "multimedia,text",
7672 tags = "playlist,remove,song,subtract,delete,unqueue",
7673 contributors = "ericfennis,karsa-mistmere"
7674 ))]
7675 ListMinus,
7676 #[cfg(feature = "multimedia")]
7677 #[strum(props(
7678 svg = "<path d=\"M16 5H3\"></path><path d=\"M11 12H3\"></path><path d=\"M11 19H3\"></path><path d=\"M21 16V5\"></path><circle cx=\"18\" cy=\"16\" r=\"3\"></circle>",
7679 categories = "multimedia",
7680 tags = "playlist,queue,music,audio,playback",
7681 contributors = "karsa-mistmere"
7682 ))]
7683 ListMusic,
7684 #[cfg(feature = "text")]
7685 #[strum(props(
7686 svg = "<path d=\"M11 5h10\"></path><path d=\"M11 12h10\"></path><path d=\"M11 19h10\"></path><path d=\"M4 4h1v5\"></path><path d=\"M4 9h2\"></path><path d=\"M6.5 20H3.4c0-1 2.6-1.92 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02\"></path>",
7687 categories = "text",
7688 tags = "number,order,queue",
7689 contributors = "ericfennis,csandman,karsa-mistmere"
7690 ))]
7691 ListOrdered,
7692 #[cfg(any(feature = "multimedia", feature = "text"))]
7693 #[strum(props(
7694 svg = "<path d=\"M16 5H3\"></path><path d=\"M11 12H3\"></path><path d=\"M16 19H3\"></path><path d=\"M18 9v6\"></path><path d=\"M21 12h-6\"></path>",
7695 categories = "multimedia,text",
7696 tags = "playlist,add,song,track,new",
7697 contributors = "ericfennis,karsa-mistmere"
7698 ))]
7699 ListPlus,
7700 #[cfg(any(feature = "multimedia", feature = "text"))]
7701 #[strum(props(
7702 svg = "<path d=\"M21 5H3\"></path><path d=\"M7 12H3\"></path><path d=\"M7 19H3\"></path><path d=\"M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14\"></path><path d=\"M11 10v4h4\"></path>",
7703 categories = "multimedia,text",
7704 tags = "reset,refresh,reload,playlist,replay",
7705 contributors = "danielbayley,karsa-mistmere"
7706 ))]
7707 ListRestart,
7708 #[cfg(any(feature = "text", feature = "layout"))]
7709 #[strum(props(
7710 svg = "<path d=\"M3 19h18\"></path><path d=\"M15 12H3\"></path><path d=\"M9 5H3\"></path>",
7711 categories = "text,layout",
7712 tags = "list,order,arrangement,organization,sequence,ranking,categories,presentation,filter,sort,ascending,descending,increasing,decreasing,rising,falling",
7713 contributors = "ericfennis"
7714 ))]
7715 ListSortAscending,
7716 #[cfg(any(feature = "text", feature = "layout"))]
7717 #[strum(props(
7718 svg = "<path d=\"M15 12H3\"></path><path d=\"M3 5h18\"></path><path d=\"M9 19H3\"></path>",
7719 categories = "text,layout",
7720 tags = "list,order,arrangement,organization,sequence,ranking,categories,presentation,filter,sort,ascending,descending,increasing,decreasing,rising,falling",
7721 contributors = "ericfennis"
7722 ))]
7723 ListSortDescending,
7724 #[cfg(any(feature = "multimedia", feature = "text"))]
7725 #[strum(props(
7726 svg = "<path d=\"M3 5h6\"></path><path d=\"M3 12h13\"></path><path d=\"M3 19h13\"></path><path d=\"m16 8-3-3 3-3\"></path><path d=\"M21 19V7a2 2 0 0 0-2-2h-6\"></path>",
7727 categories = "multimedia,text",
7728 tags = "queue,top,start,next,playlist",
7729 contributors = "karsa-mistmere"
7730 ))]
7731 ListStart,
7732 #[cfg(feature = "text")]
7733 #[strum(props(
7734 svg = "<path d=\"M13 5h8\"></path><path d=\"M13 12h8\"></path><path d=\"M13 19h8\"></path><path d=\"m3 17 2 2 4-4\"></path><rect height=\"6\" rx=\"1\" width=\"6\" x=\"3\" y=\"4\"></rect>",
7735 categories = "text",
7736 tags = "todo,done,check,tick,complete,tasks,items,pending",
7737 contributors = "karsa-mistmere,danielbayley"
7738 ))]
7739 ListTodo,
7740 #[cfg(any(feature = "files", feature = "text", feature = "layout"))]
7741 #[strum(props(
7742 svg = "<path d=\"M8 5h13\"></path><path d=\"M13 12h8\"></path><path d=\"M13 19h8\"></path><path d=\"M3 10a2 2 0 0 0 2 2h3\"></path><path d=\"M3 5v12a2 2 0 0 0 2 2h3\"></path>",
7743 categories = "files,text,layout",
7744 tags = "tree,browser",
7745 contributors = "danielbayley,karsa-mistmere"
7746 ))]
7747 ListTree,
7748 #[cfg(feature = "multimedia")]
7749 #[strum(props(
7750 svg = "<path d=\"M21 5H3\"></path><path d=\"M10 12H3\"></path><path d=\"M10 19H3\"></path><path d=\"M15 12.00a1 1 0 0 1 1.51-.859l4.99 2.99a1 1 0 0 1 0 1.71l-4.99 2.99a1 1 0 0 1-1.51-.86z\"></path>",
7751 categories = "multimedia",
7752 tags = "playlist,video,playback",
7753 contributors = "karsa-mistmere"
7754 ))]
7755 ListVideo,
7756 #[cfg(any(feature = "multimedia", feature = "text"))]
7757 #[strum(props(
7758 svg = "<path d=\"M16 5H3\"></path><path d=\"M11 12H3\"></path><path d=\"M16 19H3\"></path><path d=\"m15.5 9.5 5 5\"></path><path d=\"m20.5 9.5-5 5\"></path>",
7759 categories = "multimedia,text",
7760 tags = "playlist,subtract,remove,delete,unqueue",
7761 contributors = "ericfennis,karsa-mistmere"
7762 ))]
7763 ListX,
7764 #[cfg(feature = "text")]
7765 #[strum(props(
7766 svg = "<path d=\"M3 5h.01\"></path><path d=\"M3 12h.01\"></path><path d=\"M3 19h.01\"></path><path d=\"M8 5h13\"></path><path d=\"M8 12h13\"></path><path d=\"M8 19h13\"></path>",
7767 categories = "text",
7768 tags = "options",
7769 contributors = "colebemis,ericfennis,karsa-mistmere"
7770 ))]
7771 List,
7772 #[cfg(any(feature = "cursors", feature = "multimedia", feature = "layout"))]
7773 #[strum(props(
7774 svg = "<path d=\"M21 12a9 9 0 1 1-6.21-8.56\"></path>",
7775 categories = "cursors,multimedia,layout",
7776 tags = "loading,wait,busy,progress,spinner,spinning,throbber,circle",
7777 contributors = "mittalyashu,danielbayley,karsa-mistmere,ericfennis"
7778 ))]
7779 LoaderCircle,
7780 #[cfg(any(feature = "cursors", feature = "design"))]
7781 #[strum(props(
7782 svg = "<path d=\"M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0\"></path><path d=\"M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6\"></path><path d=\"M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6\"></path><circle cx=\"12\" cy=\"12\" r=\"10\"></circle>",
7783 categories = "cursors,design",
7784 tags = "loading,wait,busy,progress,throbber,spinner,spinning,beach ball,frozen,freeze",
7785 contributors = "danielbayley,jguddas"
7786 ))]
7787 LoaderPinwheel,
7788 #[cfg(any(
7789 feature = "cursors",
7790 feature = "multimedia",
7791 feature = "layout",
7792 feature = "design"
7793 ))]
7794 #[strum(props(
7795 svg = "<path d=\"M12 2v4\"></path><path d=\"m16.2 7.8 2.9-2.9\"></path><path d=\"M18 12h4\"></path><path d=\"m16.2 16.2 2.9 2.9\"></path><path d=\"M12 18v4\"></path><path d=\"m4.9 19.1 2.9-2.9\"></path><path d=\"M2 12h4\"></path><path d=\"m4.9 4.9 2.9 2.9\"></path>",
7796 categories = "cursors,multimedia,layout,design",
7797 tags = "loading,wait,busy,progress,spinner,spinning,throbber",
7798 contributors = "colebemis,ericfennis,danielbayley"
7799 ))]
7800 Loader,
7801 #[cfg(feature = "navigation")]
7802 #[strum(props(
7803 svg = "<line x1=\"2\" x2=\"5\" y1=\"12\" y2=\"12\"></line><line x1=\"19\" x2=\"22\" y1=\"12\" y2=\"12\"></line><line x1=\"12\" x2=\"12\" y1=\"2\" y2=\"5\"></line><line x1=\"12\" x2=\"12\" y1=\"19\" y2=\"22\"></line><circle cx=\"12\" cy=\"12\" r=\"7\"></circle><circle cx=\"12\" cy=\"12\" r=\"3\"></circle>",
7804 categories = "navigation",
7805 tags = "map,gps,location,cross",
7806 contributors = "csandman,danielbayley,jguddas,ericfennis"
7807 ))]
7808 LocateFixed,
7809 #[cfg(feature = "navigation")]
7810 #[strum(props(
7811 svg = "<path d=\"M12 19v3\"></path><path d=\"M12 2v3\"></path><path d=\"M18.89 13.24a7 7 0 0 0-8.13-8.13\"></path><path d=\"M19 12h3\"></path><path d=\"M2 12h3\"></path><path d=\"m2 2 20 20\"></path><path d=\"M7.05 7.05a7 7 0 0 0 9.9 9.9\"></path>",
7812 categories = "navigation",
7813 tags = "map,gps,location,cross",
7814 contributors = "fdev,jamiemlaw"
7815 ))]
7816 LocateOff,
7817 #[cfg(feature = "navigation")]
7818 #[strum(props(
7819 svg = "<line x1=\"2\" x2=\"5\" y1=\"12\" y2=\"12\"></line><line x1=\"19\" x2=\"22\" y1=\"12\" y2=\"12\"></line><line x1=\"12\" x2=\"12\" y1=\"2\" y2=\"5\"></line><line x1=\"12\" x2=\"12\" y1=\"19\" y2=\"22\"></line><circle cx=\"12\" cy=\"12\" r=\"7\"></circle>",
7820 categories = "navigation",
7821 tags = "map,gps,location,cross",
7822 contributors = "csandman,ericfennis,karsa-mistmere"
7823 ))]
7824 Locate,
7825 #[cfg(feature = "security")]
7826 #[strum(props(
7827 svg = "<circle cx=\"12\" cy=\"16\" r=\"1\"></circle><rect height=\"12\" rx=\"2\" width=\"18\" x=\"3\" y=\"10\"></rect><path d=\"M7 10V7a5 5 0 0 1 9.33-2.5\"></path>",
7828 categories = "security",
7829 tags = "security",
7830 contributors = "colebemis,csandman,ericfennis,cd16b,danielbayley,karsa-mistmere"
7831 ))]
7832 LockKeyholeOpen,
7833 #[cfg(feature = "security")]
7834 #[strum(props(
7835 svg = "<circle cx=\"12\" cy=\"16\" r=\"1\"></circle><rect height=\"12\" rx=\"2\" width=\"18\" x=\"3\" y=\"10\"></rect><path d=\"M7 10V7a5 5 0 0 1 10 0v3\"></path>",
7836 categories = "security",
7837 tags = "security,password,secure,admin",
7838 contributors = "colebemis,csandman,ericfennis,cd16b,danielbayley,karsa-mistmere"
7839 ))]
7840 LockKeyhole,
7841 #[cfg(feature = "security")]
7842 #[strum(props(
7843 svg = "<rect height=\"11\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"11\"></rect><path d=\"M7 11V7a5 5 0 0 1 9.9-1\"></path>",
7844 categories = "security",
7845 tags = "security",
7846 contributors = "colebemis,csandman,ericfennis"
7847 ))]
7848 LockOpen,
7849 #[cfg(feature = "security")]
7850 #[strum(props(
7851 svg = "<rect height=\"11\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"11\"></rect><path d=\"M7 11V7a5 5 0 0 1 10 0v4\"></path>",
7852 categories = "security",
7853 tags = "security,password,secure,admin",
7854 contributors = "colebemis,csandman,ericfennis"
7855 ))]
7856 Lock,
7857 #[cfg(any(feature = "arrows", feature = "account"))]
7858 #[strum(props(
7859 svg = "<path d=\"m10 17 5-5-5-5\"></path><path d=\"M15 12H3\"></path><path d=\"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4\"></path>",
7860 categories = "arrows,account",
7861 tags = "sign in,arrow,enter,auth",
7862 contributors = "colebemis,csandman,ericfennis"
7863 ))]
7864 LogIn,
7865 #[cfg(any(feature = "arrows", feature = "account"))]
7866 #[strum(props(
7867 svg = "<path d=\"m16 17 5-5-5-5\"></path><path d=\"M21 12H9\"></path><path d=\"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4\"></path>",
7868 categories = "arrows,account",
7869 tags = "sign out,arrow,exit,auth",
7870 contributors = "colebemis,csandman,ericfennis"
7871 ))]
7872 LogOut,
7873 #[cfg(feature = "text")]
7874 #[strum(props(
7875 svg = "<path d=\"M3 5h1\"></path><path d=\"M3 12h1\"></path><path d=\"M3 19h1\"></path><path d=\"M8 5h1\"></path><path d=\"M8 12h1\"></path><path d=\"M8 19h1\"></path><path d=\"M13 5h8\"></path><path d=\"M13 12h8\"></path><path d=\"M13 19h8\"></path>",
7876 categories = "text",
7877 tags = "options,list,menu,order,queue,tasks,logs",
7878 contributors = "AnnaSasDev,karsa-mistmere"
7879 ))]
7880 Logs,
7881 #[cfg(feature = "food_beverage")]
7882 #[strum(props(
7883 svg = "<circle cx=\"11\" cy=\"11\" r=\"8\"></circle><path d=\"m21 21-4.3-4.3\"></path><path d=\"M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0\"></path>",
7884 categories = "food-beverage",
7885 tags = "lolly,candy,sugar,food,sweet,dessert,spiral",
7886 contributors = "danielbayley"
7887 ))]
7888 Lollipop,
7889 #[cfg(any(feature = "travel", feature = "transportation"))]
7890 #[strum(props(
7891 svg = "<path d=\"M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2\"></path><path d=\"M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14\"></path><path d=\"M10 20h4\"></path><circle cx=\"16\" cy=\"20\" r=\"2\"></circle><circle cx=\"8\" cy=\"20\" r=\"2\"></circle>",
7892 categories = "travel,transportation",
7893 tags = "baggage,luggage,travel,suitcase",
7894 contributors = "karsa-mistmere"
7895 ))]
7896 Luggage,
7897 #[cfg(feature = "design")]
7898 #[strum(props(
7899 svg = "<path d=\"m12 15 4 4\"></path><path d=\"M2.35 10.64a1.20 1.20 0 0 0 0 1.70l2.29 2.29a1.20 1.20 0 0 0 1.70 0l6.02-6.02a1 1 0 1 1 3 3l-6.02 6.02a1.20 1.20 0 0 0 0 1.70l2.29 2.29a1.20 1.20 0 0 0 1.70 0l6.36-6.36A1 1 0 0 0 8.71 4.28z\"></path><path d=\"m5 8 4 4\"></path>",
7900 categories = "design",
7901 tags = "horseshoe,lock,science,snap",
7902 contributors = "karsa-mistmere,ericfennis"
7903 ))]
7904 Magnet,
7905 #[cfg(feature = "mail")]
7906 #[strum(props(
7907 svg = "<path d=\"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8\"></path><path d=\"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7\"></path><path d=\"m16 19 2 2 4-4\"></path>",
7908 categories = "mail",
7909 tags = "email,message,letter,subscribe,delivered,success,read,done,todo,tick,complete,task",
7910 contributors = "karsa-mistmere,ericfennis"
7911 ))]
7912 MailCheck,
7913 #[cfg(feature = "mail")]
7914 #[strum(props(
7915 svg = "<path d=\"M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8\"></path><path d=\"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7\"></path><path d=\"M16 19h6\"></path>",
7916 categories = "mail",
7917 tags = "email,message,letter,remove,delete",
7918 contributors = "karsa-mistmere,ericfennis"
7919 ))]
7920 MailMinus,
7921 #[cfg(feature = "mail")]
7922 #[strum(props(
7923 svg = "<path d=\"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z\"></path><path d=\"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10\"></path>",
7924 categories = "mail",
7925 tags = "email,message,letter,read",
7926 contributors = "karsa-mistmere,jguddas"
7927 ))]
7928 MailOpen,
7929 #[cfg(feature = "mail")]
7930 #[strum(props(
7931 svg = "<path d=\"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8\"></path><path d=\"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7\"></path><path d=\"M19 16v6\"></path><path d=\"M16 19h6\"></path>",
7932 categories = "mail",
7933 tags = "email,message,letter,add,create,new,compose",
7934 contributors = "karsa-mistmere,jguddas"
7935 ))]
7936 MailPlus,
7937 #[cfg(feature = "mail")]
7938 #[strum(props(
7939 svg = "<path d=\"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5\"></path><path d=\"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7\"></path><path d=\"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2\"></path><path d=\"M20 22v.01\"></path>",
7940 categories = "mail",
7941 tags = "email,message,letter,delivery,undelivered",
7942 contributors = "karsa-mistmere"
7943 ))]
7944 MailQuestionMark,
7945 #[cfg(feature = "mail")]
7946 #[strum(props(
7947 svg = "<path d=\"M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5\"></path><path d=\"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7\"></path><path d=\"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\"></path><circle cx=\"18\" cy=\"18\" r=\"3\"></circle><path d=\"m22 22-1.5-1.5\"></path>",
7948 categories = "mail",
7949 tags = "email,message,letter,search,lens",
7950 contributors = "karsa-mistmere"
7951 ))]
7952 MailSearch,
7953 #[cfg(feature = "mail")]
7954 #[strum(props(
7955 svg = "<path d=\"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5\"></path><path d=\"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7\"></path><path d=\"M20 14v4\"></path><path d=\"M20 22v.01\"></path>",
7956 categories = "mail",
7957 tags = "email,message,letter,delivery error,exclamation mark",
7958 contributors = "karsa-mistmere,jguddas"
7959 ))]
7960 MailWarning,
7961 #[cfg(feature = "mail")]
7962 #[strum(props(
7963 svg = "<path d=\"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9\"></path><path d=\"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7\"></path><path d=\"m17 17 4 4\"></path><path d=\"m21 17-4 4\"></path>",
7964 categories = "mail",
7965 tags = "email,message,letter,remove,delete",
7966 contributors = "karsa-mistmere,jguddas"
7967 ))]
7968 MailX,
7969 #[cfg(any(feature = "text", feature = "account", feature = "mail"))]
7970 #[strum(props(
7971 svg = "<path d=\"m22 7-8.99 5.72a2 2 0 0 1-2.00 0L2 7\"></path><rect height=\"16\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect>",
7972 categories = "text,account,mail",
7973 tags = "email,message,letter,unread",
7974 contributors = "colebemis,karsa-mistmere,ericfennis,jguddas"
7975 ))]
7976 Mail,
7977 #[cfg(feature = "mail")]
7978 #[strum(props(
7979 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z\"></path><polyline points=\"15,9 18,9 18,11\"></polyline><path d=\"M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2\"></path><line x1=\"6\" x2=\"7\" y1=\"10\" y2=\"10\"></line>",
7980 categories = "mail",
7981 tags = "emails,messages,letters,mailing list,newsletter",
7982 contributors = "danielbayley,karsa-mistmere,ericfennis"
7983 ))]
7984 Mailbox,
7985 #[cfg(feature = "mail")]
7986 #[strum(props(
7987 svg = "<path d=\"M17 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 1-1.73\"></path><path d=\"m22 5.5-6.41 4.17a2 2 0 0 1-2.16 0L7 5.5\"></path><rect height=\"12\" rx=\"2\" width=\"15\" x=\"7\" y=\"3\"></rect>",
7988 categories = "mail",
7989 tags = "emails,messages,letters,multiple,mailing list,newsletter,copy",
7990 contributors = "karsa-mistmere,ericfennis,jguddas"
7991 ))]
7992 Mails,
7993 #[cfg(any(feature = "navigation", feature = "travel"))]
7994 #[strum(props(
7995 svg = "<path d=\"m11 19-1.10-.552a2 2 0 0 0-1.78 0l-3.65 1.83A1 1 0 0 1 3 19.38V6.61a1 1 0 0 1 .553-.894l4.55-2.27a2 2 0 0 1 1.78 0l4.21 2.10a2 2 0 0 0 1.78 0l3.65-1.83A1 1 0 0 1 21 4.61V14\"></path><path d=\"M15 5.76V14\"></path><path d=\"M21 18h-6\"></path><path d=\"M9 3.23v15\"></path>",
7996 categories = "navigation,travel",
7997 tags = "location,navigation,travel,drop,delete,remove,erase",
7998 contributors = "colebemis,karsa-mistmere,ericfennis,MarianoFranzese,jguddas"
7999 ))]
8000 MapMinus,
8001 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8002 #[strum(props(
8003 svg = "<path d=\"M20 10c0 4.99-5.53 10.19-7.39 11.79a1 1 0 0 1-1.20 0C9.53 20.19 4 14.99 4 10a8 8 0 0 1 16 0\"></path><path d=\"m9 10 2 2 4-4\"></path>",
8004 categories = "navigation,travel,account",
8005 tags = "location,waypoint,marker,drop,done,tick,complete,task,added",
8006 contributors = "karsa-mistmere,colebemis,csandman,ericfennis"
8007 ))]
8008 MapPinCheckInside,
8009 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8010 #[strum(props(
8011 svg = "<path d=\"M19.43 12.93c.357-.967.57-1.95.57-2.93a8 8 0 0 0-16 0c0 4.99 5.53 10.19 7.39 11.79a1 1 0 0 0 1.20 0 32.19 32.19 0 0 0 .813-.728\"></path><circle cx=\"12\" cy=\"10\" r=\"3\"></circle><path d=\"m16 18 2 2 4-4\"></path>",
8012 categories = "navigation,travel,account",
8013 tags = "location,waypoint,marker,drop,done,tick,complete,task,added",
8014 contributors = "karsa-mistmere,colebemis,csandman,ericfennis"
8015 ))]
8016 MapPinCheck,
8017 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8018 #[strum(props(
8019 svg = "<path d=\"M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z\"></path><path d=\"M18 10a8 8 0 0 0-16 0c0 4.99 5.53 10.19 7.39 11.79a1 1 0 0 0 .601.2\"></path><path d=\"M18 22v-3\"></path><circle cx=\"10\" cy=\"10\" r=\"3\"></circle>",
8020 categories = "navigation,travel,account",
8021 tags = "location,waypoint,marker,drop,home,living,building,residence,architecture,address,poi,real estate,property,navigation,destination,geolocation,place,landmark",
8022 contributors = "karsa-mistmere,colebemis,csandman,ericfennis"
8023 ))]
8024 MapPinHouse,
8025 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8026 #[strum(props(
8027 svg = "<path d=\"M20 10c0 4.99-5.53 10.19-7.39 11.79a1 1 0 0 1-1.20 0C9.53 20.19 4 14.99 4 10a8 8 0 0 1 16 0\"></path><path d=\"M9 10h6\"></path>",
8028 categories = "navigation,travel,account",
8029 tags = "location,waypoint,marker,drop,delete,remove,erase",
8030 contributors = "karsa-mistmere,colebemis,csandman,ericfennis"
8031 ))]
8032 MapPinMinusInside,
8033 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8034 #[strum(props(
8035 svg = "<path d=\"M18.97 14C19.6 12.70 20 11.34 20 10a8 8 0 0 0-16 0c0 4.99 5.53 10.19 7.39 11.79a1 1 0 0 0 1.20 0 32 32 0 0 0 .824-.738\"></path><circle cx=\"12\" cy=\"10\" r=\"3\"></circle><path d=\"M16 18h6\"></path>",
8036 categories = "navigation,travel,account",
8037 tags = "location,waypoint,marker,drop,delete,remove,erase",
8038 contributors = "karsa-mistmere,colebemis,csandman,ericfennis"
8039 ))]
8040 MapPinMinus,
8041 #[cfg(any(feature = "navigation", feature = "travel"))]
8042 #[strum(props(
8043 svg = "<path d=\"M12.75 7.09a3 3 0 0 1 2.16 2.16\"></path><path d=\"M17.07 17.07c-1.63 2.17-3.52 3.91-4.47 4.72a1 1 0 0 1-1.20 0C9.53 20.19 4 14.99 4 10a8 8 0 0 1 1.43-4.56\"></path><path d=\"m2 2 20 20\"></path><path d=\"M8.47 2.81A8 8 0 0 1 20 10c0 1.18-.31 2.37-.81 3.53\"></path><path d=\"M9.13 9.13a3 3 0 0 0 3.74 3.74\"></path>",
8044 categories = "navigation,travel",
8045 tags = "location,waypoint,marker,remove",
8046 contributors = "karsa-mistmere,ericfennis"
8047 ))]
8048 MapPinOff,
8049 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8050 #[strum(props(
8051 svg = "<path d=\"M17.97 9.30A8 8 0 0 0 2 10c0 4.69 4.88 9.56 7.02 11.46\"></path><path d=\"M21.37 16.62a1 1 0 0 0-3.00-3.00l-4.01 4.01a2 2 0 0 0-.506.85l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z\"></path><circle cx=\"10\" cy=\"10\" r=\"3\"></circle>",
8052 categories = "navigation,travel,account",
8053 tags = "location,waypoint,marker,drop,edit",
8054 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,sachinkr7368"
8055 ))]
8056 MapPinPen,
8057 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8058 #[strum(props(
8059 svg = "<path d=\"M20 10c0 4.99-5.53 10.19-7.39 11.79a1 1 0 0 1-1.20 0C9.53 20.19 4 14.99 4 10a8 8 0 0 1 16 0\"></path><path d=\"M12 7v6\"></path><path d=\"M9 10h6\"></path>",
8060 categories = "navigation,travel,account",
8061 tags = "location,waypoint,marker,drop,add,create,new",
8062 contributors = "karsa-mistmere,colebemis,csandman,ericfennis"
8063 ))]
8064 MapPinPlusInside,
8065 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8066 #[strum(props(
8067 svg = "<path d=\"M19.91 11.10A7.29 7.29 0 0 0 20 10a8 8 0 0 0-16 0c0 4.99 5.53 10.19 7.39 11.79a1 1 0 0 0 1.20 0 32 32 0 0 0 .824-.738\"></path><circle cx=\"12\" cy=\"10\" r=\"3\"></circle><path d=\"M16 18h6\"></path><path d=\"M19 15v6\"></path>",
8068 categories = "navigation,travel,account",
8069 tags = "location,waypoint,marker,drop,add,create,new",
8070 contributors = "karsa-mistmere,colebemis,csandman,ericfennis"
8071 ))]
8072 MapPinPlus,
8073 #[cfg(any(
8074 feature = "text",
8075 feature = "navigation",
8076 feature = "travel",
8077 feature = "account"
8078 ))]
8079 #[strum(props(
8080 svg = "<path d=\"M 12.24 21.96 a 1 1 0 0 1 -0.84 -0.17 C 9.53 20.19 4 14.99 4 10 a 8 8 0 0 1 16 0 C 20 10.42 19.96 10.84 19.88 11.26\"></path><path d=\"m22 22-1.88-1.88\"></path><circle cx=\"12\" cy=\"10\" r=\"3\"></circle><circle cx=\"18\" cy=\"18\" r=\"3\"></circle>",
8081 categories = "text,navigation,travel,account",
8082 tags = "location,navigation,travel,waypoint,marker,drop",
8083 contributors = "colebemis,karsa-mistmere,ericfennis,csandman,TonySullivan"
8084 ))]
8085 MapPinSearch,
8086 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8087 #[strum(props(
8088 svg = "<path d=\"M20 10c0 4.99-5.53 10.19-7.39 11.79a1 1 0 0 1-1.20 0C9.53 20.19 4 14.99 4 10a8 8 0 0 1 16 0\"></path><path d=\"m14.5 7.5-5 5\"></path><path d=\"m9.5 7.5 5 5\"></path>",
8089 categories = "navigation,travel,account",
8090 tags = "location,waypoint,marker,drop,delete,remove,erase",
8091 contributors = "karsa-mistmere,colebemis,csandman,ericfennis"
8092 ))]
8093 MapPinXInside,
8094 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8095 #[strum(props(
8096 svg = "<path d=\"M19.75 11.90A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.99 5.53 10.19 7.39 11.79a1 1 0 0 0 1.20 0 19 19 0 0 0 .09-.077\"></path><circle cx=\"12\" cy=\"10\" r=\"3\"></circle><path d=\"m21.5 15.5-5 5\"></path><path d=\"m21.5 20.5-5-5\"></path>",
8097 categories = "navigation,travel,account",
8098 tags = "location,waypoint,marker,drop,delete,remove,erase",
8099 contributors = "karsa-mistmere,colebemis,csandman,ericfennis"
8100 ))]
8101 MapPinX,
8102 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8103 #[strum(props(
8104 svg = "<path d=\"M20 10c0 4.99-5.53 10.19-7.39 11.79a1 1 0 0 1-1.20 0C9.53 20.19 4 14.99 4 10a8 8 0 0 1 16 0\"></path><circle cx=\"12\" cy=\"10\" r=\"3\"></circle>",
8105 categories = "navigation,travel,account",
8106 tags = "location,waypoint,marker,drop",
8107 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
8108 ))]
8109 MapPin,
8110 #[cfg(any(feature = "navigation", feature = "travel", feature = "account"))]
8111 #[strum(props(
8112 svg = "<path d=\"M18 8c0 3.61-3.86 7.42-5.39 8.79a1 1 0 0 1-1.21 0C9.87 15.42 6 11.61 6 8a6 6 0 0 1 12 0\"></path><circle cx=\"12\" cy=\"8\" r=\"2\"></circle><path d=\"M8.71 14h-3.71a1 1 0 0 0-.948.68l-2.00 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.31l-2-6a1 1 0 0 0-.949-.684h-3.71\"></path>",
8113 categories = "navigation,travel,account",
8114 tags = "location,waypoint,marker,drop",
8115 contributors = "danielbayley,karsa-mistmere"
8116 ))]
8117 MapPinned,
8118 #[cfg(feature = "navigation")]
8119 #[strum(props(
8120 svg = "<path d=\"m11 19-1.10-.552a2 2 0 0 0-1.78 0l-3.65 1.83A1 1 0 0 1 3 19.38V6.61a1 1 0 0 1 .553-.894l4.55-2.27a2 2 0 0 1 1.78 0l4.21 2.10a2 2 0 0 0 1.78 0l3.65-1.83A1 1 0 0 1 21 4.61V12\"></path><path d=\"M15 5.76V12\"></path><path d=\"M18 15v6\"></path><path d=\"M21 18h-6\"></path><path d=\"M9 3.23v15\"></path>",
8121 categories = "navigation",
8122 tags = "location,navigation,travel,new,add,create",
8123 contributors = "colebemis,karsa-mistmere,ericfennis,Seanw265"
8124 ))]
8125 MapPlus,
8126 #[cfg(any(feature = "text", feature = "navigation"))]
8127 #[strum(props(
8128 svg = "<path d=\"M14.10 5.55a2 2 0 0 0 1.78 0l3.65-1.83A1 1 0 0 1 21 4.61v12.76a1 1 0 0 1-.553.89l-4.55 2.27a2 2 0 0 1-1.78 0l-4.21-2.10a2 2 0 0 0-1.78 0l-3.65 1.83A1 1 0 0 1 3 19.38V6.61a1 1 0 0 1 .553-.894l4.55-2.27a2 2 0 0 1 1.78 0z\"></path><path d=\"M15 5.76v15\"></path><path d=\"M9 3.23v15\"></path>",
8129 categories = "text,navigation",
8130 tags = "location,navigation,travel",
8131 contributors = "colebemis,karsa-mistmere,ericfennis"
8132 ))]
8133 Map,
8134 #[cfg(feature = "medical")]
8135 #[strum(props(
8136 svg = "<path d=\"m14 6 4 4\"></path><path d=\"M17 3h4v4\"></path><path d=\"m21 3-7.75 7.75\"></path><circle cx=\"9\" cy=\"15\" r=\"6\"></circle>",
8137 categories = "medical",
8138 tags = "gender,androgyne,transgender",
8139 contributors = "jamiemlaw"
8140 ))]
8141 MarsStroke,
8142 #[cfg(feature = "medical")]
8143 #[strum(props(
8144 svg = "<path d=\"M16 3h5v5\"></path><path d=\"m21 3-6.75 6.75\"></path><circle cx=\"10\" cy=\"14\" r=\"6\"></circle>",
8145 categories = "medical",
8146 tags = "gender,sex,male,masculine,man,boy",
8147 contributors = "jguddas,jamiemlaw"
8148 ))]
8149 Mars,
8150 #[cfg(feature = "food_beverage")]
8151 #[strum(props(
8152 svg = "<path d=\"M12 12 4.20 4.20A.707.70 0 0 1 4.70 3h14.58a.707.70 0 0 1 .5 1.20z\"></path><path d=\"M12 12v10\"></path><path d=\"M7 22h10\"></path>",
8153 categories = "food-beverage",
8154 tags = "cocktail,alcohol,beverage,bar,drink,glass,spirit,party,celebration,mixer",
8155 contributors = "karsa-mistmere,ericfennis,danielbayley,jamiemlaw"
8156 ))]
8157 Martini,
8158 #[cfg(any(feature = "arrows", feature = "layout", feature = "design"))]
8159 #[strum(props(
8160 svg = "<path d=\"M15 3h6v6\"></path><path d=\"m21 3-7 7\"></path><path d=\"m3 21 7-7\"></path><path d=\"M9 21H3v-6\"></path>",
8161 categories = "arrows,layout,design",
8162 tags = "fullscreen,arrows,expand",
8163 contributors = "colebemis,ericfennis"
8164 ))]
8165 Maximize2,
8166 #[cfg(any(feature = "layout", feature = "design"))]
8167 #[strum(props(
8168 svg = "<path d=\"M8 3H5a2 2 0 0 0-2 2v3\"></path><path d=\"M21 8V5a2 2 0 0 0-2-2h-3\"></path><path d=\"M3 16v3a2 2 0 0 0 2 2h3\"></path><path d=\"M16 21h3a2 2 0 0 0 2-2v-3\"></path>",
8169 categories = "layout,design",
8170 tags = "fullscreen,expand,dashed",
8171 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
8172 ))]
8173 Maximize,
8174 #[cfg(any(feature = "sports", feature = "gaming"))]
8175 #[strum(props(
8176 svg = "<path d=\"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15\"></path><path d=\"M11 12 5.12 2.2\"></path><path d=\"m13 12 5.88-9.8\"></path><path d=\"M8 7h8\"></path><circle cx=\"12\" cy=\"17\" r=\"5\"></circle><path d=\"M12 18v-2h-.5\"></path>",
8177 categories = "sports,gaming",
8178 tags = "prize,sports,winner,trophy,award,achievement",
8179 contributors = "karsa-mistmere"
8180 ))]
8181 Medal,
8182 #[cfg(any(feature = "multimedia", feature = "notifications"))]
8183 #[strum(props(
8184 svg = "<path d=\"M11.63 6A13 13 0 0 0 19.4 3.2 1 1 0 0 1 21 4v11.34\"></path><path d=\"M14.37 14.35A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1\"></path><path d=\"m2 2 20 20\"></path><path d=\"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14\"></path><path d=\"M8 8v6\"></path>",
8185 categories = "multimedia,notifications",
8186 tags = "advertisement,announcement,attention,alert,loudspeaker,megaphone,notification,disable,silent",
8187 contributors = "jamiemlaw"
8188 ))]
8189 MegaphoneOff,
8190 #[cfg(any(feature = "multimedia", feature = "notifications"))]
8191 #[strum(props(
8192 svg = "<path d=\"M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z\"></path><path d=\"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14\"></path><path d=\"M8 6v8\"></path>",
8193 categories = "multimedia,notifications",
8194 tags = "advertisement,announcement,attention,alert,loudspeaker,megaphone,notification",
8195 contributors = "jamiemlaw"
8196 ))]
8197 Megaphone,
8198 #[cfg(feature = "emoji")]
8199 #[strum(props(
8200 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"8\" x2=\"16\" y1=\"15\" y2=\"15\"></line><line x1=\"9\" x2=\"9.01\" y1=\"9\" y2=\"9\"></line><line x1=\"15\" x2=\"15.01\" y1=\"9\" y2=\"9\"></line>",
8201 categories = "emoji",
8202 tags = "emoji,face,neutral,emotion",
8203 contributors = "colebemis,csandman,mittalyashu,ericfennis"
8204 ))]
8205 Meh,
8206 #[cfg(any(feature = "devices", feature = "gaming"))]
8207 #[strum(props(
8208 svg = "<path d=\"M12 12v-2\"></path><path d=\"M12 18v-2\"></path><path d=\"M16 12v-2\"></path><path d=\"M16 18v-2\"></path><path d=\"M2 11h1.5\"></path><path d=\"M20 18v-2\"></path><path d=\"M20.5 11H22\"></path><path d=\"M4 18v-2\"></path><path d=\"M8 12v-2\"></path><path d=\"M8 18v-2\"></path><rect height=\"10\" rx=\"2\" width=\"20\" x=\"2\" y=\"6\"></rect>",
8209 categories = "devices,gaming",
8210 tags = "ram,random access,technology,computer,chip,circuit,specs,capacity,gigabytes,gb",
8211 contributors = "karsa-mistmere,ericfennis"
8212 ))]
8213 MemoryStick,
8214 #[cfg(any(feature = "layout", feature = "account"))]
8215 #[strum(props(
8216 svg = "<path d=\"M4 5h16\"></path><path d=\"M4 12h16\"></path><path d=\"M4 19h16\"></path>",
8217 categories = "layout,account",
8218 tags = "bars,navigation,hamburger,options",
8219 contributors = "colebemis,ericfennis,karsa-mistmere"
8220 ))]
8221 Menu,
8222 #[cfg(any(feature = "development", feature = "arrows"))]
8223 #[strum(props(
8224 svg = "<path d=\"m8 6 4-4 4 4\"></path><path d=\"M12 2v10.3a4 4 0 0 1-1.17 2.87L4 22\"></path><path d=\"m20 22-5-5\"></path>",
8225 categories = "development,arrows",
8226 tags = "combine,join,unite",
8227 contributors = "karsa-mistmere,ericfennis"
8228 ))]
8229 Merge,
8230 #[cfg(any(feature = "social", feature = "account"))]
8231 #[strum(props(
8232 svg = "<path d=\"M2.99 16.34a2 2 0 0 1 .094 1.16l-1.06 3.29a1 1 0 0 0 1.23 1.16l3.41-.998a2 2 0 0 1 1.09.092 10 10 0 1 0-4.77-4.71\"></path><path d=\"m9 12 2 2 4-4\"></path>",
8233 categories = "social,account",
8234 tags = "comment,chat,conversation,dialog,feedback,speech bubble,moderate,check,done,todo,complete",
8235 contributors = "Shrinks99"
8236 ))]
8237 MessageCircleCheck,
8238 #[cfg(any(feature = "development", feature = "social"))]
8239 #[strum(props(
8240 svg = "<path d=\"m10 9-3 3 3 3\"></path><path d=\"m14 15 3-3-3-3\"></path><path d=\"M2.99 16.34a2 2 0 0 1 .094 1.16l-1.06 3.29a1 1 0 0 0 1.23 1.16l3.41-.998a2 2 0 0 1 1.09.092 10 10 0 1 0-4.77-4.71\"></path>",
8241 categories = "development,social",
8242 tags = "comment,chat,conversation,dialog,feedback,speech bubble,code review,coding",
8243 contributors = "danielbayley,jguddas,karsa-mistmere"
8244 ))]
8245 MessageCircleCode,
8246 #[cfg(feature = "social")]
8247 #[strum(props(
8248 svg = "<path d=\"M10.1 2.18a10 10 0 0 1 3.8 0\"></path><path d=\"M13.9 21.81a10 10 0 0 1-3.8 0\"></path><path d=\"M17.60 3.72a10 10 0 0 1 2.69 2.7\"></path><path d=\"M2.18 13.9a10 10 0 0 1 0-3.8\"></path><path d=\"M20.28 17.61a10 10 0 0 1-2.7 2.69\"></path><path d=\"M21.81 10.1a10 10 0 0 1 0 3.8\"></path><path d=\"M3.72 6.39a10 10 0 0 1 2.7-2.69\"></path><path d=\"m6.16 21.11-2.90.85a1 1 0 0 1-1.23-1.16l.965-2.98\"></path>",
8249 categories = "social",
8250 tags = "comment,chat,conversation,dialog,feedback,speech bubble,draft",
8251 contributors = "danielbayley,jguddas,karsa-mistmere"
8252 ))]
8253 MessageCircleDashed,
8254 #[cfg(feature = "social")]
8255 #[strum(props(
8256 svg = "<path d=\"M2.99 16.34a2 2 0 0 1 .094 1.16l-1.06 3.29a1 1 0 0 0 1.23 1.16l3.41-.998a2 2 0 0 1 1.09.092 10 10 0 1 0-4.77-4.71\"></path><path d=\"M7.82 13.07A3 3 0 0 1 12 8.76a3 3 0 0 1 5.00 2.22 3 3 0 0 1-.832 2.08l-3.44 3.62a1 1 0 0 1-1.45-.001z\"></path>",
8257 categories = "social",
8258 tags = "comment,chat,conversation,dialog,feedback,positive,like,love,interest,valentine,dating,date,speech bubble",
8259 contributors = "danielbayley,jguddas,karsa-mistmere"
8260 ))]
8261 MessageCircleHeart,
8262 #[cfg(feature = "social")]
8263 #[strum(props(
8264 svg = "<path d=\"M2.99 16.34a2 2 0 0 1 .094 1.16l-1.06 3.29a1 1 0 0 0 1.23 1.16l3.41-.998a2 2 0 0 1 1.09.092 10 10 0 1 0-4.77-4.71\"></path><path d=\"M8 12h.01\"></path><path d=\"M12 12h.01\"></path><path d=\"M16 12h.01\"></path>",
8265 categories = "social",
8266 tags = "comment,chat,conversation,dialog,feedback,speech bubble,typing,writing,responding,ellipsis,etc,et cetera,...,…",
8267 contributors = "danielbayley,jguddas,karsa-mistmere"
8268 ))]
8269 MessageCircleMore,
8270 #[cfg(feature = "social")]
8271 #[strum(props(
8272 svg = "<path d=\"m2 2 20 20\"></path><path d=\"M4.93 4.92a10 10 0 0 0-1.93 11.41 2 2 0 0 1 .094 1.16l-1.06 3.29a1 1 0 0 0 1.23 1.16l3.41-.998a2 2 0 0 1 1.09.092 10 10 0 0 0 11.30-1.98\"></path><path d=\"M8.35 2.69A10 10 0 0 1 21.3 15.65\"></path>",
8273 categories = "social",
8274 tags = "comment,chat,conversation,dialog,feedback,speech bubble,clear,close,delete,remove,cancel,silence,mute,moderate",
8275 contributors = "danielbayley,jguddas,karsa-mistmere"
8276 ))]
8277 MessageCircleOff,
8278 #[cfg(feature = "social")]
8279 #[strum(props(
8280 svg = "<path d=\"M2.99 16.34a2 2 0 0 1 .094 1.16l-1.06 3.29a1 1 0 0 0 1.23 1.16l3.41-.998a2 2 0 0 1 1.09.092 10 10 0 1 0-4.77-4.71\"></path><path d=\"M8 12h8\"></path><path d=\"M12 8v8\"></path>",
8281 categories = "social",
8282 tags = "comment,chat,conversation,dialog,feedback,speech bubble,add",
8283 contributors = "danielbayley,jguddas,karsa-mistmere"
8284 ))]
8285 MessageCirclePlus,
8286 #[cfg(feature = "social")]
8287 #[strum(props(
8288 svg = "<path d=\"M2.99 16.34a2 2 0 0 1 .094 1.16l-1.06 3.29a1 1 0 0 0 1.23 1.16l3.41-.998a2 2 0 0 1 1.09.092 10 10 0 1 0-4.77-4.71\"></path><path d=\"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3\"></path><path d=\"M12 17h.01\"></path>",
8289 categories = "social",
8290 tags = "comment,chat,conversation,dialog,feedback,speech bubble,help",
8291 contributors = "danielbayley,jguddas,karsa-mistmere"
8292 ))]
8293 MessageCircleQuestionMark,
8294 #[cfg(feature = "social")]
8295 #[strum(props(
8296 svg = "<path d=\"M2.99 16.34a2 2 0 0 1 .094 1.16l-1.06 3.29a1 1 0 0 0 1.23 1.16l3.41-.998a2 2 0 0 1 1.09.092 10 10 0 1 0-4.77-4.71\"></path><path d=\"m10 15-3-3 3-3\"></path><path d=\"M7 12h8a2 2 0 0 1 2 2v1\"></path>",
8297 categories = "social",
8298 tags = "comment,chat,conversation,dialog,feedback,speech bubble,reply,response",
8299 contributors = "danielbayley,jguddas,karsa-mistmere"
8300 ))]
8301 MessageCircleReply,
8302 #[cfg(any(feature = "social", feature = "notifications"))]
8303 #[strum(props(
8304 svg = "<path d=\"M2.99 16.34a2 2 0 0 1 .094 1.16l-1.06 3.29a1 1 0 0 0 1.23 1.16l3.41-.998a2 2 0 0 1 1.09.092 10 10 0 1 0-4.77-4.71\"></path><path d=\"M12 8v4\"></path><path d=\"M12 16h.01\"></path>",
8305 categories = "social,notifications",
8306 tags = "comment,chat,conversation,dialog,feedback,speech bubble,report,abuse,offense,alert,danger,caution,protected,exclamation mark",
8307 contributors = "danielbayley,jguddas,karsa-mistmere"
8308 ))]
8309 MessageCircleWarning,
8310 #[cfg(any(feature = "account", feature = "social"))]
8311 #[strum(props(
8312 svg = "<path d=\"M2.99 16.34a2 2 0 0 1 .094 1.16l-1.06 3.29a1 1 0 0 0 1.23 1.16l3.41-.998a2 2 0 0 1 1.09.092 10 10 0 1 0-4.77-4.71\"></path><path d=\"m15 9-6 6\"></path><path d=\"m9 9 6 6\"></path>",
8313 categories = "account,social",
8314 tags = "comment,chat,conversation,dialog,feedback,speech bubble,clear,close,delete,remove,cancel,silence,mute,moderate",
8315 contributors = "danielbayley,jguddas,karsa-mistmere"
8316 ))]
8317 MessageCircleX,
8318 #[cfg(feature = "social")]
8319 #[strum(props(
8320 svg = "<path d=\"M2.99 16.34a2 2 0 0 1 .094 1.16l-1.06 3.29a1 1 0 0 0 1.23 1.16l3.41-.998a2 2 0 0 1 1.09.092 10 10 0 1 0-4.77-4.71\"></path>",
8321 categories = "social",
8322 tags = "comment,chat,conversation,dialog,feedback,speech bubble",
8323 contributors = "colebemis,csandman,ericfennis,jguddas,karsa-mistmere"
8324 ))]
8325 MessageCircle,
8326 #[cfg(any(feature = "social", feature = "account"))]
8327 #[strum(props(
8328 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.7.7 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path><path d=\"m9 11 2 2 4-4\"></path>",
8329 categories = "social,account",
8330 tags = "comment,chat,conversation,dialog,feedback,speech bubble,moderate,check,done,todo,complete",
8331 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
8332 ))]
8333 MessageSquareCheck,
8334 #[cfg(any(feature = "development", feature = "social"))]
8335 #[strum(props(
8336 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path><path d=\"m10 8-3 3 3 3\"></path><path d=\"m14 14 3-3-3-3\"></path>",
8337 categories = "development,social",
8338 tags = "comment,chat,conversation,dialog,feedback,speech bubble,code review,coding",
8339 contributors = "danielbayley,karsa-mistmere"
8340 ))]
8341 MessageSquareCode,
8342 #[cfg(feature = "social")]
8343 #[strum(props(
8344 svg = "<path d=\"M14 3h2\"></path><path d=\"M16 19h-2\"></path><path d=\"M2 12v-2\"></path><path d=\"M2 16v5.28a.71.71 0 0 0 1.21.502l1.14-1.14\"></path><path d=\"M20 19a2 2 0 0 0 2-2v-1\"></path><path d=\"M22 10v2\"></path><path d=\"M22 6V5a2 2 0 0 0-2-2\"></path><path d=\"M4 3a2 2 0 0 0-2 2v1\"></path><path d=\"M8 19h2\"></path><path d=\"M8 3h2\"></path>",
8345 categories = "social",
8346 tags = "comment,chat,conversation,dialog,feedback,speech bubble,draft",
8347 contributors = "danielbayley,jguddas,karsa-mistmere"
8348 ))]
8349 MessageSquareDashed,
8350 #[cfg(any(feature = "development", feature = "files", feature = "social"))]
8351 #[strum(props(
8352 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path><path d=\"M10 15h4\"></path><path d=\"M10 9h4\"></path><path d=\"M12 7v4\"></path>",
8353 categories = "development,files,social",
8354 tags = "comment,chat,conversation,dialog,feedback,speech bubble,add,patch,difference,plus,minus,plus-minus,math,code review,coding,version control,git",
8355 contributors = "danielbayley,karsa-mistmere"
8356 ))]
8357 MessageSquareDiff,
8358 #[cfg(any(feature = "social", feature = "notifications"))]
8359 #[strum(props(
8360 svg = "<path d=\"M12.7 3H4a2 2 0 0 0-2 2v16.28a.71.71 0 0 0 1.21.502l2.20-2.20A2 2 0 0 1 6.82 19H20a2 2 0 0 0 2-2v-4.7\"></path><circle cx=\"19\" cy=\"6\" r=\"3\"></circle>",
8361 categories = "social,notifications",
8362 tags = "unread,unresolved,comment,chat,conversation,dialog,feedback,speech bubble",
8363 contributors = "danielbayley,karsa-mistmere"
8364 ))]
8365 MessageSquareDot,
8366 #[cfg(feature = "social")]
8367 #[strum(props(
8368 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path><path d=\"M7.5 9.5c0 .687.26 1.38.697 1.84l3.00 3.26a1.14 1.14 0 0 0 .407.31 1 1 0 0 0 .783-.004 1.14 1.14 0 0 0 .398-.31l3.00-3.26A2.77 2.77 0 0 0 16.5 9.5 2.5 2.5 0 0 0 12 8a2.5 2.5 0 0 0-4.5 1.5\"></path>",
8369 categories = "social",
8370 tags = "comment,chat,conversation,dialog,feedback,positive,like,love,interest,valentine,dating,date,speech bubble",
8371 contributors = "danielbayley,karsa-mistmere"
8372 ))]
8373 MessageSquareHeart,
8374 #[cfg(feature = "social")]
8375 #[strum(props(
8376 svg = "<path d=\"M22 8.5V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v16.28a.71.71 0 0 0 1.21.502l2.20-2.20A2 2 0 0 1 6.82 19H10\"></path><path d=\"M20 15v-2a2 2 0 0 0-4 0v2\"></path><rect height=\"5\" rx=\"1\" width=\"8\" x=\"14\" y=\"15\"></rect>",
8377 categories = "social",
8378 tags = "comment,chat,conversation,dialog,feedback,speech bubble,secure,encrypted",
8379 contributors = "colebemis,csandman,ericfennis,jguddas,karsa-mistmere"
8380 ))]
8381 MessageSquareLock,
8382 #[cfg(feature = "social")]
8383 #[strum(props(
8384 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path><path d=\"M12 11h.01\"></path><path d=\"M16 11h.01\"></path><path d=\"M8 11h.01\"></path>",
8385 categories = "social",
8386 tags = "comment,chat,conversation,dialog,feedback,speech bubble,typing,writing,responding,ellipsis,etc,et cetera,...,…",
8387 contributors = "danielbayley,karsa-mistmere"
8388 ))]
8389 MessageSquareMore,
8390 #[cfg(feature = "social")]
8391 #[strum(props(
8392 svg = "<path d=\"M19 19H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.7.7 0 0 1 2 21.28V5a2 2 0 0 1 1.18-1.82\"></path><path d=\"m2 2 20 20\"></path><path d=\"M8.65 3H20a2 2 0 0 1 2 2v11.34\"></path>",
8393 categories = "social",
8394 tags = "comment,chat,conversation,dialog,feedback,speech bubble,clear,close,delete,remove,cancel,silence,mute,moderate",
8395 contributors = "danielbayley,karsa-mistmere"
8396 ))]
8397 MessageSquareOff,
8398 #[cfg(feature = "social")]
8399 #[strum(props(
8400 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path><path d=\"M12 8v6\"></path><path d=\"M9 11h6\"></path>",
8401 categories = "social",
8402 tags = "comment,chat,conversation,dialog,feedback,speech bubble,add",
8403 contributors = "danielbayley,karsa-mistmere"
8404 ))]
8405 MessageSquarePlus,
8406 #[cfg(any(feature = "social", feature = "text"))]
8407 #[strum(props(
8408 svg = "<path d=\"M14 14a2 2 0 0 0 2-2V8h-2\"></path><path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path><path d=\"M8 14a2 2 0 0 0 2-2V8H8\"></path>",
8409 categories = "social,text",
8410 tags = "comment,chat,conversation,dialog,feedback,speech bubble,blockquote,quotation,indent,reply,response",
8411 contributors = "danielbayley,karsa-mistmere,jguddas"
8412 ))]
8413 MessageSquareQuote,
8414 #[cfg(feature = "social")]
8415 #[strum(props(
8416 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path><path d=\"m10 8-3 3 3 3\"></path><path d=\"M17 14v-1a2 2 0 0 0-2-2H7\"></path>",
8417 categories = "social",
8418 tags = "comment,chat,conversation,dialog,feedback,speech bubble,reply,response",
8419 contributors = "danielbayley,karsa-mistmere"
8420 ))]
8421 MessageSquareReply,
8422 #[cfg(feature = "social")]
8423 #[strum(props(
8424 svg = "<path d=\"M12 3H4a2 2 0 0 0-2 2v16.28a.71.71 0 0 0 1.21.502l2.20-2.20A2 2 0 0 1 6.82 19H20a2 2 0 0 0 2-2v-4\"></path><path d=\"M16 3h6v6\"></path><path d=\"m16 9 6-6\"></path>",
8425 categories = "social",
8426 tags = "comment,chat,conversation,dialog,feedback,speech bubble,network,forward",
8427 contributors = "danielbayley,karsa-mistmere"
8428 ))]
8429 MessageSquareShare,
8430 #[cfg(feature = "social")]
8431 #[strum(props(
8432 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path><path d=\"M7 11h10\"></path><path d=\"M7 15h6\"></path><path d=\"M7 7h8\"></path>",
8433 categories = "social",
8434 tags = "comment,chat,conversation,dialog,feedback,speech bubble",
8435 contributors = "danielbayley,karsa-mistmere"
8436 ))]
8437 MessageSquareText,
8438 #[cfg(any(feature = "social", feature = "notifications"))]
8439 #[strum(props(
8440 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path><path d=\"M12 15h.01\"></path><path d=\"M12 7v4\"></path>",
8441 categories = "social,notifications",
8442 tags = "comment,chat,conversation,dialog,feedback,speech bubble,report,abuse,offense,alert,danger,caution,protected,exclamation mark",
8443 contributors = "danielbayley,karsa-mistmere"
8444 ))]
8445 MessageSquareWarning,
8446 #[cfg(feature = "social")]
8447 #[strum(props(
8448 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path><path d=\"m14.5 8.5-5 5\"></path><path d=\"m9.5 8.5 5 5\"></path>",
8449 categories = "social",
8450 tags = "comment,chat,conversation,dialog,feedback,speech bubble,clear,close,delete,remove,cancel,silence,mute,moderate",
8451 contributors = "danielbayley,karsa-mistmere"
8452 ))]
8453 MessageSquareX,
8454 #[cfg(feature = "social")]
8455 #[strum(props(
8456 svg = "<path d=\"M22 17a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 21.28V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z\"></path>",
8457 categories = "social",
8458 tags = "comment,chat,conversation,dialog,feedback,speech bubble",
8459 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
8460 ))]
8461 MessageSquare,
8462 #[cfg(feature = "social")]
8463 #[strum(props(
8464 svg = "<path d=\"M16 10a2 2 0 0 1-2 2H6.82a2 2 0 0 0-1.41.586l-2.20 2.20A.71.71 0 0 1 2 14.28V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z\"></path><path d=\"M20 9a2 2 0 0 1 2 2v10.28a.71.71 0 0 1-1.21.502l-2.20-2.20A2 2 0 0 0 17.17 19H10a2 2 0 0 1-2-2v-1\"></path>",
8465 categories = "social",
8466 tags = "comment,chat,conversation,dialog,feedback,speech bubbles,copy,multiple,discussion,interview,debate",
8467 contributors = "danielbayley,karsa-mistmere"
8468 ))]
8469 MessagesSquare,
8470 #[cfg(any(feature = "multimedia", feature = "time"))]
8471 #[strum(props(
8472 svg = "<path d=\"M12 11.4V9.1\"></path><path d=\"m12 17 6.59-6.59\"></path><path d=\"m15.05 5.7-.218-.691a3 3 0 0 0-5.66 0L4.41 19.69A1 1 0 0 0 5.37 21h13.25a1 1 0 0 0 .951-1.31L18.45 16.2\"></path><circle cx=\"20\" cy=\"9\" r=\"2\"></circle>",
8473 categories = "multimedia,time",
8474 tags = "metronome,tempo,rhythm,beat,bpm,music,audio,sound,practice,timing,timer,time,pulse,sync,cadence,control,playback,studio,tool",
8475 contributors = "jguddas,edwloef"
8476 ))]
8477 Metronome,
8478 #[cfg(any(
8479 feature = "devices",
8480 feature = "communication",
8481 feature = "connectivity",
8482 feature = "multimedia"
8483 ))]
8484 #[strum(props(
8485 svg = "<path d=\"M12 19v3\"></path><path d=\"M15 9.34V5a3 3 0 0 0-5.68-1.33\"></path><path d=\"M16.95 16.95A7 7 0 0 1 5 12v-2\"></path><path d=\"M18.89 13.23A7 7 0 0 0 19 12v-2\"></path><path d=\"m2 2 20 20\"></path><path d=\"M9 9v3a3 3 0 0 0 5.12 2.12\"></path>",
8486 categories = "devices,communication,connectivity,multimedia",
8487 tags = "record,sound,mute,microphone",
8488 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,LieOnLion"
8489 ))]
8490 MicOff,
8491 #[cfg(any(feature = "devices", feature = "multimedia"))]
8492 #[strum(props(
8493 svg = "<path d=\"m11 7.60-5.99 8.19a1 1 0 0 0 .1 1.29l.817.81a1 1 0 0 0 1.31.087L15.09 12\"></path><path d=\"M16.5 21.17C15.5 20.5 14.37 20 13 20c-2.05 0-3.92 2.35-6 2-2.07-.356-2.77-3.36-1.5-4.5\"></path><circle cx=\"16\" cy=\"7\" r=\"5\"></circle>",
8494 categories = "devices,multimedia",
8495 tags = "lyrics,voice,listen,sound,music,radio,podcast,karaoke,singing,microphone",
8496 contributors = "jguddas"
8497 ))]
8498 MicVocal,
8499 #[cfg(any(
8500 feature = "devices",
8501 feature = "communication",
8502 feature = "connectivity",
8503 feature = "multimedia"
8504 ))]
8505 #[strum(props(
8506 svg = "<path d=\"M12 19v3\"></path><path d=\"M19 10v2a7 7 0 0 1-14 0v-2\"></path><rect height=\"13\" rx=\"3\" width=\"6\" x=\"9\" y=\"2\"></rect>",
8507 categories = "devices,communication,connectivity,multimedia",
8508 tags = "record,sound,listen,radio,podcast,microphone",
8509 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
8510 ))]
8511 Mic,
8512 #[cfg(feature = "devices")]
8513 #[strum(props(
8514 svg = "<path d=\"M10 12h4\"></path><path d=\"M10 17h4\"></path><path d=\"M10 7h4\"></path><path d=\"M18 12h2\"></path><path d=\"M18 18h2\"></path><path d=\"M18 6h2\"></path><path d=\"M4 12h2\"></path><path d=\"M4 18h2\"></path><path d=\"M4 6h2\"></path><rect height=\"20\" rx=\"2\" width=\"12\" x=\"6\" y=\"2\"></rect>",
8515 categories = "devices",
8516 tags = "processor,cores,technology,computer,chip,integrated circuit,memory,ram,specs,gpu,gigahertz,ghz",
8517 contributors = "karsa-mistmere,colebemis,ericfennis"
8518 ))]
8519 Microchip,
8520 #[cfg(any(feature = "science", feature = "medical"))]
8521 #[strum(props(
8522 svg = "<path d=\"M6 18h8\"></path><path d=\"M3 22h18\"></path><path d=\"M14 22a7 7 0 1 0 0-14h-1\"></path><path d=\"M9 14h2\"></path><path d=\"M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z\"></path><path d=\"M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3\"></path>",
8523 categories = "science,medical",
8524 tags = "medical,education,science,imaging,research",
8525 contributors = "karsa-mistmere,jguddas"
8526 ))]
8527 Microscope,
8528 #[cfg(any(feature = "food_beverage", feature = "home"))]
8529 #[strum(props(
8530 svg = "<rect height=\"15\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect><rect height=\"7\" rx=\"1\" width=\"8\" x=\"6\" y=\"8\"></rect><path d=\"M18 8v7\"></path><path d=\"M6 19v2\"></path><path d=\"M18 19v2\"></path>",
8531 categories = "food-beverage,home",
8532 tags = "oven,cooker,toaster oven,bake",
8533 contributors = "karsa-mistmere,ericfennis"
8534 ))]
8535 Microwave,
8536 #[cfg(any(
8537 feature = "arrows",
8538 feature = "navigation",
8539 feature = "development",
8540 feature = "gaming"
8541 ))]
8542 #[strum(props(
8543 svg = "<path d=\"M12 13v8\"></path><path d=\"M12 3v3\"></path><path d=\"M18.17 6a2 2 0 0 1 1.41.586l2.06 2.06a1.20 1.20 0 0 1 0 1.70l-2.06 2.06a2 2 0 0 1-1.41.586H4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1z\"></path>",
8544 categories = "arrows,navigation,development,gaming",
8545 tags = "signpost,direction,right,east,forward,version control,waypoint",
8546 contributors = "karsa-mistmere,jguddas"
8547 ))]
8548 Milestone,
8549 #[cfg(feature = "food_beverage")]
8550 #[strum(props(
8551 svg = "<path d=\"M8 2h8\"></path><path d=\"M9 2v1.34M15 2v2.78a4 4 0 0 0 .672 2.21l.656.98a4 4 0 0 1 .672 2.22v1.13M7.8 7.8l-.128.19A4 4 0 0 0 7 10.21V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3\"></path><path d=\"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 3.43.435\"></path><line x1=\"2\" x2=\"22\" y1=\"2\" y2=\"22\"></line>",
8552 categories = "food-beverage",
8553 tags = "lactose free,bottle,beverage,drink,water,allergy,intolerance,diet",
8554 contributors = "karsa-mistmere,ericfennis"
8555 ))]
8556 MilkOff,
8557 #[cfg(feature = "food_beverage")]
8558 #[strum(props(
8559 svg = "<path d=\"M8 2h8\"></path><path d=\"M9 2v2.78a4 4 0 0 1-.672 2.21l-.656.98A4 4 0 0 0 7 10.21V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.78a4 4 0 0 0-.672-2.21l-.656-.984A4 4 0 0 1 15 4.78V2\"></path><path d=\"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0\"></path>",
8560 categories = "food-beverage",
8561 tags = "lactose,bottle,beverage,drink,water,diet",
8562 contributors = "karsa-mistmere"
8563 ))]
8564 Milk,
8565 #[cfg(any(feature = "arrows", feature = "layout", feature = "design"))]
8566 #[strum(props(
8567 svg = "<path d=\"m14 10 7-7\"></path><path d=\"M20 10h-6V4\"></path><path d=\"m3 21 7-7\"></path><path d=\"M4 14h6v6\"></path>",
8568 categories = "arrows,layout,design",
8569 tags = "exit fullscreen,arrows,close,shrink",
8570 contributors = "colebemis,ericfennis"
8571 ))]
8572 Minimize2,
8573 #[cfg(any(feature = "layout", feature = "design"))]
8574 #[strum(props(
8575 svg = "<path d=\"M8 3v3a2 2 0 0 1-2 2H3\"></path><path d=\"M21 8h-3a2 2 0 0 1-2-2V3\"></path><path d=\"M3 16h3a2 2 0 0 1 2 2v3\"></path><path d=\"M16 21v-3a2 2 0 0 1 2-2h3\"></path>",
8576 categories = "layout,design",
8577 tags = "exit fullscreen,close,shrink",
8578 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
8579 ))]
8580 Minimize,
8581 #[cfg(any(
8582 feature = "math",
8583 feature = "development",
8584 feature = "text",
8585 feature = "tools"
8586 ))]
8587 #[strum(props(
8588 svg = "<path d=\"M5 12h14\"></path>",
8589 categories = "math,development,text,tools",
8590 tags = "subtract,remove,decrease,decrement,reduce,negative,calculate,line,divider,separator,horizontal rule,hr,html,markup,markdown,---,toolbar,operator,code,coding,minimum,downgrade",
8591 contributors = "colebemis,ericfennis"
8592 ))]
8593 Minus,
8594 #[cfg(any(feature = "science", feature = "home", feature = "tools"))]
8595 #[strum(props(
8596 svg = "<path d=\"M11 6 8 9\"></path><path d=\"m16 7-8 8\"></path><rect height=\"20\" rx=\"2\" width=\"16\" x=\"4\" y=\"2\"></rect>",
8597 categories = "science,home,tools",
8598 tags = "reflection,optics,glass,surface,image,physics,science,bathroom,decor,cosmetic,shiny,periscope,vanity",
8599 contributors = "Muhammad-Aqib-Bashir,jamiemlaw,karsa-mistmere"
8600 ))]
8601 MirrorRectangular,
8602 #[cfg(any(feature = "science", feature = "home", feature = "tools"))]
8603 #[strum(props(
8604 svg = "<path d=\"M10 6.6 8.6 8\"></path><path d=\"M12 18v4\"></path><path d=\"M15 7.5 9.5 13\"></path><path d=\"M7 22h10\"></path><circle cx=\"12\" cy=\"10\" r=\"8\"></circle>",
8605 categories = "science,home,tools",
8606 tags = "reflection,optics,glass,surface,image,physics,science,bathroom,vanity,makeup,decor,cosmetic,shiny,periscope",
8607 contributors = "Muhammad-Aqib-Bashir,jamiemlaw,karsa-mistmere"
8608 ))]
8609 MirrorRound,
8610 #[cfg(any(feature = "connectivity", feature = "devices"))]
8611 #[strum(props(
8612 svg = "<path d=\"m9 10 2 2 4-4\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect><path d=\"M12 17v4\"></path><path d=\"M8 21h8\"></path>",
8613 categories = "connectivity,devices",
8614 tags = "tv,screen,display,desktop,running,active,virtual machine,vm",
8615 contributors = "danielbayley,jguddas,karsa-mistmere"
8616 ))]
8617 MonitorCheck,
8618 #[cfg(any(feature = "connectivity", feature = "devices", feature = "development"))]
8619 #[strum(props(
8620 svg = "<path d=\"M11 13a3 3 0 1 1 2.83-4H14a2 2 0 0 1 0 4z\"></path><path d=\"M12 17v4\"></path><path d=\"M8 21h8\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect>",
8621 categories = "connectivity,devices,development",
8622 tags = "virtual machine,virtual desktop,vm,vdi,computing,remote work,monitoring,infrastructure,software as a service,saas,workstation,environment,tv,screen,display",
8623 contributors = "colebemis,ericfennis,danielbayley,jguddas,karsa-mistmere"
8624 ))]
8625 MonitorCloud,
8626 #[cfg(any(feature = "connectivity", feature = "devices"))]
8627 #[strum(props(
8628 svg = "<path d=\"M12 17v4\"></path><path d=\"m14.30 7.53.92-.382\"></path><path d=\"m15.22 4.85-.923-.383\"></path><path d=\"m16.85 3.22-.383-.924\"></path><path d=\"m16.85 8.77-.383.92\"></path><path d=\"m19.14 3.22.383-.924\"></path><path d=\"m19.53 9.69-.382-.924\"></path><path d=\"m20.77 4.85.924-.383\"></path><path d=\"m20.77 7.14.924.38\"></path><path d=\"M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7\"></path><path d=\"M8 21h8\"></path><circle cx=\"18\" cy=\"6\" r=\"3\"></circle>",
8629 categories = "connectivity,devices",
8630 tags = "tv,screen,display,virtual machine,vm,executable,settings,cog,edit,gear,configuration,preferences,system,control panel,network,computing",
8631 contributors = "karsa-mistmere,colebemis,UsamaKhan"
8632 ))]
8633 MonitorCog,
8634 #[cfg(any(feature = "connectivity", feature = "devices"))]
8635 #[strum(props(
8636 svg = "<path d=\"M12 17v4\"></path><path d=\"M22 12.30V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.69\"></path><path d=\"M8 21h8\"></path><circle cx=\"19\" cy=\"6\" r=\"3\"></circle>",
8637 categories = "connectivity,devices",
8638 tags = "tv,screen,display,desktop,running,active,virtual machine,vm",
8639 contributors = "danielbayley,jguddas,karsa-mistmere"
8640 ))]
8641 MonitorDot,
8642 #[cfg(any(feature = "connectivity", feature = "devices"))]
8643 #[strum(props(
8644 svg = "<path d=\"M12 13V7\"></path><path d=\"m15 10-3 3-3-3\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect><path d=\"M12 17v4\"></path><path d=\"M8 21h8\"></path>",
8645 categories = "connectivity,devices",
8646 tags = "tv,screen,display,desktop,download",
8647 contributors = "danielbayley,karsa-mistmere,jguddas"
8648 ))]
8649 MonitorDown,
8650 #[cfg(any(feature = "connectivity", feature = "devices"))]
8651 #[strum(props(
8652 svg = "<path d=\"M12 17v4\"></path><path d=\"M17 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 1.18-1.82\"></path><path d=\"m2 2 20 20\"></path><path d=\"M8 21h8\"></path><path d=\"M8.65 3H20a2 2 0 0 1 2 2v10a2 2 0 0 1-.293 1.04\"></path>",
8653 categories = "connectivity,devices",
8654 tags = "share",
8655 contributors = "yukosgiti,ericfennis,csandman"
8656 ))]
8657 MonitorOff,
8658 #[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
8659 #[strum(props(
8660 svg = "<path d=\"M10 13V7\"></path><path d=\"M14 13V7\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect><path d=\"M12 17v4\"></path><path d=\"M8 21h8\"></path>",
8661 categories = "connectivity,devices,multimedia",
8662 tags = "tv,screen,display,desktop,video,movie,film,suspend,hibernate,boot,virtual machine,vm",
8663 contributors = "danielbayley,jguddas,karsa-mistmere"
8664 ))]
8665 MonitorPause,
8666 #[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
8667 #[strum(props(
8668 svg = "<path d=\"M15.03 9.44a.647.64 0 0 1 0 1.12l-4.06 2.35a.645.64 0 0 1-.968-.56V7.64a.645.64 0 0 1 .967-.56z\"></path><path d=\"M12 17v4\"></path><path d=\"M8 21h8\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect>",
8669 categories = "connectivity,devices,multimedia",
8670 tags = "tv,screen,display,desktop,video,movie,film,running,start,boot,virtual machine,vm",
8671 contributors = "danielbayley,jguddas,karsa-mistmere"
8672 ))]
8673 MonitorPlay,
8674 #[cfg(any(feature = "connectivity", feature = "devices"))]
8675 #[strum(props(
8676 svg = "<path d=\"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8\"></path><path d=\"M10 19v-3.96 3.15\"></path><path d=\"M7 19h5\"></path><rect height=\"10\" rx=\"2\" width=\"6\" x=\"16\" y=\"12\"></rect>",
8677 categories = "connectivity,devices",
8678 tags = "smartphone,phone,cellphone,device,mobile,desktop,monitor,responsive,screens",
8679 contributors = "badraxas,karsa-mistmere,jguddas,ericfennis"
8680 ))]
8681 MonitorSmartphone,
8682 #[cfg(any(feature = "connectivity", feature = "devices"))]
8683 #[strum(props(
8684 svg = "<path d=\"M5.5 20H8\"></path><path d=\"M17 9h.01\"></path><rect height=\"16\" rx=\"2\" width=\"10\" x=\"12\" y=\"4\"></rect><path d=\"M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4\"></path><circle cx=\"17\" cy=\"15\" r=\"1\"></circle>",
8685 categories = "connectivity,devices",
8686 tags = "devices,connect,cast",
8687 contributors = "mittalyashu,ericfennis"
8688 ))]
8689 MonitorSpeaker,
8690 #[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
8691 #[strum(props(
8692 svg = "<path d=\"M12 17v4\"></path><path d=\"M8 21h8\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect><rect height=\"6\" rx=\"1\" width=\"6\" x=\"9\" y=\"7\"></rect>",
8693 categories = "connectivity,devices,multimedia",
8694 tags = "tv,screen,display,desktop,video,movie,film,stop,shutdown,virtual machine,vm",
8695 contributors = "danielbayley,jguddas,karsa-mistmere"
8696 ))]
8697 MonitorStop,
8698 #[cfg(any(feature = "connectivity", feature = "devices"))]
8699 #[strum(props(
8700 svg = "<path d=\"m9 10 3-3 3 3\"></path><path d=\"M12 13V7\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect><path d=\"M12 17v4\"></path><path d=\"M8 21h8\"></path>",
8701 categories = "connectivity,devices",
8702 tags = "tv,screen,display,upload,connect,remote,screen share",
8703 contributors = "danielbayley,karsa-mistmere,jguddas"
8704 ))]
8705 MonitorUp,
8706 #[cfg(any(feature = "connectivity", feature = "devices"))]
8707 #[strum(props(
8708 svg = "<path d=\"m14.5 12.5-5-5\"></path><path d=\"m9.5 12.5 5-5\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect><path d=\"M12 17v4\"></path><path d=\"M8 21h8\"></path>",
8709 categories = "connectivity,devices",
8710 tags = "tv,screen,display,desktop,virtual machine,vm,close,stop,suspend,remove,delete",
8711 contributors = "danielbayley,jguddas,karsa-mistmere"
8712 ))]
8713 MonitorX,
8714 #[cfg(any(feature = "connectivity", feature = "devices"))]
8715 #[strum(props(
8716 svg = "<rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect><line x1=\"8\" x2=\"16\" y1=\"21\" y2=\"21\"></line><line x1=\"12\" x2=\"12\" y1=\"17\" y2=\"21\"></line>",
8717 categories = "connectivity,devices",
8718 tags = "tv,screen,display,virtual machine,vm",
8719 contributors = "colebemis,ericfennis,danielbayley,jguddas,karsa-mistmere"
8720 ))]
8721 Monitor,
8722 #[cfg(any(feature = "accessibility", feature = "weather"))]
8723 #[strum(props(
8724 svg = "<path d=\"M18 5h4\"></path><path d=\"M20 3v4\"></path><path d=\"M20.98 12.48a9 9 0 1 1-9.47-9.47c.405-.022.61.46.40.803a6 6 0 0 0 8.26 8.26c.344-.215.82-.004.80.401\"></path>",
8725 categories = "accessibility,weather",
8726 tags = "dark,night,star",
8727 contributors = "karsa-mistmere"
8728 ))]
8729 MoonStar,
8730 #[cfg(feature = "accessibility")]
8731 #[strum(props(
8732 svg = "<path d=\"M20.98 12.48a9 9 0 1 1-9.47-9.47c.405-.022.61.46.40.803a6 6 0 0 0 8.26 8.26c.344-.215.82-.004.80.401\"></path>",
8733 categories = "accessibility",
8734 tags = "dark,night",
8735 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
8736 ))]
8737 Moon,
8738 #[cfg(feature = "transportation")]
8739 #[strum(props(
8740 svg = "<path d=\"m18 14-1-3\"></path><path d=\"m3 9 6 2a2 2 0 0 1 2-2h2a2 2 0 0 1 1.99 1.81\"></path><path d=\"M8 17h3a1 1 0 0 0 1-1 6 6 0 0 1 6-6 1 1 0 0 0 1-1v-.75A5 5 0 0 0 17 5\"></path><circle cx=\"19\" cy=\"17\" r=\"3\"></circle><circle cx=\"5\" cy=\"17\" r=\"3\"></circle>",
8741 categories = "transportation",
8742 tags = "moto,motorcycle,transport,vehicle,drive,ride,trip,race,racing,journey,delivery",
8743 contributors = "jamiemlaw"
8744 ))]
8745 Motorbike,
8746 #[cfg(feature = "nature")]
8747 #[strum(props(
8748 svg = "<path d=\"m8 3 4 8 5-5 5 15H2L8 3z\"></path><path d=\"M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19\"></path>",
8749 categories = "nature",
8750 tags = "alpine,climb,snow",
8751 contributors = "kerkeslager,ericfennis"
8752 ))]
8753 MountainSnow,
8754 #[cfg(any(feature = "nature", feature = "gaming"))]
8755 #[strum(props(
8756 svg = "<path d=\"m8 3 4 8 5-5 5 15H2L8 3z\"></path>",
8757 categories = "nature,gaming",
8758 tags = "climb,hike,rock",
8759 contributors = "kerkeslager,ericfennis,danielbayley,karsa-mistmere"
8760 ))]
8761 Mountain,
8762 #[cfg(feature = "devices")]
8763 #[strum(props(
8764 svg = "<path d=\"M12 7.31V10\"></path><path d=\"M5 10v5a7 7 0 0 0 14 0V9c0-3.52-2.60-6.51-6-7\"></path><circle cx=\"7\" cy=\"4\" r=\"2\"></circle>",
8765 categories = "devices",
8766 tags = "device,scroll,click",
8767 contributors = "mittalyashu,ericfennis,karsa-mistmere,marvfash"
8768 ))]
8769 MouseLeft,
8770 #[cfg(feature = "devices")]
8771 #[strum(props(
8772 svg = "<path d=\"M12 6v.343\"></path><path d=\"M18.21 18.21A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.21\"></path><path d=\"M19 13.34V9A7 7 0 0 0 8.56 2.90\"></path><path d=\"M22 22 2 2\"></path>",
8773 categories = "devices",
8774 tags = "device,scroll,click,disabled",
8775 contributors = "karsa-mistmere,mittalyashu,ericfennis"
8776 ))]
8777 MouseOff,
8778 #[cfg(any(feature = "arrows", feature = "cursors"))]
8779 #[strum(props(
8780 svg = "<path d=\"m15.55 8.45 5.13 2.08a.5.5 0 0 1-.063.94l-6.12 1.58a2 2 0 0 0-1.43 1.43l-1.57 6.12a.5.5 0 0 1-.947.06L8.45 15.55\"></path><path d=\"M22 2 2 22\"></path><path d=\"m6.81 11.52-2.77-6.84a.495.49 0 0 1 .651-.651l6.84 2.77\"></path>",
8781 categories = "arrows,cursors",
8782 tags = "pointer,mouse,cursor,off,disable,arrow,navigation,selection,select,click,no-click,interaction",
8783 contributors = "ericfennis,csandman,domingasp,jguddas"
8784 ))]
8785 MousePointer2Off,
8786 #[cfg(any(feature = "arrows", feature = "cursors"))]
8787 #[strum(props(
8788 svg = "<path d=\"M4.03 4.68a.495.49 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.94l-6.12 1.58a2 2 0 0 0-1.43 1.43l-1.57 6.12a.5.5 0 0 1-.947.06z\"></path>",
8789 categories = "arrows,cursors",
8790 tags = "click,select",
8791 contributors = "ericfennis,csandman"
8792 ))]
8793 MousePointer2,
8794 #[cfg(any(feature = "arrows", feature = "cursors"))]
8795 #[strum(props(
8796 svg = "<path d=\"M2.03 2.68a.498.49 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.94L8.20 7.54a1 1 0 0 0-.66.66l-1.06 3.44a.5.5 0 0 1-.944.03z\"></path><circle cx=\"16\" cy=\"16\" r=\"6\"></circle><path d=\"m11.8 11.8 8.4 8.4\"></path>",
8797 categories = "arrows,cursors",
8798 tags = "wait,busy,loading,blocked,frozen,freeze",
8799 contributors = "danielbayley"
8800 ))]
8801 MousePointerBan,
8802 #[cfg(any(feature = "arrows", feature = "cursors"))]
8803 #[strum(props(
8804 svg = "<path d=\"M14 4.1 12 6\"></path><path d=\"m5.1 8-2.9-.8\"></path><path d=\"m6 12-1.9 2\"></path><path d=\"M7.2 2.2 8 5.1\"></path><path d=\"M9.03 9.69a.498.49 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.94l-4.34 1.04a1 1 0 0 0-.74.73l-1.04 4.35a.5.5 0 0 1-.95.07z\"></path>",
8805 categories = "arrows,cursors",
8806 tags = "click,select",
8807 contributors = "mittalyashu,ericfennis,jguddas"
8808 ))]
8809 MousePointerClick,
8810 #[cfg(any(feature = "arrows", feature = "cursors"))]
8811 #[strum(props(
8812 svg = "<path d=\"M12.58 12.58 19 19\"></path><path d=\"M3.68 3.03a.497.49 0 0 0-.651.65l6.5 15.99a.501.50 0 0 0 .947-.062l1.56-6.08a2 2 0 0 1 1.44-1.47l6.12-1.57a.5.5 0 0 0 .063-.947z\"></path>",
8813 categories = "arrows,cursors",
8814 tags = "click,select",
8815 contributors = "ashygee,ericfennis"
8816 ))]
8817 MousePointer,
8818 #[cfg(feature = "devices")]
8819 #[strum(props(
8820 svg = "<path d=\"M12 7.31V10\"></path><path d=\"M19 10v5a7 7 0 0 1-14 0V9c0-3.52 2.60-6.51 6-7\"></path><circle cx=\"17\" cy=\"4\" r=\"2\"></circle>",
8821 categories = "devices",
8822 tags = "device,scroll,click",
8823 contributors = "mittalyashu,ericfennis,karsa-mistmere,marvfash"
8824 ))]
8825 MouseRight,
8826 #[cfg(feature = "devices")]
8827 #[strum(props(
8828 svg = "<rect height=\"20\" rx=\"7\" width=\"14\" x=\"5\" y=\"2\"></rect><path d=\"M12 6v4\"></path>",
8829 categories = "devices",
8830 tags = "device,scroll,click",
8831 contributors = "mittalyashu,ericfennis,karsa-mistmere"
8832 ))]
8833 Mouse,
8834 #[cfg(feature = "design")]
8835 #[strum(props(
8836 svg = "<path d=\"M5 3v16h16\"></path><path d=\"m5 19 6-6\"></path><path d=\"m2 6 3-3 3 3\"></path><path d=\"m18 16 3 3-3 3\"></path>",
8837 categories = "design",
8838 tags = "arrows,axis,gizmo,coordinates,transform,translate",
8839 contributors = "lscheibel,ericfennis"
8840 ))]
8841 Move3D,
8842 #[cfg(any(feature = "arrows", feature = "cursors"))]
8843 #[strum(props(
8844 svg = "<path d=\"M19 13v6h-6\"></path><path d=\"M5 11V5h6\"></path><path d=\"m5 5 14 14\"></path>",
8845 categories = "arrows,cursors",
8846 tags = "double,arrow",
8847 contributors = "ericfennis"
8848 ))]
8849 MoveDiagonal2,
8850 #[cfg(any(feature = "arrows", feature = "cursors"))]
8851 #[strum(props(
8852 svg = "<path d=\"M11 19H5v-6\"></path><path d=\"M13 5h6v6\"></path><path d=\"M19 5 5 19\"></path>",
8853 categories = "arrows,cursors",
8854 tags = "double,arrow",
8855 contributors = "ericfennis"
8856 ))]
8857 MoveDiagonal,
8858 #[cfg(feature = "arrows")]
8859 #[strum(props(
8860 svg = "<path d=\"M11 19H5V13\"></path><path d=\"M19 5L5 19\"></path>",
8861 categories = "arrows",
8862 tags = "arrow,direction",
8863 contributors = "siarie,ericfennis,karsa-mistmere,jonas-hoebenreich"
8864 ))]
8865 MoveDownLeft,
8866 #[cfg(feature = "arrows")]
8867 #[strum(props(
8868 svg = "<path d=\"M19 13V19H13\"></path><path d=\"M5 5L19 19\"></path>",
8869 categories = "arrows",
8870 tags = "arrow,direction",
8871 contributors = "jonas-hoebenreich"
8872 ))]
8873 MoveDownRight,
8874 #[cfg(feature = "arrows")]
8875 #[strum(props(
8876 svg = "<path d=\"M8 18L12 22L16 18\"></path><path d=\"M12 2V22\"></path>",
8877 categories = "arrows",
8878 tags = "arrow,direction,downwards,south",
8879 contributors = "jonas-hoebenreich"
8880 ))]
8881 MoveDown,
8882 #[cfg(any(feature = "arrows", feature = "cursors"))]
8883 #[strum(props(
8884 svg = "<path d=\"m18 8 4 4-4 4\"></path><path d=\"M2 12h20\"></path><path d=\"m6 8-4 4 4 4\"></path>",
8885 categories = "arrows,cursors",
8886 tags = "double,arrow",
8887 contributors = "ericfennis,csandman"
8888 ))]
8889 MoveHorizontal,
8890 #[cfg(feature = "arrows")]
8891 #[strum(props(
8892 svg = "<path d=\"M6 8L2 12L6 16\"></path><path d=\"M2 12H22\"></path>",
8893 categories = "arrows",
8894 tags = "arrow,direction,back,west",
8895 contributors = "jonas-hoebenreich"
8896 ))]
8897 MoveLeft,
8898 #[cfg(feature = "arrows")]
8899 #[strum(props(
8900 svg = "<path d=\"M18 8L22 12L18 16\"></path><path d=\"M2 12H22\"></path>",
8901 categories = "arrows",
8902 tags = "arrow,direction,trend flat,east",
8903 contributors = "jonas-hoebenreich"
8904 ))]
8905 MoveRight,
8906 #[cfg(feature = "arrows")]
8907 #[strum(props(
8908 svg = "<path d=\"M5 11V5H11\"></path><path d=\"M5 5L19 19\"></path>",
8909 categories = "arrows",
8910 tags = "arrow,direction",
8911 contributors = "jonas-hoebenreich"
8912 ))]
8913 MoveUpLeft,
8914 #[cfg(feature = "arrows")]
8915 #[strum(props(
8916 svg = "<path d=\"M13 5H19V11\"></path><path d=\"M19 5L5 19\"></path>",
8917 categories = "arrows",
8918 tags = "arrow,direction",
8919 contributors = "jonas-hoebenreich"
8920 ))]
8921 MoveUpRight,
8922 #[cfg(feature = "arrows")]
8923 #[strum(props(
8924 svg = "<path d=\"M8 6L12 2L16 6\"></path><path d=\"M12 2V22\"></path>",
8925 categories = "arrows",
8926 tags = "arrow,direction,upwards,north",
8927 contributors = "jonas-hoebenreich"
8928 ))]
8929 MoveUp,
8930 #[cfg(any(feature = "arrows", feature = "cursors"))]
8931 #[strum(props(
8932 svg = "<path d=\"M12 2v20\"></path><path d=\"m8 18 4 4 4-4\"></path><path d=\"m8 6 4-4 4 4\"></path>",
8933 categories = "arrows,cursors",
8934 tags = "double,arrow",
8935 contributors = "ericfennis"
8936 ))]
8937 MoveVertical,
8938 #[cfg(any(feature = "arrows", feature = "cursors"))]
8939 #[strum(props(
8940 svg = "<path d=\"M12 2v20\"></path><path d=\"m15 19-3 3-3-3\"></path><path d=\"m19 9 3 3-3 3\"></path><path d=\"M2 12h20\"></path><path d=\"m5 9-3 3 3 3\"></path><path d=\"m9 5 3-3 3 3\"></path>",
8941 categories = "arrows,cursors",
8942 tags = "arrows",
8943 contributors = "colebemis,ericfennis"
8944 ))]
8945 Move,
8946 #[cfg(any(feature = "multimedia", feature = "files"))]
8947 #[strum(props(
8948 svg = "<circle cx=\"8\" cy=\"18\" r=\"4\"></circle><path d=\"M12 18V2l7 4\"></path>",
8949 categories = "multimedia,files",
8950 tags = "quaver,eighth note,note",
8951 contributors = "it-is-not,danielbayley,karsa-mistmere"
8952 ))]
8953 Music2,
8954 #[cfg(any(feature = "multimedia", feature = "files"))]
8955 #[strum(props(
8956 svg = "<circle cx=\"12\" cy=\"18\" r=\"4\"></circle><path d=\"M16 18V2\"></path>",
8957 categories = "multimedia,files",
8958 tags = "crotchet,minim,quarter note,half note,note",
8959 contributors = "it-is-not,danielbayley,karsa-mistmere"
8960 ))]
8961 Music3,
8962 #[cfg(any(feature = "multimedia", feature = "files"))]
8963 #[strum(props(
8964 svg = "<path d=\"M9 18V5l12-2v13\"></path><path d=\"m9 9 12-2\"></path><circle cx=\"6\" cy=\"18\" r=\"3\"></circle><circle cx=\"18\" cy=\"16\" r=\"3\"></circle>",
8965 categories = "multimedia,files",
8966 tags = "semiquaver,sixteenth note,note",
8967 contributors = "it-is-not,karsa-mistmere"
8968 ))]
8969 Music4,
8970 #[cfg(any(feature = "multimedia", feature = "files"))]
8971 #[strum(props(
8972 svg = "<path d=\"M9 18V5l12-2v13\"></path><circle cx=\"6\" cy=\"18\" r=\"3\"></circle><circle cx=\"18\" cy=\"16\" r=\"3\"></circle>",
8973 categories = "multimedia,files",
8974 tags = "note,quaver,eighth note",
8975 contributors = "colebemis,csandman,mittalyashu,ericfennis"
8976 ))]
8977 Music,
8978 #[cfg(feature = "navigation")]
8979 #[strum(props(
8980 svg = "<path d=\"M9.31 9.31 5 21l7-4 7 4-1.17-3.17\"></path><path d=\"M14.53 8.88 12 2l-1.17 3.17\"></path><line x1=\"2\" x2=\"22\" y1=\"2\" y2=\"22\"></line>",
8981 categories = "navigation",
8982 tags = "location,travel",
8983 contributors = "karsa-mistmere,ericfennis"
8984 ))]
8985 Navigation2Off,
8986 #[cfg(feature = "navigation")]
8987 #[strum(props(
8988 svg = "<polygon points=\"12 2 19 21 12 17 5 21 12 2\"></polygon>",
8989 categories = "navigation",
8990 tags = "location,travel",
8991 contributors = "colebemis"
8992 ))]
8993 Navigation2,
8994 #[cfg(feature = "navigation")]
8995 #[strum(props(
8996 svg = "<path d=\"M8.43 8.43 3 11l8 2 2 8 2.57-5.43\"></path><path d=\"M17.39 11.73 22 2l-9.73 4.61\"></path><line x1=\"2\" x2=\"22\" y1=\"2\" y2=\"22\"></line>",
8997 categories = "navigation",
8998 tags = "location,travel",
8999 contributors = "karsa-mistmere,ericfennis"
9000 ))]
9001 NavigationOff,
9002 #[cfg(feature = "navigation")]
9003 #[strum(props(
9004 svg = "<polygon points=\"3 11 22 2 13 21 11 13 3 11\"></polygon>",
9005 categories = "navigation",
9006 tags = "location,travel",
9007 contributors = "colebemis"
9008 ))]
9009 Navigation,
9010 #[cfg(feature = "development")]
9011 #[strum(props(
9012 svg = "<rect height=\"6\" rx=\"1\" width=\"6\" x=\"16\" y=\"16\"></rect><rect height=\"6\" rx=\"1\" width=\"6\" x=\"2\" y=\"16\"></rect><rect height=\"6\" rx=\"1\" width=\"6\" x=\"9\" y=\"2\"></rect><path d=\"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3\"></path><path d=\"M12 12V8\"></path>",
9013 categories = "development",
9014 tags = "tree",
9015 contributors = "ericfennis,johnletey,csandman,karsa-mistmere"
9016 ))]
9017 Network,
9018 #[cfg(any(feature = "multimedia", feature = "communication"))]
9019 #[strum(props(
9020 svg = "<path d=\"M15 18h-5\"></path><path d=\"M18 14h-8\"></path><path d=\"M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2\"></path><rect height=\"4\" rx=\"1\" width=\"8\" x=\"10\" y=\"6\"></rect>",
9021 categories = "multimedia,communication",
9022 tags = "news,feed,home,magazine,article,headline",
9023 contributors = "ericfennis,jguddas,karsa-mistmere"
9024 ))]
9025 Newspaper,
9026 #[cfg(any(feature = "communication", feature = "finance", feature = "devices"))]
9027 #[strum(props(
9028 svg = "<path d=\"M6 8.32a7.43 7.43 0 0 1 0 7.36\"></path><path d=\"M9.46 6.21a11.76 11.76 0 0 1 0 11.58\"></path><path d=\"M12.91 4.1a15.91 15.91 0 0 1 .01 15.8\"></path><path d=\"M16.37 2a20.16 20.16 0 0 1 0 20\"></path>",
9029 categories = "communication,finance,devices",
9030 tags = "contactless,payment,near-field communication",
9031 contributors = "karsa-mistmere,jguddas,ericfennis"
9032 ))]
9033 Nfc,
9034 #[cfg(feature = "medical")]
9035 #[strum(props(
9036 svg = "<path d=\"M12 2v10\"></path><path d=\"m8.5 4 7 4\"></path><path d=\"m8.5 8 7-4\"></path><circle cx=\"12\" cy=\"17\" r=\"5\"></circle>",
9037 categories = "medical",
9038 tags = "gender,nonbinary,enby",
9039 contributors = "jamiemlaw"
9040 ))]
9041 NonBinary,
9042 #[cfg(any(feature = "text", feature = "social"))]
9043 #[strum(props(
9044 svg = "<path d=\"M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4\"></path><path d=\"M2 6h4\"></path><path d=\"M2 10h4\"></path><path d=\"M2 14h4\"></path><path d=\"M2 18h4\"></path><path d=\"M21.37 5.62a1 1 0 1 0-3.00-3.00l-5.01 5.01a2 2 0 0 0-.506.85l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z\"></path>",
9045 categories = "text,social",
9046 tags = "pencil,notepad,notes,noted,stationery,sketchbook,organizer,organiser,planner,diary,journal,writing,write,written,reading,high school,university,college,academy,student,study,research,homework,eraser,rubber",
9047 contributors = "danielbayley"
9048 ))]
9049 NotebookPen,
9050 #[cfg(any(feature = "account", feature = "communication", feature = "social"))]
9051 #[strum(props(
9052 svg = "<path d=\"M2 6h4\"></path><path d=\"M2 10h4\"></path><path d=\"M2 14h4\"></path><path d=\"M2 18h4\"></path><rect height=\"20\" rx=\"2\" width=\"16\" x=\"4\" y=\"2\"></rect><path d=\"M15 2v20\"></path><path d=\"M15 7h5\"></path><path d=\"M15 12h5\"></path><path d=\"M15 17h5\"></path>",
9053 categories = "account,communication,social",
9054 tags = "notepad,notes,people,family,friends,acquaintances,contacts,details,addresses,phone numbers,directory,listing,networking,alphabetical,a-z,organizer,organiser,planner,diary,stationery",
9055 contributors = "danielbayley"
9056 ))]
9057 NotebookTabs,
9058 #[cfg(any(feature = "text", feature = "social"))]
9059 #[strum(props(
9060 svg = "<path d=\"M2 6h4\"></path><path d=\"M2 10h4\"></path><path d=\"M2 14h4\"></path><path d=\"M2 18h4\"></path><rect height=\"20\" rx=\"2\" width=\"16\" x=\"4\" y=\"2\"></rect><path d=\"M9.5 8h5\"></path><path d=\"M9.5 12H16\"></path><path d=\"M9.5 16H14\"></path>",
9061 categories = "text,social",
9062 tags = "notepad,notes,pages,paper,stationery,sketchbook,organizer,organiser,planner,diary,journal,writing,write,written,reading,high school,university,college,academy,student,study,research,homework,lines,opened",
9063 contributors = "danielbayley"
9064 ))]
9065 NotebookText,
9066 #[cfg(any(
9067 feature = "text",
9068 feature = "communication",
9069 feature = "social",
9070 feature = "design"
9071 ))]
9072 #[strum(props(
9073 svg = "<path d=\"M2 6h4\"></path><path d=\"M2 10h4\"></path><path d=\"M2 14h4\"></path><path d=\"M2 18h4\"></path><rect height=\"20\" rx=\"2\" width=\"16\" x=\"4\" y=\"2\"></rect><path d=\"M16 2v20\"></path>",
9074 categories = "text,communication,social,design",
9075 tags = "notepad,notes,stationery,sketchbook,moleskine,closure,strap,band,elastic,organizer,organiser,planner,diary,journal,writing,written,writer,reading,high school,university,college,academy,student,study,homework,research",
9076 contributors = "danielbayley"
9077 ))]
9078 Notebook,
9079 #[cfg(any(feature = "text", feature = "social"))]
9080 #[strum(props(
9081 svg = "<path d=\"M8 2v4\"></path><path d=\"M12 2v4\"></path><path d=\"M16 2v4\"></path><path d=\"M16 4h2a2 2 0 0 1 2 2v2\"></path><path d=\"M20 12v2\"></path><path d=\"M20 18v2a2 2 0 0 1-2 2h-1\"></path><path d=\"M13 22h-2\"></path><path d=\"M7 22H6a2 2 0 0 1-2-2v-2\"></path><path d=\"M4 14v-2\"></path><path d=\"M4 8V6a2 2 0 0 1 2-2h2\"></path><path d=\"M8 10h6\"></path><path d=\"M8 14h8\"></path><path d=\"M8 18h5\"></path>",
9082 categories = "text,social",
9083 tags = "notebook,notes,pages,paper,stationery,diary,journal,writing,write,written,draft,template,lines",
9084 contributors = "danielbayley"
9085 ))]
9086 NotepadTextDashed,
9087 #[cfg(any(feature = "text", feature = "social"))]
9088 #[strum(props(
9089 svg = "<path d=\"M8 2v4\"></path><path d=\"M12 2v4\"></path><path d=\"M16 2v4\"></path><rect height=\"18\" rx=\"2\" width=\"16\" x=\"4\" y=\"4\"></rect><path d=\"M8 10h6\"></path><path d=\"M8 14h8\"></path><path d=\"M8 18h5\"></path>",
9090 categories = "text,social",
9091 tags = "notebook,notes,pages,paper,stationery,sketchbook,organizer,organiser,planner,diary,journal,writing,write,written,reading,high school,university,college,academy,student,study,homework,research,lines,opened",
9092 contributors = "danielbayley"
9093 ))]
9094 NotepadText,
9095 #[cfg(feature = "food_beverage")]
9096 #[strum(props(
9097 svg = "<path d=\"M12 4V2\"></path><path d=\"M5 10v4a7.00 7.00 0 0 0 5.27 6.78c.412.10.802.29 1.10.592L12 22l.621-.621c.3-.3.69-.488 1.10-.592a7.01 7.01 0 0 0 4.12-2.93\"></path><path d=\"M19 10v3.34\"></path><path d=\"M12 12c-1.34-.573-1.90-1.00-2.5-2-.546.90-1.04 1.35-2.5 2-1.01-.644-1.46-1.08-2-2-1.02.71-1.69.91-3 1 1.08-1.04 1.75-2.03 2-3 .194-.776.84-1.55 1.79-2.21m11.65 5.99c.887-.457 1.28-.891 1.55-1.78 1.03.916 1.68 1.15 3 1-1.29-1.03-1.75-2.03-2-3-.5-2-4-4-8-4-.74 0-1.46.068-2.15.19\"></path><line x1=\"2\" x2=\"22\" y1=\"2\" y2=\"22\"></line>",
9098 categories = "food-beverage",
9099 tags = "hazelnut,acorn,food,allergy,intolerance,diet",
9100 contributors = "karsa-mistmere,ericfennis"
9101 ))]
9102 NutOff,
9103 #[cfg(feature = "food_beverage")]
9104 #[strum(props(
9105 svg = "<path d=\"M12 4V2\"></path><path d=\"M5 10v4a7.00 7.00 0 0 0 5.27 6.78c.412.10.802.29 1.10.592L12 22l.621-.621c.3-.3.69-.488 1.10-.592A7.00 7.00 0 0 0 19 14v-4\"></path><path d=\"M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.95-2 3 1.31-.082 1.97-.29 3-1 .54.92.98 1.35 2 2 1.45-.647 1.95-1.09 2.5-2 .595.99 1.15 1.42 2.5 2 1.31-.621 1.86-1.05 2.5-2 .629.97 1.16 1.42 2.5 2 1.20-.548 1.68-.967 2-2 1.03.916 1.68 1.15 3 1-1.29-1.03-1.75-2.03-2-3-.5-2-4-4-8-4Z\"></path>",
9106 categories = "food-beverage",
9107 tags = "hazelnut,acorn,food,diet",
9108 contributors = "karsa-mistmere"
9109 ))]
9110 Nut,
9111 #[cfg(any(feature = "notifications", feature = "shapes"))]
9112 #[strum(props(
9113 svg = "<path d=\"M12 16h.01\"></path><path d=\"M12 8v4\"></path><path d=\"M15.31 2a2 2 0 0 1 1.41.586l4.68 4.68A2 2 0 0 1 22 8.68v6.62a2 2 0 0 1-.586 1.41l-4.68 4.68a2 2 0 0 1-1.41.586H8.68a2 2 0 0 1-1.41-.586l-4.68-4.68A2 2 0 0 1 2 15.31V8.68a2 2 0 0 1 .586-1.41l4.68-4.68A2 2 0 0 1 8.68 2z\"></path>",
9114 categories = "notifications,shapes",
9115 tags = "warning,alert,danger,exclamation mark",
9116 contributors = "colebemis,ericfennis,jguddas"
9117 ))]
9118 OctagonAlert,
9119 #[cfg(feature = "transportation")]
9120 #[strum(props(
9121 svg = "<path d=\"M2.58 16.72A2 2 0 0 1 2 15.31V8.68a2 2 0 0 1 .586-1.41l4.68-4.68A2 2 0 0 1 8.68 2h6.62a2 2 0 0 1 1.41.586l4.68 4.68A2 2 0 0 1 22 8.68v6.62a2 2 0 0 1-.586 1.41l-4.68 4.68a2 2 0 0 1-1.41.586H8.68a2 2 0 0 1-1.41-.586z\"></path><path d=\"M8 12h8\"></path>",
9122 categories = "transportation",
9123 tags = "stop,forbidden,subtract,remove,decrease,reduce,-,traffic,halt,restricted",
9124 contributors = "colebemis,jguddas"
9125 ))]
9126 OctagonMinus,
9127 #[cfg(any(feature = "multimedia", feature = "shapes"))]
9128 #[strum(props(
9129 svg = "<path d=\"M10 15V9\"></path><path d=\"M14 15V9\"></path><path d=\"M2.58 16.72A2 2 0 0 1 2 15.31V8.68a2 2 0 0 1 .586-1.41l4.68-4.68A2 2 0 0 1 8.68 2h6.62a2 2 0 0 1 1.41.586l4.68 4.68A2 2 0 0 1 22 8.68v6.62a2 2 0 0 1-.586 1.41l-4.68 4.68a2 2 0 0 1-1.41.586H8.68a2 2 0 0 1-1.41-.586z\"></path>",
9130 categories = "multimedia,shapes",
9131 tags = "music,audio,stop",
9132 contributors = "mittalyashu,jguddas"
9133 ))]
9134 OctagonPause,
9135 #[cfg(any(feature = "math", feature = "notifications"))]
9136 #[strum(props(
9137 svg = "<path d=\"m15 9-6 6\"></path><path d=\"M2.58 16.72A2 2 0 0 1 2 15.31V8.68a2 2 0 0 1 .586-1.41l4.68-4.68A2 2 0 0 1 8.68 2h6.62a2 2 0 0 1 1.41.586l4.68 4.68A2 2 0 0 1 22 8.68v6.62a2 2 0 0 1-.586 1.41l-4.68 4.68a2 2 0 0 1-1.41.586H8.68a2 2 0 0 1-1.41-.586z\"></path><path d=\"m9 9 6 6\"></path>",
9138 categories = "math,notifications",
9139 tags = "delete,stop,alert,warning,times,clear,math",
9140 contributors = "colebemis,ericfennis"
9141 ))]
9142 OctagonX,
9143 #[cfg(feature = "shapes")]
9144 #[strum(props(
9145 svg = "<path d=\"M2.58 16.72A2 2 0 0 1 2 15.31V8.68a2 2 0 0 1 .586-1.41l4.68-4.68A2 2 0 0 1 8.68 2h6.62a2 2 0 0 1 1.41.586l4.68 4.68A2 2 0 0 1 22 8.68v6.62a2 2 0 0 1-.586 1.41l-4.68 4.68a2 2 0 0 1-1.41.586H8.68a2 2 0 0 1-1.41-.586z\"></path>",
9146 categories = "shapes",
9147 tags = "stop,shape",
9148 contributors = "colebemis,jguddas"
9149 ))]
9150 Octagon,
9151 #[cfg(any(
9152 feature = "math",
9153 feature = "development",
9154 feature = "text",
9155 feature = "science"
9156 ))]
9157 #[strum(props(
9158 svg = "<path d=\"M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.49-.001.52.52 0 0 0-.247.43v.282a.5.5 0 0 0 .5.5H21\"></path>",
9159 categories = "math,development,text,science",
9160 tags = "greek,symbol,mathematics,education,physics,engineering,ohms,electrical resistance,angular frequency,dynamical systems,astronomy,constellations,philosophy",
9161 contributors = "karsa-mistmere"
9162 ))]
9163 Omega,
9164 #[cfg(feature = "development")]
9165 #[strum(props(
9166 svg = "<path d=\"M3 3h6l6 18h6\"></path><path d=\"M14 3h7\"></path>",
9167 categories = "development",
9168 tags = "keyboard,key,mac,alt,button",
9169 contributors = "mittalyashu,danielbayley,karsa-mistmere"
9170 ))]
9171 Option,
9172 #[cfg(feature = "science")]
9173 #[strum(props(
9174 svg = "<path d=\"M20.34 6.48A10 10 0 0 1 10.26 21.85\"></path><path d=\"M3.65 17.51A10 10 0 0 1 13.74 2.15\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle><circle cx=\"19\" cy=\"5\" r=\"2\"></circle><circle cx=\"5\" cy=\"19\" r=\"2\"></circle>",
9175 categories = "science",
9176 tags = "planet,space,physics,satellites,moons",
9177 contributors = "danielbayley,jguddas,karsa-mistmere"
9178 ))]
9179 Orbit,
9180 #[cfg(any(feature = "animals", feature = "design"))]
9181 #[strum(props(
9182 svg = "<path d=\"M12 12V4a1 1 0 0 1 1-1h6.29a1 1 0 0 1 .651 1.75l-4.69 4.02\"></path><path d=\"m12 21-7.41-7.41A2 2 0 0 1 4 12.17V6.41a1.00 1.00 0 0 1 1.70-.707L20 20.00\"></path><path d=\"m12.21 3.38 8.41 14.96a1 1 0 0 1-.167 1.19l-1.16 1.16a1 1 0 0 1-.706.29H6.35a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.78l4.16.027\"></path>",
9183 categories = "animals,design",
9184 tags = "paper,bird",
9185 contributors = "gurtt"
9186 ))]
9187 Origami,
9188 #[cfg(any(feature = "files", feature = "development"))]
9189 #[strum(props(
9190 svg = "<path d=\"M12 3v6\"></path><path d=\"M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.47a2 2 0 0 1 .21.89V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.47a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z\"></path><path d=\"M3.05 9.01h17.89\"></path>",
9191 categories = "files,development",
9192 tags = "box,container,storage,sealed,packed,unopened,undelivered,archive,zip",
9193 contributors = "karsa-mistmere,ericfennis,jguddas"
9194 ))]
9195 Package2,
9196 #[cfg(feature = "development")]
9197 #[strum(props(
9198 svg = "<path d=\"M12 22V12\"></path><path d=\"m16 17 2 2 4-4\"></path><path d=\"M21 11.12V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.72l7 4a2 2 0 0 0 2 .001l1.32-.753\"></path><path d=\"M3.29 7 12 12l8.71-5\"></path><path d=\"m7.5 4.27 8.99 5.14\"></path>",
9199 categories = "development",
9200 tags = "confirm,verified,done,todo,tick,complete,task,delivered",
9201 contributors = "Reund0,ericfennis,karsa-mistmere"
9202 ))]
9203 PackageCheck,
9204 #[cfg(feature = "development")]
9205 #[strum(props(
9206 svg = "<path d=\"M12 22V12\"></path><path d=\"M16 17h6\"></path><path d=\"M21 13V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.72l7 4a2 2 0 0 0 2 .001l1.67-.955\"></path><path d=\"M3.29 7 12 12l8.71-5\"></path><path d=\"m7.5 4.27 8.99 5.14\"></path>",
9207 categories = "development",
9208 tags = "delete,remove",
9209 contributors = "Reund0,ericfennis,karsa-mistmere"
9210 ))]
9211 PackageMinus,
9212 #[cfg(any(feature = "files", feature = "development"))]
9213 #[strum(props(
9214 svg = "<path d=\"M12 22v-9\"></path><path d=\"M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.65 1.65 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z\"></path><path d=\"M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13\"></path><path d=\"M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.63 1.63 0 0 0 1.63 0z\"></path>",
9215 categories = "files,development",
9216 tags = "box,container,storage,unpack,unarchive,unzip,opened,delivered",
9217 contributors = "karsa-mistmere,ericfennis"
9218 ))]
9219 PackageOpen,
9220 #[cfg(feature = "development")]
9221 #[strum(props(
9222 svg = "<path d=\"M12 22V12\"></path><path d=\"M16 17h6\"></path><path d=\"M19 14v6\"></path><path d=\"M21 10.53V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.72l7 4a2 2 0 0 0 2 .001l1.67-.955\"></path><path d=\"M3.29 7 12 12l8.71-5\"></path><path d=\"m7.5 4.27 8.99 5.14\"></path>",
9223 categories = "development",
9224 tags = "new,add,create",
9225 contributors = "Reund0,ericfennis,karsa-mistmere"
9226 ))]
9227 PackagePlus,
9228 #[cfg(any(feature = "files", feature = "development"))]
9229 #[strum(props(
9230 svg = "<path d=\"M12 22V12\"></path><path d=\"M20.27 18.27 22 20\"></path><path d=\"M21 10.49V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.72l7 4a2 2 0 0 0 2 .001l.98-.559\"></path><path d=\"M3.29 7 12 12l8.71-5\"></path><path d=\"m7.5 4.27 8.99 5.14\"></path><circle cx=\"18.5\" cy=\"16.5\" r=\"2.5\"></circle>",
9231 categories = "files,development",
9232 tags = "find,product process,lens",
9233 contributors = "Reund0,ericfennis,karsa-mistmere"
9234 ))]
9235 PackageSearch,
9236 #[cfg(feature = "development")]
9237 #[strum(props(
9238 svg = "<path d=\"M12 22V12\"></path><path d=\"m16.5 14.5 5 5\"></path><path d=\"m16.5 19.5 5-5\"></path><path d=\"M21 10.5V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.72l7 4a2 2 0 0 0 2 .001l.13-.074\"></path><path d=\"M3.29 7 12 12l8.71-5\"></path><path d=\"m7.5 4.27 8.99 5.14\"></path>",
9239 categories = "development",
9240 tags = "delete,remove",
9241 contributors = "Reund0,ericfennis,karsa-mistmere"
9242 ))]
9243 PackageX,
9244 #[cfg(any(feature = "files", feature = "development"))]
9245 #[strum(props(
9246 svg = "<path d=\"M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z\"></path><path d=\"M12 22V12\"></path><polyline points=\"3.29 7 12 12 20.71 7\"></polyline><path d=\"m7.5 4.27 9 5.15\"></path>",
9247 categories = "files,development",
9248 tags = "box,container,storage,sealed,delivery,undelivered,unopened,packed,archive,zip,module",
9249 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,danielbayley,jguddas,sezze"
9250 ))]
9251 Package,
9252 #[cfg(any(feature = "design", feature = "tools"))]
9253 #[strum(props(
9254 svg = "<path d=\"M11 7 6 2\"></path><path d=\"M18.99 12H2.04\"></path><path d=\"M21.14 18.38A3.34 3.34 0 0 1 20 16.5a3.3 3.3 0 0 1-1.14 1.88c-.575.46-.855 1.02-.855 1.59A2 2 0 0 0 20 22a2 2 0 0 0 2-2.02c0-.58-.285-1.13-.855-1.59\"></path><path d=\"m8.5 4.5 2.14-2.14a1.20 1.20 0 0 1 1.70 0l7.29 7.29a1.20 1.20 0 0 1 0 1.70l-7.59 7.59a3.61 3.61 0 0 1-5.11 0l-3.88-3.88a3.61 3.61 0 0 1 0-5.11L5.67 7.33\"></path>",
9255 categories = "design,tools",
9256 tags = "fill,paint,bucket,color,colour",
9257 contributors = "karsa-mistmere,jguddas"
9258 ))]
9259 PaintBucket,
9260 #[cfg(any(
9261 feature = "text",
9262 feature = "design",
9263 feature = "home",
9264 feature = "tools"
9265 ))]
9266 #[strum(props(
9267 svg = "<rect height=\"6\" rx=\"2\" width=\"16\" x=\"2\" y=\"2\"></rect><path d=\"M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2\"></path><rect height=\"6\" rx=\"1\" width=\"4\" x=\"8\" y=\"16\"></rect>",
9268 categories = "text,design,home,tools",
9269 tags = "brush,color,colour,decoration,diy",
9270 contributors = "danielbayley,karsa-mistmere"
9271 ))]
9272 PaintRoller,
9273 #[cfg(any(
9274 feature = "text",
9275 feature = "design",
9276 feature = "photography",
9277 feature = "home",
9278 feature = "tools"
9279 ))]
9280 #[strum(props(
9281 svg = "<path d=\"M10 2v2\"></path><path d=\"M14 2v4\"></path><path d=\"M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z\"></path><path d=\"M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1\"></path>",
9282 categories = "text,design,photography,home,tools",
9283 tags = "brush,paintbrush,design,color,colour,decoration,diy",
9284 contributors = "karsa-mistmere,ericfennis"
9285 ))]
9286 PaintbrushVertical,
9287 #[cfg(any(
9288 feature = "text",
9289 feature = "design",
9290 feature = "photography",
9291 feature = "home",
9292 feature = "tools"
9293 ))]
9294 #[strum(props(
9295 svg = "<path d=\"m14.62 17.89-10.68-2.91\"></path><path d=\"M18.37 2.62a1 1 0 1 1 3.00 3.00L17.36 9.64a.5.5 0 0 0 0 .707l.944.94a2.41 2.41 0 0 1 0 3.40l-.944.94a.5.5 0 0 1-.707 0L8.35 7.34a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.40 0l.944.94a.5.5 0 0 0 .707 0z\"></path><path d=\"M9 8c-1.80 2.71-3.97 3.46-6.58 3.94a.507.50 0 0 0-.302.81l7.32 8.88a1 1 0 0 0 1.18.204C12.73 20.40 16 16.79 16 15\"></path>",
9296 categories = "text,design,photography,home,tools",
9297 tags = "brush,paintbrush,design,color,colour,decoration,diy",
9298 contributors = "karsa-mistmere"
9299 ))]
9300 Paintbrush,
9301 #[cfg(any(feature = "text", feature = "design", feature = "photography"))]
9302 #[strum(props(
9303 svg = "<path d=\"M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z\"></path><circle cx=\"13.5\" cy=\"6.5\" fill=\"currentColor\" r=\".5\"></circle><circle cx=\"17.5\" cy=\"10.5\" fill=\"currentColor\" r=\".5\"></circle><circle cx=\"6.5\" cy=\"12.5\" fill=\"currentColor\" r=\".5\"></circle><circle cx=\"8.5\" cy=\"7.5\" fill=\"currentColor\" r=\".5\"></circle>",
9304 categories = "text,design,photography",
9305 tags = "colors,colours,theme,scheme,paint,watercolor,watercolour,artist",
9306 contributors = "ericfennis,csandman,karsa-mistmere,jamiemlaw"
9307 ))]
9308 Palette,
9309 #[cfg(feature = "animals")]
9310 #[strum(props(
9311 svg = "<path d=\"M11.25 17.25h1.5L12 18z\"></path><path d=\"m15 12 2 2\"></path><path d=\"M18 6.5a.5.5 0 0 0-.5-.5\"></path><path d=\"M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83\"></path><path d=\"M6 6.5a.495.49 0 0 1 .5-.5\"></path><path d=\"m9 12-2 2\"></path>",
9312 categories = "animals",
9313 tags = "animal,wildlife,bear,zoo,bamboo",
9314 contributors = "chessurisme,karsa-mistmere"
9315 ))]
9316 Panda,
9317 #[cfg(any(feature = "layout", feature = "arrows"))]
9318 #[strum(props(
9319 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M3 15h18\"></path><path d=\"m15 8-3 3-3-3\"></path>",
9320 categories = "layout,arrows",
9321 tags = "drawer,dock,hide,chevron,down",
9322 contributors = "danielbayley,ericfennis"
9323 ))]
9324 PanelBottomClose,
9325 #[cfg(feature = "layout")]
9326 #[strum(props(
9327 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M14 15h1\"></path><path d=\"M19 15h2\"></path><path d=\"M3 15h2\"></path><path d=\"M9 15h1\"></path>",
9328 categories = "layout",
9329 tags = "drawer,dock,show,reveal,padding,margin,guide,layout,bleed",
9330 contributors = "danielbayley,ericfennis,irvineacosta"
9331 ))]
9332 PanelBottomDashed,
9333 #[cfg(any(feature = "layout", feature = "arrows"))]
9334 #[strum(props(
9335 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M3 15h18\"></path><path d=\"m9 10 3-3 3 3\"></path>",
9336 categories = "layout,arrows",
9337 tags = "drawer,dock,show,reveal,chevron,up",
9338 contributors = "danielbayley,ericfennis"
9339 ))]
9340 PanelBottomOpen,
9341 #[cfg(feature = "layout")]
9342 #[strum(props(
9343 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M3 15h18\"></path>",
9344 categories = "layout",
9345 tags = "drawer,dock",
9346 contributors = "danielbayley,ericfennis"
9347 ))]
9348 PanelBottom,
9349 #[cfg(any(feature = "layout", feature = "arrows"))]
9350 #[strum(props(
9351 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M9 3v18\"></path><path d=\"m16 15-3-3 3-3\"></path>",
9352 categories = "layout,arrows",
9353 tags = "primary,drawer,hide,chevron,<",
9354 contributors = "mittalyashu,danielbayley,ericfennis"
9355 ))]
9356 PanelLeftClose,
9357 #[cfg(feature = "layout")]
9358 #[strum(props(
9359 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M9 14v1\"></path><path d=\"M9 19v2\"></path><path d=\"M9 3v2\"></path><path d=\"M9 9v1\"></path>",
9360 categories = "layout",
9361 tags = "sidebar,primary,drawer,show,reveal,padding,margin,guide,layout,bleed",
9362 contributors = "danielbayley,ericfennis,irvineacosta"
9363 ))]
9364 PanelLeftDashed,
9365 #[cfg(any(feature = "layout", feature = "arrows"))]
9366 #[strum(props(
9367 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M9 3v18\"></path><path d=\"m14 9 3 3-3 3\"></path>",
9368 categories = "layout,arrows",
9369 tags = "primary,drawer,show,reveal,chevron,right,>",
9370 contributors = "mittalyashu,danielbayley,ericfennis"
9371 ))]
9372 PanelLeftOpen,
9373 #[cfg(feature = "layout")]
9374 #[strum(props(
9375 svg = "<path d=\"M15 10V9\"></path><path d=\"M15 15v-1\"></path><path d=\"M15 21v-2\"></path><path d=\"M15 5V3\"></path><path d=\"M9 10V9\"></path><path d=\"M9 15v-1\"></path><path d=\"M9 21v-2\"></path><path d=\"M9 5V3\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
9376 categories = "layout",
9377 tags = "sidebar,primary,drawer,show,reveal,padding,margin,guide,layout,vertical,bleed",
9378 contributors = "danielbayley,ericfennis,irvineacosta,jguddas"
9379 ))]
9380 PanelLeftRightDashed,
9381 #[cfg(feature = "layout")]
9382 #[strum(props(
9383 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M9 3v18\"></path>",
9384 categories = "layout",
9385 tags = "primary,drawer",
9386 contributors = "colebemis,danielbayley,ericfennis"
9387 ))]
9388 PanelLeft,
9389 #[cfg(any(feature = "layout", feature = "arrows"))]
9390 #[strum(props(
9391 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M15 3v18\"></path><path d=\"m8 9 3 3-3 3\"></path>",
9392 categories = "layout,arrows",
9393 tags = "sidebar,secondary,drawer,hide,chevron,>",
9394 contributors = "danielbayley,ericfennis"
9395 ))]
9396 PanelRightClose,
9397 #[cfg(feature = "layout")]
9398 #[strum(props(
9399 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M15 14v1\"></path><path d=\"M15 19v2\"></path><path d=\"M15 3v2\"></path><path d=\"M15 9v1\"></path>",
9400 categories = "layout",
9401 tags = "sidebar,secondary,drawer,show,reveal,padding,margin,guide,layout,bleed",
9402 contributors = "danielbayley,ericfennis,irvineacosta"
9403 ))]
9404 PanelRightDashed,
9405 #[cfg(any(feature = "layout", feature = "arrows"))]
9406 #[strum(props(
9407 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M15 3v18\"></path><path d=\"m10 15-3-3 3-3\"></path>",
9408 categories = "layout,arrows",
9409 tags = "sidebar,secondary,drawer,show,reveal,chevron,left,<",
9410 contributors = "danielbayley,ericfennis"
9411 ))]
9412 PanelRightOpen,
9413 #[cfg(feature = "layout")]
9414 #[strum(props(
9415 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M15 3v18\"></path>",
9416 categories = "layout",
9417 tags = "sidebar,secondary,drawer",
9418 contributors = "danielbayley,ericfennis"
9419 ))]
9420 PanelRight,
9421 #[cfg(feature = "layout")]
9422 #[strum(props(
9423 svg = "<path d=\"M14 15h1\"></path><path d=\"M14 9h1\"></path><path d=\"M19 15h2\"></path><path d=\"M19 9h2\"></path><path d=\"M3 15h2\"></path><path d=\"M3 9h2\"></path><path d=\"M9 15h1\"></path><path d=\"M9 9h1\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
9424 categories = "layout",
9425 tags = "sidebar,primary,drawer,show,reveal,padding,margin,guide,layout,horizontal,bleed",
9426 contributors = "danielbayley,ericfennis,irvineacosta,jguddas"
9427 ))]
9428 PanelTopBottomDashed,
9429 #[cfg(any(feature = "layout", feature = "arrows"))]
9430 #[strum(props(
9431 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M3 9h18\"></path><path d=\"m9 16 3-3 3 3\"></path>",
9432 categories = "layout,arrows",
9433 tags = "menu bar,drawer,hide,chevron,up",
9434 contributors = "danielbayley,ericfennis"
9435 ))]
9436 PanelTopClose,
9437 #[cfg(feature = "layout")]
9438 #[strum(props(
9439 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M14 9h1\"></path><path d=\"M19 9h2\"></path><path d=\"M3 9h2\"></path><path d=\"M9 9h1\"></path>",
9440 categories = "layout",
9441 tags = "menu bar,drawer,show,reveal,padding,margin,guide,layout,bleed",
9442 contributors = "danielbayley,ericfennis,irvineacosta"
9443 ))]
9444 PanelTopDashed,
9445 #[cfg(any(feature = "layout", feature = "arrows"))]
9446 #[strum(props(
9447 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M3 9h18\"></path><path d=\"m15 14-3 3-3-3\"></path>",
9448 categories = "layout,arrows",
9449 tags = "menu bar,drawer,show,reveal,chevron,down",
9450 contributors = "danielbayley,ericfennis"
9451 ))]
9452 PanelTopOpen,
9453 #[cfg(any(feature = "layout", feature = "design", feature = "development"))]
9454 #[strum(props(
9455 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M3 9h18\"></path>",
9456 categories = "layout,design,development",
9457 tags = "drawer,browser,webpage",
9458 contributors = "danielbayley,ericfennis"
9459 ))]
9460 PanelTop,
9461 #[cfg(feature = "layout")]
9462 #[strum(props(
9463 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M9 3v18\"></path><path d=\"M9 15h12\"></path>",
9464 categories = "layout",
9465 tags = "drawers,sidebar,primary",
9466 contributors = "danielbayley"
9467 ))]
9468 PanelsLeftBottom,
9469 #[cfg(feature = "layout")]
9470 #[strum(props(
9471 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M3 15h12\"></path><path d=\"M15 3v18\"></path>",
9472 categories = "layout",
9473 tags = "drawers,sidebar,secondary",
9474 contributors = "danielbayley"
9475 ))]
9476 PanelsRightBottom,
9477 #[cfg(any(feature = "layout", feature = "design", feature = "development"))]
9478 #[strum(props(
9479 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M3 9h18\"></path><path d=\"M9 21V9\"></path>",
9480 categories = "layout,design,development",
9481 tags = "menu bar,sidebar,primary,drawers,window,webpage,projects,overview",
9482 contributors = "colebemis,ericfennis"
9483 ))]
9484 PanelsTopLeft,
9485 #[cfg(any(
9486 feature = "text",
9487 feature = "design",
9488 feature = "files",
9489 feature = "mail"
9490 ))]
9491 #[strum(props(
9492 svg = "<path d=\"m16 6-8.41 8.58a2 2 0 0 0 2.82 2.82l8.41-8.58a4 4 0 1 0-5.65-5.65l-8.37 8.55a6 6 0 1 0 8.48 8.48l8.37-8.55\"></path>",
9493 categories = "text,design,files,mail",
9494 tags = "attachment,file",
9495 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,jguddas"
9496 ))]
9497 Paperclip,
9498 #[cfg(any(feature = "travel", feature = "weather"))]
9499 #[strum(props(
9500 svg = "<path d=\"M12.5 11.13 18.19 21\"></path><path d=\"M20.42 5.29a10 10 0 0 0-16.94 9.78c.183.56.843.77 1.35.478L20.16 6.71c.512-.296.66-.973.26-1.41\"></path><path d=\"M21 21H3\"></path>",
9501 categories = "travel,weather",
9502 tags = "umbrella,sunshade,beach,shade,sun,protection,cover,canopy,garden,outdoors,resort,travel,vacation,holiday,summer,apparel,accessory,sunbathing,relax,tropical",
9503 contributors = "karsa-mistmere"
9504 ))]
9505 Parasol,
9506 #[cfg(any(feature = "development", feature = "files", feature = "math"))]
9507 #[strum(props(
9508 svg = "<path d=\"M8 21s-4-3-4-9 4-9 4-9\"></path><path d=\"M16 3s4 3 4 9-4 9-4 9\"></path>",
9509 categories = "development,files,math",
9510 tags = "code,token,parenthesis,parens,brackets,parameters,arguments,args,input,call,math,formula,function,(,)",
9511 contributors = "danielbayley,karsa-mistmere"
9512 ))]
9513 Parentheses,
9514 #[cfg(any(feature = "transportation", feature = "navigation"))]
9515 #[strum(props(
9516 svg = "<path d=\"M11 15h2\"></path><path d=\"M12 12v3\"></path><path d=\"M12 19v3\"></path><path d=\"M15.28 19a1 1 0 0 0 .948-.68l2.37-6.98a7 7 0 1 0-13.2 0l2.37 6.98a1 1 0 0 0 .948.68z\"></path><path d=\"M9 9a3 3 0 1 1 6 0\"></path>",
9517 categories = "transportation,navigation",
9518 tags = "driving,car park,pay,sidewalk,pavement",
9519 contributors = "danielbayley,jguddas"
9520 ))]
9521 ParkingMeter,
9522 #[cfg(feature = "emoji")]
9523 #[strum(props(
9524 svg = "<path d=\"M5.8 11.3 2 22l10.7-3.79\"></path><path d=\"M4 3h.01\"></path><path d=\"M22 8h.01\"></path><path d=\"M15 2h.01\"></path><path d=\"M22 20h.01\"></path><path d=\"m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10\"></path><path d=\"m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17\"></path><path d=\"m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7\"></path><path d=\"M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z\"></path>",
9525 categories = "emoji",
9526 tags = "emoji,congratulations,celebration,party,tada,🎉,🎊,excitement,exciting,excites,confetti",
9527 contributors = "karsa-mistmere"
9528 ))]
9529 PartyPopper,
9530 #[cfg(feature = "multimedia")]
9531 #[strum(props(
9532 svg = "<rect height=\"18\" rx=\"1\" width=\"5\" x=\"14\" y=\"3\"></rect><rect height=\"18\" rx=\"1\" width=\"5\" x=\"5\" y=\"3\"></rect>",
9533 categories = "multimedia",
9534 tags = "music,stop",
9535 contributors = "colebemis,ericfennis,jguddas,karsa-mistmere"
9536 ))]
9537 Pause,
9538 #[cfg(feature = "animals")]
9539 #[strum(props(
9540 svg = "<circle cx=\"11\" cy=\"4\" r=\"2\"></circle><circle cx=\"18\" cy=\"8\" r=\"2\"></circle><circle cx=\"20\" cy=\"16\" r=\"2\"></circle><path d=\"M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.04Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z\"></path>",
9541 categories = "animals",
9542 tags = "pets,vets,veterinarian,domesticated,cat,dog,bear",
9543 contributors = "danielbayley"
9544 ))]
9545 PawPrint,
9546 #[cfg(any(feature = "devices", feature = "gaming"))]
9547 #[strum(props(
9548 svg = "<rect height=\"20\" rx=\"2\" width=\"14\" x=\"5\" y=\"2\"></rect><path d=\"M15 14h.01\"></path><path d=\"M9 6h6\"></path><path d=\"M9 10h6\"></path>",
9549 categories = "devices,gaming",
9550 tags = "computer,chassis",
9551 contributors = "karsa-mistmere,ericfennis"
9552 ))]
9553 PcCase,
9554 #[cfg(any(feature = "text", feature = "design", feature = "tools"))]
9555 #[strum(props(
9556 svg = "<path d=\"M13 21h8\"></path><path d=\"M21.17 6.81a1 1 0 0 0-3.98-3.98L3.84 16.17a2 2 0 0 0-.5.83l-1.32 4.35a.5.5 0 0 0 .623.62l4.35-1.32a2 2 0 0 0 .83-.497z\"></path>",
9557 categories = "text,design,tools",
9558 tags = "pencil,change,create,draw,writer,writing,biro,ink,marker,felt tip,stationery,artist",
9559 contributors = "colebemis,csandman,mittalyashu,ericfennis,karsa-mistmere,jguddas"
9560 ))]
9561 PenLine,
9562 #[cfg(any(feature = "text", feature = "design", feature = "tools"))]
9563 #[strum(props(
9564 svg = "<path d=\"m10 10-6.15 6.16a2 2 0 0 0-.5.83l-1.32 4.36a.5.5 0 0 0 .622.62l4.35-1.32a2 2 0 0 0 .83-.5L14 13.98\"></path><path d=\"m12.82 7.17 4.35-4.34a1 1 0 1 1 3.98 3.98l-4.35 4.35\"></path><path d=\"m2 2 20 20\"></path>",
9565 categories = "text,design,tools",
9566 tags = "disabled,inactive,non-editable,locked,read-only,unmodifiable,frozen,restricted,pencil,change,create,draw,writer,writing,biro,ink,marker,felt tip,stationery,artist",
9567 contributors = "colebemis,csandman,mittalyashu,ericfennis,karsa-mistmere"
9568 ))]
9569 PenOff,
9570 #[cfg(any(feature = "text", feature = "design", feature = "cursors"))]
9571 #[strum(props(
9572 svg = "<path d=\"M15.70 21.29a1 1 0 0 1-1.41 0l-1.58-1.58a1 1 0 0 1 0-1.41l5.58-5.58a1 1 0 0 1 1.41 0l1.58 1.58a1 1 0 0 1 0 1.41z\"></path><path d=\"m18 13-1.37-6.87a1 1 0 0 0-.746-.776L3.23 2.02a1 1 0 0 0-1.20 1.20L5.35 15.87a1 1 0 0 0 .776.74L13 18\"></path><path d=\"m2.3 2.3 7.28 7.28\"></path><circle cx=\"11\" cy=\"11\" r=\"2\"></circle>",
9573 categories = "text,design,cursors",
9574 tags = "vector,drawing,path",
9575 contributors = "ashygee,mittalyashu,ericfennis,jguddas"
9576 ))]
9577 PenTool,
9578 #[cfg(any(feature = "text", feature = "design", feature = "tools"))]
9579 #[strum(props(
9580 svg = "<path d=\"M21.17 6.81a1 1 0 0 0-3.98-3.98L3.84 16.17a2 2 0 0 0-.5.83l-1.32 4.35a.5.5 0 0 0 .623.62l4.35-1.32a2 2 0 0 0 .83-.497z\"></path>",
9581 categories = "text,design,tools",
9582 tags = "pencil,change,create,draw,writer,writing,biro,ink,marker,felt tip,stationery,artist",
9583 contributors = "colebemis,csandman,mittalyashu,ericfennis,karsa-mistmere"
9584 ))]
9585 Pen,
9586 #[cfg(any(feature = "text", feature = "design", feature = "tools"))]
9587 #[strum(props(
9588 svg = "<path d=\"M13 21h8\"></path><path d=\"m15 5 4 4\"></path><path d=\"M21.17 6.81a1 1 0 0 0-3.98-3.98L3.84 16.17a2 2 0 0 0-.5.83l-1.32 4.35a.5.5 0 0 0 .623.62l4.35-1.32a2 2 0 0 0 .83-.497z\"></path>",
9589 categories = "text,design,tools",
9590 tags = "pencil,change,create,draw,sketch,draft,writer,writing,biro,ink,marker,felt tip,stationery,artist",
9591 contributors = "colebemis,csandman,mittalyashu,ericfennis,danielbayley,karsa-mistmere,jguddas"
9592 ))]
9593 PencilLine,
9594 #[cfg(any(
9595 feature = "design",
9596 feature = "cursors",
9597 feature = "tools",
9598 feature = "text"
9599 ))]
9600 #[strum(props(
9601 svg = "<path d=\"m10 10-6.15 6.16a2 2 0 0 0-.5.83l-1.32 4.36a.5.5 0 0 0 .622.62l4.35-1.32a2 2 0 0 0 .83-.5L14 13.98\"></path><path d=\"m12.82 7.17 4.35-4.34a1 1 0 1 1 3.98 3.98l-4.35 4.35\"></path><path d=\"m15 5 4 4\"></path><path d=\"m2 2 20 20\"></path>",
9602 categories = "design,cursors,tools,text",
9603 tags = "disabled,inactive,non-editable,locked,read-only,unmodifiable,frozen,restricted,rubber,edit,create,draw,sketch,draft,writer,writing,stationery,artist",
9604 contributors = "ericfennis,wojtekmaj,mittalyashu,danielbayley,karsa-mistmere"
9605 ))]
9606 PencilOff,
9607 #[cfg(any(
9608 feature = "tools",
9609 feature = "design",
9610 feature = "layout",
9611 feature = "text"
9612 ))]
9613 #[strum(props(
9614 svg = "<path d=\"M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13\"></path><path d=\"m8 6 2-2\"></path><path d=\"m18 16 2-2\"></path><path d=\"m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17\"></path><path d=\"M21.17 6.81a1 1 0 0 0-3.98-3.98L3.84 16.17a2 2 0 0 0-.5.83l-1.32 4.35a.5.5 0 0 0 .623.62l4.35-1.32a2 2 0 0 0 .83-.497z\"></path><path d=\"m15 5 4 4\"></path>",
9615 categories = "tools,design,layout,text",
9616 tags = "edit,create,draw,sketch,draft,writer,writing,stationery,artist,measurements,centimeters,cm,millimeters,mm,metre,foot,feet,inches,units,size,length,width,height,dimensions,depth,breadth,extent",
9617 contributors = "danielbayley,karsa-mistmere"
9618 ))]
9619 PencilRuler,
9620 #[cfg(any(
9621 feature = "design",
9622 feature = "cursors",
9623 feature = "tools",
9624 feature = "text"
9625 ))]
9626 #[strum(props(
9627 svg = "<path d=\"M21.17 6.81a1 1 0 0 0-3.98-3.98L3.84 16.17a2 2 0 0 0-.5.83l-1.32 4.35a.5.5 0 0 0 .623.62l4.35-1.32a2 2 0 0 0 .83-.497z\"></path><path d=\"m15 5 4 4\"></path>",
9628 categories = "design,cursors,tools,text",
9629 tags = "rubber,edit,create,draw,sketch,draft,writer,writing,stationery,artist",
9630 contributors = "ericfennis,wojtekmaj,mittalyashu,danielbayley,karsa-mistmere"
9631 ))]
9632 Pencil,
9633 #[cfg(feature = "shapes")]
9634 #[strum(props(
9635 svg = "<path d=\"M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z\"></path>",
9636 categories = "shapes",
9637 tags = "shape",
9638 contributors = "danielbayley,jguddas"
9639 ))]
9640 Pentagon,
9641 #[cfg(any(
9642 feature = "math",
9643 feature = "development",
9644 feature = "finance",
9645 feature = "shopping"
9646 ))]
9647 #[strum(props(
9648 svg = "<line x1=\"19\" x2=\"5\" y1=\"5\" y2=\"19\"></line><circle cx=\"6.5\" cy=\"6.5\" r=\"2.5\"></circle><circle cx=\"17.5\" cy=\"17.5\" r=\"2.5\"></circle>",
9649 categories = "math,development,finance,shopping",
9650 tags = "percentage,modulo,modulus,remainder,%,sale,discount,offer,marketing",
9651 contributors = "colebemis,ericfennis"
9652 ))]
9653 Percent,
9654 #[cfg(any(feature = "accessibility", feature = "people"))]
9655 #[strum(props(
9656 svg = "<circle cx=\"12\" cy=\"5\" r=\"1\"></circle><path d=\"m9 20 3-6 3 6\"></path><path d=\"m6 8 6 2 6-2\"></path><path d=\"M12 10v4\"></path>",
9657 categories = "accessibility,people",
9658 tags = "people,human,accessibility,stick figure",
9659 contributors = "mittalyashu,ericfennis"
9660 ))]
9661 PersonStanding,
9662 #[cfg(feature = "finance")]
9663 #[strum(props(
9664 svg = "<path d=\"M20 11H4\"></path><path d=\"M20 7H4\"></path><path d=\"M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7\"></path>",
9665 categories = "finance",
9666 tags = "currency,peso,money,php",
9667 contributors = "jguddas,kasutu,karsa-mistmere"
9668 ))]
9669 PhilippinePeso,
9670 #[cfg(any(
9671 feature = "connectivity",
9672 feature = "devices",
9673 feature = "communication"
9674 ))]
9675 #[strum(props(
9676 svg = "<path d=\"M13 2a9 9 0 0 1 9 9\"></path><path d=\"M13 6a5 5 0 0 1 5 5\"></path><path d=\"M13.83 16.56a1 1 0 0 0 1.21-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.35a1 1 0 0 0-.292 1.23 14 14 0 0 0 6.39 6.38\"></path>",
9677 categories = "connectivity,devices,communication",
9678 tags = "ring",
9679 contributors = "colebemis,ericfennis,csandman,karsa-mistmere,jamiemlaw,jguddas"
9680 ))]
9681 PhoneCall,
9682 #[cfg(any(
9683 feature = "arrows",
9684 feature = "connectivity",
9685 feature = "devices",
9686 feature = "communication"
9687 ))]
9688 #[strum(props(
9689 svg = "<path d=\"M14 6h8\"></path><path d=\"m18 2 4 4-4 4\"></path><path d=\"M13.83 16.56a1 1 0 0 0 1.21-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.35a1 1 0 0 0-.292 1.23 14 14 0 0 0 6.39 6.38\"></path>",
9690 categories = "arrows,connectivity,devices,communication",
9691 tags = "call",
9692 contributors = "colebemis,ericfennis,csandman,karsa-mistmere,jamiemlaw"
9693 ))]
9694 PhoneForwarded,
9695 #[cfg(any(
9696 feature = "arrows",
9697 feature = "connectivity",
9698 feature = "devices",
9699 feature = "communication"
9700 ))]
9701 #[strum(props(
9702 svg = "<path d=\"M16 2v6h6\"></path><path d=\"m22 2-6 6\"></path><path d=\"M13.83 16.56a1 1 0 0 0 1.21-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.35a1 1 0 0 0-.292 1.23 14 14 0 0 0 6.39 6.38\"></path>",
9703 categories = "arrows,connectivity,devices,communication",
9704 tags = "call",
9705 contributors = "colebemis,ericfennis,csandman,karsa-mistmere,jamiemlaw"
9706 ))]
9707 PhoneIncoming,
9708 #[cfg(any(
9709 feature = "connectivity",
9710 feature = "devices",
9711 feature = "communication"
9712 ))]
9713 #[strum(props(
9714 svg = "<path d=\"m16 2 6 6\"></path><path d=\"m22 2-6 6\"></path><path d=\"M13.83 16.56a1 1 0 0 0 1.21-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.35a1 1 0 0 0-.292 1.23 14 14 0 0 0 6.39 6.38\"></path>",
9715 categories = "connectivity,devices,communication",
9716 tags = "call",
9717 contributors = "colebemis,ericfennis,csandman,karsa-mistmere,jamiemlaw"
9718 ))]
9719 PhoneMissed,
9720 #[cfg(any(
9721 feature = "connectivity",
9722 feature = "devices",
9723 feature = "communication"
9724 ))]
9725 #[strum(props(
9726 svg = "<path d=\"M10.1 13.9a14 14 0 0 0 3.73 2.66 1 1 0 0 0 1.21-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.72-5.27\"></path><path d=\"M22 2 2 22\"></path><path d=\"M4.76 13.58A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.35a1 1 0 0 0-.292 1.23 14 14 0 0 0 .244.47\"></path>",
9727 categories = "connectivity,devices,communication",
9728 tags = "call,mute",
9729 contributors = "colebemis,ericfennis,csandman,karsa-mistmere,jamiemlaw"
9730 ))]
9731 PhoneOff,
9732 #[cfg(any(
9733 feature = "arrows",
9734 feature = "connectivity",
9735 feature = "devices",
9736 feature = "communication"
9737 ))]
9738 #[strum(props(
9739 svg = "<path d=\"m16 8 6-6\"></path><path d=\"M22 8V2h-6\"></path><path d=\"M13.83 16.56a1 1 0 0 0 1.21-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.35a1 1 0 0 0-.292 1.23 14 14 0 0 0 6.39 6.38\"></path>",
9740 categories = "arrows,connectivity,devices,communication",
9741 tags = "call",
9742 contributors = "colebemis,ericfennis,csandman,karsa-mistmere,jamiemlaw"
9743 ))]
9744 PhoneOutgoing,
9745 #[cfg(any(
9746 feature = "text",
9747 feature = "connectivity",
9748 feature = "devices",
9749 feature = "communication"
9750 ))]
9751 #[strum(props(
9752 svg = "<path d=\"M13.83 16.56a1 1 0 0 0 1.21-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.35a1 1 0 0 0-.292 1.23 14 14 0 0 0 6.39 6.38\"></path>",
9753 categories = "text,connectivity,devices,communication",
9754 tags = "call",
9755 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,jamiemlaw"
9756 ))]
9757 Phone,
9758 #[cfg(any(feature = "development", feature = "math"))]
9759 #[strum(props(
9760 svg = "<line x1=\"9\" x2=\"9\" y1=\"4\" y2=\"20\"></line><path d=\"M4 7c0-1.7 1.3-3 3-3h13\"></path><path d=\"M18 20c-1.7 0-3-1.3-3-3V4\"></path>",
9761 categories = "development,math",
9762 tags = "constant,code,coding,programming,symbol,trigonometry,geometry,formula",
9763 contributors = "danielbayley,jguddas"
9764 ))]
9765 Pi,
9766 #[cfg(any(feature = "multimedia", feature = "devices"))]
9767 #[strum(props(
9768 svg = "<path d=\"M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8\"></path><path d=\"M2 14h20\"></path><path d=\"M6 14v4\"></path><path d=\"M10 14v4\"></path><path d=\"M14 14v4\"></path><path d=\"M18 14v4\"></path>",
9769 categories = "multimedia,devices",
9770 tags = "music,audio,sound,noise,notes,chord,keys,octave,acoustic,instrument,play,pianist,performance,concert",
9771 contributors = "danielbayley,karsa-mistmere"
9772 ))]
9773 Piano,
9774 #[cfg(any(feature = "tools", feature = "gaming"))]
9775 #[strum(props(
9776 svg = "<path d=\"m14 13-8.38 8.38a1 1 0 0 1-3.00-3L11 9.99\"></path><path d=\"M15.97 4.02A13 13 0 0 0 5.90 2.37c-1.39.342-1.09 2.15.277 2.60a19.9 19.9 0 0 1 5.82 3.02\"></path><path d=\"M16.00 11.99a19.9 19.9 0 0 1 3.02 5.82c.444 1.36 2.26 1.67 2.60.278A13 13 0 0 0 20 8.06\"></path><path d=\"M18.35 3.35a1.20 1.20 0 0 0-1.70 0l-5.29 5.29a1.20 1.20 0 0 0 0 1.70l2.29 2.29a1.20 1.20 0 0 0 1.70 0l5.29-5.29a1.20 1.20 0 0 0 0-1.70z\"></path>",
9777 categories = "tools,gaming",
9778 tags = "mining,mine,land worker,extraction,labor,construction,progress,advancement,crafting,building,creation",
9779 contributors = "karsa-mistmere"
9780 ))]
9781 Pickaxe,
9782 #[cfg(feature = "multimedia")]
9783 #[strum(props(
9784 svg = "<path d=\"M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4\"></path><rect height=\"7\" rx=\"2\" width=\"10\" x=\"12\" y=\"13\"></rect>",
9785 categories = "multimedia",
9786 tags = "display,play,video,pop out,always on top,window,inset,multitask",
9787 contributors = "cd16b,ericfennis"
9788 ))]
9789 PictureInPicture2,
9790 #[cfg(feature = "multimedia")]
9791 #[strum(props(
9792 svg = "<path d=\"M2 10h6V4\"></path><path d=\"m2 4 6 6\"></path><path d=\"M21 10V7a2 2 0 0 0-2-2h-7\"></path><path d=\"M3 14v2a2 2 0 0 0 2 2h3\"></path><rect height=\"7\" rx=\"1\" width=\"10\" x=\"12\" y=\"14\"></rect>",
9793 categories = "multimedia",
9794 tags = "display,play,video,pop out,always on top,window,inset,multitask",
9795 contributors = "cd16b,ericfennis,jguddas,karsa-mistmere"
9796 ))]
9797 PictureInPicture,
9798 #[cfg(feature = "finance")]
9799 #[strum(props(
9800 svg = "<path d=\"M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z\"></path><path d=\"M16 10h.01\"></path><path d=\"M2 8v1a2 2 0 0 0 2 2h1\"></path>",
9801 categories = "finance",
9802 tags = "money,savings",
9803 contributors = "ericfennis,jamiemlaw"
9804 ))]
9805 PiggyBank,
9806 #[cfg(feature = "text")]
9807 #[strum(props(
9808 svg = "<path d=\"M14 3v11\"></path><path d=\"M14 9h-3a3 3 0 0 1 0-6h9\"></path><path d=\"M18 3v11\"></path><path d=\"M22 18H2l4-4\"></path><path d=\"m6 22-4-4\"></path>",
9809 categories = "text",
9810 tags = "direction,paragraph,mark,paraph,blind,typography,type,text,prose,symbol",
9811 contributors = "zaaakher,danielbayley,jonas-hoebenreich"
9812 ))]
9813 PilcrowLeft,
9814 #[cfg(feature = "text")]
9815 #[strum(props(
9816 svg = "<path d=\"M10 3v11\"></path><path d=\"M10 9H7a1 1 0 0 1 0-6h8\"></path><path d=\"M14 3v11\"></path><path d=\"m18 14 4 4H2\"></path><path d=\"m22 18-4 4\"></path>",
9817 categories = "text",
9818 tags = "direction,paragraph,mark,paraph,blind,typography,type,text,prose,symbol",
9819 contributors = "zaaakher,danielbayley,jonas-hoebenreich"
9820 ))]
9821 PilcrowRight,
9822 #[cfg(feature = "text")]
9823 #[strum(props(
9824 svg = "<path d=\"M13 4v16\"></path><path d=\"M17 4v16\"></path><path d=\"M19 4H9.5a4.5 4.5 0 0 0 0 9H13\"></path>",
9825 categories = "text",
9826 tags = "paragraph,mark,paraph,blind,typography,type,text,prose,symbol",
9827 contributors = "ericfennis,danielbayley,karsa-mistmere"
9828 ))]
9829 Pilcrow,
9830 #[cfg(feature = "medical")]
9831 #[strum(props(
9832 svg = "<path d=\"M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4\"></path><path d=\"M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7\"></path><rect height=\"5\" rx=\"1\" width=\"16\" x=\"4\" y=\"2\"></rect>",
9833 categories = "medical",
9834 tags = "medicine,medication,prescription,drug,supplement,vitamin,capsule,jar,container,healthcare,pharmaceutical,tablet",
9835 contributors = "karsa-mistmere"
9836 ))]
9837 PillBottle,
9838 #[cfg(feature = "medical")]
9839 #[strum(props(
9840 svg = "<path d=\"m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z\"></path><path d=\"m8.5 8.5 7 7\"></path>",
9841 categories = "medical",
9842 tags = "medicine,medication,drug,prescription,tablet,pharmacy",
9843 contributors = "karsa-mistmere,it-is-not"
9844 ))]
9845 Pill,
9846 #[cfg(feature = "navigation")]
9847 #[strum(props(
9848 svg = "<path d=\"M12 17v5\"></path><path d=\"M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89\"></path><path d=\"m2 2 20 20\"></path><path d=\"M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11\"></path>",
9849 categories = "navigation",
9850 tags = "unpin,map,unlock,unfix,unsave,remove",
9851 contributors = "karsa-mistmere,ericfennis"
9852 ))]
9853 PinOff,
9854 #[cfg(any(feature = "navigation", feature = "account"))]
9855 #[strum(props(
9856 svg = "<path d=\"M12 17v5\"></path><path d=\"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z\"></path>",
9857 categories = "navigation,account",
9858 tags = "save,map,lock,fix",
9859 contributors = "mittalyashu,ericfennis,karsa-mistmere"
9860 ))]
9861 Pin,
9862 #[cfg(any(feature = "text", feature = "design", feature = "science"))]
9863 #[strum(props(
9864 svg = "<path d=\"m12 9-8.41 8.41A2 2 0 0 0 3 18.82v1.34a2 2 0 0 1-.586 1.41A2 2 0 0 1 3.82 21h1.34a2 2 0 0 0 1.41-.586L15 12\"></path><path d=\"m18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z\"></path><path d=\"m2 22 .414-.414\"></path>",
9865 categories = "text,design,science",
9866 tags = "eye dropper,color picker,lab,chemistry",
9867 contributors = "Andreto,ericfennis,karsa-mistmere,jguddas"
9868 ))]
9869 Pipette,
9870 #[cfg(feature = "food_beverage")]
9871 #[strum(props(
9872 svg = "<path d=\"m12 14-1 1\"></path><path d=\"m13.75 18.25-1.25 1.42\"></path><path d=\"M17.77 5.65a15.68 15.68 0 0 0-12.12 12.12\"></path><path d=\"M18.8 9.3a1 1 0 0 0 2.1 7.7\"></path><path d=\"M21.96 20.73a1 1 0 0 1-1.23 1.23l-18-5a1 1 0 0 1-.695-1.23A19.68 19.68 0 0 1 15.73 2.03a1 1 0 0 1 1.23.695z\"></path>",
9873 categories = "food-beverage",
9874 tags = "pie,quiche,food",
9875 contributors = "karsa-mistmere,ericfennis,jguddas,jamiemlaw"
9876 ))]
9877 Pizza,
9878 #[cfg(any(feature = "transportation", feature = "travel"))]
9879 #[strum(props(
9880 svg = "<path d=\"M2 22h20\"></path><path d=\"M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z\"></path>",
9881 categories = "transportation,travel",
9882 tags = "arrival,plane,trip,airplane,landing",
9883 contributors = "karsa-mistmere,it-is-not"
9884 ))]
9885 PlaneLanding,
9886 #[cfg(any(feature = "transportation", feature = "travel"))]
9887 #[strum(props(
9888 svg = "<path d=\"M2 22h20\"></path><path d=\"M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z\"></path>",
9889 categories = "transportation,travel",
9890 tags = "departure,plane,trip,airplane,takeoff",
9891 contributors = "karsa-mistmere,it-is-not"
9892 ))]
9893 PlaneTakeoff,
9894 #[cfg(any(feature = "transportation", feature = "travel", feature = "navigation"))]
9895 #[strum(props(
9896 svg = "<path d=\"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z\"></path>",
9897 categories = "transportation,travel,navigation",
9898 tags = "plane,trip,airplane",
9899 contributors = "ahtohbi4,csandman,ericfennis"
9900 ))]
9901 Plane,
9902 #[cfg(feature = "multimedia")]
9903 #[strum(props(
9904 svg = "<path d=\"m10.21 4.56 9.79 5.71a2 2 0 0 1 .003 3.45l-.393.23\"></path><path d=\"m16.04 16.04-8.03 4.68A2 2 0 0 1 5 19V5\"></path><path d=\"m2 2 20 20\"></path>",
9905 categories = "multimedia",
9906 tags = "audio,video,music,start,run,off,disabled,blocked,forbidden",
9907 contributors = "colebemis,karsa-mistmere,Ahmed-Dghaies"
9908 ))]
9909 PlayOff,
9910 #[cfg(any(feature = "arrows", feature = "multimedia"))]
9911 #[strum(props(
9912 svg = "<path d=\"M5 5a2 2 0 0 1 3.00-1.72l11.99 6.99a2 2 0 0 1 .003 3.45l-12 7A2 2 0 0 1 5 19z\"></path>",
9913 categories = "arrows,multimedia",
9914 tags = "music,audio,video,start,run",
9915 contributors = "colebemis,karsa-mistmere"
9916 ))]
9917 Play,
9918 #[cfg(any(feature = "devices", feature = "development"))]
9919 #[strum(props(
9920 svg = "<path d=\"M9 2v6\"></path><path d=\"M15 2v6\"></path><path d=\"M12 17v5\"></path><path d=\"M5 8h14\"></path><path d=\"M6 11V8h12v3a6 6 0 1 1-12 0Z\"></path>",
9921 categories = "devices,development",
9922 tags = "electricity,energy,socket,outlet",
9923 contributors = "ericfennis,karsa-mistmere"
9924 ))]
9925 Plug2,
9926 #[cfg(feature = "devices")]
9927 #[strum(props(
9928 svg = "<path d=\"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z\"></path><path d=\"m2 22 3-3\"></path><path d=\"M7.5 13.5 10 11\"></path><path d=\"M10.5 16.5 13 14\"></path><path d=\"m18 3-4 4h6l-4 4\"></path>",
9929 categories = "devices",
9930 tags = "electricity,energy,electronics,charge,charging,battery,connect",
9931 contributors = "mittalyashu,ericfennis,jguddas,danielbayley,karsa-mistmere"
9932 ))]
9933 PlugZap,
9934 #[cfg(any(feature = "devices", feature = "development"))]
9935 #[strum(props(
9936 svg = "<path d=\"M12 22v-5\"></path><path d=\"M15 8V2\"></path><path d=\"M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z\"></path><path d=\"M9 8V2\"></path>",
9937 categories = "devices,development",
9938 tags = "electricity,energy,electronics,socket,outlet,power,voltage,current,charger",
9939 contributors = "ericfennis,danielbayley,karsa-mistmere"
9940 ))]
9941 Plug,
9942 #[cfg(any(
9943 feature = "math",
9944 feature = "tools",
9945 feature = "development",
9946 feature = "text",
9947 feature = "cursors",
9948 feature = "gaming"
9949 ))]
9950 #[strum(props(
9951 svg = "<path d=\"M5 12h14\"></path><path d=\"M12 5v14\"></path>",
9952 categories = "math,tools,development,text,cursors,gaming",
9953 tags = "add,new,increase,increment,positive,calculate,toolbar,crosshair,aim,target,scope,sight,reticule,maximum,upgrade,extra,+",
9954 contributors = "colebemis,ericfennis"
9955 ))]
9956 Plus,
9957 #[cfg(feature = "tools")]
9958 #[strum(props(
9959 svg = "<path d=\"M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2\"></path><path d=\"M18 6h.01\"></path><path d=\"M6 18h.01\"></path><path d=\"M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z\"></path><path d=\"M18 11.66V22a4 4 0 0 0 4-4V6\"></path>",
9960 categories = "tools",
9961 tags = "swiss army knife,penknife,multi-tool,multitask,blade,cutter,gadget,corkscrew",
9962 contributors = "danielbayley,karsa-mistmere"
9963 ))]
9964 PocketKnife,
9965 #[cfg(any(feature = "multimedia", feature = "social"))]
9966 #[strum(props(
9967 svg = "<path d=\"M13 17a1 1 0 1 0-2 0l.5 4.5a0.5 0.5 0 0 0 1 0z\" fill=\"currentColor\"></path><path d=\"M16.85 18.58a9 9 0 1 0-9.7 0\"></path><path d=\"M8 14a5 5 0 1 1 8 0\"></path><circle cx=\"12\" cy=\"11\" fill=\"currentColor\" r=\"1\"></circle>",
9968 categories = "multimedia,social",
9969 tags = "audio,music,mic,talk,voice,subscribe,subscription,stream",
9970 contributors = "iiaishwarya,ericfennis,karsa-mistmere,jguddas"
9971 ))]
9972 Podcast,
9973 #[cfg(any(feature = "sports", feature = "gaming"))]
9974 #[strum(props(
9975 svg = "<path d=\"M12 6V2h-1\"></path><path d=\"M9 15a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1\"></path><path d=\"M9 21V11a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v10\"></path>",
9976 categories = "sports,gaming",
9977 tags = "award,stage,winner,celebration,performance,medal,success,achievement,highlight,ranking,winning,place,placing,leaderboard,first,second,third,gold,silver,bronze",
9978 contributors = "jguddas"
9979 ))]
9980 Podium,
9981 #[cfg(feature = "cursors")]
9982 #[strum(props(
9983 svg = "<path d=\"M10 4.5V4a2 2 0 0 0-2.41-1.95\"></path><path d=\"M13.9 8.4a2 2 0 0 0-1.26-1.29\"></path><path d=\"M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.15\"></path><path d=\"m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.65-2.34\"></path><path d=\"M6 6v8\"></path><path d=\"m2 2 20 20\"></path>",
9984 categories = "cursors",
9985 tags = "mouse",
9986 contributors = "ericfennis,jguddas"
9987 ))]
9988 PointerOff,
9989 #[cfg(feature = "cursors")]
9990 #[strum(props(
9991 svg = "<path d=\"M22 14a8 8 0 0 1-8 8\"></path><path d=\"M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2\"></path><path d=\"M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1\"></path><path d=\"M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10\"></path><path d=\"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15\"></path>",
9992 categories = "cursors",
9993 tags = "mouse",
9994 contributors = "ericfennis"
9995 ))]
9996 Pointer,
9997 #[cfg(any(feature = "food_beverage", feature = "multimedia"))]
9998 #[strum(props(
9999 svg = "<path d=\"M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4\"></path><path d=\"M10 22 9 8\"></path><path d=\"m14 22 1-14\"></path><path d=\"M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z\"></path>",
10000 categories = "food-beverage,multimedia",
10001 tags = "cinema,movies,films,salted,sweet,sugar,candy,snack",
10002 contributors = "danielbayley"
10003 ))]
10004 Popcorn,
10005 #[cfg(feature = "food_beverage")]
10006 #[strum(props(
10007 svg = "<path d=\"M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z\"></path><path d=\"m22 22-5.5-5.5\"></path>",
10008 categories = "food-beverage",
10009 tags = "ice lolly,ice cream,sweet,food",
10010 contributors = "danielbayley"
10011 ))]
10012 Popsicle,
10013 #[cfg(feature = "finance")]
10014 #[strum(props(
10015 svg = "<path d=\"M18 7c0-5.33-8-5.33-8 0\"></path><path d=\"M10 7v14\"></path><path d=\"M6 21h12\"></path><path d=\"M6 13h10\"></path>",
10016 categories = "finance",
10017 tags = "currency,money,payment",
10018 contributors = "ericfennis,mittalyashu"
10019 ))]
10020 PoundSterling,
10021 #[cfg(feature = "connectivity")]
10022 #[strum(props(
10023 svg = "<path d=\"M18.36 6.64A9 9 0 0 1 20.77 15\"></path><path d=\"M6.16 6.16a9 9 0 1 0 12.68 12.68\"></path><path d=\"M12 2v4\"></path><path d=\"m2 2 20 20\"></path>",
10024 categories = "connectivity",
10025 tags = "on,off,device,switch",
10026 contributors = "mittalyashu,ericfennis,karsa-mistmere"
10027 ))]
10028 PowerOff,
10029 #[cfg(feature = "connectivity")]
10030 #[strum(props(
10031 svg = "<path d=\"M12 2v10\"></path><path d=\"M18.4 6.6a9 9 0 1 1-12.77.04\"></path>",
10032 categories = "connectivity",
10033 tags = "on,off,device,switch,toggle,binary,boolean,reboot,restart,button,keyboard,troubleshoot",
10034 contributors = "colebemis,csandman,ericfennis"
10035 ))]
10036 Power,
10037 #[cfg(any(
10038 feature = "multimedia",
10039 feature = "photography",
10040 feature = "devices",
10041 feature = "communication",
10042 feature = "design"
10043 ))]
10044 #[strum(props(
10045 svg = "<path d=\"M2 3h20\"></path><path d=\"M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3\"></path><path d=\"m7 21 5-5 5 5\"></path>",
10046 categories = "multimedia,photography,devices,communication,design",
10047 tags = "screen,whiteboard,marker pens,markers,blackboard,chalk,easel,school,learning,lesson,office,meeting,project,planning",
10048 contributors = "karsa-mistmere,danielbayley"
10049 ))]
10050 Presentation,
10051 #[cfg(feature = "devices")]
10052 #[strum(props(
10053 svg = "<path d=\"M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5\"></path><path d=\"m16 19 2 2 4-4\"></path><path d=\"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2\"></path><path d=\"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6\"></path>",
10054 categories = "devices",
10055 tags = "fax,office,device,success,printed",
10056 contributors = "colebemis,csandman,ericfennis,jguddas"
10057 ))]
10058 PrinterCheck,
10059 #[cfg(feature = "devices")]
10060 #[strum(props(
10061 svg = "<path d=\"M12.53 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h6.37\"></path><path d=\"m16.5 16.5 5 5\"></path><path d=\"m16.5 21.5 5-5\"></path><path d=\"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.5\"></path><path d=\"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6\"></path>",
10062 categories = "devices",
10063 tags = "fax,office,device,cross,cancel,remove,error",
10064 contributors = "colebemis,csandman,ericfennis,jguddas,lt25106"
10065 ))]
10066 PrinterX,
10067 #[cfg(feature = "devices")]
10068 #[strum(props(
10069 svg = "<path d=\"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2\"></path><path d=\"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6\"></path><rect height=\"8\" rx=\"1\" width=\"12\" x=\"6\" y=\"14\"></rect>",
10070 categories = "devices",
10071 tags = "fax,office,device",
10072 contributors = "colebemis,csandman,ericfennis"
10073 ))]
10074 Printer,
10075 #[cfg(any(
10076 feature = "multimedia",
10077 feature = "photography",
10078 feature = "devices",
10079 feature = "communication"
10080 ))]
10081 #[strum(props(
10082 svg = "<path d=\"M5 7 3 5\"></path><path d=\"M9 6V3\"></path><path d=\"m13 7 2-2\"></path><circle cx=\"9\" cy=\"13\" r=\"3\"></circle><path d=\"M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17\"></path><path d=\"M16 16h2\"></path>",
10083 categories = "multimedia,photography,devices,communication",
10084 tags = "cinema,film,movie,home video,presentation,slideshow,office,meeting,project,planning",
10085 contributors = "danielbayley"
10086 ))]
10087 Projector,
10088 #[cfg(any(
10089 feature = "layout",
10090 feature = "design",
10091 feature = "photography",
10092 feature = "devices"
10093 ))]
10094 #[strum(props(
10095 svg = "<rect height=\"16\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect><path d=\"M12 9v11\"></path><path d=\"M2 9h13a2 2 0 0 1 2 2v9\"></path>",
10096 categories = "layout,design,photography,devices",
10097 tags = "screens,sizes,rotate,rotation,adjust,aspect ratio,16:9,widescreen,4:3,resolution,responsive,mobile,desktop,dimensions,monitor,orientation,portrait,landscape",
10098 contributors = "danielbayley"
10099 ))]
10100 Proportions,
10101 #[cfg(any(feature = "development", feature = "gaming"))]
10102 #[strum(props(
10103 svg = "<path d=\"M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.01 3.01 1 1 0 0 0-.474 1.68l1.68 1.68a2.41 2.41 0 0 1 0 3.41L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.01 3.01 1 1 0 0 1 .474 1.68l-1.68 1.68a2.41 2.41 0 0 1-3.41 0L8.61 19.61a1 1 0 0 0-1.68.47 2.5 2.5 0 1 1-3.01-3.01 1 1 0 0 0 .474-1.68l-1.68-1.68a2.41 2.41 0 0 1 0-3.41L4.39 8.61a1 1 0 0 1 1.68.47 2.5 2.5 0 1 0 3.01-3.01 1 1 0 0 1-.474-1.68l1.68-1.68a2.41 2.41 0 0 1 3.41 0z\"></path>",
10104 categories = "development,gaming",
10105 tags = "component,module,part,piece",
10106 contributors = "karsa-mistmere,ericfennis,jamiemlaw"
10107 ))]
10108 Puzzle,
10109 #[cfg(any(feature = "shapes", feature = "math", feature = "travel"))]
10110 #[strum(props(
10111 svg = "<path d=\"M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z\"></path><path d=\"M12 2v20\"></path>",
10112 categories = "shapes,math,travel",
10113 tags = "prism,triangle,triangular,hierarchy,structure,geometry,ancient,egyptian,landmark,tourism",
10114 contributors = "danielbayley,karsa-mistmere"
10115 ))]
10116 Pyramid,
10117 #[cfg(any(feature = "development", feature = "social"))]
10118 #[strum(props(
10119 svg = "<rect height=\"5\" rx=\"1\" width=\"5\" x=\"3\" y=\"3\"></rect><rect height=\"5\" rx=\"1\" width=\"5\" x=\"16\" y=\"3\"></rect><rect height=\"5\" rx=\"1\" width=\"5\" x=\"3\" y=\"16\"></rect><path d=\"M21 16h-3a2 2 0 0 0-2 2v3\"></path><path d=\"M21 21v.01\"></path><path d=\"M12 7v3a2 2 0 0 1-2 2H7\"></path><path d=\"M3 12h.01\"></path><path d=\"M12 3h.01\"></path><path d=\"M12 16v.01\"></path><path d=\"M16 12h1\"></path><path d=\"M21 12v.01\"></path><path d=\"M12 21v-1\"></path>",
10120 categories = "development,social",
10121 tags = "barcode,scan,link,url,information,digital",
10122 contributors = "ericfennis,csandman,karsa-mistmere"
10123 ))]
10124 QrCode,
10125 #[cfg(feature = "text")]
10126 #[strum(props(
10127 svg = "<path d=\"M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z\"></path><path d=\"M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z\"></path>",
10128 categories = "text",
10129 tags = "quotation",
10130 contributors = "Billiam,jguddas,karsa-mistmere"
10131 ))]
10132 Quote,
10133 #[cfg(feature = "animals")]
10134 #[strum(props(
10135 svg = "<path d=\"M13 16a3 3 0 0 1 2.24 5\"></path><path d=\"M18 12h.01\"></path><path d=\"M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3\"></path><path d=\"M20 8.54V4a2 2 0 1 0-4 0v3\"></path><path d=\"M7.61 12.52a3 3 0 1 0-1.6 4.3\"></path>",
10136 categories = "animals",
10137 tags = "animal,rodent,pet,pest,bunny,hare,fast,speed,hop",
10138 contributors = "danielbayley"
10139 ))]
10140 Rabbit,
10141 #[cfg(any(
10142 feature = "navigation",
10143 feature = "security",
10144 feature = "communication"
10145 ))]
10146 #[strum(props(
10147 svg = "<path d=\"M19.07 4.93A10 10 0 0 0 6.99 3.34\"></path><path d=\"M4 6h.01\"></path><path d=\"M2.29 9.62A10 10 0 1 0 21.31 8.35\"></path><path d=\"M16.24 7.76A6 6 0 1 0 8.23 16.67\"></path><path d=\"M12 18h.01\"></path><path d=\"M17.99 11.66A6 6 0 0 1 15.77 16.67\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle><path d=\"m13.41 10.59 5.66-5.66\"></path>",
10148 categories = "navigation,security,communication",
10149 tags = "scan,sonar,detect,find,locate",
10150 contributors = "danielbayley,karsa-mistmere"
10151 ))]
10152 Radar,
10153 #[cfg(feature = "science")]
10154 #[strum(props(
10155 svg = "<path d=\"M12 12h.01\"></path><path d=\"M14 15.46a4 4 0 0 1-4 0L7.52 19.74 A 1 1 0 0 0 7.99 21.16 10 10 0 0 0 16.00 21.16 1 1 0 0 0 16.47 19.74z\"></path><path d=\"M16 12a4 4 0 0 0-2-3.46l2.47-4.28a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.00 6.94A1 1 0 0 1 21 12z\"></path><path d=\"M8 12a4 4 0 0 1 2-3.46L7.52 4.25a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.00 6.94A1 1 0 0 0 3 12z\"></path>",
10156 categories = "science",
10157 tags = "radioactive,nuclear,fallout,waste,atomic,physics,particle,element,molecule",
10158 contributors = "karsa-mistmere,danielbayley,ericfennis"
10159 ))]
10160 Radiation,
10161 #[cfg(any(feature = "development", feature = "math"))]
10162 #[strum(props(
10163 svg = "<path d=\"M3 12h3.28a1 1 0 0 1 .948.68l2.29 7.93a.5.5 0 0 0 .96-.044L13.82 4.77A1 1 0 0 1 14.79 4H21\"></path>",
10164 categories = "development,math",
10165 tags = "calculate,formula,math,operator,root,square,symbol",
10166 contributors = "smnandre,jguddas"
10167 ))]
10168 Radical,
10169 #[cfg(any(feature = "devices", feature = "multimedia", feature = "social"))]
10170 #[strum(props(
10171 svg = "<path d=\"M13.41 13.41a2 2 0 1 1-2.82-2.82\"></path><path d=\"M16.24 7.76a6 6 0 0 1 1.74 4.57\"></path><path d=\"M19.07 4.93a10 10 0 0 1 2.23 10.72\"></path><path d=\"m2 2 20 20\"></path><path d=\"M4.92 19.06a10 10 0 0 1 0-14.13\"></path><path d=\"M7.75 16.23a6 6 0 0 1 0-8.47\"></path>",
10172 categories = "devices,multimedia,social",
10173 tags = "signal,broadcast,connectivity,live,frequency",
10174 contributors = "kongsgard"
10175 ))]
10176 RadioOff,
10177 #[cfg(feature = "devices")]
10178 #[strum(props(
10179 svg = "<path d=\"M5 16v2\"></path><path d=\"M19 16v2\"></path><rect height=\"8\" rx=\"2\" width=\"20\" x=\"2\" y=\"8\"></rect><path d=\"M18 12h.01\"></path>",
10180 categories = "devices",
10181 tags = "device,music,connect",
10182 contributors = "ericfennis"
10183 ))]
10184 RadioReceiver,
10185 #[cfg(any(feature = "devices", feature = "multimedia", feature = "social"))]
10186 #[strum(props(
10187 svg = "<path d=\"M4.9 16.1C1 12.2 1 5.8 4.9 1.9\"></path><path d=\"M7.8 4.7a6.14 6.14 0 0 0-.8 7.5\"></path><circle cx=\"12\" cy=\"9\" r=\"2\"></circle><path d=\"M16.2 4.8c2 2 2.26 5.11.8 7.47\"></path><path d=\"M19.1 1.9a9.96 9.96 0 0 1 0 14.1\"></path><path d=\"M9.5 18h5\"></path><path d=\"m8 22 4-11 4 11\"></path>",
10188 categories = "devices,multimedia,social",
10189 tags = "signal,broadcast,connectivity,live,frequency",
10190 contributors = "danielbayley,karsa-mistmere"
10191 ))]
10192 RadioTower,
10193 #[cfg(any(feature = "devices", feature = "multimedia", feature = "social"))]
10194 #[strum(props(
10195 svg = "<path d=\"M16.24 7.76a6 6 0 0 1 0 8.47\"></path><path d=\"M19.07 4.93a10 10 0 0 1 0 14.13\"></path><path d=\"M4.92 19.06a10 10 0 0 1 0-14.13\"></path><path d=\"M7.75 16.23a6 6 0 0 1 0-8.47\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle>",
10196 categories = "devices,multimedia,social",
10197 tags = "signal,broadcast,connectivity,live,frequency",
10198 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,danielbayley,jguddas"
10199 ))]
10200 Radio,
10201 #[cfg(any(
10202 feature = "shapes",
10203 feature = "math",
10204 feature = "design",
10205 feature = "tools"
10206 ))]
10207 #[strum(props(
10208 svg = "<path d=\"M20.34 17.52a10 10 0 1 0-2.82 2.82\"></path><circle cx=\"19\" cy=\"19\" r=\"2\"></circle><path d=\"m13.41 13.41 4.18 4.18\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle>",
10209 categories = "shapes,math,design,tools",
10210 tags = "shape,circle,geometry,trigonometry,radii,calculate,measure,size",
10211 contributors = "danielbayley,karsa-mistmere"
10212 ))]
10213 Radius,
10214 #[cfg(feature = "weather")]
10215 #[strum(props(
10216 svg = "<path d=\"M22 17a10 10 0 0 0-20 0\"></path><path d=\"M6 17a6 6 0 0 1 12 0\"></path><path d=\"M10 17a2 2 0 0 1 4 0\"></path>",
10217 categories = "weather",
10218 tags = "colors,colours,spectrum,light,prism,arc,clear,sunshine",
10219 contributors = "danielbayley"
10220 ))]
10221 Rainbow,
10222 #[cfg(feature = "animals")]
10223 #[strum(props(
10224 svg = "<path d=\"M13 22H4a2 2 0 0 1 0-4h12\"></path><path d=\"M13.23 18a3 3 0 0 0-2.2-5\"></path><path d=\"M16 9h.01\"></path><path d=\"M16.82 3.94a3 3 0 1 1 3.23 4.86l1.81 2.58a1.5 1.5 0 0 1-1.5 2.1l-2.87-.453a3 3 0 0 0-3.5 3\"></path><path d=\"M17 4.98a3 3 0 1 0-5.2 2.05A7 7 0 0 0 4 14.01 4 4 0 0 0 8 18\"></path>",
10225 categories = "animals",
10226 tags = "mouse,mice,gerbil,rodent,pet,pest,plague,disease",
10227 contributors = "henri42,jguddas,karsa-mistmere,danielbayley"
10228 ))]
10229 Rat,
10230 #[cfg(any(feature = "layout", feature = "design", feature = "photography"))]
10231 #[strum(props(
10232 svg = "<rect height=\"20\" rx=\"2\" width=\"12\" x=\"6\" y=\"2\"></rect><rect height=\"12\" rx=\"2\" width=\"20\" x=\"2\" y=\"6\"></rect>",
10233 categories = "layout,design,photography",
10234 tags = "screens,sizes,rotate,rotation,adjust,aspect ratio,proportions,16:9,widescreen,4:3,resolution,responsive,mobile,desktop,dimensions,monitor,orientation,portrait,landscape",
10235 contributors = "danielbayley"
10236 ))]
10237 Ratio,
10238 #[cfg(any(feature = "finance", feature = "travel"))]
10239 #[strum(props(
10240 svg = "<path d=\"M12 7v10\"></path><path d=\"M14.82 14.82a4 4 0 0 1-5.65 0 4 4 0 0 1 0-5.65 4 4 0 0 1 5.65 0\"></path><path d=\"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z\"></path>",
10241 categories = "finance,travel",
10242 tags = "bill,voucher,slip,check,counterfoil,currency,cents,dollar,usd,$,¢",
10243 contributors = "danielbayley,karsa-mistmere"
10244 ))]
10245 ReceiptCent,
10246 #[cfg(any(feature = "finance", feature = "travel"))]
10247 #[strum(props(
10248 svg = "<path d=\"M15.82 14.82a4 4 0 0 1-5.65 0 4 4 0 0 1 0-5.65 4 4 0 0 1 5.65 0\"></path><path d=\"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z\"></path><path d=\"M8 12h5\"></path>",
10249 categories = "finance,travel",
10250 tags = "bill,voucher,slip,check,counterfoil,currency,€",
10251 contributors = "danielbayley,karsa-mistmere"
10252 ))]
10253 ReceiptEuro,
10254 #[cfg(any(feature = "finance", feature = "travel"))]
10255 #[strum(props(
10256 svg = "<path d=\"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z\"></path><path d=\"M8 11h8\"></path><path d=\"M8 7h8\"></path><path d=\"M9 7a4 4 0 0 1 0 8H8l3 2\"></path>",
10257 categories = "finance,travel",
10258 tags = "bill,voucher,slip,check,counterfoil,currency,inr,₹",
10259 contributors = "danielbayley,karsa-mistmere"
10260 ))]
10261 ReceiptIndianRupee,
10262 #[cfg(any(feature = "finance", feature = "travel"))]
10263 #[strum(props(
10264 svg = "<path d=\"m12 10 3-3\"></path><path d=\"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z\"></path><path d=\"M9 11h6\"></path><path d=\"M9 15h6\"></path><path d=\"m9 7 3 3v7\"></path>",
10265 categories = "finance,travel",
10266 tags = "bill,voucher,slip,check,counterfoil,currency,jpy,¥",
10267 contributors = "it-is-not,ericfennis,karsa-mistmere"
10268 ))]
10269 ReceiptJapaneseYen,
10270 #[cfg(any(feature = "finance", feature = "travel"))]
10271 #[strum(props(
10272 svg = "<path d=\"M10 17V9.5a1 1 0 0 1 5 0\"></path><path d=\"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z\"></path><path d=\"M8 13h5\"></path><path d=\"M8 17h7\"></path>",
10273 categories = "finance,travel",
10274 tags = "bill,voucher,slip,check,counterfoil,british,currency,gbp,£",
10275 contributors = "danielbayley,karsa-mistmere"
10276 ))]
10277 ReceiptPoundSterling,
10278 #[cfg(any(feature = "finance", feature = "travel"))]
10279 #[strum(props(
10280 svg = "<path d=\"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z\"></path><path d=\"M8 11h5a2 2 0 0 0 0-4h-3v10\"></path><path d=\"M8 15h5\"></path>",
10281 categories = "finance,travel",
10282 tags = "bill,voucher,slip,check,counterfoil,currency,rub,₽",
10283 contributors = "danielbayley,karsa-mistmere"
10284 ))]
10285 ReceiptRussianRuble,
10286 #[cfg(any(feature = "finance", feature = "travel"))]
10287 #[strum(props(
10288 svg = "<path d=\"M10 11h4\"></path><path d=\"M10 17V7h5\"></path><path d=\"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z\"></path><path d=\"M8 15h5\"></path>",
10289 categories = "finance,travel",
10290 tags = "bill,voucher,slip,check,counterfoil,currency,chf,₣",
10291 contributors = "danielbayley,karsa-mistmere"
10292 ))]
10293 ReceiptSwissFranc,
10294 #[cfg(any(feature = "finance", feature = "travel"))]
10295 #[strum(props(
10296 svg = "<path d=\"M13 16H8\"></path><path d=\"M14 8H8\"></path><path d=\"M16 12H8\"></path><path d=\"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z\"></path>",
10297 categories = "finance,travel",
10298 tags = "bill,voucher,slip,check,counterfoil,details,small print,terms,conditions,contract",
10299 contributors = "danielbayley,jguddas,karsa-mistmere"
10300 ))]
10301 ReceiptText,
10302 #[cfg(any(feature = "finance", feature = "travel"))]
10303 #[strum(props(
10304 svg = "<path d=\"M10 7v10a5 5 0 0 0 5-5\"></path><path d=\"m14 8-6 3\"></path><path d=\"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z\"></path>",
10305 categories = "finance,travel",
10306 tags = "bill,voucher,slip,check,counterfoil,currency,try,₺",
10307 contributors = "danielbayley,jamiemlaw,karsa-mistmere"
10308 ))]
10309 ReceiptTurkishLira,
10310 #[cfg(any(feature = "finance", feature = "travel"))]
10311 #[strum(props(
10312 svg = "<path d=\"M12 17V7\"></path><path d=\"M16 8h-6a2 2 0 0 0 0 4h4a2 2 0 0 1 0 4H8\"></path><path d=\"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z\"></path>",
10313 categories = "finance,travel",
10314 tags = "bill,voucher,slip,check,counterfoil,currency,dollar,usd,$",
10315 contributors = "karsa-mistmere,it-is-not,ericfennis"
10316 ))]
10317 Receipt,
10318 #[cfg(any(feature = "development", feature = "text"))]
10319 #[strum(props(
10320 svg = "<path d=\"M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z\"></path><circle cx=\"14\" cy=\"12\" r=\"8\"></circle>",
10321 categories = "development,text",
10322 tags = "compose,keyboard,key,button",
10323 contributors = "zefir-git,jguddas"
10324 ))]
10325 RectangleCircle,
10326 #[cfg(any(feature = "text", feature = "development"))]
10327 #[strum(props(
10328 svg = "<rect height=\"12\" rx=\"2\" width=\"20\" x=\"2\" y=\"6\"></rect><path d=\"M12 12h.01\"></path><path d=\"M17 12h.01\"></path><path d=\"M7 12h.01\"></path>",
10329 categories = "text,development",
10330 tags = "login,password,authenticate,2fa,field,fill,ellipsis,et cetera,etc,loader,loading,progress,pending,throbber,menu,options,operator,code,spread,rest,more,further,extra,overflow,dots,…,...",
10331 contributors = "mittalyashu,ericfennis"
10332 ))]
10333 RectangleEllipsis,
10334 #[cfg(any(
10335 feature = "devices",
10336 feature = "gaming",
10337 feature = "multimedia",
10338 feature = "connectivity"
10339 ))]
10340 #[strum(props(
10341 svg = "<path d=\"M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z\"></path>",
10342 categories = "devices,gaming,multimedia,connectivity",
10343 tags = "vr,virtual,augmented,reality,headset,goggles",
10344 contributors = "EthanHazel,jguddas"
10345 ))]
10346 RectangleGoggles,
10347 #[cfg(any(feature = "shapes", feature = "design"))]
10348 #[strum(props(
10349 svg = "<rect height=\"12\" rx=\"2\" width=\"20\" x=\"2\" y=\"6\"></rect>",
10350 categories = "shapes,design",
10351 tags = "rectangle,aspect ratio,16:9,horizontal,shape",
10352 contributors = "colebemis,Reund0,danielbayley,karsa-mistmere,ericfennis"
10353 ))]
10354 RectangleHorizontal,
10355 #[cfg(any(feature = "shapes", feature = "design"))]
10356 #[strum(props(
10357 svg = "<rect height=\"20\" rx=\"2\" width=\"12\" x=\"6\" y=\"2\"></rect>",
10358 categories = "shapes,design",
10359 tags = "rectangle,aspect ratio,9:16,vertical,shape",
10360 contributors = "colebemis,Reund0,danielbayley,karsa-mistmere,ericfennis"
10361 ))]
10362 RectangleVertical,
10363 #[cfg(feature = "sustainability")]
10364 #[strum(props(
10365 svg = "<path d=\"M7 19H4.81a1.83 1.83 0 0 1-1.57-.881 1.78 1.78 0 0 1-.004-1.78L7.19 9.5\"></path><path d=\"M11 19h8.20a1.83 1.83 0 0 0 1.55-.89 1.78 1.78 0 0 0 0-1.77l-1.22-2.12\"></path><path d=\"m14 16-3 3 3 3\"></path><path d=\"M8.29 13.59 7.19 9.5 3.1 10.59\"></path><path d=\"m9.34 5.81 1.09-1.89A1.83 1.83 0 0 1 11.98 3a1.78 1.78 0 0 1 1.54.888l3.94 6.84\"></path><path d=\"m13.37 9.63 4.09 1.09 1.09-4.09\"></path>",
10366 categories = "sustainability",
10367 tags = "sustainability,salvage,arrows",
10368 contributors = "karsa-mistmere"
10369 ))]
10370 Recycle,
10371 #[cfg(any(feature = "text", feature = "arrows"))]
10372 #[strum(props(
10373 svg = "<path d=\"m15 14 5-5-5-5\"></path><path d=\"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13\"></path>",
10374 categories = "text,arrows",
10375 tags = "undo,rerun,history",
10376 contributors = "lscheibel,danielbayley,karsa-mistmere"
10377 ))]
10378 Redo2,
10379 #[cfg(any(feature = "text", feature = "arrows"))]
10380 #[strum(props(
10381 svg = "<circle cx=\"12\" cy=\"17\" r=\"1\"></circle><path d=\"M21 7v6h-6\"></path><path d=\"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7\"></path>",
10382 categories = "text,arrows",
10383 tags = "redo,history,step,over,forward",
10384 contributors = "danielbayley,karsa-mistmere"
10385 ))]
10386 RedoDot,
10387 #[cfg(any(feature = "text", feature = "arrows"))]
10388 #[strum(props(
10389 svg = "<path d=\"M21 7v6h-6\"></path><path d=\"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7\"></path>",
10390 categories = "text,arrows",
10391 tags = "undo,rerun,history",
10392 contributors = "aelfric,ericfennis,csandman"
10393 ))]
10394 Redo,
10395 #[cfg(any(feature = "arrows", feature = "development"))]
10396 #[strum(props(
10397 svg = "<path d=\"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8\"></path><path d=\"M3 3v5h5\"></path><path d=\"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16\"></path><path d=\"M16 16h5v5\"></path><circle cx=\"12\" cy=\"12\" r=\"1\"></circle>",
10398 categories = "arrows,development",
10399 tags = "arrows,rotate,reload,synchronise,synchronize,circular,cycle,issue,code,coding,version control",
10400 contributors = "csandman,ericfennis,danielbayley,jamiemlaw"
10401 ))]
10402 RefreshCcwDot,
10403 #[cfg(feature = "arrows")]
10404 #[strum(props(
10405 svg = "<path d=\"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8\"></path><path d=\"M3 3v5h5\"></path><path d=\"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16\"></path><path d=\"M16 16h5v5\"></path>",
10406 categories = "arrows",
10407 tags = "arrows,rotate,reload,rerun,synchronise,synchronize,circular,cycle",
10408 contributors = "colebemis,csandman,ericfennis,danielbayley,jguddas,karsa-mistmere"
10409 ))]
10410 RefreshCcw,
10411 #[cfg(feature = "arrows")]
10412 #[strum(props(
10413 svg = "<path d=\"M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47\"></path><path d=\"M8 16H3v5\"></path><path d=\"M3 12C3 9.51 4 7.26 5.64 5.64\"></path><path d=\"m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64\"></path><path d=\"M21 12c0 1-.16 1.97-.47 2.87\"></path><path d=\"M21 3v5h-5\"></path><path d=\"M22 22 2 2\"></path>",
10414 categories = "arrows",
10415 tags = "rotate,reload,rerun,synchronise,synchronize,arrows,circular,cycle,cancel,no,stop,error,disconnect,ignore",
10416 contributors = "danielbayley,jguddas,karsa-mistmere"
10417 ))]
10418 RefreshCwOff,
10419 #[cfg(feature = "arrows")]
10420 #[strum(props(
10421 svg = "<path d=\"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8\"></path><path d=\"M21 3v5h-5\"></path><path d=\"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16\"></path><path d=\"M8 16H3v5\"></path>",
10422 categories = "arrows",
10423 tags = "rotate,reload,rerun,synchronise,synchronize,arrows,circular,cycle",
10424 contributors = "colebemis,csandman,ericfennis,danielbayley,jguddas,karsa-mistmere"
10425 ))]
10426 RefreshCw,
10427 #[cfg(any(feature = "food_beverage", feature = "home"))]
10428 #[strum(props(
10429 svg = "<path d=\"M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z\"></path><path d=\"M5 10h14\"></path><path d=\"M15 7v6\"></path>",
10430 categories = "food-beverage,home",
10431 tags = "frigerator,fridge,freezer,cooler,icebox,chiller,cold storage",
10432 contributors = "karsa-mistmere"
10433 ))]
10434 Refrigerator,
10435 #[cfg(any(feature = "text", feature = "development"))]
10436 #[strum(props(
10437 svg = "<path d=\"M17 3v10\"></path><path d=\"m12.67 5.5 8.66 5\"></path><path d=\"m12.67 10.5 8.66-5\"></path><path d=\"M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z\"></path>",
10438 categories = "text,development",
10439 tags = "search,text,code",
10440 contributors = "mittalyashu,ericfennis"
10441 ))]
10442 Regex,
10443 #[cfg(feature = "text")]
10444 #[strum(props(
10445 svg = "<path d=\"M4 7V4h16v3\"></path><path d=\"M5 20h6\"></path><path d=\"M13 4 8 20\"></path><path d=\"m15 15 5 5\"></path><path d=\"m20 15-5 5\"></path>",
10446 categories = "text",
10447 tags = "text,font,typography,format,x,remove,delete,times,clear",
10448 contributors = "ericfennis"
10449 ))]
10450 RemoveFormatting,
10451 #[cfg(feature = "multimedia")]
10452 #[strum(props(
10453 svg = "<path d=\"m17 2 4 4-4 4\"></path><path d=\"M3 11v-1a4 4 0 0 1 4-4h14\"></path><path d=\"m7 22-4-4 4-4\"></path><path d=\"M21 13v1a4 4 0 0 1-4 4H3\"></path><path d=\"M11 10h1v4\"></path>",
10454 categories = "multimedia",
10455 tags = "replay",
10456 contributors = "ericfennis"
10457 ))]
10458 Repeat1,
10459 #[cfg(any(feature = "arrows", feature = "social", feature = "multimedia"))]
10460 #[strum(props(
10461 svg = "<path d=\"m2 9 3-3 3 3\"></path><path d=\"M13 18H7a2 2 0 0 1-2-2V6\"></path><path d=\"m22 15-3 3-3-3\"></path><path d=\"M11 6h6a2 2 0 0 1 2 2v10\"></path>",
10462 categories = "arrows,social,multimedia",
10463 tags = "arrows,retweet,repost,share,repeat,loop",
10464 contributors = "danielbayley,karsa-mistmere"
10465 ))]
10466 Repeat2,
10467 #[cfg(any(feature = "arrows", feature = "multimedia"))]
10468 #[strum(props(
10469 svg = "<path d=\"M11.65 6H21l-4-4\"></path><path d=\"M17.89 17.89A4 4 0 0 1 17 18H3l4-4\"></path><path d=\"m2 2 20 20\"></path><path d=\"M21 13v1a4 4 0 0 1-.171 1.15\"></path><path d=\"m21 6-4 4\"></path><path d=\"M3 11v-1a4 4 0 0 1 3.10-3.89\"></path><path d=\"m7 22-4-4\"></path>",
10470 categories = "arrows,multimedia",
10471 tags = "loop,arrows,recurring,again",
10472 contributors = "colebemis,csandman,ericfennis,jguddas"
10473 ))]
10474 RepeatOff,
10475 #[cfg(any(feature = "arrows", feature = "multimedia"))]
10476 #[strum(props(
10477 svg = "<path d=\"m17 2 4 4-4 4\"></path><path d=\"M3 11v-1a4 4 0 0 1 4-4h14\"></path><path d=\"m7 22-4-4 4-4\"></path><path d=\"M21 13v1a4 4 0 0 1-4 4H3\"></path>",
10478 categories = "arrows,multimedia",
10479 tags = "loop,arrows",
10480 contributors = "colebemis,csandman,ericfennis"
10481 ))]
10482 Repeat,
10483 #[cfg(feature = "text")]
10484 #[strum(props(
10485 svg = "<path d=\"M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1\"></path><path d=\"M14 4a1 1 0 0 1 1-1\"></path><path d=\"M15 10a1 1 0 0 1-1-1\"></path><path d=\"M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1\"></path><path d=\"M21 4a1 1 0 0 0-1-1\"></path><path d=\"M21 9a1 1 0 0 1-1 1\"></path><path d=\"m3 7 3 3 3-3\"></path><path d=\"M6 10V5a2 2 0 0 1 2-2h2\"></path><rect height=\"7\" rx=\"1\" width=\"7\" x=\"3\" y=\"14\"></rect>",
10486 categories = "text",
10487 tags = "search,substitute,swap,change",
10488 contributors = "danielbayley,jguddas,karsa-mistmere"
10489 ))]
10490 ReplaceAll,
10491 #[cfg(feature = "text")]
10492 #[strum(props(
10493 svg = "<path d=\"M14 4a1 1 0 0 1 1-1\"></path><path d=\"M15 10a1 1 0 0 1-1-1\"></path><path d=\"M21 4a1 1 0 0 0-1-1\"></path><path d=\"M21 9a1 1 0 0 1-1 1\"></path><path d=\"m3 7 3 3 3-3\"></path><path d=\"M6 10V5a2 2 0 0 1 2-2h2\"></path><rect height=\"7\" rx=\"1\" width=\"7\" x=\"3\" y=\"14\"></rect>",
10494 categories = "text",
10495 tags = "search,substitute,swap,change",
10496 contributors = "danielbayley,jguddas,karsa-mistmere"
10497 ))]
10498 Replace,
10499 #[cfg(feature = "mail")]
10500 #[strum(props(
10501 svg = "<path d=\"m12 17-5-5 5-5\"></path><path d=\"M22 18v-2a4 4 0 0 0-4-4H7\"></path><path d=\"m7 17-5-5 5-5\"></path>",
10502 categories = "mail",
10503 tags = "email",
10504 contributors = "Andreto,ericfennis,mittalyashu"
10505 ))]
10506 ReplyAll,
10507 #[cfg(feature = "mail")]
10508 #[strum(props(
10509 svg = "<path d=\"M20 18v-2a4 4 0 0 0-4-4H4\"></path><path d=\"m9 17-5-5 5-5\"></path>",
10510 categories = "mail",
10511 tags = "email",
10512 contributors = "Andreto,ericfennis,mittalyashu"
10513 ))]
10514 Reply,
10515 #[cfg(any(feature = "arrows", feature = "multimedia"))]
10516 #[strum(props(
10517 svg = "<path d=\"M12 6a2 2 0 0 0-3.41-1.41l-6 6a2 2 0 0 0 0 2.82l6 6A2 2 0 0 0 12 18z\"></path><path d=\"M22 6a2 2 0 0 0-3.41-1.41l-6 6a2 2 0 0 0 0 2.82l6 6A2 2 0 0 0 22 18z\"></path>",
10518 categories = "arrows,multimedia",
10519 tags = "music",
10520 contributors = "colebemis,karsa-mistmere"
10521 ))]
10522 Rewind,
10523 #[cfg(any(feature = "social", feature = "medical", feature = "emoji"))]
10524 #[strum(props(
10525 svg = "<path d=\"M12 11.22C11 9.99 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.00-2.01 3.22\"></path><path d=\"m12 18 2.57-3.5\"></path><path d=\"M6.24 9.01a7 7 0 0 1 11.50-.009\"></path><path d=\"M9.35 14.53 12 11.22\"></path><path d=\"M9.35 14.53C7.72 12.24 6 10.22 6 7a6 5 0 0 1 12 0c-.005 3.22-1.77 5.23-3.43 7.5l3.55 4.52a1 1 0 0 1-.203 1.43l-1.89 1.36a1 1 0 0 1-1.38-.215L12 18l-2.67 3.59a1 1 0 0 1-1.39.21l-1.86-1.35a1 1 0 0 1-.203-1.42z\"></path>",
10526 categories = "social,medical,emoji",
10527 tags = "awareness,strip,band,tape,strap,cordon",
10528 contributors = "karsa-mistmere"
10529 ))]
10530 Ribbon,
10531 #[cfg(feature = "transportation")]
10532 #[strum(props(
10533 svg = "<path d=\"M12 17v4\"></path><path d=\"M12 5V3\"></path><path d=\"M12 9v3\"></path><path d=\"M2.07 18.44A2 2 0 0 0 4 21h16a2 2 0 0 0 1.92-2.55l-4-14A2 2 0 0 0 16 3H8a2 2 0 0 0-1.92 1.45z\"></path>",
10534 categories = "transportation",
10535 tags = "road,street,highway,route,path,transport,traffic,drive,map",
10536 contributors = "uibalint,karsa-mistmere,jguddas"
10537 ))]
10538 Road,
10539 #[cfg(any(feature = "gaming", feature = "development"))]
10540 #[strum(props(
10541 svg = "<path d=\"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5\"></path><path d=\"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09\"></path><path d=\"M9 12a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.4 22.4 0 0 1-4 2z\"></path><path d=\"M9 12H4s.55-3.03 2-4c1.62-1.08 5 .05 5 .05\"></path>",
10542 categories = "gaming,development",
10543 tags = "release,boost,launch,space,version",
10544 contributors = "ericfennis,jguddas"
10545 ))]
10546 Rocket,
10547 #[cfg(feature = "home")]
10548 #[strum(props(
10549 svg = "<path d=\"m15 13 3.70 7.41\"></path><path d=\"M3 19a15 15 0 0 0 18 0\"></path><path d=\"m3 2 3.21 9.63A2 2 0 0 0 8.10 13H18\"></path><path d=\"m9 13-3.70 7.41\"></path>",
10550 categories = "home",
10551 tags = "chair,furniture,seat,comfort,relax",
10552 contributors = "connium,ericfennis,jamiemlaw"
10553 ))]
10554 RockingChair,
10555 #[cfg(feature = "navigation")]
10556 #[strum(props(
10557 svg = "<path d=\"M6 19V5\"></path><path d=\"M10 19V6.8\"></path><path d=\"M14 19v-7.8\"></path><path d=\"M18 5v4\"></path><path d=\"M18 19v-6\"></path><path d=\"M22 19V9\"></path><path d=\"M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65\"></path>",
10558 categories = "navigation",
10559 tags = "attraction,entertainment,amusement park,theme park,funfair",
10560 contributors = "karsa-mistmere"
10561 ))]
10562 RollerCoaster,
10563 #[cfg(any(
10564 feature = "nature",
10565 feature = "seasons",
10566 feature = "sustainability",
10567 feature = "home",
10568 feature = "social"
10569 ))]
10570 #[strum(props(
10571 svg = "<path d=\"M17 10h-1a4 4 0 1 1 4-4v.534\"></path><path d=\"M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.33-10.68l2.06-1.31\"></path><path d=\"M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2\"></path><path d=\"M9.77 12C4 15 2 22 2 22\"></path><circle cx=\"17\" cy=\"8\" r=\"2\"></circle>",
10572 categories = "nature,seasons,sustainability,home,social",
10573 tags = "roses,thorns,petals,plant,stem,leaves,spring,bloom,blossom,gardening,botanical,flora,florist,bouquet,bunch,gift,date,romance,romantic,valentines day,special occasion",
10574 contributors = "danielbayley,jguddas,jamiemlaw,mittalyashu"
10575 ))]
10576 Rose,
10577 #[cfg(feature = "design")]
10578 #[strum(props(
10579 svg = "<path d=\"m15.19 13.70 3.81 1.86-1.86 3.81\"></path><path d=\"M16.47 7.52 A 5 10 0 1 0 13 21.79\"></path><path d=\"M21.79 11 A 10 5 0 1 0 19 15.57\"></path>",
10580 categories = "design",
10581 tags = "gizmo,transform,orientation,orbit,axis",
10582 contributors = "lscheibel"
10583 ))]
10584 Rotate3D,
10585 #[cfg(any(feature = "security", feature = "account"))]
10586 #[strum(props(
10587 svg = "<path d=\"M12 7v6\"></path><path d=\"M12 9h2\"></path><path d=\"M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8\"></path><path d=\"M3 3v5h5\"></path><circle cx=\"12\" cy=\"15\" r=\"2\"></circle>",
10588 categories = "security,account",
10589 tags = "password,key,refresh,change",
10590 contributors = "karsa-mistmere,pgbradbury,jguddas"
10591 ))]
10592 RotateCcwKey,
10593 #[cfg(any(
10594 feature = "layout",
10595 feature = "design",
10596 feature = "photography",
10597 feature = "tools",
10598 feature = "arrows"
10599 ))]
10600 #[strum(props(
10601 svg = "<path d=\"M20 9V7a2 2 0 0 0-2-2h-6\"></path><path d=\"m15 2-3 3 3 3\"></path><path d=\"M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2\"></path>",
10602 categories = "layout,design,photography,tools,arrows",
10603 tags = "left,counter-clockwise,rotate,image,90,45,degrees,°",
10604 contributors = "danielbayley"
10605 ))]
10606 RotateCcwSquare,
10607 #[cfg(any(feature = "arrows", feature = "design", feature = "photography"))]
10608 #[strum(props(
10609 svg = "<path d=\"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8\"></path><path d=\"M3 3v5h5\"></path>",
10610 categories = "arrows,design,photography",
10611 tags = "arrow,left,counter-clockwise,restart,reload,rerun,refresh,backup,undo,replay,redo,retry,rewind,reverse",
10612 contributors = "colebemis,csandman,ericfennis,danielbayley,jguddas,karsa-mistmere"
10613 ))]
10614 RotateCcw,
10615 #[cfg(any(
10616 feature = "layout",
10617 feature = "design",
10618 feature = "photography",
10619 feature = "tools",
10620 feature = "arrows"
10621 ))]
10622 #[strum(props(
10623 svg = "<path d=\"M12 5H6a2 2 0 0 0-2 2v3\"></path><path d=\"m9 8 3-3-3-3\"></path><path d=\"M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2\"></path>",
10624 categories = "layout,design,photography,tools,arrows",
10625 tags = "right,clockwise,rotate,image,90,45,degrees,°",
10626 contributors = "danielbayley"
10627 ))]
10628 RotateCwSquare,
10629 #[cfg(any(feature = "arrows", feature = "design", feature = "photography"))]
10630 #[strum(props(
10631 svg = "<path d=\"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8\"></path><path d=\"M21 3v5h-5\"></path>",
10632 categories = "arrows,design,photography",
10633 tags = "arrow,right,clockwise,refresh,reload,rerun,redo",
10634 contributors = "colebemis,csandman,ericfennis,danielbayley,jguddas,karsa-mistmere"
10635 ))]
10636 RotateCw,
10637 #[cfg(feature = "navigation")]
10638 #[strum(props(
10639 svg = "<circle cx=\"6\" cy=\"19\" r=\"3\"></circle><path d=\"M9 19h8.5c.4 0 .9-.1 1.3-.2\"></path><path d=\"M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12\"></path><path d=\"m2 2 20 20\"></path><path d=\"M21 15.3a3.5 3.5 0 0 0-3.3-3.3\"></path><path d=\"M15 5h-4.3\"></path><circle cx=\"18\" cy=\"5\" r=\"3\"></circle>",
10640 categories = "navigation",
10641 tags = "path,journey,planner,points,stops,stations,reset,clear,cancelled,closed,blocked",
10642 contributors = "danielbayley"
10643 ))]
10644 RouteOff,
10645 #[cfg(feature = "navigation")]
10646 #[strum(props(
10647 svg = "<circle cx=\"6\" cy=\"19\" r=\"3\"></circle><path d=\"M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15\"></path><circle cx=\"18\" cy=\"5\" r=\"3\"></circle>",
10648 categories = "navigation",
10649 tags = "path,journey,planner,points,stops,stations",
10650 contributors = "danielbayley"
10651 ))]
10652 Route,
10653 #[cfg(any(
10654 feature = "development",
10655 feature = "devices",
10656 feature = "connectivity",
10657 feature = "home"
10658 ))]
10659 #[strum(props(
10660 svg = "<rect height=\"8\" rx=\"2\" width=\"20\" x=\"2\" y=\"14\"></rect><path d=\"M6.01 18H6\"></path><path d=\"M10.01 18H10\"></path><path d=\"M15 10v4\"></path><path d=\"M17.84 7.17a4 4 0 0 0-5.66 0\"></path><path d=\"M20.66 4.34a8 8 0 0 0-11.31 0\"></path>",
10661 categories = "development,devices,connectivity,home",
10662 tags = "computer,server,cloud",
10663 contributors = "FrancoMaxime,ericfennis,karsa-mistmere"
10664 ))]
10665 Router,
10666 #[cfg(any(feature = "layout", feature = "design", feature = "text"))]
10667 #[strum(props(
10668 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M3 12h18\"></path>",
10669 categories = "layout,design,text",
10670 tags = "lines,list,queue,preview,panel,paragraphs,parallel,series,split,vertical,horizontal,half,center,middle,even,drawer",
10671 contributors = "danielbayley"
10672 ))]
10673 Rows2,
10674 #[cfg(any(feature = "layout", feature = "design", feature = "text"))]
10675 #[strum(props(
10676 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M21 9H3\"></path><path d=\"M21 15H3\"></path>",
10677 categories = "layout,design,text",
10678 tags = "lines,list,queue,preview,paragraphs,parallel,series,split,vertical,horizontal,half,center,middle,even,drawers",
10679 contributors = "danielbayley"
10680 ))]
10681 Rows3,
10682 #[cfg(any(feature = "layout", feature = "design", feature = "text"))]
10683 #[strum(props(
10684 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M21 7.5H3\"></path><path d=\"M21 12H3\"></path><path d=\"M21 16.5H3\"></path>",
10685 categories = "layout,design,text",
10686 tags = "lines,list,queue,preview,paragraphs,parallel,series,split,vertical,horizontal,half,center,middle,even,drawers,grill",
10687 contributors = "danielbayley"
10688 ))]
10689 Rows4,
10690 #[cfg(any(feature = "development", feature = "social"))]
10691 #[strum(props(
10692 svg = "<path d=\"M4 11a9 9 0 0 1 9 9\"></path><path d=\"M4 4a16 16 0 0 1 16 16\"></path><circle cx=\"5\" cy=\"19\" r=\"1\"></circle>",
10693 categories = "development,social",
10694 tags = "feed,subscribe,news,updates,notifications,content,blog,articles,broadcast,syndication,reader,channels,posts,publishing,digest,alert,following,inbox,newsletter,weblog,podcast",
10695 contributors = "colebemis,csandman,ericfennis"
10696 ))]
10697 Rss,
10698 #[cfg(any(feature = "tools", feature = "design", feature = "layout"))]
10699 #[strum(props(
10700 svg = "<path d=\"M10 15v-3\"></path><path d=\"M14 15v-3\"></path><path d=\"M18 15v-3\"></path><path d=\"M2 8V4\"></path><path d=\"M22 6H2\"></path><path d=\"M22 8V4\"></path><path d=\"M6 15v-3\"></path><rect height=\"8\" rx=\"2\" width=\"20\" x=\"2\" y=\"12\"></rect>",
10701 categories = "tools,design,layout",
10702 tags = "measurements,centimeters,cm,millimeters,mm,metre,foot,feet,inches,units,size,length,width,height,dimensions,depth,breadth,extent,stationery",
10703 contributors = "jguddas,karsa-mistmere"
10704 ))]
10705 RulerDimensionLine,
10706 #[cfg(any(feature = "tools", feature = "design", feature = "layout"))]
10707 #[strum(props(
10708 svg = "<path d=\"M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z\"></path><path d=\"m14.5 12.5 2-2\"></path><path d=\"m11.5 9.5 2-2\"></path><path d=\"m8.5 6.5 2-2\"></path><path d=\"m17.5 15.5 2-2\"></path>",
10709 categories = "tools,design,layout",
10710 tags = "measurements,centimeters,cm,millimeters,mm,metre,foot,feet,inches,units,size,length,width,height,dimensions,depth,breadth,extent,stationery",
10711 contributors = "Andreto,ericfennis,csandman,karsa-mistmere"
10712 ))]
10713 Ruler,
10714 #[cfg(feature = "finance")]
10715 #[strum(props(
10716 svg = "<path d=\"M6 11h8a4 4 0 0 0 0-8H9v18\"></path><path d=\"M6 15h8\"></path>",
10717 categories = "finance",
10718 tags = "currency,money,payment",
10719 contributors = "ericfennis,mittalyashu"
10720 ))]
10721 RussianRuble,
10722 #[cfg(any(feature = "transportation", feature = "travel"))]
10723 #[strum(props(
10724 svg = "<path d=\"M10 2v15\"></path><path d=\"M7 22a4 4 0 0 1-4-4 1 1 0 0 1 1-1h16a1 1 0 0 1 1 1 4 4 0 0 1-4 4z\"></path><path d=\"M9.15 2.46a1 1 0 0 1 1.52-.193l9.97 8.98A1 1 0 0 1 20 13H4a1 1 0 0 1-.824-1.56z\"></path>",
10725 categories = "transportation,travel",
10726 tags = "ship,boat,harbor,harbour,dock",
10727 contributors = "karsa-mistmere,ericfennis"
10728 ))]
10729 Sailboat,
10730 #[cfg(any(feature = "food_beverage", feature = "emoji"))]
10731 #[strum(props(
10732 svg = "<path d=\"M7 21h10\"></path><path d=\"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z\"></path><path d=\"M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1\"></path><path d=\"m13 12 4-4\"></path><path d=\"M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2\"></path>",
10733 categories = "food-beverage,emoji",
10734 tags = "food,vegetarian,dish,restaurant,course,meal,side,vegetables,health",
10735 contributors = "kemie"
10736 ))]
10737 Salad,
10738 #[cfg(feature = "food_beverage")]
10739 #[strum(props(
10740 svg = "<path d=\"m2.37 11.22 8.37-6.77a2 2 0 0 1 2.51 0l8.37 6.77\"></path><path d=\"M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25\"></path><path d=\"M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9\"></path><path d=\"m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2\"></path><rect height=\"4\" rx=\"1\" width=\"20\" x=\"2\" y=\"11\"></rect>",
10741 categories = "food-beverage",
10742 tags = "food,snack,dish,restaurant,lunch,meal",
10743 contributors = "kemie,jamiemlaw"
10744 ))]
10745 Sandwich,
10746 #[cfg(any(feature = "connectivity", feature = "devices", feature = "multimedia"))]
10747 #[strum(props(
10748 svg = "<path d=\"M4 10a7.31 7.31 0 0 0 10 10Z\"></path><path d=\"m9 15 3-3\"></path><path d=\"M17 13a6 6 0 0 0-6-6\"></path><path d=\"M21 13A10 10 0 0 0 11 3\"></path>",
10749 categories = "connectivity,devices,multimedia",
10750 tags = "antenna,receiver,dish aerial,saucer",
10751 contributors = "karsa-mistmere,ericfennis"
10752 ))]
10753 SatelliteDish,
10754 #[cfg(any(feature = "connectivity", feature = "science"))]
10755 #[strum(props(
10756 svg = "<path d=\"m13.5 6.5-3.14-3.14a1.20 1.20 0 0 0-1.70 0L6.35 5.64a1.20 1.20 0 0 0 0 1.70L9.5 10.5\"></path><path d=\"M16.5 7.5 19 5\"></path><path d=\"m17.5 10.5 3.14 3.14a1.20 1.20 0 0 1 0 1.70l-2.29 2.29a1.20 1.20 0 0 1-1.70 0L13.5 14.5\"></path><path d=\"M9 21a6 6 0 0 0-6-6\"></path><path d=\"M9.35 10.64a1.20 1.20 0 0 0 0 1.70l2.29 2.29a1.20 1.20 0 0 0 1.70 0l4.29-4.29a1.20 1.20 0 0 0 0-1.70l-2.29-2.29a1.20 1.20 0 0 0-1.70 0z\"></path>",
10757 categories = "connectivity,science",
10758 tags = "space station,orbit,transmitter",
10759 contributors = "karsa-mistmere,ericfennis"
10760 ))]
10761 Satellite,
10762 #[cfg(feature = "finance")]
10763 #[strum(props(
10764 svg = "<path d=\"m20 19.5-5.5 1.2\"></path><path d=\"M14.5 4v11.22a1 1 0 0 0 1.24.97L20 15.2\"></path><path d=\"m2.97 19.35 5.54-1.36A2 2 0 0 0 10 16V2\"></path><path d=\"M20 10 4 13.5\"></path>",
10765 categories = "finance",
10766 tags = "currency,money,payment",
10767 contributors = "null78,jguddas"
10768 ))]
10769 SaudiRiyal,
10770 #[cfg(any(feature = "text", feature = "files"))]
10771 #[strum(props(
10772 svg = "<path d=\"M10 2v3a1 1 0 0 0 1 1h5\"></path><path d=\"M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6\"></path><path d=\"M18 22H4a2 2 0 0 1-2-2V6\"></path><path d=\"M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.17a2 2 0 0 1 1.41.586l2.82 2.82A2 2 0 0 1 22 6.82V16a2 2 0 0 1-2.01 2z\"></path>",
10773 categories = "text,files",
10774 tags = "floppy disks,copy",
10775 contributors = "danielbayley,karsa-mistmere,jguddas"
10776 ))]
10777 SaveAll,
10778 #[cfg(any(feature = "text", feature = "files", feature = "development"))]
10779 #[strum(props(
10780 svg = "<path d=\"M12.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h10.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4v4.35\"></path><path d=\"m16 19 2 2 4-4\"></path><path d=\"M17 15.13V14a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7\"></path><path d=\"M7 3v4a1 1 0 0 0 1 1h7\"></path>",
10781 categories = "text,files,development",
10782 tags = "save,save-check,floppy-disk,saved,check,save-success",
10783 contributors = "Konixy,colebemis,csandman,ericfennis"
10784 ))]
10785 SaveCheck,
10786 #[cfg(any(feature = "text", feature = "files"))]
10787 #[strum(props(
10788 svg = "<path d=\"M13 13H8a1 1 0 0 0-1 1v7\"></path><path d=\"M14 8h1\"></path><path d=\"M17 21v-4\"></path><path d=\"m2 2 20 20\"></path><path d=\"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41\"></path><path d=\"M29.5 11.5s5 5 4 5\"></path><path d=\"M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15\"></path>",
10789 categories = "text,files",
10790 tags = "floppy disk,unsalvageable",
10791 contributors = "AnnaSasDev"
10792 ))]
10793 SaveOff,
10794 #[cfg(any(feature = "text", feature = "files"))]
10795 #[strum(props(
10796 svg = "<path d=\"M13.33 13H8a1 1 0 00-1 1v7\"></path><path d=\"M14.36 17.63a2 2 0 00-.506.85l-.837 2.87a.5.5 0 00.62.62l2.87-.837a2 2 0 00.85-.506l4.01-4.00a1 1 0 10-3.00-3.00z\"></path><path d=\"M7 3v4a1 1 0 001 1h7\"></path><path d=\"M9 21H5a2 2 0 01-2-2V5a2 2 0 012-2h10.2a2 2 0 011.4.6l3.8 3.8a2 2 0 01.6 1.4v.3\"></path>",
10797 categories = "text,files",
10798 tags = "floppy disk,directory,rename",
10799 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,vaporvee"
10800 ))]
10801 SavePen,
10802 #[cfg(any(feature = "text", feature = "files"))]
10803 #[strum(props(
10804 svg = "<path d=\"M12.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h10.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V12\"></path><path d=\"M16 13H8a1 1 0 0 0-1 1v7\"></path><path d=\"M19 22v-6\"></path><path d=\"M22 19h-6\"></path><path d=\"M7 3v4a1 1 0 0 0 1 1h7\"></path>",
10805 categories = "text,files",
10806 tags = "floppy disk,save,plus,add,update,create",
10807 contributors = "colebemis,csandman,ericfennis,jwlinqx"
10808 ))]
10809 SavePlus,
10810 #[cfg(any(feature = "text", feature = "files"))]
10811 #[strum(props(
10812 svg = "<path d=\"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z\"></path><path d=\"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7\"></path><path d=\"M7 3v4a1 1 0 0 0 1 1h7\"></path>",
10813 categories = "text,files",
10814 tags = "floppy disk",
10815 contributors = "colebemis,csandman,ericfennis"
10816 ))]
10817 Save,
10818 #[cfg(feature = "design")]
10819 #[strum(props(
10820 svg = "<path d=\"M5 7v11a1 1 0 0 0 1 1h11\"></path><path d=\"M5.29 18.70 11 13\"></path><circle cx=\"19\" cy=\"19\" r=\"2\"></circle><circle cx=\"5\" cy=\"5\" r=\"2\"></circle>",
10821 categories = "design",
10822 tags = "gizmo,transform,size,axis",
10823 contributors = "lscheibel,ericfennis,jguddas"
10824 ))]
10825 Scale3D,
10826 #[cfg(any(feature = "navigation", feature = "science", feature = "finance"))]
10827 #[strum(props(
10828 svg = "<path d=\"M12 3v18\"></path><path d=\"m19 8 3 8a5 5 0 0 1-6 0zV7\"></path><path d=\"M3 7h1a17 17 0 0 0 8-2 17 17 0 0 0 8 2h1\"></path><path d=\"m5 8 3 8a5 5 0 0 1-6 0zV7\"></path><path d=\"M7 21h10\"></path>",
10829 categories = "navigation,science,finance",
10830 tags = "balance,legal,license,right,rule,law,justice,weight,measure,compare,judge,fair,ethics,decision",
10831 contributors = "mittalyashu,ericfennis,karsa-mistmere,jamiemlaw"
10832 ))]
10833 Scale,
10834 #[cfg(feature = "design")]
10835 #[strum(props(
10836 svg = "<path d=\"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"></path><path d=\"M14 15H9v-5\"></path><path d=\"M16 3h5v5\"></path><path d=\"M21 3 9 15\"></path>",
10837 categories = "design",
10838 tags = "scale,resize,design",
10839 contributors = "karsa-mistmere"
10840 ))]
10841 Scaling,
10842 #[cfg(any(feature = "shopping", feature = "devices"))]
10843 #[strum(props(
10844 svg = "<path d=\"M3 7V5a2 2 0 0 1 2-2h2\"></path><path d=\"M17 3h2a2 2 0 0 1 2 2v2\"></path><path d=\"M21 17v2a2 2 0 0 1-2 2h-2\"></path><path d=\"M7 21H5a2 2 0 0 1-2-2v-2\"></path><path d=\"M8 7v10\"></path><path d=\"M12 7v10\"></path><path d=\"M17 7v10\"></path>",
10845 categories = "shopping,devices",
10846 tags = "checkout,till,cart,transaction,purchase,buy,product,packaging,retail,consumer",
10847 contributors = "danielbayley"
10848 ))]
10849 ScanBarcode,
10850 #[cfg(any(
10851 feature = "photography",
10852 feature = "multimedia",
10853 feature = "accessibility",
10854 feature = "security",
10855 feature = "devices",
10856 feature = "account"
10857 ))]
10858 #[strum(props(
10859 svg = "<path d=\"M3 7V5a2 2 0 0 1 2-2h2\"></path><path d=\"M17 3h2a2 2 0 0 1 2 2v2\"></path><path d=\"M21 17v2a2 2 0 0 1-2 2h-2\"></path><path d=\"M7 21H5a2 2 0 0 1-2-2v-2\"></path><circle cx=\"12\" cy=\"12\" r=\"1\"></circle><path d=\"M18.94 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.88 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.88 0\"></path>",
10860 categories = "photography,multimedia,accessibility,security,devices,account",
10861 tags = "preview,zoom,expand,fullscreen,gallery,image,camera,watch,surveillance,retina,focus,lens,biometric,identification,authentication,access,login",
10862 contributors = "danielbayley"
10863 ))]
10864 ScanEye,
10865 #[cfg(any(
10866 feature = "account",
10867 feature = "security",
10868 feature = "devices",
10869 feature = "social"
10870 ))]
10871 #[strum(props(
10872 svg = "<path d=\"M3 7V5a2 2 0 0 1 2-2h2\"></path><path d=\"M17 3h2a2 2 0 0 1 2 2v2\"></path><path d=\"M21 17v2a2 2 0 0 1-2 2h-2\"></path><path d=\"M7 21H5a2 2 0 0 1-2-2v-2\"></path><path d=\"M8 14s1.5 2 4 2 4-2 4-2\"></path><path d=\"M9 9h.01\"></path><path d=\"M15 9h.01\"></path>",
10873 categories = "account,security,devices,social",
10874 tags = "face,biometric,identification,authentication,2fa,access,login,dashed",
10875 contributors = "karsa-mistmere"
10876 ))]
10877 ScanFace,
10878 #[cfg(feature = "medical")]
10879 #[strum(props(
10880 svg = "<path d=\"M17 3h2a2 2 0 0 1 2 2v2\"></path><path d=\"M21 17v2a2 2 0 0 1-2 2h-2\"></path><path d=\"M3 7V5a2 2 0 0 1 2-2h2\"></path><path d=\"M7 21H5a2 2 0 0 1-2-2v-2\"></path><path d=\"M7.82 13.07A3 3 0 0 1 12 8.76a3 3 0 0 1 4.17 4.30l-3.44 3.62a1 1 0 0 1-1.44 0z\"></path>",
10881 categories = "medical",
10882 tags = "health,heart rate,pulse,monitoring,healthiness,screening,dashed",
10883 contributors = "karsa-mistmere,jguddas"
10884 ))]
10885 ScanHeart,
10886 #[cfg(any(feature = "devices", feature = "shopping"))]
10887 #[strum(props(
10888 svg = "<path d=\"M3 7V5a2 2 0 0 1 2-2h2\"></path><path d=\"M17 3h2a2 2 0 0 1 2 2v2\"></path><path d=\"M21 17v2a2 2 0 0 1-2 2h-2\"></path><path d=\"M7 21H5a2 2 0 0 1-2-2v-2\"></path><path d=\"M7 12h10\"></path>",
10889 categories = "devices,shopping",
10890 tags = "checkout,till,cart,transaction,purchase,buy,product,packaging,retail,consumer,qr-code,dashed",
10891 contributors = "wojtekmaj,ericfennis"
10892 ))]
10893 ScanLine,
10894 #[cfg(any(
10895 feature = "account",
10896 feature = "shopping",
10897 feature = "devices",
10898 feature = "security"
10899 ))]
10900 #[strum(props(
10901 svg = "<path d=\"M17 12v4a1 1 0 0 1-1 1h-4\"></path><path d=\"M17 3h2a2 2 0 0 1 2 2v2\"></path><path d=\"M17 8V7\"></path><path d=\"M21 17v2a2 2 0 0 1-2 2h-2\"></path><path d=\"M3 7V5a2 2 0 0 1 2-2h2\"></path><path d=\"M7 17h.01\"></path><path d=\"M7 21H5a2 2 0 0 1-2-2v-2\"></path><rect height=\"5\" rx=\"1\" width=\"5\" x=\"7\" y=\"7\"></rect>",
10902 categories = "account,shopping,devices,security",
10903 tags = "barcode,scan,qrcode,url,information,digital,scanner",
10904 contributors = "jguddas,vexkiddy"
10905 ))]
10906 ScanQrCode,
10907 #[cfg(any(
10908 feature = "photography",
10909 feature = "multimedia",
10910 feature = "accessibility"
10911 ))]
10912 #[strum(props(
10913 svg = "<path d=\"M3 7V5a2 2 0 0 1 2-2h2\"></path><path d=\"M17 3h2a2 2 0 0 1 2 2v2\"></path><path d=\"M21 17v2a2 2 0 0 1-2 2h-2\"></path><path d=\"M7 21H5a2 2 0 0 1-2-2v-2\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle><path d=\"m16 16-1.9-1.9\"></path>",
10914 categories = "photography,multimedia,accessibility",
10915 tags = "preview,zoom,expand,fullscreen,gallery,image,focus,lens",
10916 contributors = "danielbayley"
10917 ))]
10918 ScanSearch,
10919 #[cfg(any(feature = "text", feature = "devices"))]
10920 #[strum(props(
10921 svg = "<path d=\"M3 7V5a2 2 0 0 1 2-2h2\"></path><path d=\"M17 3h2a2 2 0 0 1 2 2v2\"></path><path d=\"M21 17v2a2 2 0 0 1-2 2h-2\"></path><path d=\"M7 21H5a2 2 0 0 1-2-2v-2\"></path><path d=\"M7 8h8\"></path><path d=\"M7 12h10\"></path><path d=\"M7 16h6\"></path>",
10922 categories = "text,devices",
10923 tags = "recognition,read,translate,copy,lines",
10924 contributors = "danielbayley"
10925 ))]
10926 ScanText,
10927 #[cfg(any(
10928 feature = "devices",
10929 feature = "shopping",
10930 feature = "security",
10931 feature = "social",
10932 feature = "gaming"
10933 ))]
10934 #[strum(props(
10935 svg = "<path d=\"M3 7V5a2 2 0 0 1 2-2h2\"></path><path d=\"M17 3h2a2 2 0 0 1 2 2v2\"></path><path d=\"M21 17v2a2 2 0 0 1-2 2h-2\"></path><path d=\"M7 21H5a2 2 0 0 1-2-2v-2\"></path>",
10936 categories = "devices,shopping,security,social,gaming",
10937 tags = "qr-code,barcode,checkout,augmented reality,ar,target,surveillance,camera,lens,focus,frame,select,box,boundary,bounds,area,square,dashed",
10938 contributors = "wojtekmaj,ericfennis"
10939 ))]
10940 Scan,
10941 #[cfg(any(feature = "buildings", feature = "navigation"))]
10942 #[strum(props(
10943 svg = "<path d=\"M14 21v-3a2 2 0 0 0-4 0v3\"></path><path d=\"M18 4.93V21\"></path><path d=\"m4 6 7.10-3.79a2 2 0 0 1 1.78 0L20 6\"></path><path d=\"m6 11-3.52 2.14a1 1 0 0 0-.48.85V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a1 1 0 0 0-.48-.853L18 11\"></path><path d=\"M6 4.93V21\"></path><circle cx=\"12\" cy=\"9\" r=\"2\"></circle>",
10944 categories = "buildings,navigation",
10945 tags = "building,education,childhood,university,learning,campus,scholar,student,lecture,degree,course,academia,study,knowledge,classroom,research,diploma,graduation,professor,tutorial,homework,assignment,exam",
10946 contributors = "karsa-mistmere"
10947 ))]
10948 School,
10949 #[cfg(any(feature = "design", feature = "tools"))]
10950 #[strum(props(
10951 svg = "<path d=\"M5.42 9.42 8 12\"></path><circle cx=\"4\" cy=\"8\" r=\"2\"></circle><path d=\"m14 6-8.58 8.58\"></path><circle cx=\"4\" cy=\"16\" r=\"2\"></circle><path d=\"M10.8 14.8 14 18\"></path><path d=\"M16 12h-2\"></path><path d=\"M22 12h-2\"></path>",
10952 categories = "design,tools",
10953 tags = "cut here,along,snip,chop,stationery,crafts,instructions,diagram",
10954 contributors = "danielbayley"
10955 ))]
10956 ScissorsLineDashed,
10957 #[cfg(any(feature = "text", feature = "design", feature = "tools"))]
10958 #[strum(props(
10959 svg = "<circle cx=\"6\" cy=\"6\" r=\"3\"></circle><path d=\"M8.12 8.12 12 12\"></path><path d=\"M20 4 8.12 15.88\"></path><circle cx=\"6\" cy=\"18\" r=\"3\"></circle><path d=\"M14.8 14.8 20 20\"></path>",
10960 categories = "text,design,tools",
10961 tags = "cut,snip,chop,stationery,crafts",
10962 contributors = "colebemis,ericfennis"
10963 ))]
10964 Scissors,
10965 #[cfg(feature = "transportation")]
10966 #[strum(props(
10967 svg = "<path d=\"M21 4h-3.5l2 11.05\"></path><path d=\"M6.95 17h5.14c.523 0 .95-.406 1.06-.916a6.5 6.5 0 0 1 5.34-5.00\"></path><circle cx=\"19.5\" cy=\"17.5\" r=\"2.5\"></circle><circle cx=\"4.5\" cy=\"17.5\" r=\"2.5\"></circle>",
10968 categories = "transportation",
10969 tags = "vehicle,drive,trip,journey,transport,electric,ride,urban,commute,speed",
10970 contributors = "Ahmed-Dghaies,karsa-mistmere"
10971 ))]
10972 Scooter,
10973 #[cfg(any(
10974 feature = "connectivity",
10975 feature = "devices",
10976 feature = "communication"
10977 ))]
10978 #[strum(props(
10979 svg = "<path d=\"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3\"></path><path d=\"M8 21h8\"></path><path d=\"M12 17v4\"></path><path d=\"m22 3-5 5\"></path><path d=\"m17 3 5 5\"></path>",
10980 categories = "connectivity,devices,communication",
10981 tags = "desktop,disconnect,monitor",
10982 contributors = "csandman,ericfennis,johnletey"
10983 ))]
10984 ScreenShareOff,
10985 #[cfg(any(
10986 feature = "connectivity",
10987 feature = "devices",
10988 feature = "communication"
10989 ))]
10990 #[strum(props(
10991 svg = "<path d=\"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3\"></path><path d=\"M8 21h8\"></path><path d=\"M12 17v4\"></path><path d=\"m17 8 5-5\"></path><path d=\"M17 3h5v5\"></path>",
10992 categories = "connectivity,devices,communication",
10993 tags = "host,desktop,monitor",
10994 contributors = "csandman,ericfennis,johnletey"
10995 ))]
10996 ScreenShare,
10997 #[cfg(any(feature = "gaming", feature = "development", feature = "text"))]
10998 #[strum(props(
10999 svg = "<path d=\"M15 12h-5\"></path><path d=\"M15 8h-5\"></path><path d=\"M19 17V5a2 2 0 0 0-2-2H4\"></path><path d=\"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3\"></path>",
11000 categories = "gaming,development,text",
11001 tags = "paper,log,scripture,document,notes,parchment,list,long,script,story,code,coding",
11002 contributors = "danielbayley,karsa-mistmere"
11003 ))]
11004 ScrollText,
11005 #[cfg(any(feature = "gaming", feature = "development", feature = "text"))]
11006 #[strum(props(
11007 svg = "<path d=\"M19 17V5a2 2 0 0 0-2-2H4\"></path><path d=\"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3\"></path>",
11008 categories = "gaming,development,text",
11009 tags = "paper,log,scripture,document,notes,parchment,list,long,script,story,code,coding",
11010 contributors = "karsa-mistmere,jguddas,danielbayley"
11011 ))]
11012 Scroll,
11013 #[cfg(any(feature = "text", feature = "social"))]
11014 #[strum(props(
11015 svg = "<circle cx=\"11\" cy=\"11\" r=\"8\"></circle><path d=\"m21 21-4.3-4.3\"></path><path d=\"M11 7v4\"></path><path d=\"M11 15h.01\"></path>",
11016 categories = "text,social",
11017 tags = "find,scan,magnifier,magnifying glass,stop,warning,alert,error,anomaly,lens,locate,explore,discover,enlarge,zoom",
11018 contributors = "colebemis,ericfennis,jguddas,Veatec22"
11019 ))]
11020 SearchAlert,
11021 #[cfg(any(feature = "text", feature = "social"))]
11022 #[strum(props(
11023 svg = "<path d=\"m8 11 2 2 4-4\"></path><circle cx=\"11\" cy=\"11\" r=\"8\"></circle><path d=\"m21 21-4.3-4.3\"></path>",
11024 categories = "text,social",
11025 tags = "find,scan,magnifier,magnifying glass,found,correct,complete,tick,lens,locate,explore,discover,enlarge,zoom",
11026 contributors = "danielbayley"
11027 ))]
11028 SearchCheck,
11029 #[cfg(any(feature = "text", feature = "social", feature = "development"))]
11030 #[strum(props(
11031 svg = "<path d=\"m13 13.5 2-2.5-2-2.5\"></path><path d=\"m21 21-4.3-4.3\"></path><path d=\"M9 8.5 7 11l2 2.5\"></path><circle cx=\"11\" cy=\"11\" r=\"8\"></circle>",
11032 categories = "text,social,development",
11033 tags = "find,scan,magnifier,magnifying glass,grep,chevrons,<>,lens,locate,explore,discover,enlarge,zoom",
11034 contributors = "danielbayley,jguddas"
11035 ))]
11036 SearchCode,
11037 #[cfg(any(feature = "text", feature = "social"))]
11038 #[strum(props(
11039 svg = "<path d=\"m13.5 8.5-5 5\"></path><circle cx=\"11\" cy=\"11\" r=\"8\"></circle><path d=\"m21 21-4.3-4.3\"></path>",
11040 categories = "text,social",
11041 tags = "find,scan,magnifier,magnifying glass,stop,clear,cancel,abort,/,lens,locate,explore,discover,enlarge,zoom",
11042 contributors = "danielbayley"
11043 ))]
11044 SearchSlash,
11045 #[cfg(any(feature = "text", feature = "social"))]
11046 #[strum(props(
11047 svg = "<path d=\"m13.5 8.5-5 5\"></path><path d=\"m8.5 8.5 5 5\"></path><circle cx=\"11\" cy=\"11\" r=\"8\"></circle><path d=\"m21 21-4.3-4.3\"></path>",
11048 categories = "text,social",
11049 tags = "find,scan,magnifier,magnifying glass,stop,clear,cancel,abort,lens,locate,explore,discover,enlarge,zoom",
11050 contributors = "danielbayley"
11051 ))]
11052 SearchX,
11053 #[cfg(any(feature = "text", feature = "social"))]
11054 #[strum(props(
11055 svg = "<path d=\"m21 21-4.34-4.34\"></path><circle cx=\"11\" cy=\"11\" r=\"8\"></circle>",
11056 categories = "text,social",
11057 tags = "find,scan,magnifier,magnifying glass,lens,locate,explore,discover,enlarge,zoom",
11058 contributors = "colebemis,ericfennis,jguddas"
11059 ))]
11060 Search,
11061 #[cfg(feature = "text")]
11062 #[strum(props(
11063 svg = "<path d=\"M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0\"></path><path d=\"M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0\"></path>",
11064 categories = "text",
11065 tags = "mark,typography,punctuation,legal,type,text,prose,symbol",
11066 contributors = "gurtt,karsa-mistmere"
11067 ))]
11068 Section,
11069 #[cfg(any(feature = "mail", feature = "communication", feature = "connectivity"))]
11070 #[strum(props(
11071 svg = "<path d=\"M3.71 3.04a.498.49 0 0 0-.683.62l2.84 7.62a2 2 0 0 1 0 1.39l-2.84 7.62a.498.49 0 0 0 .682.62l18-8.5a.5.5 0 0 0 0-.904z\"></path><path d=\"M6 12h16\"></path>",
11072 categories = "mail,communication,connectivity",
11073 tags = "email,message,mail,paper airplane,paper aeroplane,submit",
11074 contributors = "danielbayley,karsa-mistmere"
11075 ))]
11076 SendHorizontal,
11077 #[cfg(any(feature = "design", feature = "layout"))]
11078 #[strum(props(
11079 svg = "<rect height=\"8\" rx=\"2\" width=\"8\" x=\"14\" y=\"14\"></rect><rect height=\"8\" rx=\"2\" width=\"8\" x=\"2\" y=\"2\"></rect><path d=\"M7 14v1a2 2 0 0 0 2 2h1\"></path><path d=\"M14 7h1a2 2 0 0 1 2 2v1\"></path>",
11080 categories = "design,layout",
11081 tags = "bring,send,move,under,back,backwards,overlap,layer,order",
11082 contributors = "james-yeoman,jguddas"
11083 ))]
11084 SendToBack,
11085 #[cfg(any(feature = "mail", feature = "communication", feature = "connectivity"))]
11086 #[strum(props(
11087 svg = "<path d=\"M14.53 21.68a.5.5 0 0 0 .937-.024l6.5-19a.496.49 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.93l7.93 3.18a2 2 0 0 1 1.11 1.11z\"></path><path d=\"m21.85 2.14-10.94 10.93\"></path>",
11088 categories = "mail,communication,connectivity",
11089 tags = "email,message,mail,paper airplane,paper aeroplane,submit",
11090 contributors = "colebemis,ericfennis,karsa-mistmere"
11091 ))]
11092 Send,
11093 #[cfg(any(feature = "text", feature = "arrows", feature = "layout"))]
11094 #[strum(props(
11095 svg = "<path d=\"m16 16-4 4-4-4\"></path><path d=\"M3 12h18\"></path><path d=\"m8 8 4-4 4 4\"></path>",
11096 categories = "text,arrows,layout",
11097 tags = "move,split",
11098 contributors = "ericfennis"
11099 ))]
11100 SeparatorHorizontal,
11101 #[cfg(any(feature = "text", feature = "arrows", feature = "layout"))]
11102 #[strum(props(
11103 svg = "<path d=\"M12 3v18\"></path><path d=\"m16 16 4-4-4-4\"></path><path d=\"m8 8-4 4 4 4\"></path>",
11104 categories = "text,arrows,layout",
11105 tags = "move,split",
11106 contributors = "ericfennis"
11107 ))]
11108 SeparatorVertical,
11109 #[cfg(any(feature = "development", feature = "devices"))]
11110 #[strum(props(
11111 svg = "<path d=\"m10.85 14.77-.383.92\"></path><path d=\"M13.14 14.77a3 3 0 1 0-2.29-5.54l-.383-.923\"></path><path d=\"m13.14 9.22.383-.923\"></path><path d=\"m13.53 15.69-.382-.924a3 3 0 1 1-2.29-5.54\"></path><path d=\"m14.77 10.85.923-.383\"></path><path d=\"m14.77 13.14.923.38\"></path><path d=\"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5\"></path><path d=\"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5\"></path><path d=\"M6 18h.01\"></path><path d=\"M6 6h.01\"></path><path d=\"m9.22 10.85-.923-.383\"></path><path d=\"m9.22 13.14-.923.38\"></path>",
11112 categories = "development,devices",
11113 tags = "cloud,storage,computing,cog,gear",
11114 contributors = "karsa-mistmere,UsamaKhan"
11115 ))]
11116 ServerCog,
11117 #[cfg(any(feature = "development", feature = "devices"))]
11118 #[strum(props(
11119 svg = "<path d=\"M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2\"></path><path d=\"M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2\"></path><path d=\"M6 6h.01\"></path><path d=\"M6 18h.01\"></path><path d=\"m13 6-4 6h6l-4 6\"></path>",
11120 categories = "development,devices",
11121 tags = "cloud,storage,problem,error",
11122 contributors = "mittalyashu,ericfennis"
11123 ))]
11124 ServerCrash,
11125 #[cfg(any(feature = "development", feature = "devices"))]
11126 #[strum(props(
11127 svg = "<path d=\"M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5\"></path><path d=\"M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z\"></path><path d=\"M22 17v-1a2 2 0 0 0-2-2h-1\"></path><path d=\"M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z\"></path><path d=\"M6 18h.01\"></path><path d=\"m2 2 20 20\"></path>",
11128 categories = "development,devices",
11129 tags = "cloud,storage",
11130 contributors = "yukosgiti,ericfennis,csandman"
11131 ))]
11132 ServerOff,
11133 #[cfg(any(feature = "development", feature = "devices"))]
11134 #[strum(props(
11135 svg = "<rect height=\"8\" rx=\"2\" ry=\"2\" width=\"20\" x=\"2\" y=\"2\"></rect><rect height=\"8\" rx=\"2\" ry=\"2\" width=\"20\" x=\"2\" y=\"14\"></rect><line x1=\"6\" x2=\"6.01\" y1=\"6\" y2=\"6\"></line><line x1=\"6\" x2=\"6.01\" y1=\"18\" y2=\"18\"></line>",
11136 categories = "development,devices",
11137 tags = "cloud,storage",
11138 contributors = "colebemis,ericfennis"
11139 ))]
11140 Server,
11141 #[cfg(feature = "account")]
11142 #[strum(props(
11143 svg = "<path d=\"M14 17H5\"></path><path d=\"M19 7h-9\"></path><circle cx=\"17\" cy=\"17\" r=\"3\"></circle><circle cx=\"7\" cy=\"7\" r=\"3\"></circle>",
11144 categories = "account",
11145 tags = "cog,edit,gear,preferences,slider",
11146 contributors = "mittalyashu,ericfennis,jguddas"
11147 ))]
11148 Settings2,
11149 #[cfg(feature = "account")]
11150 #[strum(props(
11151 svg = "<path d=\"M9.67 4.13a2.34 2.34 0 0 1 4.65 0 2.34 2.34 0 0 0 3.31 1.91 2.34 2.34 0 0 1 2.33 4.03 2.34 2.34 0 0 0 0 3.83 2.34 2.34 0 0 1-2.33 4.03 2.34 2.34 0 0 0-3.31 1.91 2.34 2.34 0 0 1-4.65 0 2.34 2.34 0 0 0-3.32-1.91 2.34 2.34 0 0 1-2.33-4.03 2.34 2.34 0 0 0 0-3.83A2.34 2.34 0 0 1 6.35 6.05a2.34 2.34 0 0 0 3.31-1.91\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle>",
11152 categories = "account",
11153 tags = "cog,edit,gear,preferences",
11154 contributors = "colebemis,csandman,mittalyashu,ericfennis,karsa-mistmere"
11155 ))]
11156 Settings,
11157 #[cfg(any(feature = "shapes", feature = "gaming"))]
11158 #[strum(props(
11159 svg = "<path d=\"M8.3 10a.7.7 0 0 1-.626-1.07L11.4 3a.7.7 0 0 1 1.19-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z\"></path><rect height=\"7\" rx=\"1\" width=\"7\" x=\"3\" y=\"14\"></rect><circle cx=\"17.5\" cy=\"17.5\" r=\"3.5\"></circle>",
11160 categories = "shapes,gaming",
11161 tags = "triangle,equilateral,square,circle,classification,different,collection,toy,blocks,learning",
11162 contributors = "danielbayley"
11163 ))]
11164 Shapes,
11165 #[cfg(any(feature = "account", feature = "social"))]
11166 #[strum(props(
11167 svg = "<circle cx=\"18\" cy=\"5\" r=\"3\"></circle><circle cx=\"6\" cy=\"12\" r=\"3\"></circle><circle cx=\"18\" cy=\"19\" r=\"3\"></circle><line x1=\"8.59\" x2=\"15.42\" y1=\"13.51\" y2=\"17.49\"></line><line x1=\"15.41\" x2=\"8.59\" y1=\"6.51\" y2=\"10.49\"></line>",
11168 categories = "account,social",
11169 tags = "network,connections",
11170 contributors = "colebemis,ericfennis"
11171 ))]
11172 Share2,
11173 #[cfg(any(feature = "account", feature = "social"))]
11174 #[strum(props(
11175 svg = "<path d=\"M12 2v13\"></path><path d=\"m16 6-4-4-4 4\"></path><path d=\"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8\"></path>",
11176 categories = "account,social",
11177 tags = "network,connections",
11178 contributors = "colebemis,csandman,ericfennis"
11179 ))]
11180 Share,
11181 #[cfg(any(feature = "text", feature = "files"))]
11182 #[strum(props(
11183 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><line x1=\"3\" x2=\"21\" y1=\"9\" y2=\"9\"></line><line x1=\"3\" x2=\"21\" y1=\"15\" y2=\"15\"></line><line x1=\"9\" x2=\"9\" y1=\"9\" y2=\"21\"></line><line x1=\"15\" x2=\"15\" y1=\"9\" y2=\"21\"></line>",
11184 categories = "text,files",
11185 tags = "spreadsheets,table,excel",
11186 contributors = "zenoamaro,ericfennis,csandman,mittalyashu"
11187 ))]
11188 Sheet,
11189 #[cfg(any(
11190 feature = "animals",
11191 feature = "development",
11192 feature = "nature",
11193 feature = "science",
11194 feature = "travel",
11195 feature = "food_beverage",
11196 feature = "home"
11197 ))]
11198 #[strum(props(
11199 svg = "<path d=\"M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44\"></path>",
11200 categories = "animals,development,nature,science,travel,food-beverage,home",
11201 tags = "beach,sand,holiday,sealife,fossil,ammonite,biology,ocean,terminal,command line,session,bash,zsh,roll,wrap,chewing gum,bubble gum,sweet,sugar,hosepipe,carpet,string,spiral,spinner,hypnotise,hypnosis",
11202 contributors = "danielbayley"
11203 ))]
11204 Shell,
11205 #[cfg(feature = "home")]
11206 #[strum(props(
11207 svg = "<path d=\"M12 12V9a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3\"></path><path d=\"M16 20v-3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3\"></path><path d=\"M20 22V2\"></path><path d=\"M4 12h16\"></path><path d=\"M4 20h16\"></path><path d=\"M4 2v20\"></path><path d=\"M4 4h16\"></path>",
11208 categories = "home",
11209 tags = "ledge,rack,storage,inventory,furniture,sill,shelves,shelf,organize,display,store,arrange,unit,cabinet,fixture,retail,warehouse",
11210 contributors = "karsa-mistmere"
11211 ))]
11212 ShelvingUnit,
11213 #[cfg(any(
11214 feature = "account",
11215 feature = "security",
11216 feature = "development",
11217 feature = "notifications",
11218 feature = "gaming"
11219 ))]
11220 #[strum(props(
11221 svg = "<path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path><path d=\"M12 8v4\"></path><path d=\"M12 16h.01\"></path>",
11222 categories = "account,security,development,notifications,gaming",
11223 tags = "unshielded,cybersecurity,insecure,unsecured,safety,unsafe,protection,unprotected,guardian,unguarded,unarmored,unarmoured,defenseless,defenceless,undefended,defender,blocked,stopped,intercepted,interception,saved,thwarted,threat,prevention,unprevented,antivirus,vigilance,vigilant,detection,detected,scanned,found,exploit,vulnerability,vulnerable,weakness,infection,infected,comprimised,data leak,audited,admin,verification,unverified,uncertified,warning,emergency,attention,urgent,alarm,crest,bravery,strength,tough,attacked,damaged,injured,hit,expired,disabled,inactive,error,exclamation mark,!",
11224 contributors = "mittalyashu,ericfennis,karsa-mistmere"
11225 ))]
11226 ShieldAlert,
11227 #[cfg(any(
11228 feature = "account",
11229 feature = "security",
11230 feature = "development",
11231 feature = "gaming"
11232 ))]
11233 #[strum(props(
11234 svg = "<path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path><path d=\"m4.24 5.21 14.39 12.47\"></path>",
11235 categories = "account,security,development,gaming",
11236 tags = "unshielded,cybersecurity,insecure,unsecured,safety,unsafe,protection,unprotected,guardian,unguarded,unarmored,unarmoured,defenseless,defenceless,undefended,defender,blocked,stopped,intercepted,interception,saved,thwarted,threat,prevention,unprevented,antivirus,vigilance,vigilant,detection,detected,scanned,found,exploit,vulnerability,vulnerable,weakness,infection,infected,comprimised,data leak,audited,admin,verification,unverified,uncertified,cancel,error,crest,bravery,attacked,damaged,injured,hit,expired,eliminated,disabled,inactive,/",
11237 contributors = "danielbayley,karsa-mistmere"
11238 ))]
11239 ShieldBan,
11240 #[cfg(any(
11241 feature = "account",
11242 feature = "security",
11243 feature = "development",
11244 feature = "gaming"
11245 ))]
11246 #[strum(props(
11247 svg = "<path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path><path d=\"m9 12 2 2 4-4\"></path>",
11248 categories = "account,security,development,gaming",
11249 tags = "cybersecurity,secured,safety,protection,protected,guardian,guarded,armored,armoured,defense,defence,defended,blocked,threat,prevention,prevented,antivirus,vigilance,vigilant,active,activated,enabled,detection,scanned,found,strength,strong,tough,invincible,invincibility,invulnerable,undamaged,audited,admin,verification,verified,certification,certified,tested,passed,qualified,cleared,cleaned,disinfected,uninfected,task,completed,todo,done,ticked,checked,crest,bravery",
11250 contributors = "mittalyashu,ericfennis,karsa-mistmere"
11251 ))]
11252 ShieldCheck,
11253 #[cfg(any(
11254 feature = "account",
11255 feature = "security",
11256 feature = "development",
11257 feature = "gaming",
11258 feature = "shapes"
11259 ))]
11260 #[strum(props(
11261 svg = "<path d=\"M11 22c-3.80-1.45-7-3.96-7-9V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v4\"></path><path d=\"M14.92 16.54 14 16.16\"></path><path d=\"m14.92 18.84-.923.38\"></path><path d=\"M16.54 14.92 16.16 14\"></path><path d=\"m16.54 20.46-.383.92\"></path><path d=\"m18.84 14.92.383-.923\"></path><path d=\"m19.22 21.39-.382-.924\"></path><path d=\"m20.46 16.54.923-.383\"></path><path d=\"m20.46 18.84.923.38\"></path><circle cx=\"17.69\" cy=\"17.69\" r=\"3\"></circle>",
11262 categories = "account,security,development,gaming,shapes",
11263 tags = "cybersecurity,secure,safety,protection,guardian,armored,armoured,defense,defence,defender,block,threat,prevention,antivirus,vigilance,vigilant,detection,scan,find,strength,strong,tough,invincible,invincibility,invulnerable,undamaged,audit,admin,verification,crest,shieldcog,bravery,knight,foot soldier,infantry,trooper,pawn,battle,war,military,army,cadet,scout",
11264 contributors = "colebemis,karsa-mistmere,RajnishKMehta"
11265 ))]
11266 ShieldCogCorner,
11267 #[cfg(any(
11268 feature = "account",
11269 feature = "security",
11270 feature = "development",
11271 feature = "gaming",
11272 feature = "shapes"
11273 ))]
11274 #[strum(props(
11275 svg = "<path d=\"m10.92 14.46-.383.92\"></path><path d=\"M10.92 8.92 10.54 8\"></path><path d=\"M13.22 8.92 13.60 8\"></path><path d=\"m13.60 15.39-.382-.924\"></path><path d=\"m14.84 10.54.923-.383\"></path><path d=\"m14.84 12.84.923.38\"></path><path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path><path d=\"m9.30 10.54-.923-.383\"></path><path d=\"m9.30 12.84-.923.38\"></path><circle cx=\"12.07\" cy=\"11.69\" r=\"3\"></circle>",
11276 categories = "account,security,development,gaming,shapes",
11277 tags = "cybersecurity,secure,safety,protection,guardian,armored,armoured,defense,defence,defender,block,threat,prevention,antivirus,vigilance,vigilant,detection,scan,find,strength,strong,tough,invincible,invincibility,invulnerable,undamaged,audit,admin,verification,crest,bravery,knight,foot soldier,infantry,trooper,pawn,battle,war,military,army,cadet,scout",
11278 contributors = "colebemis,karsa-mistmere,RajnishKMehta"
11279 ))]
11280 ShieldCog,
11281 #[cfg(any(
11282 feature = "account",
11283 feature = "security",
11284 feature = "development",
11285 feature = "gaming"
11286 ))]
11287 #[strum(props(
11288 svg = "<path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path><path d=\"M8 12h.01\"></path><path d=\"M12 12h.01\"></path><path d=\"M16 12h.01\"></path>",
11289 categories = "account,security,development,gaming",
11290 tags = "cybersecurity,securing,protecting,guarding,armoring,armouring,defending,blocking,preventing,antivirus,detecting,scanning,finding,auditing,admin,verifying,crest,upgrading,loader,loading,throbber,progress,dots,more,etc,...,…",
11291 contributors = "danielbayley,karsa-mistmere"
11292 ))]
11293 ShieldEllipsis,
11294 #[cfg(any(
11295 feature = "account",
11296 feature = "security",
11297 feature = "development",
11298 feature = "gaming"
11299 ))]
11300 #[strum(props(
11301 svg = "<path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path><path d=\"M12 22V2\"></path>",
11302 categories = "account,security,development,gaming",
11303 tags = "cybersecurity,secure,safety,protection,guardian,armored,armoured,defense,defence,defender,block,threat,prevention,antivirus,vigilance,vigilant,detection,scan,strength,strong,tough,invincible,invincibility,invulnerable,undamaged,audit,admin,verification,crest,logo,sigil,flag,team,faction,fraternity,university,college,academy,school,education,uniform,bravery,knight,foot soldier,infantry,trooper,pawn,battle,war,military,ranking,army,cadet,scout",
11304 contributors = "danielbayley,karsa-mistmere"
11305 ))]
11306 ShieldHalf,
11307 #[cfg(any(
11308 feature = "account",
11309 feature = "security",
11310 feature = "development",
11311 feature = "gaming"
11312 ))]
11313 #[strum(props(
11314 svg = "<path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path><path d=\"M9 12h6\"></path>",
11315 categories = "account,security,development,gaming",
11316 tags = "unshield,cybersecurity,unsecure,unguard,unblock,antivirus,clean,clear,disinfect,patch,fix,stop,cancel,remove,relax,admin,crest,bravery,weakened,damaged,hit,unarm,disable,deactivate,decommission,downgraded,minimum,-",
11317 contributors = "danielbayley,karsa-mistmere"
11318 ))]
11319 ShieldMinus,
11320 #[cfg(any(
11321 feature = "account",
11322 feature = "security",
11323 feature = "development",
11324 feature = "gaming"
11325 ))]
11326 #[strum(props(
11327 svg = "<path d=\"m2 2 20 20\"></path><path d=\"M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71\"></path><path d=\"M9.30 3.65A12.25 12.25 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.78 9.78 0 0 1-.08 1.26\"></path>",
11328 categories = "account,security,development,gaming",
11329 tags = "unshielded,cybersecurity,insecure,unsecured,safety,unsafe,protection,unprotected,guardian,unguarded,unarmored,unarmoured,defenseless,defenceless,undefended,defender,interception,threat,prevention,unprevented,antivirus,detection,undetected,exploit,vulnerability,vulnerable,weakness,infected,infection,comprimised,data leak,unaudited,admin,verification,unverified,inactive,cancelled,error,crest,bravery,damaged,injured,hit,expired,eliminated",
11330 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
11331 ))]
11332 ShieldOff,
11333 #[cfg(any(
11334 feature = "account",
11335 feature = "security",
11336 feature = "development",
11337 feature = "gaming",
11338 feature = "medical"
11339 ))]
11340 #[strum(props(
11341 svg = "<path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path><path d=\"M9 12h6\"></path><path d=\"M12 9v6\"></path>",
11342 categories = "account,security,development,gaming,medical",
11343 tags = "cybersecurity,secure,safety,protection,guardian,armored,armoured,defense,defence,defender,block,threat,prevention,antivirus,vigilance,vigilant,detection,scan,strength,strong,tough,invincible,invincibility,invulnerable,undamaged,extra,added,professional,enterprise,full,maximum,upgraded,ultra,activate,enable,audit,admin,verification,crest,medic,+",
11344 contributors = "danielbayley,karsa-mistmere"
11345 ))]
11346 ShieldPlus,
11347 #[cfg(any(
11348 feature = "account",
11349 feature = "security",
11350 feature = "development",
11351 feature = "gaming"
11352 ))]
11353 #[strum(props(
11354 svg = "<path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path><path d=\"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3\"></path><path d=\"M12 17h.01\"></path>",
11355 categories = "account,security,development,gaming",
11356 tags = "unshielded,cybersecurity,insecure,unsecured,safety,unsafe,protection,unprotected,guardian,unguarded,unarmored,unarmoured,defenseless,defenceless,undefended,defender,threat,prevention,unprevented,antivirus,vigilance,vigilant,detection,undetected,scan,find,exploit,vulnerability,vulnerable,weakness,infection,comprimised,data leak,audit,admin,verification,unverified,uncertified,uncertain,unknown,inactive,crest,question mark,?",
11357 contributors = "danielbayley,jguddas,karsa-mistmere"
11358 ))]
11359 ShieldQuestionMark,
11360 #[cfg(any(feature = "account", feature = "security", feature = "development"))]
11361 #[strum(props(
11362 svg = "<path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path><path d=\"M6.37 18.91a6 6 0 0 1 11.24.003\"></path><circle cx=\"12\" cy=\"11\" r=\"4\"></circle>",
11363 categories = "account,security,development",
11364 tags = "shield,user,admin,protection,protected,safety,guard",
11365 contributors = "sebinemeth,ksk3110,karsa-mistmere,colebemis"
11366 ))]
11367 ShieldUser,
11368 #[cfg(any(
11369 feature = "account",
11370 feature = "security",
11371 feature = "development",
11372 feature = "gaming"
11373 ))]
11374 #[strum(props(
11375 svg = "<path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path><path d=\"m14.5 9.5-5 5\"></path><path d=\"m9.5 9.5 5 5\"></path>",
11376 categories = "account,security,development,gaming",
11377 tags = "unshielded,cybersecurity,insecure,unsecured,safety,unsafe,protection,unprotected,guardian,unguarded,unarmored,unarmoured,defenseless,defenceless,undefended,defender,blocked,stopped,intercepted,interception,saved,thwarted,threat,prevention,prevented,antivirus,vigilance,vigilant,detection,detected,scanned,found,exploit,vulnerability,vulnerable,weakness,infection,infected,comprimised,data leak,audited,admin,verification,unverified,inactive,cancel,error,wrong,false,crest,bravery,attacked,damaged,injured,hit,dead,deceased,expired,eliminated,exterminated",
11378 contributors = "mittalyashu,ericfennis,karsa-mistmere"
11379 ))]
11380 ShieldX,
11381 #[cfg(any(
11382 feature = "account",
11383 feature = "security",
11384 feature = "development",
11385 feature = "gaming",
11386 feature = "shapes"
11387 ))]
11388 #[strum(props(
11389 svg = "<path d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"></path>",
11390 categories = "account,security,development,gaming,shapes",
11391 tags = "cybersecurity,secure,safety,protection,guardian,armored,armoured,defense,defence,defender,block,threat,prevention,antivirus,vigilance,vigilant,detection,scan,find,strength,strong,tough,invincible,invincibility,invulnerable,undamaged,audit,admin,verification,crest,bravery,knight,foot soldier,infantry,trooper,pawn,battle,war,military,army,cadet,scout",
11392 contributors = "colebemis,karsa-mistmere"
11393 ))]
11394 Shield,
11395 #[cfg(any(feature = "transportation", feature = "navigation", feature = "travel"))]
11396 #[strum(props(
11397 svg = "<circle cx=\"12\" cy=\"12\" r=\"8\"></circle><path d=\"M12 2v7.5\"></path><path d=\"m19 5-5.23 5.23\"></path><path d=\"M22 12h-7.5\"></path><path d=\"m19 19-5.23-5.23\"></path><path d=\"M12 14.5V22\"></path><path d=\"M10.23 13.77 5 19\"></path><path d=\"M9.5 12H2\"></path><path d=\"M10.23 10.23 5 5\"></path><circle cx=\"12\" cy=\"12\" r=\"2.5\"></circle>",
11398 categories = "transportation,navigation,travel",
11399 tags = "steering,rudder,boat,knots,nautical mile,maritime,sailing,yacht,cruise,ocean liner,tanker,vessel,navy,trip",
11400 contributors = "danielbayley"
11401 ))]
11402 ShipWheel,
11403 #[cfg(any(feature = "transportation", feature = "navigation", feature = "travel"))]
11404 #[strum(props(
11405 svg = "<path d=\"M12 10.18V14\"></path><path d=\"M12 2v3\"></path><path d=\"M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6\"></path><path d=\"M19.38 20A11.6 11.6 0 0 0 21 14l-8.18-3.63a2 2 0 0 0-1.62 0L3 14a11.6 11.6 0 0 0 2.81 7.76\"></path><path d=\"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1\"></path>",
11406 categories = "transportation,navigation,travel",
11407 tags = "boat,knots,nautical mile,maritime,sailing,yacht,cruise,ocean liner,tanker,vessel,navy,trip,releases",
11408 contributors = "karsa-mistmere,jguddas"
11409 ))]
11410 Ship,
11411 #[cfg(feature = "shopping")]
11412 #[strum(props(
11413 svg = "<path d=\"M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z\"></path>",
11414 categories = "shopping",
11415 tags = "t-shirt,shopping,store,clothing,clothes",
11416 contributors = "lscheibel,csandman,ericfennis"
11417 ))]
11418 Shirt,
11419 #[cfg(feature = "shopping")]
11420 #[strum(props(
11421 svg = "<path d=\"M16 10a4 4 0 0 1-8 0\"></path><path d=\"M3.10 6.03h17.79\"></path><path d=\"M3.4 5.46a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.66a2 2 0 0 0-.4-1.2l-2-2.66A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z\"></path>",
11422 categories = "shopping",
11423 tags = "ecommerce,cart,purchase,store",
11424 contributors = "colebemis,csandman,ericfennis"
11425 ))]
11426 ShoppingBag,
11427 #[cfg(feature = "shopping")]
11428 #[strum(props(
11429 svg = "<path d=\"m15 11-1 9\"></path><path d=\"m19 11-4-7\"></path><path d=\"M2 11h20\"></path><path d=\"m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4\"></path><path d=\"M4.5 15.5h15\"></path><path d=\"m5 11 4-7\"></path><path d=\"m9 11 1 9\"></path>",
11430 categories = "shopping",
11431 tags = "cart,e-commerce,store,purchase,products,items,ingredients",
11432 contributors = "danielbayley"
11433 ))]
11434 ShoppingBasket,
11435 #[cfg(feature = "shopping")]
11436 #[strum(props(
11437 svg = "<circle cx=\"8\" cy=\"21\" r=\"1\"></circle><circle cx=\"19\" cy=\"21\" r=\"1\"></circle><path d=\"M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12\"></path>",
11438 categories = "shopping",
11439 tags = "trolley,cart,basket,e-commerce,store,purchase,products,items,ingredients",
11440 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
11441 ))]
11442 ShoppingCart,
11443 #[cfg(any(feature = "nature", feature = "tools", feature = "gaming"))]
11444 #[strum(props(
11445 svg = "<path d=\"M21.56 4.56a1.5 1.5 0 0 1 0 2.12l-.47.47a3 3 0 0 1-4.21-.03 3 3 0 0 1 0-4.24l.44-.44a1.5 1.5 0 0 1 2.12 0z\"></path><path d=\"M3 22a1 1 0 0 1-1-1v-3.58a1 1 0 0 1 .293-.707l3.35-3.35a1.20 1.20 0 0 1 1.70 0l3.29 3.29a1.20 1.20 0 0 1 0 1.70l-3.35 3.35a1 1 0 0 1-.707.29z\"></path><path d=\"m9 15 7.87-7.87\"></path>",
11446 categories = "nature,tools,gaming",
11447 tags = "dig,spade,treasure",
11448 contributors = "Andreto,ericfennis,karsa-mistmere"
11449 ))]
11450 Shovel,
11451 #[cfg(any(feature = "home", feature = "travel"))]
11452 #[strum(props(
11453 svg = "<path d=\"m4 4 2.5 2.5\"></path><path d=\"M13.5 6.5a4.95 4.95 0 0 0-7 7\"></path><path d=\"M15 5 5 15\"></path><path d=\"M14 17v.01\"></path><path d=\"M10 16v.01\"></path><path d=\"M13 13v.01\"></path><path d=\"M16 10v.01\"></path><path d=\"M11 20v.01\"></path><path d=\"M17 14v.01\"></path><path d=\"M20 11v.01\"></path>",
11454 categories = "home,travel",
11455 tags = "shower,bath,bathroom,amenities,services",
11456 contributors = "karsa-mistmere"
11457 ))]
11458 ShowerHead,
11459 #[cfg(any(feature = "mail", feature = "files"))]
11460 #[strum(props(
11461 svg = "<path d=\"M4 13V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 20 8v5\"></path><path d=\"M14 2v5a1 1 0 0 0 1 1h5\"></path><path d=\"M10 22v-5\"></path><path d=\"M14 19v-2\"></path><path d=\"M18 20v-3\"></path><path d=\"M2 13h20\"></path><path d=\"M6 20v-3\"></path>",
11462 categories = "mail,files",
11463 tags = "file,paper,tear,cut,delete,destroy,remove,erase,document,destruction,secure,security,confidential,data,trash,dispose,disposal,information,waste,permanent",
11464 contributors = "Alirashidy,colebemis,danielbayley,ericfennis,jguddas,karsa-mistmere"
11465 ))]
11466 Shredder,
11467 #[cfg(feature = "animals")]
11468 #[strum(props(
11469 svg = "<path d=\"M11 12h.01\"></path><path d=\"M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1\"></path><path d=\"M14 2a3.28 3.28 0 0 1-3.22 1.79l-6.17-.561A2.38 2.38 0 1 0 4.38 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8\"></path><path d=\"M14 8a8.5 8.5 0 0 1 0 8\"></path><path d=\"M16 16c2 0 4.5-4 4-6\"></path>",
11470 categories = "animals",
11471 tags = "seafood,shellfish,crustacean,prawn,scallop,whelk,arthropod,littleneck,quahog,cherrystone",
11472 contributors = "karsa-mistmere"
11473 ))]
11474 Shrimp,
11475 #[cfg(any(feature = "layout", feature = "arrows"))]
11476 #[strum(props(
11477 svg = "<path d=\"m15 15 6 6m-6-6v4.8m0-4.8h4.8\"></path><path d=\"M9 19.8V15m0 0H4.2M9 15l-6 6\"></path><path d=\"M15 4.2V9m0 0h4.8M15 9l6-6\"></path><path d=\"M9 4.2V9m0 0H4.2M9 9 3 3\"></path>",
11478 categories = "layout,arrows",
11479 tags = "scale,fullscreen",
11480 contributors = "mittalyashu,ericfennis"
11481 ))]
11482 Shrink,
11483 #[cfg(feature = "nature")]
11484 #[strum(props(
11485 svg = "<path d=\"M12 22v-5.17a2 2 0 0 0-.586-1.41L9.5 13.5\"></path><path d=\"M14.5 14.5 12 17\"></path><path d=\"M17 8.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0z\"></path>",
11486 categories = "nature",
11487 tags = "forest,undergrowth,park,nature",
11488 contributors = "karsa-mistmere,ericfennis,jguddas"
11489 ))]
11490 Shrub,
11491 #[cfg(any(feature = "multimedia", feature = "arrows"))]
11492 #[strum(props(
11493 svg = "<path d=\"m18 14 4 4-4 4\"></path><path d=\"m18 2 4 4-4 4\"></path><path d=\"M2 18h1.97a4 4 0 0 0 3.3-1.7l5.45-8.6a4 4 0 0 1 3.3-1.7H22\"></path><path d=\"M2 6h1.97a4 4 0 0 1 3.6 2.2\"></path><path d=\"M22 18h-6.04a4 4 0 0 1-3.3-1.8l-.359-.45\"></path>",
11494 categories = "multimedia,arrows",
11495 tags = "music,random,reorder",
11496 contributors = "colebemis,ericfennis,danielbayley,karsa-mistmere,jguddas"
11497 ))]
11498 Shuffle,
11499 #[cfg(any(feature = "text", feature = "math", feature = "science"))]
11500 #[strum(props(
11501 svg = "<path d=\"M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2\"></path>",
11502 categories = "text,math,science",
11503 tags = "sum,calculate,formula,math,enumeration,enumerate",
11504 contributors = "mittalyashu,johnletey,ericfennis"
11505 ))]
11506 Sigma,
11507 #[cfg(feature = "connectivity")]
11508 #[strum(props(
11509 svg = "<path d=\"M2 20h.01\"></path><path d=\"M7 20v-4\"></path><path d=\"M12 20v-8\"></path><path d=\"M17 20V8\"></path>",
11510 categories = "connectivity",
11511 tags = "connection,wireless,gsm,phone,2g,3g,4g,5g",
11512 contributors = "ericfennis"
11513 ))]
11514 SignalHigh,
11515 #[cfg(feature = "connectivity")]
11516 #[strum(props(
11517 svg = "<path d=\"M2 20h.01\"></path><path d=\"M7 20v-4\"></path>",
11518 categories = "connectivity",
11519 tags = "connection,wireless,gsm,phone,2g,3g,4g,5g",
11520 contributors = "ericfennis"
11521 ))]
11522 SignalLow,
11523 #[cfg(feature = "connectivity")]
11524 #[strum(props(
11525 svg = "<path d=\"M2 20h.01\"></path><path d=\"M7 20v-4\"></path><path d=\"M12 20v-8\"></path>",
11526 categories = "connectivity",
11527 tags = "connection,wireless,gsm,phone,2g,3g,4g,5g",
11528 contributors = "ericfennis"
11529 ))]
11530 SignalMedium,
11531 #[cfg(feature = "connectivity")]
11532 #[strum(props(
11533 svg = "<path d=\"M2 20h.01\"></path>",
11534 categories = "connectivity",
11535 tags = "connection,wireless,gsm,phone,2g,3g,4g,5g,lost",
11536 contributors = "ericfennis,azdle"
11537 ))]
11538 SignalZero,
11539 #[cfg(feature = "connectivity")]
11540 #[strum(props(
11541 svg = "<path d=\"M2 20h.01\"></path><path d=\"M7 20v-4\"></path><path d=\"M12 20v-8\"></path><path d=\"M17 20V8\"></path><path d=\"M22 4v16\"></path>",
11542 categories = "connectivity",
11543 tags = "connection,wireless,gsm,phone,2g,3g,4g,5g",
11544 contributors = "ericfennis"
11545 ))]
11546 Signal,
11547 #[cfg(feature = "text")]
11548 #[strum(props(
11549 svg = "<path d=\"m21 17-2.15-1.86A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.54-3.99-3.97-8.5-4a1 1 0 0 0 0 5c4.15 0 4.74-11.29 5.70-13.5a2.5 2.5 0 1 1 3.31 3.28\"></path><path d=\"M3 21h18\"></path>",
11550 categories = "text",
11551 tags = "text,format,input,contract,autograph,handwriting,sign,cursive,ink,scribble,authorize,personal,agreement,legal,document,identity,authentic,approval,verification,unique",
11552 contributors = "AnnaSasDev,jguddas"
11553 ))]
11554 Signature,
11555 #[cfg(any(
11556 feature = "arrows",
11557 feature = "navigation",
11558 feature = "development",
11559 feature = "gaming"
11560 ))]
11561 #[strum(props(
11562 svg = "<path d=\"M10 9H4L2 7l2-2h6\"></path><path d=\"M14 5h6l2 2-2 2h-6\"></path><path d=\"M10 22V4a2 2 0 1 1 4 0v18\"></path><path d=\"M8 22h8\"></path>",
11563 categories = "arrows,navigation,development,gaming",
11564 tags = "bidirectional,left,right,east,west",
11565 contributors = "danielbayley"
11566 ))]
11567 SignpostBig,
11568 #[cfg(any(
11569 feature = "arrows",
11570 feature = "navigation",
11571 feature = "development",
11572 feature = "gaming"
11573 ))]
11574 #[strum(props(
11575 svg = "<path d=\"M12 13v8\"></path><path d=\"M12 3v3\"></path><path d=\"M2.35 10.35a1.20 1.20 0 0 1 0-1.70l2.06-2.06A2 2 0 0 1 5.82 6h12.34a2 2 0 0 1 1.41.586l2.06 2.06a1.20 1.20 0 0 1 0 1.70l-2.06 2.06a2 2 0 0 1-1.41.586H5.82a2 2 0 0 1-1.41-.586z\"></path>",
11576 categories = "arrows,navigation,development,gaming",
11577 tags = "navigation,direction,arrow,wayfinding,guide,location,pointer,route,indicator,marker,bidirectional,left,right,east,west",
11578 contributors = "danielbayley,karsa-mistmere,jguddas"
11579 ))]
11580 Signpost,
11581 #[cfg(feature = "medical")]
11582 #[strum(props(
11583 svg = "<path d=\"M7 18v-6a5 5 0 1 1 10 0v6\"></path><path d=\"M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z\"></path><path d=\"M21 12h1\"></path><path d=\"M18.5 4.5 18 5\"></path><path d=\"M2 12h1\"></path><path d=\"M12 2v1\"></path><path d=\"m4.92 4.92.707.70\"></path><path d=\"M12 12v6\"></path>",
11584 categories = "medical",
11585 tags = "police,ambulance,emergency,security,alert,alarm,light",
11586 contributors = "karsa-mistmere"
11587 ))]
11588 Siren,
11589 #[cfg(any(feature = "multimedia", feature = "arrows"))]
11590 #[strum(props(
11591 svg = "<path d=\"M17.97 4.28A2 2 0 0 1 21 6v12a2 2 0 0 1-3.02 1.71l-9.99-5.99a2 2 0 0 1-.003-3.43z\"></path><path d=\"M3 20V4\"></path>",
11592 categories = "multimedia,arrows",
11593 tags = "arrow,previous,music",
11594 contributors = "colebemis,ericfennis,karsa-mistmere"
11595 ))]
11596 SkipBack,
11597 #[cfg(any(feature = "multimedia", feature = "arrows"))]
11598 #[strum(props(
11599 svg = "<path d=\"M21 4v16\"></path><path d=\"M6.02 4.28A2 2 0 0 0 3 6v12a2 2 0 0 0 3.02 1.71l9.99-5.99a2 2 0 0 0 .003-3.43z\"></path>",
11600 categories = "multimedia,arrows",
11601 tags = "arrow,skip,next,music",
11602 contributors = "colebemis,ericfennis,karsa-mistmere"
11603 ))]
11604 SkipForward,
11605 #[cfg(feature = "gaming")]
11606 #[strum(props(
11607 svg = "<path d=\"m12.5 17-.5-1-.5 1h1z\"></path><path d=\"M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z\"></path><circle cx=\"15\" cy=\"12\" r=\"1\"></circle><circle cx=\"9\" cy=\"12\" r=\"1\"></circle>",
11608 categories = "gaming",
11609 tags = "death,danger,bone",
11610 contributors = "ericfennis"
11611 ))]
11612 Skull,
11613 #[cfg(any(feature = "development", feature = "math"))]
11614 #[strum(props(
11615 svg = "<path d=\"M22 2 2 22\"></path>",
11616 categories = "development,math",
11617 tags = "divide,division,or,/",
11618 contributors = "danielbayley"
11619 ))]
11620 Slash,
11621 #[cfg(feature = "design")]
11622 #[strum(props(
11623 svg = "<path d=\"M11 16.58V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.66 9.66a1 1 0 0 1-1.41 0L8 14\"></path>",
11624 categories = "design",
11625 tags = "cutter,scalpel,knife",
11626 contributors = "karsa-mistmere,danielbayley,jguddas"
11627 ))]
11628 Slice,
11629 #[cfg(feature = "account")]
11630 #[strum(props(
11631 svg = "<path d=\"M10 5H3\"></path><path d=\"M12 19H3\"></path><path d=\"M14 3v4\"></path><path d=\"M16 17v4\"></path><path d=\"M21 12h-9\"></path><path d=\"M21 19h-5\"></path><path d=\"M21 5h-7\"></path><path d=\"M8 10v4\"></path><path d=\"M8 12H3\"></path>",
11632 categories = "account",
11633 tags = "settings,filters,controls",
11634 contributors = "karsa-mistmere,ericfennis"
11635 ))]
11636 SlidersHorizontal,
11637 #[cfg(feature = "account")]
11638 #[strum(props(
11639 svg = "<path d=\"M10 8h4\"></path><path d=\"M12 21v-9\"></path><path d=\"M12 8V3\"></path><path d=\"M17 16h4\"></path><path d=\"M19 12V3\"></path><path d=\"M19 21v-5\"></path><path d=\"M3 14h4\"></path><path d=\"M5 10V3\"></path><path d=\"M5 21v-7\"></path>",
11640 categories = "account",
11641 tags = "settings,controls",
11642 contributors = "colebemis,karsa-mistmere,ericfennis"
11643 ))]
11644 SlidersVertical,
11645 #[cfg(any(feature = "connectivity", feature = "devices"))]
11646 #[strum(props(
11647 svg = "<rect height=\"20\" rx=\"2\" ry=\"2\" width=\"14\" x=\"5\" y=\"2\"></rect><path d=\"M12.66 8 10 12h4l-2.66 4\"></path>",
11648 categories = "connectivity,devices",
11649 tags = "phone,cellphone,device,power,screen",
11650 contributors = "mittalyashu,ericfennis"
11651 ))]
11652 SmartphoneCharging,
11653 #[cfg(any(feature = "communication", feature = "finance", feature = "devices"))]
11654 #[strum(props(
11655 svg = "<rect height=\"12\" rx=\"1\" width=\"7\" x=\"2\" y=\"6\"></rect><path d=\"M13 8.32a7.43 7.43 0 0 1 0 7.36\"></path><path d=\"M16.46 6.21a11.76 11.76 0 0 1 0 11.58\"></path><path d=\"M19.91 4.1a15.91 15.91 0 0 1 .01 15.8\"></path>",
11656 categories = "communication,finance,devices",
11657 tags = "contactless,payment,near-field communication,screen",
11658 contributors = "karsa-mistmere,jguddas,ericfennis"
11659 ))]
11660 SmartphoneNfc,
11661 #[cfg(any(feature = "connectivity", feature = "devices"))]
11662 #[strum(props(
11663 svg = "<rect height=\"20\" rx=\"2\" ry=\"2\" width=\"14\" x=\"5\" y=\"2\"></rect><path d=\"M12 18h.01\"></path>",
11664 categories = "connectivity,devices",
11665 tags = "phone,cellphone,device,screen",
11666 contributors = "colebemis,mittalyashu,ericfennis"
11667 ))]
11668 Smartphone,
11669 #[cfg(any(
11670 feature = "emoji",
11671 feature = "social",
11672 feature = "notifications",
11673 feature = "communication"
11674 ))]
11675 #[strum(props(
11676 svg = "<path d=\"M22 11v1a10 10 0 1 1-9-10\"></path><path d=\"M8 14s1.5 2 4 2 4-2 4-2\"></path><line x1=\"9\" x2=\"9.01\" y1=\"9\" y2=\"9\"></line><line x1=\"15\" x2=\"15.01\" y1=\"9\" y2=\"9\"></line><path d=\"M16 5h6\"></path><path d=\"M19 2v6\"></path>",
11677 categories = "emoji,social,notifications,communication",
11678 tags = "emoji,face,happy,good,emotion,react,reaction,add",
11679 contributors = "karsa-mistmere,ericfennis"
11680 ))]
11681 SmilePlus,
11682 #[cfg(any(feature = "emoji", feature = "account"))]
11683 #[strum(props(
11684 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><path d=\"M8 14s1.5 2 4 2 4-2 4-2\"></path><line x1=\"9\" x2=\"9.01\" y1=\"9\" y2=\"9\"></line><line x1=\"15\" x2=\"15.01\" y1=\"9\" y2=\"9\"></line>",
11685 categories = "emoji,account",
11686 tags = "emoji,face,happy,good,emotion",
11687 contributors = "colebemis,csandman,mittalyashu,ericfennis"
11688 ))]
11689 Smile,
11690 #[cfg(any(feature = "animals", feature = "food_beverage"))]
11691 #[strum(props(
11692 svg = "<path d=\"M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0\"></path><circle cx=\"10\" cy=\"13\" r=\"8\"></circle><path d=\"M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6\"></path><path d=\"M18 3 19.1 5.2\"></path><path d=\"M22 3 20.9 5.2\"></path>",
11693 categories = "animals,food-beverage",
11694 tags = "animal,insect,slow,speed,delicacy,spiral",
11695 contributors = "danielbayley,karsa-mistmere"
11696 ))]
11697 Snail,
11698 #[cfg(any(feature = "weather", feature = "seasons"))]
11699 #[strum(props(
11700 svg = "<path d=\"m10 20-1.25-2.5L6 18\"></path><path d=\"M10 4 8.75 6.5 6 6\"></path><path d=\"m14 20 1.25-2.5L18 18\"></path><path d=\"m14 4 1.25 2.5L18 6\"></path><path d=\"m17 21-3-6h-4\"></path><path d=\"m17 3-3 6 1.5 3\"></path><path d=\"M2 12h6.5L10 9\"></path><path d=\"m20 10-1.5 2 1.5 2\"></path><path d=\"M22 12h-6.5L14 15\"></path><path d=\"m4 10 1.5 2L4 14\"></path><path d=\"m7 21 3-6-1.5-3\"></path><path d=\"m7 3 3 6h4\"></path>",
11701 categories = "weather,seasons",
11702 tags = "cold,weather,freeze,snow,winter",
11703 contributors = "karsa-mistmere,lscheibel,ericfennis"
11704 ))]
11705 Snowflake,
11706 #[cfg(any(feature = "home", feature = "travel"))]
11707 #[strum(props(
11708 svg = "<path d=\"M10.5 2v4\"></path><path d=\"M14 2H7a2 2 0 0 0-2 2\"></path><path d=\"M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19\"></path><path d=\"M9.60 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3\"></path>",
11709 categories = "home,travel",
11710 tags = "wash,bath,water,liquid,fluid,wet,moisture,damp,bead,globule",
11711 contributors = "Andreto,ericfennis,jguddas"
11712 ))]
11713 SoapDispenserDroplet,
11714 #[cfg(feature = "home")]
11715 #[strum(props(
11716 svg = "<path d=\"M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3\"></path><path d=\"M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z\"></path><path d=\"M4 18v2\"></path><path d=\"M20 18v2\"></path><path d=\"M12 4v9\"></path>",
11717 categories = "home",
11718 tags = "armchair,furniture,leisure,lounge,loveseat,couch",
11719 contributors = "karsa-mistmere"
11720 ))]
11721 Sofa,
11722 #[cfg(any(
11723 feature = "home",
11724 feature = "science",
11725 feature = "sustainability",
11726 feature = "weather"
11727 ))]
11728 #[strum(props(
11729 svg = "<path d=\"M11 2h2\"></path><path d=\"m14.28 14-4.56 8\"></path><path d=\"m21 22-1.55-4H4.55\"></path><path d=\"M3 10v2\"></path><path d=\"M6.24 15.04A2 2 0 0 1 8 14h12a1 1 0 0 1 .864 1.50l-3.11 5.45A2 2 0 0 1 16 22H4a1 1 0 0 1-.863-1.50z\"></path><path d=\"M7 2a4 4 0 0 1-4 4\"></path><path d=\"m8.66 7.66 1.41 1.41\"></path>",
11730 categories = "home,science,sustainability,weather",
11731 tags = "solar panel,solar,panel,sun,energy,electricity,light",
11732 contributors = "UsamaKhan,jguddas,karsa-mistmere"
11733 ))]
11734 SolarPanel,
11735 #[cfg(feature = "food_beverage")]
11736 #[strum(props(
11737 svg = "<path d=\"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z\"></path><path d=\"M7 21h10\"></path><path d=\"M19.5 12 22 6\"></path><path d=\"M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62\"></path><path d=\"M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62\"></path><path d=\"M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62\"></path>",
11738 categories = "food-beverage",
11739 tags = "food,dish,restaurant,course,meal,bowl,starter",
11740 contributors = "kemie"
11741 ))]
11742 Soup,
11743 #[cfg(feature = "text")]
11744 #[strum(props(
11745 svg = "<path d=\"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1\"></path>",
11746 categories = "text",
11747 tags = "text,selection,letters,characters,font,typography",
11748 contributors = "danielbayley"
11749 ))]
11750 Space,
11751 #[cfg(any(feature = "shapes", feature = "gaming"))]
11752 #[strum(props(
11753 svg = "<path d=\"M12 18v4\"></path><path d=\"M2 14.49a5.5 5.5 0 0 0 9.59 3.67.6.6 0 0 1 .818.00A5.5 5.5 0 0 0 22 14.5c0-2.29-1.5-4-3-5.5l-5.49-5.31a2 2 0 0 0-3-.02L5 8.99c-1.5 1.5-3 3.2-3 5.5\"></path>",
11754 categories = "shapes,gaming",
11755 tags = "shape,suit,playing,cards",
11756 contributors = "danielbayley,karsa-mistmere,jguddas"
11757 ))]
11758 Spade,
11759 #[cfg(feature = "shapes")]
11760 #[strum(props(
11761 svg = "<path d=\"M11.01 2.81a1 1 0 0 1 1.96 0l1.05 5.55a2 2 0 0 0 1.59 1.59l5.55 1.05a1 1 0 0 1 0 1.96l-5.55 1.05a2 2 0 0 0-1.59 1.59l-1.05 5.55a1 1 0 0 1-1.96 0l-1.05-5.55a2 2 0 0 0-1.59-1.59l-5.55-1.05a1 1 0 0 1 0-1.96l5.55-1.05a2 2 0 0 0 1.59-1.59z\"></path>",
11762 categories = "shapes",
11763 tags = "star,effect,filter,night,magic,shiny,glitter,twinkle,celebration",
11764 contributors = "Shiva953,karsa-mistmere"
11765 ))]
11766 Sparkle,
11767 #[cfg(any(
11768 feature = "cursors",
11769 feature = "multimedia",
11770 feature = "gaming",
11771 feature = "weather"
11772 ))]
11773 #[strum(props(
11774 svg = "<path d=\"M11.01 2.81a1 1 0 0 1 1.96 0l1.05 5.55a2 2 0 0 0 1.59 1.59l5.55 1.05a1 1 0 0 1 0 1.96l-5.55 1.05a2 2 0 0 0-1.59 1.59l-1.05 5.55a1 1 0 0 1-1.96 0l-1.05-5.55a2 2 0 0 0-1.59-1.59l-5.55-1.05a1 1 0 0 1 0-1.96l5.55-1.05a2 2 0 0 0 1.59-1.59z\"></path><path d=\"M20 2v4\"></path><path d=\"M22 4h-4\"></path><circle cx=\"4\" cy=\"20\" r=\"2\"></circle>",
11775 categories = "cursors,multimedia,gaming,weather",
11776 tags = "stars,effect,filter,night,magic",
11777 contributors = "karsa-mistmere"
11778 ))]
11779 Sparkles,
11780 #[cfg(any(feature = "multimedia", feature = "devices"))]
11781 #[strum(props(
11782 svg = "<rect height=\"20\" rx=\"2\" width=\"16\" x=\"4\" y=\"2\"></rect><path d=\"M12 6h.01\"></path><circle cx=\"12\" cy=\"14\" r=\"4\"></circle><path d=\"M12 14h.01\"></path>",
11783 categories = "multimedia,devices",
11784 tags = "sound,audio,music,tweeter,subwoofer,bass,production,producer,dj",
11785 contributors = "colebemis,ericfennis,danielbayley"
11786 ))]
11787 Speaker,
11788 #[cfg(any(feature = "accessibility", feature = "communication"))]
11789 #[strum(props(
11790 svg = "<path d=\"M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.16-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.65 3.05 1 4.55a5.77 5.77 0 0 1 .029 2.75L2 20\"></path><path d=\"M19.8 17.8a7.5 7.5 0 0 0 .003-10.60\"></path><path d=\"M17 15a3.5 3.5 0 0 0-.025-4.97\"></path>",
11791 categories = "accessibility,communication",
11792 tags = "disability,disabled,dda,human,accessibility,people,sound",
11793 contributors = "doerge,airone01,jguddas,karsa-mistmere"
11794 ))]
11795 Speech,
11796 #[cfg(any(feature = "text", feature = "development"))]
11797 #[strum(props(
11798 svg = "<path d=\"m6 16 6-12 6 12\"></path><path d=\"M8 12h8\"></path><path d=\"M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1\"></path>",
11799 categories = "text,development",
11800 tags = "spelling,error,mistake,oversight,typo,correction,code,linter,a",
11801 contributors = "danielbayley,jguddas"
11802 ))]
11803 SpellCheck2,
11804 #[cfg(any(feature = "text", feature = "development"))]
11805 #[strum(props(
11806 svg = "<path d=\"m6 16 6-12 6 12\"></path><path d=\"M8 12h8\"></path><path d=\"m16 20 2 2 4-4\"></path>",
11807 categories = "text,development",
11808 tags = "spelling,error,mistake,oversight,typo,correction,code,linter,a",
11809 contributors = "danielbayley,jguddas"
11810 ))]
11811 SpellCheck,
11812 #[cfg(any(
11813 feature = "arrows",
11814 feature = "cursors",
11815 feature = "design",
11816 feature = "tools"
11817 ))]
11818 #[strum(props(
11819 svg = "<path d=\"M12.03 12.68a.498.49 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.94l-3.44 1.06a1 1 0 0 0-.66.66l-1.06 3.44a.5.5 0 0 1-.943.03z\"></path><path d=\"M5 17A12 12 0 0 1 17 5\"></path><circle cx=\"19\" cy=\"5\" r=\"2\"></circle><circle cx=\"5\" cy=\"19\" r=\"2\"></circle>",
11820 categories = "arrows,cursors,design,tools",
11821 tags = "path,tool,curve,node,click,pointer,target,vector",
11822 contributors = "kaleidosium,mittalyashu,ericfennis,jguddas,karsa-mistmere"
11823 ))]
11824 SplinePointer,
11825 #[cfg(feature = "design")]
11826 #[strum(props(
11827 svg = "<circle cx=\"19\" cy=\"5\" r=\"2\"></circle><circle cx=\"5\" cy=\"19\" r=\"2\"></circle><path d=\"M5 17A12 12 0 0 1 17 5\"></path>",
11828 categories = "design",
11829 tags = "path,pen,tool,shape,curve,draw",
11830 contributors = "ericfennis,jguddas"
11831 ))]
11832 Spline,
11833 #[cfg(any(feature = "development", feature = "arrows"))]
11834 #[strum(props(
11835 svg = "<path d=\"M16 3h5v5\"></path><path d=\"M8 3H3v5\"></path><path d=\"M12 22v-8.3a4 4 0 0 0-1.17-2.87L3 3\"></path><path d=\"m15 9 6-6\"></path>",
11836 categories = "development,arrows",
11837 tags = "break,disband,divide,separate,branch,disunite",
11838 contributors = "karsa-mistmere,ericfennis"
11839 ))]
11840 Split,
11841 #[cfg(any(feature = "communication", feature = "tools", feature = "social"))]
11842 #[strum(props(
11843 svg = "<path d=\"M17 13.44 4.44 17.08A2 2 0 0 0 4.98 21H19a2 2 0 0 0 .558-3.92l-1.11-.32A2 2 0 0 1 17 14.83V7.66\"></path><path d=\"m7 10.56 12.55-3.64A2 2 0 0 0 19.01 3H5a2 2 0 0 0-.558 3.92l1.11.32A2 2 0 0 1 7 9.16v7.17\"></path>",
11844 categories = "communication,tools,social",
11845 tags = "bobbin,spindle,yarn,thread,string,sewing,needlework",
11846 contributors = "karsa-mistmere"
11847 ))]
11848 Spool,
11849 #[cfg(feature = "sports")]
11850 #[strum(props(
11851 svg = "<path d=\"m15 10.42 4.8-5.07\"></path><path d=\"M19 18h3\"></path><path d=\"M9.5 22 21.41 9.41A2 2 0 0 0 21.2 6.4l-5.61-4.20A1 1 0 0 0 14 3v2a2 2 0 0 1-1.39 1.90L8.67 8.05A1 1 0 0 0 8 9c-.155 6.39-2.08 9-4 9a2 2 0 0 0 0 4h14\"></path>",
11852 categories = "sports",
11853 tags = "footwear,sports,running,athletic,shoe,sneaker,training,exercise,fitness",
11854 contributors = "Youya-ui"
11855 ))]
11856 SportShoe,
11857 #[cfg(any(
11858 feature = "devices",
11859 feature = "photography",
11860 feature = "multimedia",
11861 feature = "communication"
11862 ))]
11863 #[strum(props(
11864 svg = "<path d=\"M15.29 19.56 16 22\"></path><path d=\"m17 16 3.75 2.09\"></path><path d=\"m19 12.5 3.02-.598\"></path><path d=\"M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.59a1 1 0 0 0 1.34-.447l3.10-6.21a1 1 0 0 0-.447-1.34z\"></path><path d=\"M8 9V2\"></path>",
11865 categories = "devices,photography,multimedia,communication",
11866 tags = "winner,soapbox,stage,entertainment,drama,podium,actor,actress,singer,light,beam,play,theatre,show,focus,concert,performance,lens,leaderboard,followspot,best,highlight",
11867 contributors = "chessurisme,jguddas,karsa-mistmere,ericfennis"
11868 ))]
11869 Spotlight,
11870 #[cfg(any(feature = "design", feature = "tools"))]
11871 #[strum(props(
11872 svg = "<path d=\"M3 3h.01\"></path><path d=\"M7 5h.01\"></path><path d=\"M11 7h.01\"></path><path d=\"M3 7h.01\"></path><path d=\"M7 9h.01\"></path><path d=\"M3 11h.01\"></path><rect height=\"4\" width=\"4\" x=\"15\" y=\"5\"></rect><path d=\"m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2\"></path><path d=\"m13 14 8-2\"></path><path d=\"m13 19 8-2\"></path>",
11873 categories = "design,tools",
11874 tags = "paint,color,graffiti,decoration,aerosol,deodorant,shaving foam,air freshener",
11875 contributors = "danielbayley,karsa-mistmere"
11876 ))]
11877 SprayCan,
11878 #[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
11879 #[strum(props(
11880 svg = "<path d=\"M14 9.53V7a4 4 0 0 1 4-4h1.5a.5.5 0 0 1 .5.5V5a4 4 0 0 1-4 4 4 4 0 0 0-4 4c0 2 1 3 1 5a5 5 0 0 1-1 3\"></path><path d=\"M4 9a5 5 0 0 1 8 4 5 5 0 0 1-8-4\"></path><path d=\"M5 21h14\"></path>",
11881 categories = "nature,gaming,sustainability",
11882 tags = "eco,green,growth,leaf,nature,plant,seed,spring,sustainability",
11883 contributors = "ericfennis,mittalyashu,jamiemlaw,karsa-mistmere,jguddas"
11884 ))]
11885 Sprout,
11886 #[cfg(any(
11887 feature = "medical",
11888 feature = "social",
11889 feature = "science",
11890 feature = "multimedia"
11891 ))]
11892 #[strum(props(
11893 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M17 12h-2l-2 5-2-10-2 5H7\"></path>",
11894 categories = "medical,social,science,multimedia",
11895 tags = "pulse,action,motion,movement,exercise,fitness,healthcare,heart rate monitor,vital signs,vitals,emergency room,er,intensive care,hospital,defibrillator,earthquake,siesmic,magnitude,richter scale,aftershock,tremor,shockwave,audio,waveform,synthesizer,synthesiser,music",
11896 contributors = "danielbayley"
11897 ))]
11898 SquareActivity,
11899 #[cfg(any(feature = "arrows", feature = "gaming"))]
11900 #[strum(props(
11901 svg = "<path d=\"M15 15H9l6-6\"></path><path d=\"M9 15V9\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
11902 categories = "arrows,gaming",
11903 tags = "direction,south-west,diagonal,sign,turn,keyboard,button",
11904 contributors = "danielbayley,jguddas"
11905 ))]
11906 SquareArrowDownLeft,
11907 #[cfg(any(feature = "arrows", feature = "gaming"))]
11908 #[strum(props(
11909 svg = "<path d=\"M15 15 9 9\"></path><path d=\"M9 15h6V9\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
11910 categories = "arrows,gaming",
11911 tags = "direction,south-east,diagonal,sign,turn,keyboard,button",
11912 contributors = "danielbayley,jguddas"
11913 ))]
11914 SquareArrowDownRight,
11915 #[cfg(any(feature = "arrows", feature = "gaming"))]
11916 #[strum(props(
11917 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M12 8v8\"></path><path d=\"m8 12 4 4 4-4\"></path>",
11918 categories = "arrows,gaming",
11919 tags = "backwards,reverse,direction,south,sign,keyboard,button",
11920 contributors = "danielbayley,ericfennis"
11921 ))]
11922 SquareArrowDown,
11923 #[cfg(feature = "arrows")]
11924 #[strum(props(
11925 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"m12 8-4 4 4 4\"></path><path d=\"M16 12H8\"></path>",
11926 categories = "arrows",
11927 tags = "previous,back,direction,west,sign,keyboard,button,<-",
11928 contributors = "danielbayley,ericfennis"
11929 ))]
11930 SquareArrowLeft,
11931 #[cfg(feature = "arrows")]
11932 #[strum(props(
11933 svg = "<path d=\"M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6\"></path><path d=\"m3 21 9-9\"></path><path d=\"M9 21H3v-6\"></path>",
11934 categories = "arrows",
11935 tags = "outwards,direction,south-west,diagonal",
11936 contributors = "danielbayley"
11937 ))]
11938 SquareArrowOutDownLeft,
11939 #[cfg(feature = "arrows")]
11940 #[strum(props(
11941 svg = "<path d=\"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6\"></path><path d=\"m21 21-9-9\"></path><path d=\"M21 15v6h-6\"></path>",
11942 categories = "arrows",
11943 tags = "outwards,direction,south-east,diagonal",
11944 contributors = "danielbayley"
11945 ))]
11946 SquareArrowOutDownRight,
11947 #[cfg(feature = "arrows")]
11948 #[strum(props(
11949 svg = "<path d=\"M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6\"></path><path d=\"m3 3 9 9\"></path><path d=\"M3 9V3h6\"></path>",
11950 categories = "arrows",
11951 tags = "outwards,direction,north-west,diagonal",
11952 contributors = "danielbayley"
11953 ))]
11954 SquareArrowOutUpLeft,
11955 #[cfg(any(feature = "arrows", feature = "social"))]
11956 #[strum(props(
11957 svg = "<path d=\"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6\"></path><path d=\"m21 3-9 9\"></path><path d=\"M15 3h6v6\"></path>",
11958 categories = "arrows,social",
11959 tags = "outwards,direction,north-east,diagonal,share,open,external,link",
11960 contributors = "danielbayley"
11961 ))]
11962 SquareArrowOutUpRight,
11963 #[cfg(any(
11964 feature = "arrows",
11965 feature = "shapes",
11966 feature = "layout",
11967 feature = "multimedia"
11968 ))]
11969 #[strum(props(
11970 svg = "<path d=\"m10 16 4-4-4-4\"></path><path d=\"M3 12h11\"></path><path d=\"M3 8V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3\"></path>",
11971 categories = "arrows,shapes,layout,multimedia",
11972 tags = "left,in,inside,input,insert,source,import,place,->",
11973 contributors = "ethanhazel,karsa-mistmere,ericfennis"
11974 ))]
11975 SquareArrowRightEnter,
11976 #[cfg(any(
11977 feature = "arrows",
11978 feature = "shapes",
11979 feature = "layout",
11980 feature = "multimedia"
11981 ))]
11982 #[strum(props(
11983 svg = "<path d=\"M10 12h11\"></path><path d=\"m17 16 4-4-4-4\"></path><path d=\"M21 6.34V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-1.34\"></path>",
11984 categories = "arrows,shapes,layout,multimedia",
11985 tags = "out,outside,output,export,->",
11986 contributors = "ethanhazel,karsa-mistmere,ericfennis"
11987 ))]
11988 SquareArrowRightExit,
11989 #[cfg(feature = "arrows")]
11990 #[strum(props(
11991 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M8 12h8\"></path><path d=\"m12 16 4-4-4-4\"></path>",
11992 categories = "arrows",
11993 tags = "next,forward,direction,west,sign,keyboard,button,->",
11994 contributors = "danielbayley,ericfennis"
11995 ))]
11996 SquareArrowRight,
11997 #[cfg(feature = "arrows")]
11998 #[strum(props(
11999 svg = "<path d=\"M15 15 9 9\"></path><path d=\"M9 15V9h6\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12000 categories = "arrows",
12001 tags = "direction,north-west,diagonal,sign,keyboard,button",
12002 contributors = "danielbayley,jguddas"
12003 ))]
12004 SquareArrowUpLeft,
12005 #[cfg(any(feature = "arrows", feature = "social"))]
12006 #[strum(props(
12007 svg = "<path d=\"M15 15V9H9\"></path><path d=\"m9 15 6-6\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12008 categories = "arrows,social",
12009 tags = "direction,north-east,diagonal,sign,keyboard,button,share",
12010 contributors = "danielbayley,jguddas"
12011 ))]
12012 SquareArrowUpRight,
12013 #[cfg(feature = "arrows")]
12014 #[strum(props(
12015 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"m16 12-4-4-4 4\"></path><path d=\"M12 16V8\"></path>",
12016 categories = "arrows",
12017 tags = "forward,direction,north,sign,keyboard,button",
12018 contributors = "danielbayley,ericfennis"
12019 ))]
12020 SquareArrowUp,
12021 #[cfg(any(
12022 feature = "text",
12023 feature = "security",
12024 feature = "math",
12025 feature = "development"
12026 ))]
12027 #[strum(props(
12028 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M12 8v8\"></path><path d=\"m8.5 14 7-4\"></path><path d=\"m8.5 10 7 4\"></path>",
12029 categories = "text,security,math,development",
12030 tags = "password,secret,access,key,multiply,multiplication,glob pattern,wildcard,*",
12031 contributors = "danielbayley"
12032 ))]
12033 SquareAsterisk,
12034 #[cfg(any(
12035 feature = "text",
12036 feature = "design",
12037 feature = "tools",
12038 feature = "files",
12039 feature = "development"
12040 ))]
12041 #[strum(props(
12042 svg = "<line x1=\"5\" x2=\"19\" y1=\"3\" y2=\"3\"></line><line x1=\"3\" x2=\"3\" y1=\"5\" y2=\"19\"></line><line x1=\"21\" x2=\"21\" y1=\"5\" y2=\"19\"></line><line x1=\"9\" x2=\"10\" y1=\"21\" y2=\"21\"></line><line x1=\"14\" x2=\"15\" y1=\"21\" y2=\"21\"></line><path d=\"M 3 5 A2 2 0 0 1 5 3\"></path><path d=\"M 19 3 A2 2 0 0 1 21 5\"></path><path d=\"M 5 21 A2 2 0 0 1 3 19\"></path><path d=\"M 21 19 A2 2 0 0 1 19 21\"></path><circle cx=\"8.5\" cy=\"8.5\" r=\"1.5\"></circle><line x1=\"9.56\" x2=\"12\" y1=\"9.56\" y2=\"12\"></line><line x1=\"17\" x2=\"14.82\" y1=\"17\" y2=\"14.82\"></line><circle cx=\"8.5\" cy=\"15.5\" r=\"1.5\"></circle><line x1=\"9.56\" x2=\"17\" y1=\"14.43\" y2=\"7\"></line>",
12043 categories = "text,design,tools,files,development",
12044 tags = "cut,snippet,chop,stationery,crafts",
12045 contributors = "danielbayley,eden881"
12046 ))]
12047 SquareBottomDashedScissors,
12048 #[cfg(any(feature = "design", feature = "photography"))]
12049 #[strum(props(
12050 svg = "<path d=\"M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3\"></path><path d=\"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3\"></path><path d=\"M12 20v2\"></path><path d=\"M12 14v2\"></path><path d=\"M12 8v2\"></path><path d=\"M12 2v2\"></path>",
12051 categories = "design,photography",
12052 tags = "reflect,mirror,alignment,dashed",
12053 contributors = "ericfennis,karsa-mistmere"
12054 ))]
12055 SquareCenterlineDashedHorizontal,
12056 #[cfg(any(feature = "design", feature = "photography"))]
12057 #[strum(props(
12058 svg = "<path d=\"M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3\"></path><path d=\"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3\"></path><path d=\"M4 12H2\"></path><path d=\"M10 12H8\"></path><path d=\"M16 12h-2\"></path><path d=\"M22 12h-2\"></path>",
12059 categories = "design,photography",
12060 tags = "reflect,mirror,alignment,dashed",
12061 contributors = "ericfennis,karsa-mistmere"
12062 ))]
12063 SquareCenterlineDashedVertical,
12064 #[cfg(any(
12065 feature = "charts",
12066 feature = "time",
12067 feature = "development",
12068 feature = "design"
12069 ))]
12070 #[strum(props(
12071 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M9 8h7\"></path><path d=\"M8 12h6\"></path><path d=\"M11 16h5\"></path>",
12072 categories = "charts,time,development,design",
12073 tags = "projects,manage,overview,roadmap,plan,intentions,timeline,deadline,date,event,range,period,productivity,work,agile,code,coding,toolbar,button",
12074 contributors = "danielbayley"
12075 ))]
12076 SquareChartGantt,
12077 #[cfg(feature = "notifications")]
12078 #[strum(props(
12079 svg = "<path d=\"M21 10.65V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.34\"></path><path d=\"m9 11 3 3L22 4\"></path>",
12080 categories = "notifications",
12081 tags = "done,todo,tick,complete,task",
12082 contributors = "colebemis,csandman,ericfennis,jguddas"
12083 ))]
12084 SquareCheckBig,
12085 #[cfg(feature = "notifications")]
12086 #[strum(props(
12087 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"m9 12 2 2 4-4\"></path>",
12088 categories = "notifications",
12089 tags = "done,todo,tick,complete,task",
12090 contributors = "danielbayley"
12091 ))]
12092 SquareCheck,
12093 #[cfg(any(feature = "arrows", feature = "navigation"))]
12094 #[strum(props(
12095 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"m16 10-4 4-4-4\"></path>",
12096 categories = "arrows,navigation",
12097 tags = "back,menu,panel",
12098 contributors = "danielbayley,ericfennis"
12099 ))]
12100 SquareChevronDown,
12101 #[cfg(any(feature = "arrows", feature = "navigation"))]
12102 #[strum(props(
12103 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"m14 16-4-4 4-4\"></path>",
12104 categories = "arrows,navigation",
12105 tags = "back,previous,less than,fewer,menu,panel,button,keyboard,<",
12106 contributors = "danielbayley,ericfennis"
12107 ))]
12108 SquareChevronLeft,
12109 #[cfg(any(feature = "arrows", feature = "navigation", feature = "development"))]
12110 #[strum(props(
12111 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"m10 8 4 4-4 4\"></path>",
12112 categories = "arrows,navigation,development",
12113 tags = "forward,next,more than,greater,menu,panel,code,coding,command line,terminal,prompt,shell,console,>",
12114 contributors = "danielbayley,ericfennis"
12115 ))]
12116 SquareChevronRight,
12117 #[cfg(any(feature = "arrows", feature = "navigation", feature = "math"))]
12118 #[strum(props(
12119 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"m8 14 4-4 4 4\"></path>",
12120 categories = "arrows,navigation,math",
12121 tags = "caret,keyboard,button,mac,control,ctrl,superscript,exponential,power,ahead,menu,panel,^",
12122 contributors = "danielbayley,ericfennis"
12123 ))]
12124 SquareChevronUp,
12125 #[cfg(any(feature = "text", feature = "development"))]
12126 #[strum(props(
12127 svg = "<path d=\"m10 9-3 3 3 3\"></path><path d=\"m14 15 3-3-3-3\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12128 categories = "text,development",
12129 tags = "gist,source,programming,html,xml,coding",
12130 contributors = "danielbayley,jguddas,karsa-mistmere,ericfennis"
12131 ))]
12132 SquareCode,
12133 #[cfg(any(feature = "development", feature = "files"))]
12134 #[strum(props(
12135 svg = "<path d=\"M10 9.5 8 12l2 2.5\"></path><path d=\"M14 21h1\"></path><path d=\"m14 9.5 2 2.5-2 2.5\"></path><path d=\"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2\"></path><path d=\"M9 21h1\"></path>",
12136 categories = "development,files",
12137 tags = "rectangle,aspect ratio,1:1,shape,snippet,code,coding",
12138 contributors = "danielbayley"
12139 ))]
12140 SquareDashedBottomCode,
12141 #[cfg(any(feature = "development", feature = "files"))]
12142 #[strum(props(
12143 svg = "<path d=\"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2\"></path><path d=\"M9 21h1\"></path><path d=\"M14 21h1\"></path>",
12144 categories = "development,files",
12145 tags = "rectangle,aspect ratio,1:1,shape,snippet,code,coding",
12146 contributors = "danielbayley"
12147 ))]
12148 SquareDashedBottom,
12149 #[cfg(any(feature = "charts", feature = "development", feature = "design"))]
12150 #[strum(props(
12151 svg = "<path d=\"M8 7v7\"></path><path d=\"M12 7v4\"></path><path d=\"M16 7v9\"></path><path d=\"M5 3a2 2 0 0 0-2 2\"></path><path d=\"M9 3h1\"></path><path d=\"M14 3h1\"></path><path d=\"M19 3a2 2 0 0 1 2 2\"></path><path d=\"M21 9v1\"></path><path d=\"M21 14v1\"></path><path d=\"M21 19a2 2 0 0 1-2 2\"></path><path d=\"M14 21h1\"></path><path d=\"M9 21h1\"></path><path d=\"M5 21a2 2 0 0 1-2-2\"></path><path d=\"M3 14v1\"></path><path d=\"M3 9v1\"></path>",
12152 categories = "charts,development,design",
12153 tags = "projects,manage,overview,board,tickets,issues,roadmap,plan,intentions,productivity,work,agile,draft,template,boilerplate,code,coding",
12154 contributors = "danielbayley"
12155 ))]
12156 SquareDashedKanban,
12157 #[cfg(any(
12158 feature = "arrows",
12159 feature = "cursors",
12160 feature = "development",
12161 feature = "tools"
12162 ))]
12163 #[strum(props(
12164 svg = "<path d=\"M12.03 12.68a.498.49 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.94l-3.44 1.06a1 1 0 0 0-.66.66l-1.06 3.44a.5.5 0 0 1-.943.03z\"></path><path d=\"M5 3a2 2 0 0 0-2 2\"></path><path d=\"M19 3a2 2 0 0 1 2 2\"></path><path d=\"M5 21a2 2 0 0 1-2-2\"></path><path d=\"M9 3h1\"></path><path d=\"M9 21h2\"></path><path d=\"M14 3h1\"></path><path d=\"M3 9v1\"></path><path d=\"M21 9v2\"></path><path d=\"M3 14v1\"></path>",
12165 categories = "arrows,cursors,development,tools",
12166 tags = "inspector,element,mouse,click,pointer,box,browser,selector,target,dom,node",
12167 contributors = "danielbayley"
12168 ))]
12169 SquareDashedMousePointer,
12170 #[cfg(any(feature = "text", feature = "cursors"))]
12171 #[strum(props(
12172 svg = "<path d=\"M14 21h1\"></path><path d=\"M14 3h1\"></path><path d=\"M19 3a2 2 0 0 1 2 2\"></path><path d=\"M21 14v1\"></path><path d=\"M21 19a2 2 0 0 1-2 2\"></path><path d=\"M21 9v1\"></path><path d=\"M3 14v1\"></path><path d=\"M3 9v1\"></path><path d=\"M5 21a2 2 0 0 1-2-2\"></path><path d=\"M5 3a2 2 0 0 0-2 2\"></path><path d=\"M7 12h10\"></path><path d=\"M7 16h6\"></path><path d=\"M7 8h8\"></path><path d=\"M9 21h1\"></path><path d=\"M9 3h1\"></path>",
12173 categories = "text,cursors",
12174 tags = "find,search,selection,dashed",
12175 contributors = "danielbayley"
12176 ))]
12177 SquareDashedText,
12178 #[cfg(any(feature = "design", feature = "development", feature = "layout"))]
12179 #[strum(props(
12180 svg = "<path d=\"M14 21h1\"></path><path d=\"M21 14v1\"></path><path d=\"M21 19a2 2 0 0 1-2 2\"></path><path d=\"M21 9v1\"></path><path d=\"M3 14v1\"></path><path d=\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2\"></path><path d=\"M3 9v1\"></path><path d=\"M5 21a2 2 0 0 1-2-2\"></path><path d=\"M9 21h1\"></path>",
12181 categories = "design,development,layout",
12182 tags = "square,border,width,layout,style,design,rectangular,marquee,dashed,box,rectangle,aspect ratio,1:1",
12183 contributors = "llaenowyd,mishkaio,ericfennis,karsa-mistmere,chessurisme,danielbayley,colebemis,juanpablofernandez"
12184 ))]
12185 SquareDashedTopSolid,
12186 #[cfg(any(feature = "text", feature = "design"))]
12187 #[strum(props(
12188 svg = "<path d=\"M5 3a2 2 0 0 0-2 2\"></path><path d=\"M19 3a2 2 0 0 1 2 2\"></path><path d=\"M21 19a2 2 0 0 1-2 2\"></path><path d=\"M5 21a2 2 0 0 1-2-2\"></path><path d=\"M9 3h1\"></path><path d=\"M9 21h1\"></path><path d=\"M14 3h1\"></path><path d=\"M14 21h1\"></path><path d=\"M3 9v1\"></path><path d=\"M21 9v1\"></path><path d=\"M3 14v1\"></path><path d=\"M21 14v1\"></path>",
12189 categories = "text,design",
12190 tags = "selection,square,rectangular,marquee,tool,dashed,box",
12191 contributors = "llaenowyd,mishkaio,ericfennis,karsa-mistmere,chessurisme"
12192 ))]
12193 SquareDashed,
12194 #[cfg(feature = "math")]
12195 #[strum(props(
12196 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><line x1=\"8\" x2=\"16\" y1=\"12\" y2=\"12\"></line><line x1=\"12\" x2=\"12\" y1=\"16\" y2=\"16\"></line><line x1=\"12\" x2=\"12\" y1=\"8\" y2=\"8\"></line>",
12197 categories = "math",
12198 tags = "calculate,math,÷,/",
12199 contributors = "csandman,ericfennis"
12200 ))]
12201 SquareDivide,
12202 #[cfg(feature = "development")]
12203 #[strum(props(
12204 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><circle cx=\"12\" cy=\"12\" r=\"1\"></circle>",
12205 categories = "development",
12206 tags = "git,diff,modified,.",
12207 contributors = "danielbayley,ericfennis"
12208 ))]
12209 SquareDot,
12210 #[cfg(feature = "math")]
12211 #[strum(props(
12212 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M7 10h10\"></path><path d=\"M7 14h10\"></path>",
12213 categories = "math",
12214 tags = "calculate,=",
12215 contributors = "danielbayley,ericfennis"
12216 ))]
12217 SquareEqual,
12218 #[cfg(any(feature = "development", feature = "math"))]
12219 #[strum(props(
12220 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3\"></path><path d=\"M9 11.2h5.7\"></path>",
12221 categories = "development,math",
12222 tags = "programming,code,automation,math",
12223 contributors = "mittalyashu,ericfennis"
12224 ))]
12225 SquareFunction,
12226 #[cfg(any(feature = "charts", feature = "development", feature = "design"))]
12227 #[strum(props(
12228 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M8 7v7\"></path><path d=\"M12 7v4\"></path><path d=\"M16 7v9\"></path>",
12229 categories = "charts,development,design",
12230 tags = "projects,manage,overview,board,tickets,issues,roadmap,plan,intentions,productivity,work,agile,code,coding,toolbar,button",
12231 contributors = "danielbayley"
12232 ))]
12233 SquareKanban,
12234 #[cfg(any(
12235 feature = "text",
12236 feature = "photography",
12237 feature = "multimedia",
12238 feature = "navigation",
12239 feature = "development"
12240 ))]
12241 #[strum(props(
12242 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M7 7v10\"></path><path d=\"M11 7v10\"></path><path d=\"m15 7 2 10\"></path>",
12243 categories = "text,photography,multimedia,navigation,development",
12244 tags = "books,reading,written,authors,stories,fiction,novels,information,knowledge,education,high school,university,college,academy,learning,study,research,collection,vinyl,records,albums,music,package",
12245 contributors = "danielbayley"
12246 ))]
12247 SquareLibrary,
12248 #[cfg(any(feature = "transportation", feature = "navigation"))]
12249 #[strum(props(
12250 svg = "<path d=\"M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.59a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12251 categories = "transportation,navigation",
12252 tags = "metro,subway,underground,track,line",
12253 contributors = "danielbayley,jguddas,karsa-mistmere"
12254 ))]
12255 SquareM,
12256 #[cfg(feature = "layout")]
12257 #[strum(props(
12258 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M7 8h10\"></path><path d=\"M7 12h10\"></path><path d=\"M7 16h10\"></path>",
12259 categories = "layout",
12260 tags = "bars,navigation,hamburger,options,menu bar,panel",
12261 contributors = "danielbayley"
12262 ))]
12263 SquareMenu,
12264 #[cfg(any(
12265 feature = "math",
12266 feature = "development",
12267 feature = "text",
12268 feature = "tools",
12269 feature = "devices"
12270 ))]
12271 #[strum(props(
12272 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M8 12h8\"></path>",
12273 categories = "math,development,text,tools,devices",
12274 tags = "subtract,remove,decrease,reduce,calculator,button,keyboard,line,divider,separator,horizontal rule,hr,html,markup,markdown,---,toolbar,operator,code,coding,minimum,downgrade",
12275 contributors = "colebemis,ericfennis"
12276 ))]
12277 SquareMinus,
12278 #[cfg(any(
12279 feature = "arrows",
12280 feature = "cursors",
12281 feature = "development",
12282 feature = "tools"
12283 ))]
12284 #[strum(props(
12285 svg = "<path d=\"M12.03 12.68a.498.49 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.94l-3.44 1.06a1 1 0 0 0-.66.66l-1.06 3.44a.5.5 0 0 1-.943.03z\"></path><path d=\"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6\"></path>",
12286 categories = "arrows,cursors,development,tools",
12287 tags = "inspector,element,mouse,click,pointer,box,browser,selector,target,dom,node",
12288 contributors = "mittalyashu,ericfennis,karsa-mistmere"
12289 ))]
12290 SquareMousePointer,
12291 #[cfg(any(feature = "transportation", feature = "navigation"))]
12292 #[strum(props(
12293 svg = "<path d=\"M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41\"></path><path d=\"M3 8.7V19a2 2 0 0 0 2 2h10.3\"></path><path d=\"m2 2 20 20\"></path><path d=\"M13 13a3 3 0 1 0 0-6H9v2\"></path><path d=\"M9 17v-2.3\"></path>",
12294 categories = "transportation,navigation",
12295 tags = "parking lot,car park,no parking",
12296 contributors = "karsa-mistmere,jguddas,danielbayley"
12297 ))]
12298 SquareParkingOff,
12299 #[cfg(any(feature = "transportation", feature = "navigation"))]
12300 #[strum(props(
12301 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M9 17V7h4a3 3 0 0 1 0 6H9\"></path>",
12302 categories = "transportation,navigation",
12303 tags = "parking lot,car park",
12304 contributors = "karsa-mistmere,jguddas,danielbayley"
12305 ))]
12306 SquareParking,
12307 #[cfg(feature = "multimedia")]
12308 #[strum(props(
12309 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><line x1=\"10\" x2=\"10\" y1=\"15\" y2=\"9\"></line><line x1=\"14\" x2=\"14\" y1=\"15\" y2=\"9\"></line>",
12310 categories = "multimedia",
12311 tags = "music,audio,stop",
12312 contributors = "colebemis,ericfennis,karsa-mistmere"
12313 ))]
12314 SquarePause,
12315 #[cfg(feature = "text")]
12316 #[strum(props(
12317 svg = "<path d=\"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"></path><path d=\"M18.37 2.62a1 1 0 0 1 3 3l-9.01 9.01a2 2 0 0 1-.853.50l-2.87.84a.5.5 0 0 1-.62-.62l.84-2.87a2 2 0 0 1 .506-.852z\"></path>",
12318 categories = "text",
12319 tags = "pencil,edit,change,create,draw,sketch,draft,writer,writing,biro,ink,marker,felt tip,stationery,artist",
12320 contributors = "colebemis,csandman,mittalyashu,ericfennis"
12321 ))]
12322 SquarePen,
12323 #[cfg(any(
12324 feature = "social",
12325 feature = "finance",
12326 feature = "shopping",
12327 feature = "math"
12328 ))]
12329 #[strum(props(
12330 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"m15 9-6 6\"></path><path d=\"M9 9h.01\"></path><path d=\"M15 15h.01\"></path>",
12331 categories = "social,finance,shopping,math",
12332 tags = "verified,unverified,sale,discount,offer,marketing,sticker,price tag",
12333 contributors = "danielbayley"
12334 ))]
12335 SquarePercent,
12336 #[cfg(any(feature = "development", feature = "math"))]
12337 #[strum(props(
12338 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M7 7h10\"></path><path d=\"M10 7v10\"></path><path d=\"M16 17a2 2 0 0 1-2-2V7\"></path>",
12339 categories = "development,math",
12340 tags = "constant,code,coding,programming,symbol,trigonometry,geometry,formula",
12341 contributors = "danielbayley"
12342 ))]
12343 SquarePi,
12344 #[cfg(feature = "text")]
12345 #[strum(props(
12346 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M12 12H9.5a2.5 2.5 0 0 1 0-5H17\"></path><path d=\"M12 7v10\"></path><path d=\"M16 7v10\"></path>",
12347 categories = "text",
12348 tags = "paragraph,mark,paraph,blind,typography,type,text,prose,symbol",
12349 contributors = "danielbayley"
12350 ))]
12351 SquarePilcrow,
12352 #[cfg(any(feature = "arrows", feature = "multimedia"))]
12353 #[strum(props(
12354 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M9 9.00a1 1 0 0 1 1.51-.859l4.99 2.99a1 1 0 0 1 0 1.71l-4.99 2.99A1 1 0 0 1 9 14.99z\"></path>",
12355 categories = "arrows,multimedia",
12356 tags = "music,audio,video,start,run",
12357 contributors = "danielbayley,karsa-mistmere"
12358 ))]
12359 SquarePlay,
12360 #[cfg(any(
12361 feature = "math",
12362 feature = "tools",
12363 feature = "development",
12364 feature = "text"
12365 ))]
12366 #[strum(props(
12367 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M8 12h8\"></path><path d=\"M12 8v8\"></path>",
12368 categories = "math,tools,development,text",
12369 tags = "add,new,increase,increment,positive,calculate,calculator,button,keyboard,toolbar,maximum,upgrade,extra,operator,join,concatenate,code,coding,+",
12370 contributors = "colebemis,ericfennis"
12371 ))]
12372 SquarePlus,
12373 #[cfg(feature = "connectivity")]
12374 #[strum(props(
12375 svg = "<path d=\"M12 7v4\"></path><path d=\"M7.99 9.00a5 5 0 1 0 8-.005\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12376 categories = "connectivity",
12377 tags = "on,off,device,switch,toggle,binary,boolean,reboot,restart,button,keyboard,troubleshoot",
12378 contributors = "danielbayley,jguddas"
12379 ))]
12380 SquarePower,
12381 #[cfg(any(feature = "development", feature = "math"))]
12382 #[strum(props(
12383 svg = "<path d=\"M7 12h2l2 5 2-10h4\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12384 categories = "development,math",
12385 tags = "calculate,formula,math,operator,root,square,symbol",
12386 contributors = "smnandre"
12387 ))]
12388 SquareRadical,
12389 #[cfg(any(feature = "design", feature = "development", feature = "layout"))]
12390 #[strum(props(
12391 svg = "<path d=\"M21 11a8 8 0 0 0-8-8\"></path><path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4\"></path>",
12392 categories = "design,development,layout",
12393 tags = "border,radius,style,design,corner,layout,round,rounded",
12394 contributors = "liamb13,jguddas"
12395 ))]
12396 SquareRoundCorner,
12397 #[cfg(any(
12398 feature = "text",
12399 feature = "design",
12400 feature = "tools",
12401 feature = "files",
12402 feature = "development"
12403 ))]
12404 #[strum(props(
12405 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><circle cx=\"8.5\" cy=\"8.5\" r=\"1.5\"></circle><line x1=\"9.56\" x2=\"12\" y1=\"9.56\" y2=\"12\"></line><line x1=\"17\" x2=\"14.82\" y1=\"17\" y2=\"14.82\"></line><circle cx=\"8.5\" cy=\"15.5\" r=\"1.5\"></circle><line x1=\"9.56\" x2=\"17\" y1=\"14.43\" y2=\"7\"></line>",
12406 categories = "text,design,tools,files,development",
12407 tags = "cut,snippet,chop,stationery,crafts,toolbar,button",
12408 contributors = "danielbayley,eden881"
12409 ))]
12410 SquareScissors,
12411 #[cfg(any(feature = "text", feature = "math"))]
12412 #[strum(props(
12413 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M16 8.9V7H8l4 5-4 5h8v-1.9\"></path>",
12414 categories = "text,math",
12415 tags = "sum,calculate,formula,math,enumeration,enumerate",
12416 contributors = "danielbayley"
12417 ))]
12418 SquareSigma,
12419 #[cfg(any(feature = "development", feature = "math"))]
12420 #[strum(props(
12421 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><line x1=\"9\" x2=\"15\" y1=\"15\" y2=\"9\"></line>",
12422 categories = "development,math",
12423 tags = "git,diff,ignored,divide,division,shortcut,or,/",
12424 contributors = "danielbayley,ericfennis"
12425 ))]
12426 SquareSlash,
12427 #[cfg(feature = "layout")]
12428 #[strum(props(
12429 svg = "<path d=\"M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3\"></path><path d=\"M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3\"></path><line x1=\"12\" x2=\"12\" y1=\"4\" y2=\"20\"></line>",
12430 categories = "layout",
12431 tags = "split,divide",
12432 contributors = "Patchethium,ericfennis"
12433 ))]
12434 SquareSplitHorizontal,
12435 #[cfg(feature = "layout")]
12436 #[strum(props(
12437 svg = "<path d=\"M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3\"></path><path d=\"M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3\"></path><line x1=\"4\" x2=\"20\" y1=\"12\" y2=\"12\"></line>",
12438 categories = "layout",
12439 tags = "split,divide",
12440 contributors = "Patchethium,ericfennis"
12441 ))]
12442 SquareSplitVertical,
12443 #[cfg(feature = "layout")]
12444 #[strum(props(
12445 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><rect height=\"8\" rx=\"1\" width=\"8\" x=\"8\" y=\"8\"></rect>",
12446 categories = "layout",
12447 tags = "float,center,rectangle",
12448 contributors = "colebemis,ericfennis,jguddas"
12449 ))]
12450 SquareSquare,
12451 #[cfg(any(feature = "text", feature = "files", feature = "development"))]
12452 #[strum(props(
12453 svg = "<path d=\"M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2\"></path><path d=\"M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2\"></path><rect height=\"8\" rx=\"2\" width=\"8\" x=\"14\" y=\"14\"></rect>",
12454 categories = "text,files,development",
12455 tags = "versions,clone,copy,duplicate,multiple,revisions,version control,backup,history",
12456 contributors = "danielbayley"
12457 ))]
12458 SquareStack,
12459 #[cfg(any(feature = "sports", feature = "gaming"))]
12460 #[strum(props(
12461 svg = "<path d=\"M11.03 7.69a1 1 0 0 1 1.90.024l.737 1.45a1 1 0 0 0 .737.53l1.63.256a1 1 0 0 1 .588 1.80l-1.17 1.16a1 1 0 0 0-.282.86l.259 1.61a1 1 0 0 1-1.54 1.13l-1.46-.75a1 1 0 0 0-.912 0l-1.46.75a1 1 0 0 1-1.53-1.13l.258-1.61a1 1 0 0 0-.282-.866l-1.15-1.15a1 1 0 0 1 .572-1.82l1.63-.256a1 1 0 0 0 .737-.535z\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12462 categories = "sports,gaming",
12463 tags = "badge,medal,honour,decoration,order,pin,laurel,trophy,medallion,insignia,bronze,silver,gold",
12464 contributors = "karsa-mistmere"
12465 ))]
12466 SquareStar,
12467 #[cfg(feature = "multimedia")]
12468 #[strum(props(
12469 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><rect height=\"6\" rx=\"1\" width=\"6\" x=\"9\" y=\"9\"></rect>",
12470 categories = "multimedia",
12471 tags = "media,music",
12472 contributors = "colebemis,ericfennis,karsa-mistmere"
12473 ))]
12474 SquareStop,
12475 #[cfg(feature = "development")]
12476 #[strum(props(
12477 svg = "<path d=\"m7 11 2-2-2-2\"></path><path d=\"M11 13h4\"></path><rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12478 categories = "development",
12479 tags = "code,command line,prompt,shell",
12480 contributors = "mittalyashu,ericfennis"
12481 ))]
12482 SquareTerminal,
12483 #[cfg(feature = "account")]
12484 #[strum(props(
12485 svg = "<path d=\"M18 21a6 6 0 0 0-12 0\"></path><circle cx=\"12\" cy=\"11\" r=\"4\"></circle><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12486 categories = "account",
12487 tags = "person,account,contact",
12488 contributors = "karsa-mistmere"
12489 ))]
12490 SquareUserRound,
12491 #[cfg(feature = "account")]
12492 #[strum(props(
12493 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><circle cx=\"12\" cy=\"10\" r=\"3\"></circle><path d=\"M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2\"></path>",
12494 categories = "account",
12495 tags = "person,account,contact",
12496 contributors = "karsa-mistmere"
12497 ))]
12498 SquareUser,
12499 #[cfg(any(feature = "math", feature = "notifications"))]
12500 #[strum(props(
12501 svg = "<rect height=\"18\" rx=\"2\" ry=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"m15 9-6 6\"></path><path d=\"m9 9 6 6\"></path>",
12502 categories = "math,notifications",
12503 tags = "cancel,close,delete,remove,times,clear,math,multiply,multiplication",
12504 contributors = "colebemis,ericfennis"
12505 ))]
12506 SquareX,
12507 #[cfg(any(feature = "shapes", feature = "multimedia"))]
12508 #[strum(props(
12509 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12510 categories = "shapes,multimedia",
12511 tags = "stop,playback,music,audio,video,rectangle,aspect ratio,1:1,shape",
12512 contributors = "colebemis,ericfennis"
12513 ))]
12514 Square,
12515 #[cfg(feature = "design")]
12516 #[strum(props(
12517 svg = "<path d=\"M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0\"></path><path d=\"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2\"></path>",
12518 categories = "design",
12519 tags = "square,pathfinder,path,exclude,invert,xor,shape,vector",
12520 contributors = "EthanHazel,jguddas,jamiemlaw,karsa-mistmere"
12521 ))]
12522 SquaresExclude,
12523 #[cfg(feature = "design")]
12524 #[strum(props(
12525 svg = "<path d=\"M10 22a2 2 0 0 1-2-2\"></path><path d=\"M14 2a2 2 0 0 1 2 2\"></path><path d=\"M16 22h-2\"></path><path d=\"M2 10V8\"></path><path d=\"M2 4a2 2 0 0 1 2-2\"></path><path d=\"M20 8a2 2 0 0 1 2 2\"></path><path d=\"M22 14v2\"></path><path d=\"M22 20a2 2 0 0 1-2 2\"></path><path d=\"M4 16a2 2 0 0 1-2-2\"></path><path d=\"M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z\"></path><path d=\"M8 2h2\"></path>",
12526 categories = "design",
12527 tags = "square,pathfinder,path,intersect,shape,include,vector",
12528 contributors = "EthanHazel,jguddas,karsa-mistmere"
12529 ))]
12530 SquaresIntersect,
12531 #[cfg(feature = "design")]
12532 #[strum(props(
12533 svg = "<path d=\"M10 22a2 2 0 0 1-2-2\"></path><path d=\"M16 22h-2\"></path><path d=\"M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z\"></path><path d=\"M20 8a2 2 0 0 1 2 2\"></path><path d=\"M22 14v2\"></path><path d=\"M22 20a2 2 0 0 1-2 2\"></path>",
12534 categories = "design",
12535 tags = "square,pathfinder,path,minus,subtract,subtraction,shape,front,vector",
12536 contributors = "EthanHazel,jguddas,karsa-mistmere"
12537 ))]
12538 SquaresSubtract,
12539 #[cfg(feature = "design")]
12540 #[strum(props(
12541 svg = "<path d=\"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z\"></path>",
12542 categories = "design",
12543 tags = "square,pathfinder,path,unite,union,shape,merge,vector",
12544 contributors = "EthanHazel,jguddas,karsa-mistmere"
12545 ))]
12546 SquaresUnite,
12547 #[cfg(any(feature = "development", feature = "shapes", feature = "design"))]
12548 #[strum(props(
12549 svg = "<path d=\"M13.77 3.04a34 34 0 0 0-3.54 0\"></path><path d=\"M13.77 20.95a33 33 0 0 1-3.54.001\"></path><path d=\"M20.18 17.74c-.51 1.15-1.29 1.93-2.43 2.44\"></path><path d=\"M20.18 6.25c-.51-1.14-1.29-1.92-2.44-2.43\"></path><path d=\"M20.95 10.23a33 33 0 0 1 0 3.54\"></path><path d=\"M3.04 10.23a34 34 0 0 0 .001 3.54\"></path><path d=\"M6.26 20.17c-1.15-.508-1.93-1.29-2.44-2.43\"></path><path d=\"M6.26 3.82c-1.14.51-1.93 1.29-2.44 2.44\"></path>",
12550 categories = "development,shapes,design",
12551 tags = "shape,pending,progress,issue,draft,code,coding,version control",
12552 contributors = "jguddas,aramsoneson"
12553 ))]
12554 SquircleDashed,
12555 #[cfg(feature = "shapes")]
12556 #[strum(props(
12557 svg = "<path d=\"M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9\"></path>",
12558 categories = "shapes",
12559 tags = "shape",
12560 contributors = "jguddas"
12561 ))]
12562 Squircle,
12563 #[cfg(feature = "animals")]
12564 #[strum(props(
12565 svg = "<path d=\"M15.23 22a3 3 0 0 0-2.2-5\"></path><path d=\"M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4\"></path><path d=\"M18 13h.01\"></path><path d=\"M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10\"></path>",
12566 categories = "animals",
12567 tags = "animal,rodent,pet,pest,nuts,retrieve,updates,storage,stash",
12568 contributors = "danielbayley,karsa-mistmere"
12569 ))]
12570 Squirrel,
12571 #[cfg(any(feature = "design", feature = "cursors", feature = "tools"))]
12572 #[strum(props(
12573 svg = "<path d=\"M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13\"></path><path d=\"M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z\"></path><path d=\"M5 22h14\"></path>",
12574 categories = "design,cursors,tools",
12575 tags = "mark,print,clone,loyalty,library",
12576 contributors = "karsa-mistmere"
12577 ))]
12578 Stamp,
12579 #[cfg(any(
12580 feature = "account",
12581 feature = "social",
12582 feature = "shapes",
12583 feature = "multimedia",
12584 feature = "weather",
12585 feature = "emoji",
12586 feature = "gaming"
12587 ))]
12588 #[strum(props(
12589 svg = "<path d=\"m19.06 12.50 2.78-2.70a.53.53 0 0 0-.294-.905l-5.16-.755a2.1 2.1 0 0 1-1.59-1.16l-2.31-4.68a.53.53 0 0 0-.95.00L9.21 6.97a2.1 2.1 0 0 1-1.59 1.16l-5.16.755a.53.53 0 0 0-.294.90l3.73 3.63a2.1 2.1 0 0 1 .611 1.87l-.88 5.13a.53.53 0 0 0 .769.56l4.61-2.42.027-.014\"></path><path d=\"m15 18 2 2 4-4\"></path>",
12590 categories = "account,social,shapes,multimedia,weather,emoji,gaming",
12591 tags = "bookmark,favorite,like,review,rating,check,star",
12592 contributors = "colebemis,jguddas,RajnishKMehta"
12593 ))]
12594 StarCheck,
12595 #[cfg(any(feature = "social", feature = "multimedia"))]
12596 #[strum(props(
12597 svg = "<path d=\"M12 18.33a2.1 2.1 0 0 0-.987.24L6.39 21.01a.53.53 0 0 1-.77-.56l.881-5.13a2.12 2.12 0 0 0-.611-1.87L2.16 9.79a.53.53 0 0 1 .294-.906l5.16-.755a2.12 2.12 0 0 0 1.59-1.16l2.30-4.67A.53.53 0 0 1 12 2\"></path>",
12598 categories = "social,multimedia",
12599 tags = "bookmark,favorite,like,review,rating",
12600 contributors = "mittalyashu,ericfennis,jguddas"
12601 ))]
12602 StarHalf,
12603 #[cfg(any(
12604 feature = "account",
12605 feature = "social",
12606 feature = "shapes",
12607 feature = "multimedia",
12608 feature = "weather",
12609 feature = "emoji",
12610 feature = "gaming"
12611 ))]
12612 #[strum(props(
12613 svg = "<path d=\"M15 18h6\"></path><path d=\"M17.68 14a2.1 2.1 0 0 1 .416-.568l3.73-3.63a.53.53 0 0 0-.294-.905l-5.16-.755a2.1 2.1 0 0 1-1.59-1.16l-2.31-4.68a.53.53 0 0 0-.95.00L9.21 6.97a2.1 2.1 0 0 1-1.59 1.16l-5.16.755a.53.53 0 0 0-.294.90l3.73 3.63a2.1 2.1 0 0 1 .611 1.87l-.88 5.13a.53.53 0 0 0 .769.56l4.61-2.42.027-.014\"></path>",
12614 categories = "account,social,shapes,multimedia,weather,emoji,gaming",
12615 tags = "bookmark,favorite,like,review,rating,minus,remove,deselect,star",
12616 contributors = "colebemis,jguddas,RajnishKMehta"
12617 ))]
12618 StarMinus,
12619 #[cfg(any(feature = "multimedia", feature = "social"))]
12620 #[strum(props(
12621 svg = "<path d=\"m10.34 4.68 1.18-2.39a.53.53 0 0 1 .95 0l2.31 4.67a2.12 2.12 0 0 0 1.59 1.16l5.16.756a.53.53 0 0 1 .294.90l-3.23 3.15\"></path><path d=\"m17.94 17.94.43 2.50a.53.53 0 0 1-.771.56l-4.61-2.42a2.12 2.12 0 0 0-1.97 0L6.39 21.01a.53.53 0 0 1-.77-.56l.881-5.13a2.12 2.12 0 0 0-.611-1.87L2.16 9.79a.53.53 0 0 1 .294-.906l5.16-.755a8 8 0 0 0 .4-.099\"></path><path d=\"m2 2 20 20\"></path>",
12622 categories = "multimedia,social",
12623 tags = "dislike,unlike,remove,unrate",
12624 contributors = "karsa-mistmere,ericfennis"
12625 ))]
12626 StarOff,
12627 #[cfg(any(
12628 feature = "account",
12629 feature = "social",
12630 feature = "shapes",
12631 feature = "multimedia",
12632 feature = "weather",
12633 feature = "emoji",
12634 feature = "gaming"
12635 ))]
12636 #[strum(props(
12637 svg = "<path d=\"M11.01 18.58 6.39 21.01a.53.53 0 0 1-.77-.56l.881-5.13a2.12 2.12 0 0 0-.611-1.87L2.16 9.79a.53.53 0 0 1 .294-.906l5.16-.755a2.12 2.12 0 0 0 1.59-1.16l2.30-4.67a.53.53 0 0 1 .95 0l2.31 4.67a2.12 2.12 0 0 0 1.59 1.16l5.16.756a.53.53 0 0 1 .294.90L20 11.5\"></path><path d=\"M15 18h6\"></path><path d=\"M18 15v6\"></path>",
12638 categories = "account,social,shapes,multimedia,weather,emoji,gaming",
12639 tags = "bookmark,favorite,like,review,rating,plus,add,join,star",
12640 contributors = "colebemis,jguddas,RajnishKMehta"
12641 ))]
12642 StarPlus,
12643 #[cfg(any(
12644 feature = "account",
12645 feature = "social",
12646 feature = "shapes",
12647 feature = "multimedia",
12648 feature = "weather",
12649 feature = "emoji",
12650 feature = "gaming"
12651 ))]
12652 #[strum(props(
12653 svg = "<path d=\"m15.5 15.5 5 5\"></path><path d=\"m20.06 11.52 1.77-1.73a.53.53 0 0 0-.294-.905l-5.16-.755a2.1 2.1 0 0 1-1.59-1.16l-2.31-4.68a.53.53 0 0 0-.95.00L9.21 6.97a2.1 2.1 0 0 1-1.59 1.16l-5.16.755a.53.53 0 0 0-.294.90l3.73 3.63a2.1 2.1 0 0 1 .611 1.87l-.88 5.13a.53.53 0 0 0 .769.56l4.61-2.42a2.1 2.1 0 0 1 .987-.243 2 2 0 0 1 .132.00\"></path><path d=\"m20.5 15.5-5 5\"></path>",
12654 categories = "account,social,shapes,multimedia,weather,emoji,gaming",
12655 tags = "mark,symbol,shape,vector,design,graphic,bookmark,favorite,like,review,rating,x,cancel,reject,star",
12656 contributors = "colebemis,jguddas,RajnishKMehta"
12657 ))]
12658 StarX,
12659 #[cfg(any(
12660 feature = "account",
12661 feature = "social",
12662 feature = "shapes",
12663 feature = "multimedia",
12664 feature = "weather",
12665 feature = "emoji",
12666 feature = "gaming"
12667 ))]
12668 #[strum(props(
12669 svg = "<path d=\"M11.52 2.29a.53.53 0 0 1 .95 0l2.31 4.67a2.12 2.12 0 0 0 1.59 1.16l5.16.756a.53.53 0 0 1 .294.90l-3.73 3.63a2.12 2.12 0 0 0-.611 1.87l.882 5.14a.53.53 0 0 1-.771.56l-4.61-2.42a2.12 2.12 0 0 0-1.97 0L6.39 21.01a.53.53 0 0 1-.77-.56l.881-5.13a2.12 2.12 0 0 0-.611-1.87L2.16 9.79a.53.53 0 0 1 .294-.906l5.16-.755a2.12 2.12 0 0 0 1.59-1.16z\"></path>",
12670 categories = "account,social,shapes,multimedia,weather,emoji,gaming",
12671 tags = "bookmark,favorite,like,review,rating",
12672 contributors = "colebemis,jguddas"
12673 ))]
12674 Star,
12675 #[cfg(any(feature = "multimedia", feature = "arrows"))]
12676 #[strum(props(
12677 svg = "<path d=\"M13.97 4.28A2 2 0 0 1 17 6v12a2 2 0 0 1-3.02 1.71l-9.99-5.99a2 2 0 0 1-.003-3.43z\"></path><path d=\"M21 20V4\"></path>",
12678 categories = "multimedia,arrows",
12679 tags = "arrow,previous,music,left,reverse",
12680 contributors = "danielbayley,karsa-mistmere"
12681 ))]
12682 StepBack,
12683 #[cfg(any(feature = "multimedia", feature = "arrows"))]
12684 #[strum(props(
12685 svg = "<path d=\"M10.02 4.28A2 2 0 0 0 7 6v12a2 2 0 0 0 3.02 1.71l9.99-5.99a2 2 0 0 0 .003-3.43z\"></path><path d=\"M3 4v16\"></path>",
12686 categories = "multimedia,arrows",
12687 tags = "arrow,next,music,right,continue",
12688 contributors = "danielbayley,karsa-mistmere"
12689 ))]
12690 StepForward,
12691 #[cfg(any(feature = "science", feature = "medical"))]
12692 #[strum(props(
12693 svg = "<path d=\"M11 2v2\"></path><path d=\"M5 2v2\"></path><path d=\"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1\"></path><path d=\"M8 15a6 6 0 0 0 12 0v-3\"></path><circle cx=\"20\" cy=\"10\" r=\"2\"></circle>",
12694 categories = "science,medical",
12695 tags = "phonendoscope,medical,heart,lungs,sound",
12696 contributors = "karsa-mistmere"
12697 ))]
12698 Stethoscope,
12699 #[cfg(feature = "social")]
12700 #[strum(props(
12701 svg = "<path d=\"M21 9a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z\"></path><path d=\"M15 3v5a1 1 0 0 0 1 1h5\"></path><path d=\"M8 13h.01\"></path><path d=\"M16 13h.01\"></path><path d=\"M10 16s.8 1 2 1c1.3 0 2-1 2-1\"></path>",
12702 categories = "social",
12703 tags = "reaction,emotion,smile,happy,feedback",
12704 contributors = "karsa-mistmere,jguddas,danielbayley"
12705 ))]
12706 Sticker,
12707 #[cfg(any(feature = "text", feature = "social"))]
12708 #[strum(props(
12709 svg = "<path d=\"m15 19 2 2 4-4\"></path><path d=\"M15 3v5a1 1 0 0 0 1 1h5\"></path><path d=\"M21 13V9a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6.5\"></path>",
12710 categories = "text,social",
12711 tags = "post-it,comment,annotation,reaction,memo,reminder,todo,task,idea,brainstorm,document,page,paper,sheet,stationary,office,done,complete,success,check,verified",
12712 contributors = "karsa-mistmere,ericfennis,danielbayley,Barakudum"
12713 ))]
12714 StickyNoteCheck,
12715 #[cfg(any(feature = "text", feature = "social"))]
12716 #[strum(props(
12717 svg = "<path d=\"M15 3v5a1 1 0 0 0 1 1h5\"></path><path d=\"M21 14V9a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.35\"></path><path d=\"M21 18h-6\"></path>",
12718 categories = "text,social",
12719 tags = "post-it,comment,annotation,reaction,memo,reminder,todo,task,idea,brainstorm,document,page,paper,sheet,stationary,office,remove,delete,minus",
12720 contributors = "karsa-mistmere,ericfennis,danielbayley,Barakudum"
12721 ))]
12722 StickyNoteMinus,
12723 #[cfg(any(feature = "text", feature = "social"))]
12724 #[strum(props(
12725 svg = "<path d=\"M15 3v5a1 1 0 0 0 1 1h5\"></path><path d=\"m2 2 20 20\"></path><path d=\"M3.58 3.58A2 2 0 0 0 3 5v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.41-.586\"></path><path d=\"M8.65 3H15a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 21 9v6.34\"></path>",
12726 categories = "text,social",
12727 tags = "post-it,comment,annotation,reaction,memo,reminder,todo,task,idea,brainstorm,document,page,paper,sheet,stationary,office,disabled,hidden,mute,inactive",
12728 contributors = "karsa-mistmere,ericfennis,danielbayley,Barakudum"
12729 ))]
12730 StickyNoteOff,
12731 #[cfg(any(feature = "text", feature = "social"))]
12732 #[strum(props(
12733 svg = "<path d=\"M15 3v5a1 1 0 0 0 1 1h5\"></path><path d=\"M18 15v6\"></path><path d=\"M21 12.35V9a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.35\"></path><path d=\"M21 18h-6\"></path>",
12734 categories = "text,social",
12735 tags = "post-it,comment,annotation,reaction,memo,reminder,todo,task,idea,brainstorm,document,page,paper,sheet,stationary,office,add,create,new,plus",
12736 contributors = "karsa-mistmere,ericfennis,danielbayley,Barakudum"
12737 ))]
12738 StickyNotePlus,
12739 #[cfg(any(feature = "text", feature = "social"))]
12740 #[strum(props(
12741 svg = "<path d=\"M15 3v5a1 1 0 0 0 1 1h5\"></path><path d=\"m16 16 5 5\"></path><path d=\"M21 12V9a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7\"></path><path d=\"m21 16-5 5\"></path>",
12742 categories = "text,social",
12743 tags = "post-it,comment,annotation,reaction,memo,reminder,todo,task,idea,brainstorm,document,page,paper,sheet,stationary,office,close,cancel,delete,remove",
12744 contributors = "karsa-mistmere,ericfennis,danielbayley,Barakudum"
12745 ))]
12746 StickyNoteX,
12747 #[cfg(any(feature = "text", feature = "social"))]
12748 #[strum(props(
12749 svg = "<path d=\"M21 9a2.4 2.4 0 0 0-.706-1.70l-3.58-3.58A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z\"></path><path d=\"M15 3v5a1 1 0 0 0 1 1h5\"></path>",
12750 categories = "text,social",
12751 tags = "post-it,comment,annotation,reaction,memo,reminder,todo,task,idea,brainstorm,document,page,paper,sheet,stationary,office",
12752 contributors = "karsa-mistmere,ericfennis,danielbayley"
12753 ))]
12754 StickyNote,
12755 #[cfg(any(feature = "text", feature = "social"))]
12756 #[strum(props(
12757 svg = "<path d=\"M10 8a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 16 14v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2z\"></path><path d=\"M10 8v5a1 1 0 0 0 1 1h5\"></path><path d=\"M8 4a2 2 0 0 1 2-2h6a2.4 2.4 0 0 1 1.70.706l3.58 3.58A2.4 2.4 0 0 1 22 8v6a2 2 0 0 1-2 2\"></path><path d=\"M16 2v5a1 1 0 0 0 1 1h5\"></path>",
12758 categories = "text,social",
12759 tags = "post-it,annotation,memo,reminder,todo,tasks,ideas,brainstorm,documents,notes,multiple,collection,group,stack,clone,duplicate,copy",
12760 contributors = "karsa-mistmere,ericfennis,danielbayley,Barakudum"
12761 ))]
12762 StickyNotes,
12763 #[cfg(feature = "nature")]
12764 #[strum(props(
12765 svg = "<path d=\"M11.26 2.20A4 4 0 0 0 6.42 4.21l-4 8a4 4 0 0 0 1.35 5.11l6 4a4 4 0 0 0 4.43 0l6-4a4 4 0 0 0 1.57-4.59l-2-6a4 4 0 0 0-2.53-2.53z\"></path><path d=\"M11.99 22 14 12l7.82 3.18\"></path><path d=\"M14 12 8.47 2.30\"></path>",
12766 categories = "nature",
12767 tags = "mineral,geology,nature,solid,pebble,crystal,ore,hard,coal,stone,rock,boulder",
12768 contributors = "Alportan,karsa-mistmere"
12769 ))]
12770 Stone,
12771 #[cfg(any(feature = "buildings", feature = "navigation", feature = "shopping"))]
12772 #[strum(props(
12773 svg = "<path d=\"M15 21v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5\"></path><path d=\"M17.77 10.31a1.12 1.12 0 0 0-1.54 0 2.5 2.5 0 0 1-3.45 0 1.12 1.12 0 0 0-1.54 0 2.5 2.5 0 0 1-3.45 0 1.12 1.12 0 0 0-1.54 0 2.5 2.5 0 0 1-3.77-3.24l2.88-4.18A2 2 0 0 1 7 2h10a2 2 0 0 1 1.65.873l2.89 4.19a2.5 2.5 0 0 1-3.77 3.24\"></path><path d=\"M4 10.95V19a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8.05\"></path>",
12774 categories = "buildings,navigation,shopping",
12775 tags = "shop,supermarket,stand,boutique,building",
12776 contributors = "karsa-mistmere"
12777 ))]
12778 Store,
12779 #[cfg(feature = "layout")]
12780 #[strum(props(
12781 svg = "<rect height=\"6\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect><rect height=\"6\" rx=\"2\" width=\"20\" x=\"2\" y=\"14\"></rect>",
12782 categories = "layout",
12783 tags = "items,flex,justify,distribute",
12784 contributors = "ericfennis"
12785 ))]
12786 StretchHorizontal,
12787 #[cfg(feature = "layout")]
12788 #[strum(props(
12789 svg = "<rect height=\"20\" rx=\"2\" width=\"6\" x=\"4\" y=\"2\"></rect><rect height=\"20\" rx=\"2\" width=\"6\" x=\"14\" y=\"2\"></rect>",
12790 categories = "layout",
12791 tags = "items,flex,justify,distribute",
12792 contributors = "ericfennis"
12793 ))]
12794 StretchVertical,
12795 #[cfg(feature = "text")]
12796 #[strum(props(
12797 svg = "<path d=\"M16 4H9a3 3 0 0 0-2.83 4\"></path><path d=\"M14 12a4 4 0 0 1 0 8H6\"></path><line x1=\"4\" x2=\"20\" y1=\"12\" y2=\"12\"></line>",
12798 categories = "text",
12799 tags = "cross out,delete,remove,format",
12800 contributors = "ericfennis,johnletey,csandman"
12801 ))]
12802 Strikethrough,
12803 #[cfg(feature = "text")]
12804 #[strum(props(
12805 svg = "<path d=\"m4 5 8 8\"></path><path d=\"m12 5-8 8\"></path><path d=\"M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07\"></path>",
12806 categories = "text",
12807 tags = "text",
12808 contributors = "nabanita-sarkar,ericfennis,mittalyashu"
12809 ))]
12810 Subscript,
12811 #[cfg(feature = "text")]
12812 #[strum(props(
12813 svg = "<path d=\"M15 4H7\"></path><path d=\"m18 16 3 3-3 3\"></path><path d=\"M3 4v13a2 2 0 0 0 2 2h16\"></path><path d=\"M7 14h7\"></path><path d=\"M7 9h12\"></path>",
12814 categories = "text",
12815 tags = "brief,abstract,synopsis,report,digest,outline,recap,condensation,summary,ai,text,overview",
12816 contributors = "jpjacobpadilla,jguddas,ajokt123"
12817 ))]
12818 Summary,
12819 #[cfg(any(feature = "accessibility", feature = "weather"))]
12820 #[strum(props(
12821 svg = "<circle cx=\"12\" cy=\"12\" r=\"4\"></circle><path d=\"M12 4h.01\"></path><path d=\"M20 12h.01\"></path><path d=\"M12 20h.01\"></path><path d=\"M4 12h.01\"></path><path d=\"M17.65 6.34h.01\"></path><path d=\"M17.65 17.65h.01\"></path><path d=\"M6.34 17.65h.01\"></path><path d=\"M6.34 6.34h.01\"></path>",
12822 categories = "accessibility,weather",
12823 tags = "brightness,dim,low,brightness low",
12824 contributors = "mittalyashu,bduffany,karsa-mistmere"
12825 ))]
12826 SunDim,
12827 #[cfg(any(feature = "accessibility", feature = "weather"))]
12828 #[strum(props(
12829 svg = "<circle cx=\"12\" cy=\"12\" r=\"4\"></circle><path d=\"M12 3v1\"></path><path d=\"M12 20v1\"></path><path d=\"M3 12h1\"></path><path d=\"M20 12h1\"></path><path d=\"m18.36 5.63-.707.70\"></path><path d=\"m6.34 17.65-.707.70\"></path><path d=\"m5.63 5.63.707.70\"></path><path d=\"m17.65 17.65.707.70\"></path>",
12830 categories = "accessibility,weather",
12831 tags = "brightness,medium",
12832 contributors = "mittalyashu,karsa-mistmere"
12833 ))]
12834 SunMedium,
12835 #[cfg(feature = "accessibility")]
12836 #[strum(props(
12837 svg = "<path d=\"M12 2v2\"></path><path d=\"M14.83 16.38a6 6 0 1 1-7.22-7.22c.624-.147.97.66.71 1.24a4 4 0 0 0 5.26 5.25c.589-.255 1.39.09 1.24.715\"></path><path d=\"M16 12a4 4 0 0 0-4-4\"></path><path d=\"m19 5-1.25 1.25\"></path><path d=\"M20 12h2\"></path>",
12838 categories = "accessibility",
12839 tags = "dark,light,moon,sun,brightness,theme,auto theme,system theme,appearance",
12840 contributors = "zishankadri,jamiemlaw,jguddas"
12841 ))]
12842 SunMoon,
12843 #[cfg(feature = "weather")]
12844 #[strum(props(
12845 svg = "<path d=\"M10 21v-1\"></path><path d=\"M10 4V3\"></path><path d=\"M10 9a3 3 0 0 0 0 6\"></path><path d=\"m14 20 1.25-2.5L18 18\"></path><path d=\"m14 4 1.25 2.5L18 6\"></path><path d=\"m17 21-3-6 1.5-3H22\"></path><path d=\"m17 3-3 6 1.5 3\"></path><path d=\"M2 12h1\"></path><path d=\"m20 10-1.5 2 1.5 2\"></path><path d=\"m3.64 18.36.7-.7\"></path><path d=\"m4.34 6.34-.7-.7\"></path>",
12846 categories = "weather",
12847 tags = "weather,air conditioning,temperature,hot,cold,seasons",
12848 contributors = "karsa-mistmere"
12849 ))]
12850 SunSnow,
12851 #[cfg(any(
12852 feature = "accessibility",
12853 feature = "weather",
12854 feature = "seasons",
12855 feature = "sustainability"
12856 ))]
12857 #[strum(props(
12858 svg = "<circle cx=\"12\" cy=\"12\" r=\"4\"></circle><path d=\"M12 2v2\"></path><path d=\"M12 20v2\"></path><path d=\"m4.93 4.93 1.41 1.41\"></path><path d=\"m17.66 17.66 1.41 1.41\"></path><path d=\"M2 12h2\"></path><path d=\"M20 12h2\"></path><path d=\"m6.34 17.66-1.41 1.41\"></path><path d=\"m19.07 4.93-1.41 1.41\"></path>",
12859 categories = "accessibility,weather,seasons,sustainability",
12860 tags = "brightness,weather,light,summer",
12861 contributors = "colebemis,ericfennis,karsa-mistmere"
12862 ))]
12863 Sun,
12864 #[cfg(any(feature = "arrows", feature = "weather", feature = "time"))]
12865 #[strum(props(
12866 svg = "<path d=\"M12 2v8\"></path><path d=\"m4.93 10.93 1.41 1.41\"></path><path d=\"M2 18h2\"></path><path d=\"M20 18h2\"></path><path d=\"m19.07 10.93-1.41 1.41\"></path><path d=\"M22 22H2\"></path><path d=\"m8 6 4-4 4 4\"></path><path d=\"M16 18a4 4 0 0 0-8 0\"></path>",
12867 categories = "arrows,weather,time",
12868 tags = "weather,time,morning,day",
12869 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
12870 ))]
12871 Sunrise,
12872 #[cfg(any(feature = "arrows", feature = "weather"))]
12873 #[strum(props(
12874 svg = "<path d=\"M12 10V2\"></path><path d=\"m4.93 10.93 1.41 1.41\"></path><path d=\"M2 18h2\"></path><path d=\"M20 18h2\"></path><path d=\"m19.07 10.93-1.41 1.41\"></path><path d=\"M22 22H2\"></path><path d=\"m16 6-4 4-4-4\"></path><path d=\"M16 18a4 4 0 0 0-8 0\"></path>",
12875 categories = "arrows,weather",
12876 tags = "weather,time,evening,night",
12877 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
12878 ))]
12879 Sunset,
12880 #[cfg(feature = "text")]
12881 #[strum(props(
12882 svg = "<path d=\"m4 19 8-8\"></path><path d=\"m12 19-8-8\"></path><path d=\"M20 12h-4c0-1.5.44-2 1.5-2.5S20 8.33 20 7.00c0-.472-.17-.93-.484-1.29a2.10 2.10 0 0 0-2.61-.436c-.42.23-.738.61-.899 1.06\"></path>",
12883 categories = "text",
12884 tags = "text,exponent",
12885 contributors = "nabanita-sarkar,ericfennis"
12886 ))]
12887 Superscript,
12888 #[cfg(any(feature = "design", feature = "home", feature = "photography"))]
12889 #[strum(props(
12890 svg = "<path d=\"M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z\"></path><path d=\"M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7\"></path><path d=\"M 7 17h.01\"></path><path d=\"m11 8 2.3-2.3a2.4 2.4 0 0 1 3.40.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.43L9.9 19.8\"></path>",
12891 categories = "design,home,photography",
12892 tags = "colors,colours,swatches,pantone,shades,tint,hue,saturation,brightness,theme,scheme,palette,samples,textile,carpet",
12893 contributors = "danielbayley"
12894 ))]
12895 SwatchBook,
12896 #[cfg(feature = "finance")]
12897 #[strum(props(
12898 svg = "<path d=\"M10 21V3h8\"></path><path d=\"M6 16h9\"></path><path d=\"M10 9.5h7\"></path>",
12899 categories = "finance",
12900 tags = "currency,money,payment",
12901 contributors = "ericfennis,mittalyashu"
12902 ))]
12903 SwissFranc,
12904 #[cfg(any(feature = "communication", feature = "devices"))]
12905 #[strum(props(
12906 svg = "<path d=\"M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5\"></path><path d=\"M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle><path d=\"m18 22-3-3 3-3\"></path><path d=\"m6 2 3 3-3 3\"></path>",
12907 categories = "communication,devices",
12908 tags = "photo,selfie,front,back",
12909 contributors = "lscheibel,csandman,ericfennis"
12910 ))]
12911 SwitchCamera,
12912 #[cfg(any(feature = "gaming", feature = "tools"))]
12913 #[strum(props(
12914 svg = "<path d=\"m11 19-6-6\"></path><path d=\"m5 21-2-2\"></path><path d=\"m8 16-4 4\"></path><path d=\"M9.5 17.5 21 6V3h-3L6.5 14.5\"></path>",
12915 categories = "gaming,tools",
12916 tags = "battle,challenge,game,war,weapon",
12917 contributors = "karsa-mistmere,jguddas,ericfennis"
12918 ))]
12919 Sword,
12920 #[cfg(any(feature = "gaming", feature = "tools"))]
12921 #[strum(props(
12922 svg = "<polyline points=\"14.5 17.5 3 6 3 3 6 3 17.5 14.5\"></polyline><line x1=\"13\" x2=\"19\" y1=\"19\" y2=\"13\"></line><line x1=\"16\" x2=\"20\" y1=\"16\" y2=\"20\"></line><line x1=\"19\" x2=\"21\" y1=\"21\" y2=\"19\"></line><polyline points=\"14.5 6.5 18 3 21 3 21 6 17.5 9.5\"></polyline><line x1=\"5\" x2=\"9\" y1=\"14\" y2=\"18\"></line><line x1=\"7\" x2=\"4\" y1=\"17\" y2=\"20\"></line><line x1=\"3\" x2=\"5\" y1=\"19\" y2=\"21\"></line>",
12923 categories = "gaming,tools",
12924 tags = "battle,challenge,game,war,weapon",
12925 contributors = "karsa-mistmere,ericfennis"
12926 ))]
12927 Swords,
12928 #[cfg(any(feature = "science", feature = "medical"))]
12929 #[strum(props(
12930 svg = "<path d=\"m18 2 4 4\"></path><path d=\"m17 7 3-3\"></path><path d=\"M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5\"></path><path d=\"m9 11 4 4\"></path><path d=\"m5 19-3 3\"></path><path d=\"m14 4 6 6\"></path>",
12931 categories = "science,medical",
12932 tags = "medicine,medical,needle,pump,plunger,nozzle,blood",
12933 contributors = "karsa-mistmere,jguddas"
12934 ))]
12935 Syringe,
12936 #[cfg(any(feature = "text", feature = "files"))]
12937 #[strum(props(
12938 svg = "<path d=\"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18\"></path>",
12939 categories = "text,files",
12940 tags = "spreadsheet,grid",
12941 contributors = "abejenaru,karsa-mistmere,ericfennis"
12942 ))]
12943 Table2,
12944 #[cfg(any(feature = "text", feature = "files"))]
12945 #[strum(props(
12946 svg = "<path d=\"M12 21v-6\"></path><path d=\"M12 9V3\"></path><path d=\"M3 15h18\"></path><path d=\"M3 9h18\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12947 categories = "text,files",
12948 tags = "spreadsheet,grid,row",
12949 contributors = "chessurisme"
12950 ))]
12951 TableCellsMerge,
12952 #[cfg(any(feature = "text", feature = "files"))]
12953 #[strum(props(
12954 svg = "<path d=\"M12 15V9\"></path><path d=\"M3 15h18\"></path><path d=\"M3 9h18\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
12955 categories = "text,files",
12956 tags = "spreadsheet,grid,row",
12957 contributors = "chessurisme"
12958 ))]
12959 TableCellsSplit,
12960 #[cfg(any(feature = "text", feature = "files"))]
12961 #[strum(props(
12962 svg = "<path d=\"M14 14v2\"></path><path d=\"M14 20v2\"></path><path d=\"M14 2v2\"></path><path d=\"M14 8v2\"></path><path d=\"M2 15h8\"></path><path d=\"M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2\"></path><path d=\"M2 9h8\"></path><path d=\"M22 15h-4\"></path><path d=\"M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2\"></path><path d=\"M22 9h-4\"></path><path d=\"M5 3v18\"></path>",
12963 categories = "text,files",
12964 tags = "spreadsheet,grid,cut,break,divide,separate,segment",
12965 contributors = "chessurisme"
12966 ))]
12967 TableColumnsSplit,
12968 #[cfg(feature = "text")]
12969 #[strum(props(
12970 svg = "<path d=\"M16 5H3\"></path><path d=\"M16 12H3\"></path><path d=\"M16 19H3\"></path><path d=\"M21 5h.01\"></path><path d=\"M21 12h.01\"></path><path d=\"M21 19h.01\"></path>",
12971 categories = "text",
12972 tags = "toc,outline,navigation,document structure,index,overview,sections,chapters,content,documentation,manual,knowledge base,faq",
12973 contributors = "karsa-mistmere"
12974 ))]
12975 TableOfContents,
12976 #[cfg(any(feature = "text", feature = "development", feature = "files"))]
12977 #[strum(props(
12978 svg = "<path d=\"M15 3v18\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M21 9H3\"></path><path d=\"M21 15H3\"></path>",
12979 categories = "text,development,files",
12980 tags = "property list,plist,spreadsheet,grid,dictionary,object,hash",
12981 contributors = "danielbayley"
12982 ))]
12983 TableProperties,
12984 #[cfg(any(feature = "text", feature = "files"))]
12985 #[strum(props(
12986 svg = "<path d=\"M14 10h2\"></path><path d=\"M15 22v-8\"></path><path d=\"M15 2v4\"></path><path d=\"M2 10h2\"></path><path d=\"M20 10h2\"></path><path d=\"M3 19h18\"></path><path d=\"M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6\"></path><path d=\"M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2\"></path><path d=\"M8 10h2\"></path><path d=\"M9 22v-8\"></path><path d=\"M9 2v4\"></path>",
12987 categories = "text,files",
12988 tags = "spreadsheet,grid,cut,break,divide,separate,segment",
12989 contributors = "chessurisme"
12990 ))]
12991 TableRowsSplit,
12992 #[cfg(any(feature = "text", feature = "files"))]
12993 #[strum(props(
12994 svg = "<path d=\"M12 3v18\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><path d=\"M3 9h18\"></path><path d=\"M3 15h18\"></path>",
12995 categories = "text,files",
12996 tags = "spreadsheet,grid",
12997 contributors = "colebemis,zenoamaro,ericfennis,csandman,mittalyashu"
12998 ))]
12999 Table,
13000 #[cfg(any(
13001 feature = "devices",
13002 feature = "design",
13003 feature = "development",
13004 feature = "tools"
13005 ))]
13006 #[strum(props(
13007 svg = "<rect height=\"14\" rx=\"2\" width=\"10\" x=\"3\" y=\"8\"></rect><path d=\"M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4\"></path><path d=\"M8 18h.01\"></path>",
13008 categories = "devices,design,development,tools",
13009 tags = "responsive,screens,browser,testing,mobile",
13010 contributors = "danielbayley"
13011 ))]
13012 TabletSmartphone,
13013 #[cfg(feature = "devices")]
13014 #[strum(props(
13015 svg = "<rect height=\"20\" rx=\"2\" ry=\"2\" width=\"16\" x=\"4\" y=\"2\"></rect><line x1=\"12\" x2=\"12.01\" y1=\"18\" y2=\"18\"></line>",
13016 categories = "devices",
13017 tags = "device",
13018 contributors = "colebemis,ericfennis"
13019 ))]
13020 Tablet,
13021 #[cfg(feature = "medical")]
13022 #[strum(props(
13023 svg = "<circle cx=\"7\" cy=\"7\" r=\"5\"></circle><circle cx=\"17\" cy=\"17\" r=\"5\"></circle><path d=\"M12 17h10\"></path><path d=\"m3.46 10.54 7.08-7.08\"></path>",
13024 categories = "medical",
13025 tags = "medicine,medication,drug,prescription,pills,pharmacy",
13026 contributors = "karsa-mistmere,it-is-not,ericfennis"
13027 ))]
13028 Tablets,
13029 #[cfg(feature = "account")]
13030 #[strum(props(
13031 svg = "<path d=\"M16 13h6\"></path><path d=\"m16.5 6.5-3.91-3.91A2 2 0 0 0 11.17 2H4a2 2 0 0 0-2 2v7.17a2 2 0 0 0 .586 1.41l8.70 8.70a2.42 2.42 0 0 0 3.42 0l1.79-1.79\"></path><path d=\"M19 10v6\"></path><circle cx=\"7.5\" cy=\"7.5\" fill=\"currentColor\" r=\".5\"></circle>",
13032 categories = "account",
13033 tags = "label,badge,ticket,mark,new,add,create,+",
13034 contributors = "adam-kov,colebemis,csandman,aaofyi,ericfennis,karsa-mistmere"
13035 ))]
13036 TagPlus,
13037 #[cfg(feature = "account")]
13038 #[strum(props(
13039 svg = "<path d=\"m16.5 6.5-3.91-3.91A2 2 0 0 0 11.17 2H4a2 2 0 0 0-2 2v7.17a2 2 0 0 0 .586 1.41l8.70 8.70a2.43 2.43 0 0 0 3.42 0l1.79-1.79\"></path><path d=\"m16.5 10.5 5 5\"></path><path d=\"m21.5 10.5-5 5\"></path><circle cx=\"7.5\" cy=\"7.5\" fill=\"currentColor\" r=\".5\"></circle>",
13040 categories = "account",
13041 tags = "label,badge,ticket,mark,x,delete,remove",
13042 contributors = "adam-kov,colebemis,csandman,aaofyi,ericfennis,karsa-mistmere"
13043 ))]
13044 TagX,
13045 #[cfg(feature = "account")]
13046 #[strum(props(
13047 svg = "<path d=\"M12.58 2.58A2 2 0 0 0 11.17 2H4a2 2 0 0 0-2 2v7.17a2 2 0 0 0 .586 1.41l8.70 8.70a2.42 2.42 0 0 0 3.42 0l6.58-6.58a2.42 2.42 0 0 0 0-3.42z\"></path><circle cx=\"7.5\" cy=\"7.5\" fill=\"currentColor\" r=\".5\"></circle>",
13048 categories = "account",
13049 tags = "label,badge,ticket,mark",
13050 contributors = "colebemis,csandman,aaofyi,ericfennis,karsa-mistmere"
13051 ))]
13052 Tag,
13053 #[cfg(feature = "account")]
13054 #[strum(props(
13055 svg = "<path d=\"M13.17 2a2 2 0 0 1 1.41.586l6.71 6.71a2.4 2.4 0 0 1 0 3.40l-4.59 4.59a2.4 2.4 0 0 1-3.40 0l-6.71-6.71A2 2 0 0 1 6 9.17V3a1 1 0 0 1 1-1z\"></path><path d=\"M2 7v6.17a2 2 0 0 0 .586 1.41l6.71 6.71a2.4 2.4 0 0 0 3.19.193\"></path><circle cx=\"10.5\" cy=\"6.5\" fill=\"currentColor\" r=\".5\"></circle>",
13056 categories = "account",
13057 tags = "labels,badges,tickets,marks,copy,multiple",
13058 contributors = "karsa-mistmere,ericfennis,jguddas"
13059 ))]
13060 Tags,
13061 #[cfg(any(feature = "math", feature = "gaming"))]
13062 #[strum(props(
13063 svg = "<path d=\"M4 4v16\"></path>",
13064 categories = "math,gaming",
13065 tags = "count,score,enumerate,days,one,1,first,bar,prison,cell,sentence",
13066 contributors = "danielbayley"
13067 ))]
13068 Tally1,
13069 #[cfg(any(feature = "math", feature = "gaming"))]
13070 #[strum(props(
13071 svg = "<path d=\"M4 4v16\"></path><path d=\"M9 4v16\"></path>",
13072 categories = "math,gaming",
13073 tags = "count,score,enumerate,days,two,2,second,double,bars,prison,cell,sentence",
13074 contributors = "danielbayley"
13075 ))]
13076 Tally2,
13077 #[cfg(any(feature = "math", feature = "gaming"))]
13078 #[strum(props(
13079 svg = "<path d=\"M4 4v16\"></path><path d=\"M9 4v16\"></path><path d=\"M14 4v16\"></path>",
13080 categories = "math,gaming",
13081 tags = "count,score,enumerate,days,three,3,third,triple,bars,prison,cell,sentence",
13082 contributors = "danielbayley"
13083 ))]
13084 Tally3,
13085 #[cfg(any(feature = "math", feature = "gaming"))]
13086 #[strum(props(
13087 svg = "<path d=\"M4 4v16\"></path><path d=\"M9 4v16\"></path><path d=\"M14 4v16\"></path><path d=\"M19 4v16\"></path>",
13088 categories = "math,gaming",
13089 tags = "count,score,enumerate,days,4,fourth,quadruple,bars,prison,cell,sentence",
13090 contributors = "danielbayley"
13091 ))]
13092 Tally4,
13093 #[cfg(any(feature = "math", feature = "gaming"))]
13094 #[strum(props(
13095 svg = "<path d=\"M4 4v16\"></path><path d=\"M9 4v16\"></path><path d=\"M14 4v16\"></path><path d=\"M19 4v16\"></path><path d=\"M22 6 2 18\"></path>",
13096 categories = "math,gaming",
13097 tags = "count,score,enumerate,days,five,5,fifth,bars,prison,cell,sentence,slash,/",
13098 contributors = "danielbayley"
13099 ))]
13100 Tally5,
13101 #[cfg(any(
13102 feature = "shapes",
13103 feature = "math",
13104 feature = "design",
13105 feature = "tools"
13106 ))]
13107 #[strum(props(
13108 svg = "<circle cx=\"17\" cy=\"4\" r=\"2\"></circle><path d=\"M15.59 5.41 5.41 15.59\"></path><circle cx=\"4\" cy=\"17\" r=\"2\"></circle><path d=\"M12 22s-4-9-1.5-11.5S22 12 22 12\"></path>",
13109 categories = "shapes,math,design,tools",
13110 tags = "tangential,shape,circle,geometry,trigonometry,bezier curve",
13111 contributors = "danielbayley,karsa-mistmere"
13112 ))]
13113 Tangent,
13114 #[cfg(feature = "gaming")]
13115 #[strum(props(
13116 svg = "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle><circle cx=\"12\" cy=\"12\" r=\"6\"></circle><circle cx=\"12\" cy=\"12\" r=\"2\"></circle>",
13117 categories = "gaming",
13118 tags = "logo,bullseye,deadline,projects,overview,work,productivity",
13119 contributors = "colebemis"
13120 ))]
13121 Target,
13122 #[cfg(any(feature = "science", feature = "development", feature = "tools"))]
13123 #[strum(props(
13124 svg = "<path d=\"m10.06 12.49-6.18 1.31a.934.93 0 0 1-1.10-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.26l13.50-4.44\"></path><path d=\"m13.56 11.74 4.33-.924\"></path><path d=\"m16 21-3.10-6.21\"></path><path d=\"M16.48 5.94a2 2 0 0 1 1.45-2.42l1.09-.272a1 1 0 0 1 1.21.727l1.51 6.06a1 1 0 0 1-.727 1.21l-1.09.27a2 2 0 0 1-2.42-1.45z\"></path><path d=\"m6.15 8.63 1.11 4.45\"></path><path d=\"m8 21 3.10-6.21\"></path><circle cx=\"12\" cy=\"13\" r=\"2\"></circle>",
13125 categories = "science,development,tools",
13126 tags = "astronomy,space,discovery,exploration,explore,vision,perspective,focus,stargazing,observe,view",
13127 contributors = "karsa-mistmere"
13128 ))]
13129 Telescope,
13130 #[cfg(any(feature = "travel", feature = "nature"))]
13131 #[strum(props(
13132 svg = "<circle cx=\"4\" cy=\"4\" r=\"2\"></circle><path d=\"m14 5 3-3 3 3\"></path><path d=\"m14 10 3-3 3 3\"></path><path d=\"M17 14V2\"></path><path d=\"M17 14H7l-5 8h20Z\"></path><path d=\"M8 14v8\"></path><path d=\"m9 14 5 8\"></path>",
13133 categories = "travel,nature",
13134 tags = "camping,campsite,holiday,retreat,nomadic,wilderness,outdoors",
13135 contributors = "danielbayley"
13136 ))]
13137 TentTree,
13138 #[cfg(any(feature = "travel", feature = "nature", feature = "sustainability"))]
13139 #[strum(props(
13140 svg = "<path d=\"M3.5 21 14 3\"></path><path d=\"M20.5 21 10 3\"></path><path d=\"M15.5 21 12 15l-3.5 6\"></path><path d=\"M2 21h20\"></path>",
13141 categories = "travel,nature,sustainability",
13142 tags = "tipi,teepee,wigwam,lodge,camping,campsite,holiday,retreat,nomadic,native american,indian,wilderness,outdoors",
13143 contributors = "MoltenCoffee,ericfennis,danielbayley"
13144 ))]
13145 Tent,
13146 #[cfg(feature = "development")]
13147 #[strum(props(
13148 svg = "<path d=\"M12 19h8\"></path><path d=\"m4 17 6-6-6-6\"></path>",
13149 categories = "development",
13150 tags = "code,command line,prompt,shell",
13151 contributors = "colebemis,ericfennis"
13152 ))]
13153 Terminal,
13154 #[cfg(feature = "science")]
13155 #[strum(props(
13156 svg = "<path d=\"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3\"></path><path d=\"m16 2 6 6\"></path><path d=\"M12 16H4\"></path>",
13157 categories = "science",
13158 tags = "tube,vial,phial,flask,ampoule,ampule,lab,chemistry,experiment,test",
13159 contributors = "danielbayley,karsa-mistmere"
13160 ))]
13161 TestTubeDiagonal,
13162 #[cfg(feature = "science")]
13163 #[strum(props(
13164 svg = "<path d=\"M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2\"></path><path d=\"M8.5 2h7\"></path><path d=\"M14.5 16h-5\"></path>",
13165 categories = "science",
13166 tags = "tube,vial,phial,flask,ampoule,ampule,lab,chemistry,experiment,test",
13167 contributors = "danielbayley"
13168 ))]
13169 TestTube,
13170 #[cfg(feature = "science")]
13171 #[strum(props(
13172 svg = "<path d=\"M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2\"></path><path d=\"M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2\"></path><path d=\"M3 2h7\"></path><path d=\"M14 2h7\"></path><path d=\"M9 16H4\"></path><path d=\"M20 16h-5\"></path>",
13173 categories = "science",
13174 tags = "tubes,vials,phials,flasks,ampoules,ampules,lab,chemistry,experiment,test",
13175 contributors = "danielbayley"
13176 ))]
13177 TestTubes,
13178 #[cfg(feature = "text")]
13179 #[strum(props(
13180 svg = "<path d=\"M21 5H3\"></path><path d=\"M17 12H7\"></path><path d=\"M19 19H5\"></path>",
13181 categories = "text",
13182 tags = "text,alignment,center",
13183 contributors = "colebemis,ericfennis,karsa-mistmere"
13184 ))]
13185 TextAlignCenter,
13186 #[cfg(feature = "text")]
13187 #[strum(props(
13188 svg = "<path d=\"M21 5H3\"></path><path d=\"M21 12H9\"></path><path d=\"M21 19H7\"></path>",
13189 categories = "text",
13190 tags = "text,alignment,right",
13191 contributors = "colebemis,ericfennis,karsa-mistmere"
13192 ))]
13193 TextAlignEnd,
13194 #[cfg(feature = "text")]
13195 #[strum(props(
13196 svg = "<path d=\"M3 5h18\"></path><path d=\"M3 12h18\"></path><path d=\"M3 19h18\"></path>",
13197 categories = "text",
13198 tags = "text,alignment,justified,menu,list",
13199 contributors = "colebemis,ericfennis,karsa-mistmere"
13200 ))]
13201 TextAlignJustify,
13202 #[cfg(feature = "text")]
13203 #[strum(props(
13204 svg = "<path d=\"M21 5H3\"></path><path d=\"M15 12H3\"></path><path d=\"M17 19H3\"></path>",
13205 categories = "text",
13206 tags = "text,alignment,left,list",
13207 contributors = "colebemis,ericfennis,karsa-mistmere"
13208 ))]
13209 TextAlignStart,
13210 #[cfg(any(feature = "text", feature = "layout"))]
13211 #[strum(props(
13212 svg = "<path d=\"M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6\"></path><path d=\"M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7\"></path><path d=\"M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1\"></path><path d=\"M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1\"></path><path d=\"M9 6v12\"></path>",
13213 categories = "text,layout",
13214 tags = "select",
13215 contributors = "ericfennis,karsa-mistmere,danielbayley,jguddas"
13216 ))]
13217 TextCursorInput,
13218 #[cfg(any(feature = "text", feature = "cursors"))]
13219 #[strum(props(
13220 svg = "<path d=\"M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1\"></path><path d=\"M7 22h1a4 4 0 0 0 4-4\"></path><path d=\"M7 2h1a4 4 0 0 1 4 4\"></path>",
13221 categories = "text,cursors",
13222 tags = "select,caret,type,typing,write,writing,edit,insert,input,textarea",
13223 contributors = "ericfennis"
13224 ))]
13225 TextCursor,
13226 #[cfg(feature = "text")]
13227 #[strum(props(
13228 svg = "<path d=\"M15 5h6\"></path><path d=\"M15 12h6\"></path><path d=\"M3 19h18\"></path><path d=\"m3 12 3.55-7.72a.5.5 0 0 1 .894 0L11 12\"></path><path d=\"M3.92 10h6.16\"></path>",
13229 categories = "text",
13230 tags = "drop cap,text,format,typography,letter,font size",
13231 contributors = "jguddas,GRA0007,karsa-mistmere"
13232 ))]
13233 TextInitial,
13234 #[cfg(feature = "text")]
13235 #[strum(props(
13236 svg = "<path d=\"M17 5H3\"></path><path d=\"M21 12H8\"></path><path d=\"M21 19H8\"></path><path d=\"M3 12v7\"></path>",
13237 categories = "text",
13238 tags = "blockquote,quotation,indent,reply,response",
13239 contributors = "danielbayley,karsa-mistmere"
13240 ))]
13241 TextQuote,
13242 #[cfg(feature = "text")]
13243 #[strum(props(
13244 svg = "<path d=\"M21 5H3\"></path><path d=\"M10 12H3\"></path><path d=\"M10 19H3\"></path><circle cx=\"17\" cy=\"15\" r=\"3\"></circle><path d=\"m21 19-1.9-1.9\"></path>",
13245 categories = "text",
13246 tags = "find,data,copy,txt,pdf,document,scan,magnifier,magnifying glass,lens",
13247 contributors = "danielbayley,karsa-mistmere"
13248 ))]
13249 TextSearch,
13250 #[cfg(any(feature = "text", feature = "arrows"))]
13251 #[strum(props(
13252 svg = "<path d=\"m16 16-3 3 3 3\"></path><path d=\"M3 12h14.5a1 1 0 0 1 0 7H13\"></path><path d=\"M3 19h6\"></path><path d=\"M3 5h18\"></path>",
13253 categories = "text,arrows",
13254 tags = "words,lines,break,paragraph",
13255 contributors = "bduffany,ericfennis,karsa-mistmere"
13256 ))]
13257 TextWrap,
13258 #[cfg(any(feature = "buildings", feature = "social"))]
13259 #[strum(props(
13260 svg = "<path d=\"M2 10s3-3 3-8\"></path><path d=\"M22 10s-3-3-3-8\"></path><path d=\"M10 2c0 4.4-3.6 8-8 8\"></path><path d=\"M14 2c0 4.4 3.6 8 8 8\"></path><path d=\"M2 10s2 2 2 5\"></path><path d=\"M22 10s-2 2-2 5\"></path><path d=\"M8 15h8\"></path><path d=\"M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1\"></path><path d=\"M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1\"></path>",
13261 categories = "buildings,social",
13262 tags = "theater,theatre,entertainment,podium,stage,musical",
13263 contributors = "danielbayley"
13264 ))]
13265 Theater,
13266 #[cfg(feature = "weather")]
13267 #[strum(props(
13268 svg = "<path d=\"m10 20-1.25-2.5L6 18\"></path><path d=\"M10 4 8.75 6.5 6 6\"></path><path d=\"M10.58 15H10\"></path><path d=\"M2 12h6.5L10 9\"></path><path d=\"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z\"></path><path d=\"m4 10 1.5 2L4 14\"></path><path d=\"m7 21 3-6-1.5-3\"></path><path d=\"m7 3 3 6h2\"></path>",
13269 categories = "weather",
13270 tags = "temperature,celsius,fahrenheit,weather,cold,freeze,freezing",
13271 contributors = "karsa-mistmere,ericfennis"
13272 ))]
13273 ThermometerSnowflake,
13274 #[cfg(feature = "weather")]
13275 #[strum(props(
13276 svg = "<path d=\"M12 2v2\"></path><path d=\"M12 8a4 4 0 0 0-1.64 7.64\"></path><path d=\"M2 12h2\"></path><path d=\"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z\"></path><path d=\"m4.93 4.93 1.41 1.41\"></path><path d=\"m6.34 17.66-1.41 1.41\"></path>",
13277 categories = "weather",
13278 tags = "temperature,celsius,fahrenheit,weather,warm,hot",
13279 contributors = "ericfennis,karsa-mistmere,jguddas"
13280 ))]
13281 ThermometerSun,
13282 #[cfg(feature = "weather")]
13283 #[strum(props(
13284 svg = "<path d=\"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z\"></path>",
13285 categories = "weather",
13286 tags = "temperature,celsius,fahrenheit,weather",
13287 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
13288 ))]
13289 Thermometer,
13290 #[cfg(any(feature = "account", feature = "social", feature = "emoji"))]
13291 #[strum(props(
13292 svg = "<path d=\"M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z\"></path><path d=\"M17 14V2\"></path>",
13293 categories = "account,social,emoji",
13294 tags = "dislike,bad,emotion",
13295 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
13296 ))]
13297 ThumbsDown,
13298 #[cfg(any(feature = "account", feature = "social", feature = "emoji"))]
13299 #[strum(props(
13300 svg = "<path d=\"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z\"></path><path d=\"M7 10v12\"></path>",
13301 categories = "account,social,emoji",
13302 tags = "like,good,emotion",
13303 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
13304 ))]
13305 ThumbsUp,
13306 #[cfg(feature = "transportation")]
13307 #[strum(props(
13308 svg = "<path d=\"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z\"></path><path d=\"m9 12 2 2 4-4\"></path>",
13309 categories = "transportation",
13310 tags = "entry,pass,voucher,event,concert,show,booked,purchased,receipt,redeemed,validated,verified,certified,checked,used",
13311 contributors = "danielbayley"
13312 ))]
13313 TicketCheck,
13314 #[cfg(feature = "transportation")]
13315 #[strum(props(
13316 svg = "<path d=\"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z\"></path><path d=\"M9 12h6\"></path>",
13317 categories = "transportation",
13318 tags = "entry,pass,voucher,event,concert,show,remove,cancel,unbook,subtract,decrease,-",
13319 contributors = "danielbayley"
13320 ))]
13321 TicketMinus,
13322 #[cfg(any(feature = "transportation", feature = "shopping"))]
13323 #[strum(props(
13324 svg = "<path d=\"M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z\"></path><path d=\"M9 9h.01\"></path><path d=\"m15 9-6 6\"></path><path d=\"M15 15h.01\"></path>",
13325 categories = "transportation,shopping",
13326 tags = "discount,reduced,offer,voucher,entry,pass,event,concert,show,book,purchase,%",
13327 contributors = "danielbayley"
13328 ))]
13329 TicketPercent,
13330 #[cfg(feature = "transportation")]
13331 #[strum(props(
13332 svg = "<path d=\"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z\"></path><path d=\"M9 12h6\"></path><path d=\"M12 9v6\"></path>",
13333 categories = "transportation",
13334 tags = "entry,pass,voucher,event,concert,show,book,purchase,add,+",
13335 contributors = "danielbayley"
13336 ))]
13337 TicketPlus,
13338 #[cfg(feature = "transportation")]
13339 #[strum(props(
13340 svg = "<path d=\"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z\"></path><path d=\"m9.5 14.5 5-5\"></path>",
13341 categories = "transportation",
13342 tags = "entry,pass,voucher,event,concert,show,redeemed,used,marked,checked,verified,spoiled,invalidated,void,denied,refused,banned,barred,forbidden,prohibited,cancelled,cancellation,refunded,delete,remove,clear,error",
13343 contributors = "danielbayley"
13344 ))]
13345 TicketSlash,
13346 #[cfg(feature = "transportation")]
13347 #[strum(props(
13348 svg = "<path d=\"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z\"></path><path d=\"m9.5 14.5 5-5\"></path><path d=\"m9.5 9.5 5 5\"></path>",
13349 categories = "transportation",
13350 tags = "entry,pass,voucher,event,concert,show,cancelled,cancellation,refunded,used,void,invalidated,spoiled,denied,refused,banned,barred,forbidden,prohibited,delete,remove,clear,error,x",
13351 contributors = "danielbayley"
13352 ))]
13353 TicketX,
13354 #[cfg(any(feature = "account", feature = "transportation"))]
13355 #[strum(props(
13356 svg = "<path d=\"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z\"></path><path d=\"M13 5v2\"></path><path d=\"M13 17v2\"></path><path d=\"M13 11v2\"></path>",
13357 categories = "account,transportation",
13358 tags = "entry,pass,voucher,event,concert,show,perforated,dashed",
13359 contributors = "mittalyashu,ericfennis,karsa-mistmere"
13360 ))]
13361 Ticket,
13362 #[cfg(any(feature = "transportation", feature = "travel"))]
13363 #[strum(props(
13364 svg = "<path d=\"M10.5 17h1.22a2 2 0 0 0 1.34-.52L18 12\"></path><path d=\"m12 13.5 3.79.506\"></path><path d=\"m3.17 8.18 11-5a2 2 0 0 1 2.64.993L18.56 8\"></path><path d=\"M6 10V8\"></path><path d=\"M6 14v1\"></path><path d=\"M6 19v2\"></path><rect height=\"13\" rx=\"2\" width=\"20\" x=\"2\" y=\"8\"></rect>",
13365 categories = "transportation,travel",
13366 tags = "plane,trip,airplane,flight,travel,fly,takeoff,vacation,passenger,pass,check-in,airport",
13367 contributors = "jguddas,karsa-mistmere"
13368 ))]
13369 TicketsPlane,
13370 #[cfg(any(feature = "travel", feature = "account", feature = "transportation"))]
13371 #[strum(props(
13372 svg = "<path d=\"m3.17 8.18 11-5a2 2 0 0 1 2.64.993L18.56 8\"></path><path d=\"M6 10V8\"></path><path d=\"M6 14v1\"></path><path d=\"M6 19v2\"></path><rect height=\"13\" rx=\"2\" width=\"20\" x=\"2\" y=\"8\"></rect>",
13373 categories = "travel,account,transportation",
13374 tags = "trip,travel,pass,entry,voucher,event,concert,show,perforated,dashed",
13375 contributors = "jguddas,karsa-mistmere"
13376 ))]
13377 Tickets,
13378 #[cfg(feature = "time")]
13379 #[strum(props(
13380 svg = "<path d=\"M4 12h.01\"></path><path d=\"M4 16h.01\"></path><path d=\"M4 20h.01\"></path><path d=\"M4 4h.01\"></path><path d=\"M4 8h.01\"></path><path d=\"M9.41 13.41a2 2 0 0 0 1.41.586H19a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-8.17a2 2 0 0 0-1.41.586L8 12z\"></path><path d=\"M9.41 21.41a2 2 0 0 0 1.41.586H19a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-8.17a2 2 0 0 0-1.41.586L8 20z\"></path><path d=\"M9.41 5.41A2 2 0 0 0 10.82 6H19a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-8.17a2 2 0 0 0-1.41.586L8 4z\"></path>",
13381 categories = "time",
13382 tags = "tags,history",
13383 contributors = "jguddas,karsa-mistmere"
13384 ))]
13385 Timeline,
13386 #[cfg(feature = "time")]
13387 #[strum(props(
13388 svg = "<path d=\"M10 2h4\"></path><path d=\"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7\"></path><path d=\"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2\"></path><path d=\"m2 2 20 20\"></path><path d=\"M12 12v-2\"></path>",
13389 categories = "time",
13390 tags = "time,timer,stopwatch",
13391 contributors = "mittalyashu,ericfennis,karsa-mistmere"
13392 ))]
13393 TimerOff,
13394 #[cfg(feature = "time")]
13395 #[strum(props(
13396 svg = "<path d=\"M10 2h4\"></path><path d=\"M12 14v-4\"></path><path d=\"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6\"></path><path d=\"M9 17H4v5\"></path>",
13397 categories = "time",
13398 tags = "time,timer,stopwatch",
13399 contributors = "mittalyashu,ericfennis"
13400 ))]
13401 TimerReset,
13402 #[cfg(feature = "time")]
13403 #[strum(props(
13404 svg = "<line x1=\"10\" x2=\"14\" y1=\"2\" y2=\"2\"></line><line x1=\"12\" x2=\"15\" y1=\"14\" y2=\"11\"></line><circle cx=\"12\" cy=\"14\" r=\"8\"></circle>",
13405 categories = "time",
13406 tags = "time,timer,stopwatch",
13407 contributors = "ahtohbi4,ericfennis"
13408 ))]
13409 Timer,
13410 #[cfg(any(feature = "layout", feature = "account", feature = "development"))]
13411 #[strum(props(
13412 svg = "<circle cx=\"9\" cy=\"12\" r=\"3\"></circle><rect height=\"14\" rx=\"7\" width=\"20\" x=\"2\" y=\"5\"></rect>",
13413 categories = "layout,account,development",
13414 tags = "on,off,switch,boolean",
13415 contributors = "colebemis,karsa-mistmere,ericfennis,jamiemlaw"
13416 ))]
13417 ToggleLeft,
13418 #[cfg(any(feature = "layout", feature = "account", feature = "development"))]
13419 #[strum(props(
13420 svg = "<circle cx=\"15\" cy=\"12\" r=\"3\"></circle><rect height=\"14\" rx=\"7\" width=\"20\" x=\"2\" y=\"5\"></rect>",
13421 categories = "layout,account,development",
13422 tags = "on,off,switch,boolean",
13423 contributors = "colebemis,karsa-mistmere,ericfennis,jamiemlaw"
13424 ))]
13425 ToggleRight,
13426 #[cfg(any(feature = "devices", feature = "home"))]
13427 #[strum(props(
13428 svg = "<path d=\"M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.76l1.54 2.47a.5.5 0 0 1-.424.76H5.40a.5.5 0 0 1-.424-.765L7 18\"></path><path d=\"M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8\"></path>",
13429 categories = "devices,home",
13430 tags = "toilet,potty,bathroom,washroom",
13431 contributors = "EthanHazel,staffanmowitz,karsa-mistmere,jguddas"
13432 ))]
13433 Toilet,
13434 #[cfg(any(feature = "tools", feature = "development", feature = "home"))]
13435 #[strum(props(
13436 svg = "<path d=\"M10 15h4\"></path><path d=\"m14.81 10.99-.971-1.45 1.03-1.23a2 2 0 0 0-2.02-3.23l-1.82.36L9.91 3.88a2 2 0 0 0-3.62.748L6.14 6.55l-1.72.426a2 2 0 0 0-.19 3.75l.657.27\"></path><path d=\"m18.82 10.99 2.26-5.38a1 1 0 0 0-.557-1.31L16.95 2.9a1 1 0 0 0-1.28.533l-.924 2.12\"></path><path d=\"M4 12.00A1 1 0 0 1 4.99 11H19a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z\"></path>",
13437 categories = "tools,development,home",
13438 tags = "tools,maintenance,repair",
13439 contributors = "AlexNaskida,karsa-mistmere,jguddas"
13440 ))]
13441 ToolCase,
13442 #[cfg(any(feature = "tools", feature = "home"))]
13443 #[strum(props(
13444 svg = "<path d=\"M16 12v4\"></path><path d=\"M16 6a2 2 0 0 1 1.41.586l4 4A2 2 0 0 1 22 12v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 .586-1.41l4-4A2 2 0 0 1 8 6z\"></path><path d=\"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2\"></path><path d=\"M2 14h20\"></path><path d=\"M8 12v4\"></path>",
13445 categories = "tools,home",
13446 tags = "toolkit,tools,trunk,chest,box,storage,utility,utilities,container,kit,set,repair,fix,service,maintenance,mechanic,workshop,construction,hardware,equipment,gear,handyman,engineering,craft,diy",
13447 contributors = "karsa-mistmere"
13448 ))]
13449 Toolbox,
13450 #[cfg(feature = "weather")]
13451 #[strum(props(
13452 svg = "<path d=\"M21 4H3\"></path><path d=\"M18 8H6\"></path><path d=\"M19 12H9\"></path><path d=\"M16 16h-6\"></path><path d=\"M11 20H9\"></path>",
13453 categories = "weather",
13454 tags = "weather,wind,storm,hurricane",
13455 contributors = "ericfennis"
13456 ))]
13457 Tornado,
13458 #[cfg(any(
13459 feature = "shapes",
13460 feature = "design",
13461 feature = "tools",
13462 feature = "food_beverage"
13463 ))]
13464 #[strum(props(
13465 svg = "<ellipse cx=\"12\" cy=\"11\" rx=\"3\" ry=\"2\"></ellipse><ellipse cx=\"12\" cy=\"12.5\" rx=\"10\" ry=\"8.5\"></ellipse>",
13466 categories = "shapes,design,tools,food-beverage",
13467 tags = "donut,doughnut,ring,hollow,3d,fast food,junk food,snack,treat,sweet,sugar,dessert",
13468 contributors = "danielbayley,jguddas"
13469 ))]
13470 Torus,
13471 #[cfg(feature = "devices")]
13472 #[strum(props(
13473 svg = "<path d=\"M12 20v-6\"></path><path d=\"M19.65 14H22\"></path><path d=\"M2 14h12\"></path><path d=\"m2 2 20 20\"></path><path d=\"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2\"></path><path d=\"M9.65 4H20a2 2 0 0 1 2 2v10.34\"></path>",
13474 categories = "devices",
13475 tags = "trackpad,cursor",
13476 contributors = "karsa-mistmere,ericfennis,jguddas"
13477 ))]
13478 TouchpadOff,
13479 #[cfg(feature = "devices")]
13480 #[strum(props(
13481 svg = "<rect height=\"16\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect><path d=\"M2 14h20\"></path><path d=\"M12 20v-6\"></path>",
13482 categories = "devices",
13483 tags = "trackpad,cursor",
13484 contributors = "karsa-mistmere,ericfennis"
13485 ))]
13486 Touchpad,
13487 #[cfg(any(feature = "home", feature = "travel"))]
13488 #[strum(props(
13489 svg = "<path d=\"M22 7h-2\"></path><path d=\"M6.5 3h11A2.5 2.5 0 0 1 20 5.5V20a1 1 0 0 1-1 1h-9a1 1 0 0 1-1-1V5.5a1 1 0 0 0-5 0V17a1 1 0 0 0 1 1h4\"></path><path d=\"M9 7H2\"></path>",
13490 categories = "home,travel",
13491 tags = "flannel,bathroom,toiletries,sanitation,clean,fresh,dry,laundry,laundrette,hospitality,housekeeping,room service,spa break,health club,amenities,hanging",
13492 contributors = "danielbayley,jguddas,karsa-mistmere"
13493 ))]
13494 TowelRack,
13495 #[cfg(any(feature = "travel", feature = "transportation"))]
13496 #[strum(props(
13497 svg = "<path d=\"M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z\"></path><path d=\"M8 13v9\"></path><path d=\"M16 22v-9\"></path><path d=\"m9 6 1 7\"></path><path d=\"m15 6-1 7\"></path><path d=\"M12 6V2\"></path><path d=\"M13 2h-2\"></path>",
13498 categories = "travel,transportation",
13499 tags = "airport,travel,tower,transportation,lighthouse",
13500 contributors = "karsa-mistmere,it-is-not"
13501 ))]
13502 TowerControl,
13503 #[cfg(any(feature = "gaming", feature = "development"))]
13504 #[strum(props(
13505 svg = "<rect height=\"12\" rx=\"1\" width=\"18\" x=\"3\" y=\"8\"></rect><path d=\"M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3\"></path><path d=\"M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3\"></path>",
13506 categories = "gaming,development",
13507 tags = "lego,block,addon,plugin,integration",
13508 contributors = "ericfennis,jguddas,karsa-mistmere"
13509 ))]
13510 ToyBrick,
13511 #[cfg(any(
13512 feature = "transportation",
13513 feature = "sustainability",
13514 feature = "food_beverage"
13515 ))]
13516 #[strum(props(
13517 svg = "<path d=\"m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.15a1 1 0 0 1-.988.84H20\"></path><path d=\"M16 18h-5\"></path><path d=\"M18 5a1 1 0 0 0-1 1v5.57\"></path><path d=\"M3 4h8.12a1 1 0 0 1 .99.86L13 11.24\"></path><path d=\"M4 11V4\"></path><path d=\"M7 15h.01\"></path><path d=\"M8 10.1V4\"></path><circle cx=\"18\" cy=\"18\" r=\"2\"></circle><circle cx=\"7\" cy=\"15\" r=\"5\"></circle>",
13518 categories = "transportation,sustainability,food-beverage",
13519 tags = "farming,farmer,ranch,harvest,equipment,vehicle",
13520 contributors = "danielbayley,jguddas"
13521 ))]
13522 Tractor,
13523 #[cfg(feature = "transportation")]
13524 #[strum(props(
13525 svg = "<path d=\"M16.05 10.96a5 2.5 0 0 1-8.1 0\"></path><path d=\"m16.92 14.04 4.48 2.04a1 1 0 0 1 .001 1.83l-8.57 3.9a2 2 0 0 1-1.66 0l-8.57-3.91a1 1 0 0 1 0-1.83l4.48-2.04\"></path><path d=\"M16.94 14.14a5 2.5 0 1 1-9.9 0L10.06 3.5a2 2 0 0 1 3.87 0z\"></path><path d=\"M9.19 6.57a5 2.5 0 0 0 5.61 0\"></path>",
13526 categories = "transportation",
13527 tags = "roadworks,tarmac,safety,block",
13528 contributors = "danielbayley,karsa-mistmere,jamiemlaw"
13529 ))]
13530 TrafficCone,
13531 #[cfg(any(feature = "transportation", feature = "navigation"))]
13532 #[strum(props(
13533 svg = "<path d=\"M2 22V12a10 10 0 1 1 20 0v10\"></path><path d=\"M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8\"></path><path d=\"M10 15h.01\"></path><path d=\"M14 15h.01\"></path><path d=\"M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z\"></path><path d=\"m9 19-2 3\"></path><path d=\"m15 19 2 3\"></path>",
13534 categories = "transportation,navigation",
13535 tags = "railway,metro,subway,underground,speed,bullet,fast,track,line",
13536 contributors = "danielbayley"
13537 ))]
13538 TrainFrontTunnel,
13539 #[cfg(feature = "transportation")]
13540 #[strum(props(
13541 svg = "<path d=\"M8 3.1V7a4 4 0 0 0 8 0V3.1\"></path><path d=\"m9 15-1-1\"></path><path d=\"m15 15 1-1\"></path><path d=\"M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z\"></path><path d=\"m8 19-2 3\"></path><path d=\"m16 19 2 3\"></path>",
13542 categories = "transportation",
13543 tags = "railway,metro,subway,underground,high-speed,bullet,fast,track,line",
13544 contributors = "danielbayley"
13545 ))]
13546 TrainFront,
13547 #[cfg(any(feature = "transportation", feature = "navigation"))]
13548 #[strum(props(
13549 svg = "<path d=\"M2 17 17 2\"></path><path d=\"m2 14 8 8\"></path><path d=\"m5 11 8 8\"></path><path d=\"m8 8 8 8\"></path><path d=\"m11 5 8 8\"></path><path d=\"m14 2 8 8\"></path><path d=\"M7 22 22 7\"></path>",
13550 categories = "transportation,navigation",
13551 tags = "railway,line",
13552 contributors = "danielbayley"
13553 ))]
13554 TrainTrack,
13555 #[cfg(feature = "transportation")]
13556 #[strum(props(
13557 svg = "<rect height=\"16\" rx=\"2\" width=\"16\" x=\"4\" y=\"3\"></rect><path d=\"M4 11h16\"></path><path d=\"M12 3v8\"></path><path d=\"m8 19-2 3\"></path><path d=\"m18 22-2-3\"></path><path d=\"M8 15h.01\"></path><path d=\"M16 15h.01\"></path>",
13558 categories = "transportation",
13559 tags = "railway,metro,subway,underground,track,line,tourism",
13560 contributors = "ericfennis,karsa-mistmere"
13561 ))]
13562 TramFront,
13563 #[cfg(any(feature = "medical", feature = "accessibility"))]
13564 #[strum(props(
13565 svg = "<path d=\"M12 16v6\"></path><path d=\"M14 20h-4\"></path><path d=\"M18 2h4v4\"></path><path d=\"m2 2 7.17 7.17\"></path><path d=\"M2 5.35V2h3.35\"></path><path d=\"m22 2-7.17 7.17\"></path><path d=\"M8 5 5 8\"></path><circle cx=\"12\" cy=\"12\" r=\"4\"></circle>",
13566 categories = "medical,accessibility",
13567 tags = "gender,inclusive",
13568 contributors = "jamiemlaw"
13569 ))]
13570 Transgender,
13571 #[cfg(any(feature = "files", feature = "mail"))]
13572 #[strum(props(
13573 svg = "<path d=\"M10 11v6\"></path><path d=\"M14 11v6\"></path><path d=\"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6\"></path><path d=\"M3 6h18\"></path><path d=\"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\"></path>",
13574 categories = "files,mail",
13575 tags = "garbage,delete,remove,bin",
13576 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
13577 ))]
13578 Trash2,
13579 #[cfg(any(feature = "files", feature = "mail"))]
13580 #[strum(props(
13581 svg = "<path d=\"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6\"></path><path d=\"M3 6h18\"></path><path d=\"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\"></path>",
13582 categories = "files,mail",
13583 tags = "empty,deletion,cleanup,junk,clear,garbage,delete,remove,bin,waste,recycle,discard,binoculars,rubbish",
13584 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
13585 ))]
13586 Trash,
13587 #[cfg(any(feature = "nature", feature = "sustainability"))]
13588 #[strum(props(
13589 svg = "<path d=\"M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z\"></path><path d=\"M12 19v3\"></path>",
13590 categories = "nature,sustainability",
13591 tags = "tree,forest,park,nature",
13592 contributors = "karsa-mistmere,ericfennis"
13593 ))]
13594 TreeDeciduous,
13595 #[cfg(any(feature = "nature", feature = "sustainability"))]
13596 #[strum(props(
13597 svg = "<path d=\"M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4\"></path><path d=\"M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3\"></path><path d=\"M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35\"></path><path d=\"M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14\"></path>",
13598 categories = "nature,sustainability",
13599 tags = "vacation,leisure,island",
13600 contributors = "ericfennis"
13601 ))]
13602 TreePalm,
13603 #[cfg(any(feature = "nature", feature = "sustainability"))]
13604 #[strum(props(
13605 svg = "<path d=\"m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z\"></path><path d=\"M12 22v-3\"></path>",
13606 categories = "nature,sustainability",
13607 tags = "tree,pine,forest,park,nature",
13608 contributors = "karsa-mistmere,jguddas,danielbayley"
13609 ))]
13610 TreePine,
13611 #[cfg(any(feature = "nature", feature = "sustainability"))]
13612 #[strum(props(
13613 svg = "<path d=\"M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z\"></path><path d=\"M7 16v6\"></path><path d=\"M13 19v3\"></path><path d=\"M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5\"></path>",
13614 categories = "nature,sustainability",
13615 tags = "tree,forest,park,nature",
13616 contributors = "karsa-mistmere"
13617 ))]
13618 Trees,
13619 #[cfg(any(feature = "charts", feature = "arrows"))]
13620 #[strum(props(
13621 svg = "<path d=\"M16 17h6v-6\"></path><path d=\"m22 17-8.5-8.5-5 5L2 7\"></path>",
13622 categories = "charts,arrows",
13623 tags = "statistics",
13624 contributors = "colebemis,karsa-mistmere"
13625 ))]
13626 TrendingDown,
13627 #[cfg(any(feature = "charts", feature = "arrows"))]
13628 #[strum(props(
13629 svg = "<path d=\"M14.82 14.82 21 21\"></path><path d=\"M21 16v5h-5\"></path><path d=\"m21 3-9 9-4-4-6 6\"></path><path d=\"M21 8V3h-5\"></path>",
13630 categories = "charts,arrows",
13631 tags = "arrows,estimated,indeterminate,data fluctuation,uncertain,forecast,variable,prediction,dynamic,volatile",
13632 contributors = "Alportan"
13633 ))]
13634 TrendingUpDown,
13635 #[cfg(any(feature = "charts", feature = "arrows"))]
13636 #[strum(props(
13637 svg = "<path d=\"M16 7h6v6\"></path><path d=\"m22 7-8.5 8.5-5-5L2 17\"></path>",
13638 categories = "charts,arrows",
13639 tags = "statistics",
13640 contributors = "colebemis,karsa-mistmere"
13641 ))]
13642 TrendingUp,
13643 #[cfg(any(feature = "notifications", feature = "shapes", feature = "development"))]
13644 #[strum(props(
13645 svg = "<path d=\"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3\"></path><path d=\"M12 9v4\"></path><path d=\"M12 17h.01\"></path>",
13646 categories = "notifications,shapes,development",
13647 tags = "warning,alert,danger,exclamation mark,linter",
13648 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
13649 ))]
13650 TriangleAlert,
13651 #[cfg(feature = "shapes")]
13652 #[strum(props(
13653 svg = "<path d=\"M10.17 4.19a2 2 0 0 1 3.66.013\"></path><path d=\"M14 21h2\"></path><path d=\"m15.87 7.74 1 1.73\"></path><path d=\"m18.84 12.95 1 1.73\"></path><path d=\"M21.82 18.18a2 2 0 0 1-1.83 2.82\"></path><path d=\"M4.02 21a2 2 0 0 1-1.83-2.83\"></path><path d=\"m5.13 12.95-1 1.73\"></path><path d=\"M8 21h2\"></path><path d=\"m8.10 7.74-1 1.73\"></path>",
13654 categories = "shapes",
13655 tags = "equilateral,delta,shape,pyramid,hierarchy,dashed",
13656 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,Yohh"
13657 ))]
13658 TriangleDashed,
13659 #[cfg(any(feature = "shapes", feature = "math"))]
13660 #[strum(props(
13661 svg = "<path d=\"M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z\"></path>",
13662 categories = "shapes,math",
13663 tags = "volume,controls,controller,tv remote,geometry,delta,ramp,slope,incline,increase",
13664 contributors = "danielbayley"
13665 ))]
13666 TriangleRight,
13667 #[cfg(feature = "shapes")]
13668 #[strum(props(
13669 svg = "<path d=\"M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z\"></path>",
13670 categories = "shapes",
13671 tags = "equilateral,delta,shape,pyramid,hierarchy",
13672 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
13673 ))]
13674 Triangle,
13675 #[cfg(any(feature = "sports", feature = "gaming"))]
13676 #[strum(props(
13677 svg = "<path d=\"M10 14.66v1.62a2 2 0 0 1-.976 1.69A5 5 0 0 0 7 21.97\"></path><path d=\"M14 14.66v1.62a2 2 0 0 0 .976 1.69A5 5 0 0 1 17 21.97\"></path><path d=\"M18 9h1.5a1 1 0 0 0 0-5H18\"></path><path d=\"M4 22h16\"></path><path d=\"M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z\"></path><path d=\"M6 9H4.5a1 1 0 0 1 0-5H6\"></path>",
13678 categories = "sports,gaming",
13679 tags = "prize,sports,winner,achievement,award,champion,celebration,victory",
13680 contributors = "karsa-mistmere,jguddas"
13681 ))]
13682 Trophy,
13683 #[cfg(feature = "transportation")]
13684 #[strum(props(
13685 svg = "<path d=\"M14 19V7a2 2 0 0 0-2-2H9\"></path><path d=\"M15 19H9\"></path><path d=\"M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14\"></path><path d=\"M2 13v5a1 1 0 0 0 1 1h2\"></path><path d=\"M4 3 2.15 5.15a.495.49 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02\"></path><circle cx=\"17\" cy=\"19\" r=\"2\"></circle><circle cx=\"7\" cy=\"19\" r=\"2\"></circle>",
13686 categories = "transportation",
13687 tags = "delivery,van,shipping,haulage,lorry,electric",
13688 contributors = "colebemis,ahtohbi4,ericfennis,Andreto,csandman,karsa-mistmere,danielbayley,jordan808,LienMaas,jguddas,AnnaSasDev"
13689 ))]
13690 TruckElectric,
13691 #[cfg(feature = "transportation")]
13692 #[strum(props(
13693 svg = "<path d=\"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2\"></path><path d=\"M15 18H9\"></path><path d=\"M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14\"></path><circle cx=\"17\" cy=\"18\" r=\"2\"></circle><circle cx=\"7\" cy=\"18\" r=\"2\"></circle>",
13694 categories = "transportation",
13695 tags = "delivery,van,shipping,haulage,lorry",
13696 contributors = "colebemis,ahtohbi4,ericfennis,Andreto,csandman,karsa-mistmere,danielbayley,jordan808"
13697 ))]
13698 Truck,
13699 #[cfg(feature = "finance")]
13700 #[strum(props(
13701 svg = "<path d=\"M15 4 5 9\"></path><path d=\"m15 8.5-10 5\"></path><path d=\"M18 12a9 9 0 0 1-9 9V3\"></path>",
13702 categories = "finance",
13703 tags = "currency,money,payment",
13704 contributors = "jamiemlaw"
13705 ))]
13706 TurkishLira,
13707 #[cfg(any(feature = "multimedia", feature = "home"))]
13708 #[strum(props(
13709 svg = "<path d=\"M10 12.01h.01\"></path><path d=\"M18 8v4a8 8 0 0 1-1.07 4\"></path><circle cx=\"10\" cy=\"12\" r=\"4\"></circle><rect height=\"16\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect>",
13710 categories = "multimedia,home",
13711 tags = "record player,gramophone,stereo,phonograph,vinyl,lp,disc,platter,cut,music,analog,retro,dj deck,disc jockey,scratch,spinning",
13712 contributors = "karsa-mistmere"
13713 ))]
13714 Turntable,
13715 #[cfg(feature = "animals")]
13716 #[strum(props(
13717 svg = "<path d=\"m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z\"></path><path d=\"M4.82 7.9 8 10\"></path><path d=\"M15.18 7.9 12 10\"></path><path d=\"M16.93 10H20a2 2 0 0 1 0 4H2\"></path>",
13718 categories = "animals",
13719 tags = "animal,pet,tortoise,slow,speed",
13720 contributors = "danielbayley"
13721 ))]
13722 Turtle,
13723 #[cfg(any(feature = "devices", feature = "multimedia"))]
13724 #[strum(props(
13725 svg = "<path d=\"M15.03 9.44a.647.64 0 0 1 0 1.12l-4.06 2.35a.645.64 0 0 1-.968-.56V7.64a.645.64 0 0 1 .967-.56z\"></path><path d=\"M7 21h10\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect>",
13726 categories = "devices,multimedia",
13727 tags = "flatscreen,television,stream,display,widescreen,high-definition,hd,1080p,4k,8k,smart,digital,video,movie,live,ott,running,start,film,home cinema,entertainment,showtime,channels,catchup",
13728 contributors = "karsa-mistmere,jguddas,ericfennis"
13729 ))]
13730 TvMinimalPlay,
13731 #[cfg(any(feature = "devices", feature = "multimedia"))]
13732 #[strum(props(
13733 svg = "<path d=\"M7 21h10\"></path><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect>",
13734 categories = "devices,multimedia",
13735 tags = "flatscreen,television,stream,display,widescreen,high-definition,hd,1080p,4k,8k,smart,digital,video,home cinema,entertainment,showtime,channels,catchup",
13736 contributors = "ericfennis"
13737 ))]
13738 TvMinimal,
13739 #[cfg(any(feature = "devices", feature = "multimedia", feature = "communication"))]
13740 #[strum(props(
13741 svg = "<path d=\"m17 2-5 5-5-5\"></path><rect height=\"15\" rx=\"2\" width=\"20\" x=\"2\" y=\"7\"></rect>",
13742 categories = "devices,multimedia,communication",
13743 tags = "television,stream,display,widescreen,high-definition,hd,1080p,4k,8k,smart,digital,video,entertainment,showtime,channels,terrestrial,satellite,cable,broadcast,live,frequency,tune,scan,aerial,receiver,transmission,signal,connection,connectivity",
13744 contributors = "colebemis,ericfennis"
13745 ))]
13746 Tv,
13747 #[cfg(feature = "text")]
13748 #[strum(props(
13749 svg = "<path d=\"M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z\"></path>",
13750 categories = "text",
13751 tags = "text,font,typography,silhouette,profile,contour,stroke,line",
13752 contributors = "karsa-mistmere,colebemis,ericfennis"
13753 ))]
13754 TypeOutline,
13755 #[cfg(feature = "text")]
13756 #[strum(props(
13757 svg = "<path d=\"M12 4v16\"></path><path d=\"M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2\"></path><path d=\"M9 20h6\"></path>",
13758 categories = "text",
13759 tags = "text,font,typography",
13760 contributors = "colebemis,ericfennis"
13761 ))]
13762 Type,
13763 #[cfg(feature = "weather")]
13764 #[strum(props(
13765 svg = "<path d=\"M12 13v7a2 2 0 0 0 4 0\"></path><path d=\"M12 2v2\"></path><path d=\"M18.65 13h2.33a1 1 0 0 0 .97-1.27 10.28 10.28 0 0 0-12.07-7.51\"></path><path d=\"m2 2 20 20\"></path><path d=\"M5.96 5.95a10.28 10.28 0 0 0-3.92 5.76A1 1 0 0 0 3 13h10\"></path>",
13766 categories = "weather",
13767 tags = "rain,weather,uncovered,uninsured,antivirus,unprotected,risky",
13768 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,jguddas"
13769 ))]
13770 UmbrellaOff,
13771 #[cfg(feature = "weather")]
13772 #[strum(props(
13773 svg = "<path d=\"M12 13v7a2 2 0 0 0 4 0\"></path><path d=\"M12 2v2\"></path><path d=\"M20.99 13a1 1 0 0 0 .97-1.27 10.28 10.28 0 0 0-19.92 0A1 1 0 0 0 3 13z\"></path>",
13774 categories = "weather",
13775 tags = "rain,weather",
13776 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,jguddas"
13777 ))]
13778 Umbrella,
13779 #[cfg(feature = "text")]
13780 #[strum(props(
13781 svg = "<path d=\"M6 4v6a6 6 0 0 0 12 0V4\"></path><line x1=\"4\" x2=\"20\" y1=\"20\" y2=\"20\"></line>",
13782 categories = "text",
13783 tags = "text,format",
13784 contributors = "colebemis,ericfennis,csandman,johnletey"
13785 ))]
13786 Underline,
13787 #[cfg(any(feature = "text", feature = "arrows"))]
13788 #[strum(props(
13789 svg = "<path d=\"M9 14 4 9l5-5\"></path><path d=\"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11\"></path>",
13790 categories = "text,arrows",
13791 tags = "redo,rerun,history,back,return,reverse,revert,direction,u-turn",
13792 contributors = "lscheibel,danielbayley,karsa-mistmere"
13793 ))]
13794 Undo2,
13795 #[cfg(any(feature = "text", feature = "arrows"))]
13796 #[strum(props(
13797 svg = "<path d=\"M21 17a9 9 0 0 0-15-6.7L3 13\"></path><path d=\"M3 7v6h6\"></path><circle cx=\"12\" cy=\"17\" r=\"1\"></circle>",
13798 categories = "text,arrows",
13799 tags = "redo,history,step,back",
13800 contributors = "danielbayley"
13801 ))]
13802 UndoDot,
13803 #[cfg(any(feature = "text", feature = "arrows"))]
13804 #[strum(props(
13805 svg = "<path d=\"M3 7v6h6\"></path><path d=\"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13\"></path>",
13806 categories = "text,arrows",
13807 tags = "redo,rerun,history",
13808 contributors = "aelfric,ericfennis,csandman"
13809 ))]
13810 Undo,
13811 #[cfg(any(feature = "arrows", feature = "layout"))]
13812 #[strum(props(
13813 svg = "<path d=\"M16 12h6\"></path><path d=\"M8 12H2\"></path><path d=\"M12 2v2\"></path><path d=\"M12 8v2\"></path><path d=\"M12 14v2\"></path><path d=\"M12 20v2\"></path><path d=\"m19 15 3-3-3-3\"></path><path d=\"m5 9-3 3 3 3\"></path>",
13814 categories = "arrows,layout",
13815 tags = "arrow,collapse,fold,vertical,dashed",
13816 contributors = "danielbayley"
13817 ))]
13818 UnfoldHorizontal,
13819 #[cfg(any(feature = "arrows", feature = "layout"))]
13820 #[strum(props(
13821 svg = "<path d=\"M12 22v-6\"></path><path d=\"M12 8V2\"></path><path d=\"M4 12H2\"></path><path d=\"M10 12H8\"></path><path d=\"M16 12h-2\"></path><path d=\"M22 12h-2\"></path><path d=\"m15 19-3 3-3-3\"></path><path d=\"m15 5-3-3-3 3\"></path>",
13822 categories = "arrows,layout",
13823 tags = "arrow,expand,vertical,dashed",
13824 contributors = "danielbayley"
13825 ))]
13826 UnfoldVertical,
13827 #[cfg(any(feature = "shapes", feature = "files"))]
13828 #[strum(props(
13829 svg = "<rect height=\"6\" rx=\"1\" width=\"8\" x=\"5\" y=\"4\"></rect><rect height=\"6\" rx=\"1\" width=\"8\" x=\"11\" y=\"14\"></rect>",
13830 categories = "shapes,files",
13831 tags = "cubes,packages,parts,units,collection,cluster,separate",
13832 contributors = "danielbayley"
13833 ))]
13834 Ungroup,
13835 #[cfg(any(feature = "buildings", feature = "navigation"))]
13836 #[strum(props(
13837 svg = "<path d=\"M14 21v-3a2 2 0 0 0-4 0v3\"></path><path d=\"M18 12h.01\"></path><path d=\"M18 16h.01\"></path><path d=\"M22 7a1 1 0 0 0-1-1h-2a2 2 0 0 1-1.14-.359L13.14 2.36a2 2 0 0 0-2.28-.001L6.14 5.64A2 2 0 0 1 5 6H3a1 1 0 0 0-1 1v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z\"></path><path d=\"M6 12h.01\"></path><path d=\"M6 16h.01\"></path><circle cx=\"12\" cy=\"10\" r=\"2\"></circle>",
13838 categories = "buildings,navigation",
13839 tags = "building,education,childhood,school,college,academy,institute",
13840 contributors = "karsa-mistmere"
13841 ))]
13842 University,
13843 #[cfg(feature = "text")]
13844 #[strum(props(
13845 svg = "<path d=\"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2\"></path>",
13846 categories = "text",
13847 tags = "url,unchain",
13848 contributors = "ericfennis,csandman"
13849 ))]
13850 Unlink2,
13851 #[cfg(feature = "text")]
13852 #[strum(props(
13853 svg = "<path d=\"m18.84 12.25 1.72-1.71h-.02a5.00 5.00 0 0 0-.12-7.07 5.00 5.00 0 0 0-6.95 0l-1.72 1.71\"></path><path d=\"m5.17 11.75-1.71 1.71a5.00 5.00 0 0 0 .12 7.07 5.00 5.00 0 0 0 6.95 0l1.71-1.71\"></path><line x1=\"8\" x2=\"8\" y1=\"2\" y2=\"5\"></line><line x1=\"2\" x2=\"5\" y1=\"8\" y2=\"8\"></line><line x1=\"16\" x2=\"16\" y1=\"19\" y2=\"22\"></line><line x1=\"19\" x2=\"22\" y1=\"16\" y2=\"16\"></line>",
13854 categories = "text",
13855 tags = "url,unchain",
13856 contributors = "ericfennis,csandman"
13857 ))]
13858 Unlink,
13859 #[cfg(any(feature = "devices", feature = "development"))]
13860 #[strum(props(
13861 svg = "<path d=\"m19 5 3-3\"></path><path d=\"m2 22 3-3\"></path><path d=\"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z\"></path><path d=\"M7.5 13.5 10 11\"></path><path d=\"M10.5 16.5 13 14\"></path><path d=\"m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z\"></path>",
13862 categories = "devices,development",
13863 tags = "electricity,energy,electronics,socket,outlet,disconnect",
13864 contributors = "danielbayley,karsa-mistmere"
13865 ))]
13866 Unplug,
13867 #[cfg(any(feature = "arrows", feature = "files"))]
13868 #[strum(props(
13869 svg = "<path d=\"M12 3v12\"></path><path d=\"m17 8-5-5-5 5\"></path><path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4\"></path>",
13870 categories = "arrows,files",
13871 tags = "file",
13872 contributors = "colebemis,csandman,ericfennis"
13873 ))]
13874 Upload,
13875 #[cfg(any(feature = "devices", feature = "multimedia", feature = "home"))]
13876 #[strum(props(
13877 svg = "<circle cx=\"10\" cy=\"7\" r=\"1\"></circle><circle cx=\"4\" cy=\"20\" r=\"1\"></circle><path d=\"M4.7 19.3 19 5\"></path><path d=\"m21 3-3 1 2 2Z\"></path><path d=\"M9.26 7.68 5 12l2 5\"></path><path d=\"m10 14 5 2 3.5-3.5\"></path><path d=\"m18 12 1-1 1 1-1 1Z\"></path>",
13878 categories = "devices,multimedia,home",
13879 tags = "universal,serial,bus,controller,connector,interface",
13880 contributors = "karsa-mistmere,jguddas"
13881 ))]
13882 Usb,
13883 #[cfg(feature = "account")]
13884 #[strum(props(
13885 svg = "<path d=\"m16 11 2 2 4-4\"></path><path d=\"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2\"></path><circle cx=\"9\" cy=\"7\" r=\"4\"></circle>",
13886 categories = "account",
13887 tags = "followed,subscribed,done,todo,tick,complete,task",
13888 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
13889 ))]
13890 UserCheck,
13891 #[cfg(feature = "account")]
13892 #[strum(props(
13893 svg = "<path d=\"M10 15H6a4 4 0 0 0-4 4v2\"></path><path d=\"m14.30 16.53.92-.382\"></path><path d=\"m15.22 13.85-.923-.383\"></path><path d=\"m16.85 12.22-.383-.923\"></path><path d=\"m16.85 17.77-.383.92\"></path><path d=\"m19.14 12.22.383-.923\"></path><path d=\"m19.53 18.69-.382-.924\"></path><path d=\"m20.77 13.85.924-.383\"></path><path d=\"m20.77 16.14.924.38\"></path><circle cx=\"18\" cy=\"15\" r=\"3\"></circle><circle cx=\"9\" cy=\"7\" r=\"4\"></circle>",
13894 categories = "account",
13895 tags = "settings,edit,cog,gear",
13896 contributors = "karsa-mistmere,ericfennis,UsamaKhan"
13897 ))]
13898 UserCog,
13899 #[cfg(feature = "account")]
13900 #[strum(props(
13901 svg = "<path d=\"M20 11v6\"></path><path d=\"M20 13h2\"></path><path d=\"M3 21v-2a4 4 0 0 1 4-4h6a4 4 0 0 1 2.07.578\"></path><circle cx=\"10\" cy=\"7\" r=\"4\"></circle><circle cx=\"20\" cy=\"19\" r=\"2\"></circle>",
13902 categories = "account",
13903 tags = "passkey,password,login,authentication,authorization,roles,permissions,private,public,security,person,account,contact",
13904 contributors = "colebemis,csandman,ericfennis,mittalyashu,karsa-mistmere"
13905 ))]
13906 UserKey,
13907 #[cfg(any(feature = "account", feature = "security"))]
13908 #[strum(props(
13909 svg = "<path d=\"M19 16v-2a2 2 0 0 0-4 0v2\"></path><path d=\"M9.5 15H7a4 4 0 0 0-4 4v2\"></path><circle cx=\"10\" cy=\"7\" r=\"4\"></circle><rect height=\"5\" rx=\".899\" width=\"8\" x=\"13\" y=\"16\"></rect>",
13910 categories = "account,security",
13911 tags = "person,lock,locked,account,secure",
13912 contributors = "anthony-mariotti,jguddas"
13913 ))]
13914 UserLock,
13915 #[cfg(feature = "account")]
13916 #[strum(props(
13917 svg = "<path d=\"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2\"></path><circle cx=\"9\" cy=\"7\" r=\"4\"></circle><line x1=\"22\" x2=\"16\" y1=\"11\" y2=\"11\"></line>",
13918 categories = "account",
13919 tags = "delete,remove,unfollow,unsubscribe",
13920 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
13921 ))]
13922 UserMinus,
13923 #[cfg(feature = "account")]
13924 #[strum(props(
13925 svg = "<path d=\"M11.5 15H7a4 4 0 0 0-4 4v2\"></path><path d=\"M21.37 16.62a1 1 0 0 0-3.00-3.00l-4.01 4.01a2 2 0 0 0-.506.85l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z\"></path><circle cx=\"10\" cy=\"7\" r=\"4\"></circle>",
13926 categories = "account",
13927 tags = "person,account,contact,profile,edit,change",
13928 contributors = "karsa-mistmere,colebemis,csandman,ericfennis"
13929 ))]
13930 UserPen,
13931 #[cfg(feature = "account")]
13932 #[strum(props(
13933 svg = "<path d=\"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2\"></path><circle cx=\"9\" cy=\"7\" r=\"4\"></circle><line x1=\"19\" x2=\"19\" y1=\"8\" y2=\"14\"></line><line x1=\"22\" x2=\"16\" y1=\"11\" y2=\"11\"></line>",
13934 categories = "account",
13935 tags = "new,add,create,follow,subscribe",
13936 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
13937 ))]
13938 UserPlus,
13939 #[cfg(any(feature = "account", feature = "people", feature = "arrows"))]
13940 #[strum(props(
13941 svg = "<path d=\"m19 16-3 3\"></path><path d=\"M2 21a8 8 0 0 1 12.66-6.5\"></path><path d=\"M22 19h-6l3 3\"></path><circle cx=\"10\" cy=\"8\" r=\"5\"></circle>",
13942 categories = "account,people,arrows",
13943 tags = "person,assign,move,give,setup,self,me,myself,profile,avatar,incoming,recipient,assignee,inbound",
13944 contributors = "karsa-mistmere,jguddas"
13945 ))]
13946 UserRoundArrowLeft,
13947 #[cfg(feature = "account")]
13948 #[strum(props(
13949 svg = "<path d=\"M2 21a8 8 0 0 1 13.29-6\"></path><circle cx=\"10\" cy=\"8\" r=\"5\"></circle><path d=\"m16 19 2 2 4-4\"></path>",
13950 categories = "account",
13951 tags = "followed,subscribed,done,todo,tick,complete,task",
13952 contributors = "karsa-mistmere"
13953 ))]
13954 UserRoundCheck,
13955 #[cfg(feature = "account")]
13956 #[strum(props(
13957 svg = "<path d=\"m14.30 19.53.92-.382\"></path><path d=\"m15.22 16.85-.923-.383\"></path><path d=\"m16.85 15.22-.383-.923\"></path><path d=\"m16.85 20.77-.383.92\"></path><path d=\"m19.14 15.22.383-.923\"></path><path d=\"m19.53 21.69-.382-.924\"></path><path d=\"M2 21a8 8 0 0 1 10.43-7.62\"></path><path d=\"m20.77 16.85.924-.383\"></path><path d=\"m20.77 19.14.924.38\"></path><circle cx=\"10\" cy=\"8\" r=\"5\"></circle><circle cx=\"18\" cy=\"18\" r=\"3\"></circle>",
13958 categories = "account",
13959 tags = "settings,edit,cog,gear",
13960 contributors = "karsa-mistmere,UsamaKhan"
13961 ))]
13962 UserRoundCog,
13963 #[cfg(feature = "account")]
13964 #[strum(props(
13965 svg = "<path d=\"M19 11v6\"></path><path d=\"M19 13h2\"></path><path d=\"M2 21a8 8 0 0 1 12.86-6.34\"></path><circle cx=\"10\" cy=\"8\" r=\"5\"></circle><circle cx=\"19\" cy=\"19\" r=\"2\"></circle>",
13966 categories = "account",
13967 tags = "passkey,password,login,authentication,authorization,roles,permissions,private,public,security,person,account,contact",
13968 contributors = "colebemis,csandman,ericfennis,mittalyashu,karsa-mistmere"
13969 ))]
13970 UserRoundKey,
13971 #[cfg(feature = "account")]
13972 #[strum(props(
13973 svg = "<path d=\"M2 21a8 8 0 0 1 13.29-6\"></path><circle cx=\"10\" cy=\"8\" r=\"5\"></circle><path d=\"M22 19h-6\"></path>",
13974 categories = "account",
13975 tags = "delete,remove,unfollow,unsubscribe",
13976 contributors = "karsa-mistmere"
13977 ))]
13978 UserRoundMinus,
13979 #[cfg(feature = "account")]
13980 #[strum(props(
13981 svg = "<path d=\"M2 21a8 8 0 0 1 10.82-7.48\"></path><path d=\"M21.37 16.62a1 1 0 0 0-3.00-3.00l-4.01 4.01a2 2 0 0 0-.506.85l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z\"></path><circle cx=\"10\" cy=\"8\" r=\"5\"></circle>",
13982 categories = "account",
13983 tags = "person,account,contact,profile,edit,change",
13984 contributors = "karsa-mistmere,colebemis,csandman,ericfennis"
13985 ))]
13986 UserRoundPen,
13987 #[cfg(feature = "account")]
13988 #[strum(props(
13989 svg = "<path d=\"M2 21a8 8 0 0 1 13.29-6\"></path><circle cx=\"10\" cy=\"8\" r=\"5\"></circle><path d=\"M19 16v6\"></path><path d=\"M22 19h-6\"></path>",
13990 categories = "account",
13991 tags = "new,add,create,follow,subscribe",
13992 contributors = "karsa-mistmere"
13993 ))]
13994 UserRoundPlus,
13995 #[cfg(any(feature = "account", feature = "social"))]
13996 #[strum(props(
13997 svg = "<circle cx=\"10\" cy=\"8\" r=\"5\"></circle><path d=\"M2 21a8 8 0 0 1 10.43-7.62\"></path><circle cx=\"18\" cy=\"18\" r=\"3\"></circle><path d=\"m22 22-1.9-1.9\"></path>",
13998 categories = "account,social",
13999 tags = "person,account,contact,find,scan,magnifier,magnifying glass,lens",
14000 contributors = "jmsv,karsa-mistmere"
14001 ))]
14002 UserRoundSearch,
14003 #[cfg(feature = "account")]
14004 #[strum(props(
14005 svg = "<path d=\"M2 21a8 8 0 0 1 11.87-7\"></path><circle cx=\"10\" cy=\"8\" r=\"5\"></circle><path d=\"m17 17 5 5\"></path><path d=\"m22 17-5 5\"></path>",
14006 categories = "account",
14007 tags = "delete,remove,unfollow,unsubscribe,unavailable",
14008 contributors = "karsa-mistmere"
14009 ))]
14010 UserRoundX,
14011 #[cfg(feature = "account")]
14012 #[strum(props(
14013 svg = "<circle cx=\"12\" cy=\"8\" r=\"5\"></circle><path d=\"M20 21a8 8 0 0 0-16 0\"></path>",
14014 categories = "account",
14015 tags = "person,account,contact",
14016 contributors = "karsa-mistmere"
14017 ))]
14018 UserRound,
14019 #[cfg(any(feature = "account", feature = "social"))]
14020 #[strum(props(
14021 svg = "<circle cx=\"10\" cy=\"7\" r=\"4\"></circle><path d=\"M10.3 15H7a4 4 0 0 0-4 4v2\"></path><circle cx=\"17\" cy=\"17\" r=\"3\"></circle><path d=\"m21 21-1.9-1.9\"></path>",
14022 categories = "account,social",
14023 tags = "person,account,contact,find,scan,magnifier,magnifying glass,lens",
14024 contributors = "jmsv,jguddas,colebemis,csandman,ericfennis,karsa-mistmere"
14025 ))]
14026 UserSearch,
14027 #[cfg(feature = "account")]
14028 #[strum(props(
14029 svg = "<path d=\"M16.05 12.61a1 1 0 0 1 1.90.024l.737 1.45a1 1 0 0 0 .737.53l1.63.256a1 1 0 0 1 .588 1.80l-1.17 1.16a1 1 0 0 0-.282.86l.259 1.61a1 1 0 0 1-1.54 1.13l-1.46-.75a1 1 0 0 0-.912 0l-1.46.75a1 1 0 0 1-1.53-1.13l.258-1.61a1 1 0 0 0-.282-.866l-1.15-1.15a1 1 0 0 1 .572-1.82l1.63-.256a1 1 0 0 0 .737-.535z\"></path><path d=\"M8 15H7a4 4 0 0 0-4 4v2\"></path><circle cx=\"10\" cy=\"7\" r=\"4\"></circle>",
14030 categories = "account",
14031 tags = "person,account,favorite,contact,like,review,rating,admin",
14032 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,jguddas,MArtytraM99"
14033 ))]
14034 UserStar,
14035 #[cfg(feature = "account")]
14036 #[strum(props(
14037 svg = "<path d=\"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2\"></path><circle cx=\"9\" cy=\"7\" r=\"4\"></circle><line x1=\"17\" x2=\"22\" y1=\"8\" y2=\"13\"></line><line x1=\"22\" x2=\"17\" y1=\"8\" y2=\"13\"></line>",
14038 categories = "account",
14039 tags = "delete,remove,unfollow,unsubscribe,unavailable",
14040 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
14041 ))]
14042 UserX,
14043 #[cfg(feature = "account")]
14044 #[strum(props(
14045 svg = "<path d=\"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2\"></path><circle cx=\"12\" cy=\"7\" r=\"4\"></circle>",
14046 categories = "account",
14047 tags = "person,account,contact",
14048 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
14049 ))]
14050 User,
14051 #[cfg(feature = "account")]
14052 #[strum(props(
14053 svg = "<path d=\"M18 21a8 8 0 0 0-16 0\"></path><circle cx=\"10\" cy=\"8\" r=\"5\"></circle><path d=\"M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3\"></path>",
14054 categories = "account",
14055 tags = "group,people",
14056 contributors = "karsa-mistmere"
14057 ))]
14058 UsersRound,
14059 #[cfg(feature = "account")]
14060 #[strum(props(
14061 svg = "<path d=\"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2\"></path><path d=\"M16 3.12a4 4 0 0 1 0 7.74\"></path><path d=\"M22 21v-2a4 4 0 0 0-3-3.87\"></path><circle cx=\"9\" cy=\"7\" r=\"4\"></circle>",
14062 categories = "account",
14063 tags = "group,people",
14064 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,jguddas"
14065 ))]
14066 Users,
14067 #[cfg(any(feature = "food_beverage", feature = "travel", feature = "navigation"))]
14068 #[strum(props(
14069 svg = "<path d=\"m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8\"></path><path d=\"M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7\"></path><path d=\"m2.1 21.8 6.4-6.3\"></path><path d=\"m19 5-7 7\"></path>",
14070 categories = "food-beverage,travel,navigation",
14071 tags = "fork,knife,cutlery,flatware,tableware,silverware,food,restaurant,meal,breakfast,dinner,supper",
14072 contributors = "karsa-mistmere"
14073 ))]
14074 UtensilsCrossed,
14075 #[cfg(any(feature = "food_beverage", feature = "travel", feature = "navigation"))]
14076 #[strum(props(
14077 svg = "<path d=\"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2\"></path><path d=\"M7 2v20\"></path><path d=\"M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7\"></path>",
14078 categories = "food-beverage,travel,navigation",
14079 tags = "fork,knife,cutlery,flatware,tableware,silverware,food,restaurant,meal,breakfast,dinner,supper",
14080 contributors = "karsa-mistmere,ericfennis"
14081 ))]
14082 Utensils,
14083 #[cfg(any(feature = "buildings", feature = "home", feature = "sustainability"))]
14084 #[strum(props(
14085 svg = "<path d=\"M12 2v20\"></path><path d=\"M2 5h20\"></path><path d=\"M3 3v2\"></path><path d=\"M7 3v2\"></path><path d=\"M17 3v2\"></path><path d=\"M21 3v2\"></path><path d=\"m19 5-7 7-7-7\"></path>",
14086 categories = "buildings,home,sustainability",
14087 tags = "electricity,energy,transmission line,telegraph pole,power lines,phone",
14088 contributors = "karsa-mistmere"
14089 ))]
14090 UtilityPole,
14091 #[cfg(feature = "transportation")]
14092 #[strum(props(
14093 svg = "<path d=\"M13 6v5a1 1 0 0 0 1 1h6.10a1 1 0 0 1 .712.29l.898.91a1 1 0 0 1 .288.70V17a1 1 0 0 1-1 1h-3\"></path><path d=\"M5 18H3a1 1 0 0 1-1-1V8a2 2 0 0 1 2-2h12c1.1 0 2.1.8 2.4 1.8l1.17 4.2\"></path><path d=\"M9 18h5\"></path><circle cx=\"16\" cy=\"18\" r=\"2\"></circle><circle cx=\"7\" cy=\"18\" r=\"2\"></circle>",
14094 categories = "transportation",
14095 tags = "minivan,cart,wagon,truck,lorry,trailer,camper,vehicle,drive,trip,journey,van,transport,carriage,delivery,travel",
14096 contributors = "Ahmed-Dghaies,karsa-mistmere"
14097 ))]
14098 Van,
14099 #[cfg(any(feature = "development", feature = "math"))]
14100 #[strum(props(
14101 svg = "<path d=\"M8 21s-4-3-4-9 4-9 4-9\"></path><path d=\"M16 3s4 3 4 9-4 9-4 9\"></path><line x1=\"15\" x2=\"9\" y1=\"9\" y2=\"15\"></line><line x1=\"9\" x2=\"15\" y1=\"9\" y2=\"15\"></line>",
14102 categories = "development,math",
14103 tags = "code,coding,programming,symbol,calculate,algebra,x,parentheses,parenthesis,brackets,parameter,(,)",
14104 contributors = "danielbayley,jguddas"
14105 ))]
14106 Variable,
14107 #[cfg(any(feature = "security", feature = "travel", feature = "home"))]
14108 #[strum(props(
14109 svg = "<rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><circle cx=\"7.5\" cy=\"7.5\" fill=\"currentColor\" r=\".5\"></circle><path d=\"m7.9 7.9 2.7 2.7\"></path><circle cx=\"16.5\" cy=\"7.5\" fill=\"currentColor\" r=\".5\"></circle><path d=\"m13.4 10.6 2.7-2.7\"></path><circle cx=\"7.5\" cy=\"16.5\" fill=\"currentColor\" r=\".5\"></circle><path d=\"m7.9 16.1 2.7-2.7\"></path><circle cx=\"16.5\" cy=\"16.5\" fill=\"currentColor\" r=\".5\"></circle><path d=\"m13.4 13.4 2.7 2.7\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle>",
14110 categories = "security,travel,home",
14111 tags = "safe,lockbox,deposit,locker,coffer,strongbox,safety,secure,storage,valuables,bank",
14112 contributors = "danielbayley"
14113 ))]
14114 Vault,
14115 #[cfg(any(
14116 feature = "shapes",
14117 feature = "math",
14118 feature = "design",
14119 feature = "tools"
14120 ))]
14121 #[strum(props(
14122 svg = "<path d=\"M19.5 7a24 24 0 0 1 0 10\"></path><path d=\"M4.5 7a24 24 0 0 0 0 10\"></path><path d=\"M7 19.5a24 24 0 0 0 10 0\"></path><path d=\"M7 4.5a24 24 0 0 1 10 0\"></path><rect height=\"5\" rx=\"1\" width=\"5\" x=\"17\" y=\"17\"></rect><rect height=\"5\" rx=\"1\" width=\"5\" x=\"17\" y=\"2\"></rect><rect height=\"5\" rx=\"1\" width=\"5\" x=\"2\" y=\"17\"></rect><rect height=\"5\" rx=\"1\" width=\"5\" x=\"2\" y=\"2\"></rect>",
14123 categories = "shapes,math,design,tools",
14124 tags = "shape,geometry,art,width,height,size,calculate,measure,select,graphics,box",
14125 contributors = "chessurisme,jguddas"
14126 ))]
14127 VectorSquare,
14128 #[cfg(any(feature = "food_beverage", feature = "sustainability"))]
14129 #[strum(props(
14130 svg = "<path d=\"M16 8q6 0 6-6-6 0-6 6\"></path><path d=\"M17.41 3.59a10 10 0 1 0 3 3\"></path><path d=\"M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14\"></path>",
14131 categories = "food-beverage,sustainability",
14132 tags = "vegetarian,fruitarian,herbivorous,animal rights,diet",
14133 contributors = "karsa-mistmere,jguddas"
14134 ))]
14135 Vegan,
14136 #[cfg(any(feature = "account", feature = "gaming"))]
14137 #[strum(props(
14138 svg = "<path d=\"M18 11c-1.5 0-2.5.5-3 2\"></path><path d=\"M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z\"></path><path d=\"M6 11c1.5 0 2.5.5 3 2\"></path>",
14139 categories = "account,gaming",
14140 tags = "mask,masquerade,impersonate,secret,incognito",
14141 contributors = "karsa-mistmere,ericfennis,jguddas"
14142 ))]
14143 VenetianMask,
14144 #[cfg(feature = "medical")]
14145 #[strum(props(
14146 svg = "<path d=\"M10 20h4\"></path><path d=\"M12 16v6\"></path><path d=\"M17 2h4v4\"></path><path d=\"m21 2-5.46 5.46\"></path><circle cx=\"12\" cy=\"11\" r=\"5\"></circle>",
14147 categories = "medical",
14148 tags = "gender,sex,intersex,androgynous,hermaphrodite",
14149 contributors = "jamiemlaw"
14150 ))]
14151 VenusAndMars,
14152 #[cfg(feature = "medical")]
14153 #[strum(props(
14154 svg = "<path d=\"M12 15v7\"></path><path d=\"M9 19h6\"></path><circle cx=\"12\" cy=\"9\" r=\"6\"></circle>",
14155 categories = "medical",
14156 tags = "gender,sex,female,feminine,woman,girl",
14157 contributors = "jguddas,jamiemlaw"
14158 ))]
14159 Venus,
14160 #[cfg(any(feature = "devices", feature = "connectivity", feature = "account"))]
14161 #[strum(props(
14162 svg = "<path d=\"m2 8 2 2-2 2 2 2-2 2\"></path><path d=\"m22 8-2 2 2 2-2 2 2 2\"></path><path d=\"M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2\"></path><path d=\"M16 10.34V6c0-.55-.45-1-1-1h-4.34\"></path><line x1=\"2\" x2=\"22\" y1=\"2\" y2=\"22\"></line>",
14163 categories = "devices,connectivity,account",
14164 tags = "smartphone,notification,rumble,haptic feedback,notifications,screen",
14165 contributors = "lscheibel,ericfennis"
14166 ))]
14167 VibrateOff,
14168 #[cfg(any(
14169 feature = "devices",
14170 feature = "connectivity",
14171 feature = "account",
14172 feature = "notifications"
14173 ))]
14174 #[strum(props(
14175 svg = "<path d=\"m2 8 2 2-2 2 2 2-2 2\"></path><path d=\"m22 8-2 2 2 2-2 2 2 2\"></path><rect height=\"14\" rx=\"1\" width=\"8\" x=\"8\" y=\"5\"></rect>",
14176 categories = "devices,connectivity,account,notifications",
14177 tags = "smartphone,notification,rumble,haptic feedback,screen",
14178 contributors = "ericfennis"
14179 ))]
14180 Vibrate,
14181 #[cfg(any(
14182 feature = "devices",
14183 feature = "communication",
14184 feature = "connectivity",
14185 feature = "photography"
14186 ))]
14187 #[strum(props(
14188 svg = "<path d=\"M10.66 6H14a2 2 0 0 1 2 2v2.5l5.24-3.06A.5.5 0 0 1 22 7.87v8.19\"></path><path d=\"M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2\"></path><path d=\"m2 2 20 20\"></path>",
14189 categories = "devices,communication,connectivity,photography",
14190 tags = "camera,movie,film",
14191 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,jguddas"
14192 ))]
14193 VideoOff,
14194 #[cfg(any(
14195 feature = "devices",
14196 feature = "communication",
14197 feature = "connectivity",
14198 feature = "photography"
14199 ))]
14200 #[strum(props(
14201 svg = "<path d=\"m16 13 5.22 3.48a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5\"></path><rect height=\"12\" rx=\"2\" width=\"14\" x=\"2\" y=\"6\"></rect>",
14202 categories = "devices,communication,connectivity,photography",
14203 tags = "camera,movie,film,recording,motion picture,camcorder,reel",
14204 contributors = "colebemis,karsa-mistmere,ericfennis,jguddas"
14205 ))]
14206 Video,
14207 #[cfg(any(
14208 feature = "devices",
14209 feature = "communication",
14210 feature = "connectivity",
14211 feature = "photography",
14212 feature = "files"
14213 ))]
14214 #[strum(props(
14215 svg = "<rect height=\"16\" rx=\"2\" width=\"20\" x=\"2\" y=\"4\"></rect><path d=\"M2 8h20\"></path><circle cx=\"8\" cy=\"14\" r=\"2\"></circle><path d=\"M8 12h8\"></path><circle cx=\"16\" cy=\"14\" r=\"2\"></circle>",
14216 categories = "devices,communication,connectivity,photography,files",
14217 tags = "vhs,movie,film,recording,motion picture,showreel,cassette",
14218 contributors = "danielbayley"
14219 ))]
14220 Videotape,
14221 #[cfg(any(feature = "design", feature = "photography"))]
14222 #[strum(props(
14223 svg = "<path d=\"M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2\"></path><path d=\"M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2\"></path><circle cx=\"12\" cy=\"12\" r=\"1\"></circle><path d=\"M18.94 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.88 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.88 0\"></path>",
14224 categories = "design,photography",
14225 tags = "eye,look",
14226 contributors = "zenoamaro,ericfennis,csandman,karsa-mistmere"
14227 ))]
14228 View,
14229 #[cfg(any(feature = "connectivity", feature = "devices", feature = "social"))]
14230 #[strum(props(
14231 svg = "<circle cx=\"6\" cy=\"12\" r=\"4\"></circle><circle cx=\"18\" cy=\"12\" r=\"4\"></circle><line x1=\"6\" x2=\"18\" y1=\"16\" y2=\"16\"></line>",
14232 categories = "connectivity,devices,social",
14233 tags = "phone,cassette,tape,reel,recording,audio",
14234 contributors = "colebemis,karsa-mistmere,ericfennis"
14235 ))]
14236 Voicemail,
14237 #[cfg(any(feature = "sports", feature = "gaming", feature = "travel"))]
14238 #[strum(props(
14239 svg = "<path d=\"M11 7a16 16 20 0 1 10.98 4.36\"></path><path d=\"M12 12a13 13 0 0 1-8.66 5\"></path><path d=\"M16.83 13.63a16 16 0 0 1-9.26 7.32\"></path><path d=\"M20.66 17A13 13 0 0 0 12 12a13 13 0 0 1 0-10\"></path><path d=\"M8.17 15.36a16 16 0 0 1-1.71-11.69\"></path><circle cx=\"12\" cy=\"12\" r=\"10\"></circle>",
14240 categories = "sports,gaming,travel",
14241 tags = "beach,sand,net,holiday,vacation,summer,soccer,football,futbol,kick,pitch,goal,score,bounce,leather,wool,yarn,knitting,sewing,thread,embroidery,textile",
14242 contributors = "danielbayley,jguddas,jamiemlaw"
14243 ))]
14244 Volleyball,
14245 #[cfg(any(
14246 feature = "connectivity",
14247 feature = "communication",
14248 feature = "multimedia"
14249 ))]
14250 #[strum(props(
14251 svg = "<path d=\"M11 4.70a.705.70 0 0 0-1.20-.498L6.41 7.58A1.4 1.4 0 0 1 5.41 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.41a1.4 1.4 0 0 1 .997.41l3.38 3.38A.705.70 0 0 0 11 19.29z\"></path><path d=\"M16 9a5 5 0 0 1 0 6\"></path>",
14252 categories = "connectivity,communication,multimedia",
14253 tags = "music,sound,speaker",
14254 contributors = "colebemis,csandman,ericfennis"
14255 ))]
14256 Volume1,
14257 #[cfg(any(
14258 feature = "connectivity",
14259 feature = "communication",
14260 feature = "multimedia"
14261 ))]
14262 #[strum(props(
14263 svg = "<path d=\"M11 4.70a.705.70 0 0 0-1.20-.498L6.41 7.58A1.4 1.4 0 0 1 5.41 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.41a1.4 1.4 0 0 1 .997.41l3.38 3.38A.705.70 0 0 0 11 19.29z\"></path><path d=\"M16 9a5 5 0 0 1 0 6\"></path><path d=\"M19.36 18.36a9 9 0 0 0 0-12.72\"></path>",
14264 categories = "connectivity,communication,multimedia",
14265 tags = "music,sound,speaker",
14266 contributors = "colebemis,csandman,ericfennis,karsa-mistmere"
14267 ))]
14268 Volume2,
14269 #[cfg(any(
14270 feature = "connectivity",
14271 feature = "communication",
14272 feature = "multimedia"
14273 ))]
14274 #[strum(props(
14275 svg = "<path d=\"M16 9a5 5 0 0 1 .95 2.29\"></path><path d=\"M19.36 5.63a9 9 0 0 1 1.88 9.96\"></path><path d=\"m2 2 20 20\"></path><path d=\"m7 7-.587.58A1.4 1.4 0 0 1 5.41 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.41a1.4 1.4 0 0 1 .997.41l3.38 3.38A.705.70 0 0 0 11 19.29V11\"></path><path d=\"M9.82 4.17A.686.68 0 0 1 11 4.65v.686\"></path>",
14276 categories = "connectivity,communication,multimedia",
14277 tags = "music,sound,mute,speaker",
14278 contributors = "karsa-mistmere,colebemis,ericfennis"
14279 ))]
14280 VolumeOff,
14281 #[cfg(any(
14282 feature = "connectivity",
14283 feature = "communication",
14284 feature = "multimedia"
14285 ))]
14286 #[strum(props(
14287 svg = "<path d=\"M11 4.70a.705.70 0 0 0-1.20-.498L6.41 7.58A1.4 1.4 0 0 1 5.41 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.41a1.4 1.4 0 0 1 .997.41l3.38 3.38A.705.70 0 0 0 11 19.29z\"></path><line x1=\"22\" x2=\"16\" y1=\"9\" y2=\"15\"></line><line x1=\"16\" x2=\"22\" y1=\"9\" y2=\"15\"></line>",
14288 categories = "connectivity,communication,multimedia",
14289 tags = "music,sound,mute,speaker",
14290 contributors = "colebemis,karsa-mistmere,ericfennis"
14291 ))]
14292 VolumeX,
14293 #[cfg(any(
14294 feature = "connectivity",
14295 feature = "communication",
14296 feature = "multimedia"
14297 ))]
14298 #[strum(props(
14299 svg = "<path d=\"M11 4.70a.705.70 0 0 0-1.20-.498L6.41 7.58A1.4 1.4 0 0 1 5.41 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.41a1.4 1.4 0 0 1 .997.41l3.38 3.38A.705.70 0 0 0 11 19.29z\"></path>",
14300 categories = "connectivity,communication,multimedia",
14301 tags = "music,sound,mute,speaker",
14302 contributors = "colebemis"
14303 ))]
14304 Volume,
14305 #[cfg(feature = "social")]
14306 #[strum(props(
14307 svg = "<path d=\"m9 12 2 2 4-4\"></path><path d=\"M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z\"></path><path d=\"M22 19H2\"></path>",
14308 categories = "social",
14309 tags = "vote,poll,ballot,political,social,check,tick",
14310 contributors = "ptrgast,karsa-mistmere"
14311 ))]
14312 Vote,
14313 #[cfg(any(feature = "account", feature = "finance"))]
14314 #[strum(props(
14315 svg = "<path d=\"M3 11h3.75a2 2 0 0 1 1.6.8l.45.6a4 4 0 0 0 6.4 0l.45-.6a2 2 0 0 1 1.6-.8H21\"></path><path d=\"M3 7h18\"></path><rect height=\"18\" rx=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect>",
14316 categories = "account,finance",
14317 tags = "wallet,cards,banking,cash,debit,transport,money,finance,pocket,credit,purchase,payment,shopping,retail,consumer,cc",
14318 contributors = "danielbayley,jguddas,tallneil,karsa-mistmere"
14319 ))]
14320 WalletCards,
14321 #[cfg(any(feature = "account", feature = "finance"))]
14322 #[strum(props(
14323 svg = "<path d=\"M17 14h.01\"></path><path d=\"M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14\"></path>",
14324 categories = "account,finance",
14325 tags = "finance,pocket",
14326 contributors = "danielbayley"
14327 ))]
14328 WalletMinimal,
14329 #[cfg(any(feature = "account", feature = "finance"))]
14330 #[strum(props(
14331 svg = "<path d=\"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1\"></path><path d=\"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4\"></path>",
14332 categories = "account,finance",
14333 tags = "money,finance,pocket",
14334 contributors = "mittalyashu,ahtohbi4,ericfennis"
14335 ))]
14336 Wallet,
14337 #[cfg(any(feature = "account", feature = "devices"))]
14338 #[strum(props(
14339 svg = "<path d=\"M12 17v4\"></path><path d=\"M8 21h8\"></path><path d=\"m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15\"></path><circle cx=\"8\" cy=\"9\" r=\"2\"></circle><rect height=\"14\" rx=\"2\" width=\"20\" x=\"2\" y=\"3\"></rect>",
14340 categories = "account,devices",
14341 tags = "background,texture,image,art,design,visual,decor,pattern,screen,cover,lock screen",
14342 contributors = "karsa-mistmere,ericfennis,jguddas"
14343 ))]
14344 Wallpaper,
14345 #[cfg(any(
14346 feature = "design",
14347 feature = "gaming",
14348 feature = "cursors",
14349 feature = "photography"
14350 ))]
14351 #[strum(props(
14352 svg = "<path d=\"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72\"></path><path d=\"m14 7 3 3\"></path><path d=\"M5 6v4\"></path><path d=\"M19 14v4\"></path><path d=\"M10 2v2\"></path><path d=\"M7 8H3\"></path><path d=\"M21 16h-4\"></path><path d=\"M11 3H9\"></path>",
14353 categories = "design,gaming,cursors,photography",
14354 tags = "magic,wizard,magician",
14355 contributors = "karsa-mistmere"
14356 ))]
14357 WandSparkles,
14358 #[cfg(any(
14359 feature = "design",
14360 feature = "gaming",
14361 feature = "cursors",
14362 feature = "photography"
14363 ))]
14364 #[strum(props(
14365 svg = "<path d=\"M15 4V2\"></path><path d=\"M15 16v-2\"></path><path d=\"M8 9h2\"></path><path d=\"M20 9h2\"></path><path d=\"M17.8 11.8 19 13\"></path><path d=\"M15 9h.01\"></path><path d=\"M17.8 6.2 19 5\"></path><path d=\"m3 21 9-9\"></path><path d=\"M12.2 6.2 11 5\"></path>",
14366 categories = "design,gaming,cursors,photography",
14367 tags = "magic,selection",
14368 contributors = "mittalyashu,ericfennis"
14369 ))]
14370 Wand,
14371 #[cfg(any(feature = "buildings", feature = "navigation"))]
14372 #[strum(props(
14373 svg = "<path d=\"M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11\"></path><path d=\"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.13-1.80l7.95-3.97a2 2 0 0 1 1.83 0l7.94 3.97A2 2 0 0 1 22 8z\"></path><path d=\"M6 13h12\"></path><path d=\"M6 17h12\"></path>",
14374 categories = "buildings,navigation",
14375 tags = "storage,storehouse,depot,depository,repository,stockroom,logistics,building",
14376 contributors = "karsa-mistmere"
14377 ))]
14378 Warehouse,
14379 #[cfg(any(feature = "home", feature = "devices", feature = "travel"))]
14380 #[strum(props(
14381 svg = "<path d=\"M3 6h3\"></path><path d=\"M17 6h.01\"></path><rect height=\"20\" rx=\"2\" width=\"18\" x=\"3\" y=\"2\"></rect><circle cx=\"12\" cy=\"13\" r=\"5\"></circle><path d=\"M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5\"></path>",
14382 categories = "home,devices,travel",
14383 tags = "tumble dryer,amenities,electronics,cycle,clothes,rinse,spin,drum",
14384 contributors = "danielbayley"
14385 ))]
14386 WashingMachine,
14387 #[cfg(feature = "time")]
14388 #[strum(props(
14389 svg = "<path d=\"M12 10v2.2l1.6 1\"></path><path d=\"m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05\"></path><path d=\"m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05\"></path><circle cx=\"12\" cy=\"12\" r=\"6\"></circle>",
14390 categories = "time",
14391 tags = "clock,time",
14392 contributors = "colebemis,csandman,ericfennis,karsa-mistmere,jamiemlaw"
14393 ))]
14394 Watch,
14395 #[cfg(any(feature = "weather", feature = "sustainability"))]
14396 #[strum(props(
14397 svg = "<path d=\"M12 10L12 2\"></path><path d=\"M16 6L12 10L8 6\"></path><path d=\"M2 15C2.6 15.5 3.2 16 4.5 16C7 16 7 14 9.5 14C12.1 14 11.9 16 14.5 16C17 16 17 14 19.5 14C20.8 14 21.4 14.5 22 15\"></path><path d=\"M2 21C2.6 21.5 3.2 22 4.5 22C7 22 7 20 9.5 20C12.1 20 11.9 22 14.5 22C17 22 17 20 19.5 20C20.8 20 21.4 20.5 22 21\"></path>",
14398 categories = "weather,sustainability",
14399 tags = "water,sea,level,sound,hertz,wavelength,vibrate,low,tide,ocean,rising,down,falling",
14400 contributors = "karsa-mistmere,ericfennis,danielbayley"
14401 ))]
14402 WavesArrowDown,
14403 #[cfg(any(feature = "weather", feature = "sustainability"))]
14404 #[strum(props(
14405 svg = "<path d=\"M12 2v8\"></path><path d=\"M2 15c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1\"></path><path d=\"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1\"></path><path d=\"m8 6 4-4 4 4\"></path>",
14406 categories = "weather,sustainability",
14407 tags = "water,sea,level,sound,hertz,wavelength,vibrate,high,tide,ocean,rising",
14408 contributors = "karsa-mistmere,ericfennis,danielbayley"
14409 ))]
14410 WavesArrowUp,
14411 #[cfg(any(
14412 feature = "weather",
14413 feature = "navigation",
14414 feature = "multimedia",
14415 feature = "sustainability"
14416 ))]
14417 #[strum(props(
14418 svg = "<path d=\"M2 12q2.5 2 5 0t5 0 5 0 5 0\"></path><path d=\"M2 19q2.5 2 5 0t5 0 5 0 5 0\"></path><path d=\"M2 5q2.5 2 5 0t5 0 5 0 5 0\"></path>",
14419 categories = "weather,navigation,multimedia,sustainability",
14420 tags = "water,sea,sound,hertz,wavelength,vibrate,ocean,swimming,frequency",
14421 contributors = "karsa-mistmere,ericfennis,jamiemlaw"
14422 ))]
14423 WavesHorizontal,
14424 #[cfg(any(feature = "sports", feature = "home"))]
14425 #[strum(props(
14426 svg = "<path d=\"M19 5a2 2 0 0 0-2 2v11\"></path><path d=\"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1\"></path><path d=\"M7 13h10\"></path><path d=\"M7 9h10\"></path><path d=\"M9 5a2 2 0 0 0-2 2v11\"></path>",
14427 categories = "sports,home",
14428 tags = "swimming,water,pool,lifeguard,ocean,🌊,🏊♂️,🏊♀️,🏊,🥽",
14429 contributors = "karsa-mistmere"
14430 ))]
14431 WavesLadder,
14432 #[cfg(any(feature = "weather", feature = "sustainability"))]
14433 #[strum(props(
14434 svg = "<path d=\"M12 2q2 2.5 0 5t0 5 0 5 0 5\"></path><path d=\"M19 2q2 2.5 0 5t0 5 0 5 0 5\"></path><path d=\"M5 2q2 2.5 0 5t0 5 0 5 0 5\"></path>",
14435 categories = "weather,sustainability",
14436 tags = "steam,warmth,temperature,burn,hot,boiling,heat,smoke,vapor,smell,aroma,sauna",
14437 contributors = "karsa-mistmere,ericfennis,jamiemlaw"
14438 ))]
14439 WavesVertical,
14440 #[cfg(any(
14441 feature = "security",
14442 feature = "account",
14443 feature = "navigation",
14444 feature = "development",
14445 feature = "social"
14446 ))]
14447 #[strum(props(
14448 svg = "<path d=\"m10.58 5.41-5.17 5.17\"></path><path d=\"m18.58 13.41-5.17 5.17\"></path><path d=\"M6 12h12\"></path><circle cx=\"12\" cy=\"20\" r=\"2\"></circle><circle cx=\"12\" cy=\"4\" r=\"2\"></circle><circle cx=\"20\" cy=\"12\" r=\"2\"></circle><circle cx=\"4\" cy=\"12\" r=\"2\"></circle>",
14449 categories = "security,account,navigation,development,social",
14450 tags = "indirection,vpn,virtual private network,proxy,connections,bounce,reroute,path,journey,planner,stops,stations,shared,spread,viral",
14451 contributors = "danielbayley,karsa-mistmere"
14452 ))]
14453 Waypoints,
14454 #[cfg(any(
14455 feature = "connectivity",
14456 feature = "devices",
14457 feature = "communication"
14458 ))]
14459 #[strum(props(
14460 svg = "<path d=\"M12 22v-4\"></path><path d=\"M12.75 7.09a3 3 0 0 1 2.15 2.15\"></path><path d=\"M12.86 12.87a3 3 0 0 1-3.73-3.73\"></path><path d=\"M16.56 16.57A8 8 0 0 1 5.43 5.43\"></path><path d=\"m2 2 20 20\"></path><path d=\"M7 22h10\"></path><path d=\"M8.47 2.81a8 8 0 0 1 10.70 10.70\"></path>",
14461 categories = "connectivity,devices,communication",
14462 tags = "camera,security",
14463 contributors = "mittalyashu,ericfennis,karsa-mistmere,jordan-burnett"
14464 ))]
14465 WebcamOff,
14466 #[cfg(any(
14467 feature = "connectivity",
14468 feature = "devices",
14469 feature = "communication"
14470 ))]
14471 #[strum(props(
14472 svg = "<circle cx=\"12\" cy=\"10\" r=\"8\"></circle><circle cx=\"12\" cy=\"10\" r=\"3\"></circle><path d=\"M7 22h10\"></path><path d=\"M12 22v-4\"></path>",
14473 categories = "connectivity,devices,communication",
14474 tags = "camera,security",
14475 contributors = "mittalyashu,ericfennis,karsa-mistmere"
14476 ))]
14477 Webcam,
14478 #[cfg(any(feature = "development", feature = "social", feature = "account"))]
14479 #[strum(props(
14480 svg = "<path d=\"M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15\"></path><path d=\"M9 3.4a4 4 0 0 1 6.52.66\"></path><path d=\"m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05\"></path><path d=\"M20.3 20.3a4 4 0 0 1-2.3.7\"></path><path d=\"M18.6 13a4 4 0 0 1 3.35 3.41\"></path><path d=\"m12 6 .6 1\"></path><path d=\"m2 2 20 20\"></path>",
14481 categories = "development,social,account",
14482 tags = "push api,interface,callback",
14483 contributors = "karsa-mistmere,jguddas"
14484 ))]
14485 WebhookOff,
14486 #[cfg(any(feature = "development", feature = "social", feature = "account"))]
14487 #[strum(props(
14488 svg = "<path d=\"M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2\"></path><path d=\"m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06\"></path><path d=\"m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8\"></path>",
14489 categories = "development,social,account",
14490 tags = "push api,interface,callback",
14491 contributors = "karsa-mistmere"
14492 ))]
14493 Webhook,
14494 #[cfg(feature = "math")]
14495 #[strum(props(
14496 svg = "<path d=\"M6.5 8a2 2 0 0 0-1.90 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.92-2.54L19.4 9.5A2 2 0 0 0 17.48 8z\"></path><path d=\"M7.99 15a2.5 2.5 0 0 1 4 0 2.5 2.5 0 0 0 4 0\"></path><circle cx=\"12\" cy=\"5\" r=\"3\"></circle>",
14497 categories = "math",
14498 tags = "measure,scale,estimate,load,balance,size,measurement,quantity,mass",
14499 contributors = "nathan-de-pachtere"
14500 ))]
14501 WeightTilde,
14502 #[cfg(feature = "math")]
14503 #[strum(props(
14504 svg = "<circle cx=\"12\" cy=\"5\" r=\"3\"></circle><path d=\"M6.5 8a2 2 0 0 0-1.90 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.92-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z\"></path>",
14505 categories = "math",
14506 tags = "mass,heavy,lead,metal,measure,geometry,scales,balance",
14507 contributors = "danielbayley,karsa-mistmere"
14508 ))]
14509 Weight,
14510 #[cfg(feature = "food_beverage")]
14511 #[strum(props(
14512 svg = "<path d=\"m2 22 10-10\"></path><path d=\"m16 8-1.17 1.17\"></path><path d=\"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z\"></path><path d=\"m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97\"></path><path d=\"M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62\"></path><path d=\"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z\"></path><path d=\"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z\"></path><path d=\"m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98\"></path><path d=\"M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28\"></path><line x1=\"2\" x2=\"22\" y1=\"2\" y2=\"22\"></line>",
14513 categories = "food-beverage",
14514 tags = "corn,cereal,grain,gluten free,allergy,intolerance,diet",
14515 contributors = "karsa-mistmere,ericfennis"
14516 ))]
14517 WheatOff,
14518 #[cfg(feature = "food_beverage")]
14519 #[strum(props(
14520 svg = "<path d=\"M2 22 16 8\"></path><path d=\"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z\"></path><path d=\"M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z\"></path><path d=\"M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z\"></path><path d=\"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z\"></path><path d=\"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z\"></path><path d=\"M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z\"></path><path d=\"M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z\"></path>",
14521 categories = "food-beverage",
14522 tags = "corn,cereal,grain,gluten",
14523 contributors = "karsa-mistmere"
14524 ))]
14525 Wheat,
14526 #[cfg(feature = "text")]
14527 #[strum(props(
14528 svg = "<circle cx=\"7\" cy=\"12\" r=\"3\"></circle><path d=\"M10 9v6\"></path><circle cx=\"17\" cy=\"12\" r=\"3\"></circle><path d=\"M14 7v8\"></path><path d=\"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1\"></path>",
14529 categories = "text",
14530 tags = "text,selection,letters,characters,font,typography",
14531 contributors = "danielbayley"
14532 ))]
14533 WholeWord,
14534 #[cfg(any(feature = "connectivity", feature = "devices", feature = "files"))]
14535 #[strum(props(
14536 svg = "<path d=\"m14.30 19.53.92-.382\"></path><path d=\"m15.22 16.85-.923-.383\"></path><path d=\"m16.85 15.22-.383-.923\"></path><path d=\"m16.85 20.77-.383.92\"></path><path d=\"m19.14 15.22.383-.923\"></path><path d=\"m19.53 21.69-.382-.924\"></path><path d=\"M2 7.82a15 15 0 0 1 20 0\"></path><path d=\"m20.77 16.85.924-.383\"></path><path d=\"m20.77 19.14.924.38\"></path><path d=\"M5 11.85a10 10 0 0 1 11.5-1.78\"></path><path d=\"M8.5 15.42a5 5 0 0 1 2.41-1.31\"></path><circle cx=\"18\" cy=\"18\" r=\"3\"></circle>",
14537 categories = "connectivity,devices,files",
14538 tags = "connection,signal,wireless,directory,settings,control,preferences,cog,edit,gear",
14539 contributors = "colebemis,ericfennis,jguddas,karsa-mistmere,luisdlopera"
14540 ))]
14541 WifiCog,
14542 #[cfg(any(feature = "connectivity", feature = "devices"))]
14543 #[strum(props(
14544 svg = "<path d=\"M12 20h.01\"></path><path d=\"M5 12.85a10 10 0 0 1 14 0\"></path><path d=\"M8.5 16.42a5 5 0 0 1 7 0\"></path>",
14545 categories = "connectivity,devices",
14546 tags = "connection,signal,wireless",
14547 contributors = "colebemis,ericfennis,jguddas,VirtCode"
14548 ))]
14549 WifiHigh,
14550 #[cfg(any(feature = "connectivity", feature = "devices"))]
14551 #[strum(props(
14552 svg = "<path d=\"M12 20h.01\"></path><path d=\"M8.5 16.42a5 5 0 0 1 7 0\"></path>",
14553 categories = "connectivity,devices",
14554 tags = "connection,signal,wireless",
14555 contributors = "colebemis,ericfennis,jguddas,VirtCode"
14556 ))]
14557 WifiLow,
14558 #[cfg(any(feature = "connectivity", feature = "devices"))]
14559 #[strum(props(
14560 svg = "<path d=\"M12 20h.01\"></path><path d=\"M8.5 16.42a5 5 0 0 1 7 0\"></path><path d=\"M5 12.85a10 10 0 0 1 5.17-2.69\"></path><path d=\"M19 12.85a10 10 0 0 0-2.00-1.52\"></path><path d=\"M2 8.82a15 15 0 0 1 4.17-2.64\"></path><path d=\"M22 8.82a15 15 0 0 0-11.28-3.76\"></path><path d=\"m2 2 20 20\"></path>",
14561 categories = "connectivity,devices",
14562 tags = "disabled",
14563 contributors = "colebemis,ericfennis"
14564 ))]
14565 WifiOff,
14566 #[cfg(any(feature = "connectivity", feature = "devices"))]
14567 #[strum(props(
14568 svg = "<path d=\"M2 8.82a15 15 0 0 1 20 0\"></path><path d=\"M21.37 16.62a1 1 0 0 0-3.00-3.00l-4.01 4.01a2 2 0 0 0-.506.85l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z\"></path><path d=\"M5 12.85a10 10 0 0 1 10.5-2.22\"></path><path d=\"M8.5 16.42a5 5 0 0 1 3-1.40\"></path>",
14569 categories = "connectivity,devices",
14570 tags = "edit,wifi,pen,change,network",
14571 contributors = "karsa-mistmere,jguddas,danielbayley,luisdlopera"
14572 ))]
14573 WifiPen,
14574 #[cfg(any(feature = "connectivity", feature = "devices"))]
14575 #[strum(props(
14576 svg = "<path d=\"M11.96 10.10v4L13.5 12.5a5 5 0 0 1 8 1.5\"></path><path d=\"M11.96 14.10h4\"></path><path d=\"M17.96 18.10h4L20.43 19.71a5 5 0 0 1-8-1.5\"></path><path d=\"M2 8.82a15 15 0 0 1 20 0\"></path><path d=\"M21.96 22.10v-4\"></path><path d=\"M5 12.86a10 10 0 0 1 3-2.03\"></path><path d=\"M8.5 16.42h.01\"></path>",
14577 categories = "connectivity,devices",
14578 tags = "connection,signal,wireless,synchronize,reconnect,reset,restart",
14579 contributors = "colebemis,ericfennis,jguddas,danielbayley,luisdlopera"
14580 ))]
14581 WifiSync,
14582 #[cfg(any(feature = "connectivity", feature = "devices"))]
14583 #[strum(props(
14584 svg = "<path d=\"M12 20h.01\"></path>",
14585 categories = "connectivity,devices",
14586 tags = "connection,signal,wireless",
14587 contributors = "colebemis,ericfennis,jguddas,VirtCode"
14588 ))]
14589 WifiZero,
14590 #[cfg(any(feature = "connectivity", feature = "devices"))]
14591 #[strum(props(
14592 svg = "<path d=\"M12 20h.01\"></path><path d=\"M2 8.82a15 15 0 0 1 20 0\"></path><path d=\"M5 12.85a10 10 0 0 1 14 0\"></path><path d=\"M8.5 16.42a5 5 0 0 1 7 0\"></path>",
14593 categories = "connectivity,devices",
14594 tags = "connection,signal,wireless",
14595 contributors = "colebemis,ericfennis,jguddas"
14596 ))]
14597 Wifi,
14598 #[cfg(any(feature = "weather", feature = "sustainability"))]
14599 #[strum(props(
14600 svg = "<path d=\"M10 2v8\"></path><path d=\"M12.8 21.6A2 2 0 1 0 14 18H2\"></path><path d=\"M17.5 10a2.5 2.5 0 1 1 2 4H2\"></path><path d=\"m6 6 4 4 4-4\"></path>",
14601 categories = "weather,sustainability",
14602 tags = "weather,air,pressure,blow",
14603 contributors = "colebemis,csandman,ericfennis,jamiemlaw"
14604 ))]
14605 WindArrowDown,
14606 #[cfg(any(feature = "weather", feature = "sustainability"))]
14607 #[strum(props(
14608 svg = "<path d=\"M12.8 19.6A2 2 0 1 0 14 16H2\"></path><path d=\"M17.5 8a2.5 2.5 0 1 1 2 4H2\"></path><path d=\"M9.8 4.4A2 2 0 1 1 11 8H2\"></path>",
14609 categories = "weather,sustainability",
14610 tags = "weather,air,blow",
14611 contributors = "colebemis,csandman,ericfennis"
14612 ))]
14613 Wind,
14614 #[cfg(feature = "food_beverage")]
14615 #[strum(props(
14616 svg = "<path d=\"M8 22h8\"></path><path d=\"M7 10h3m7 0h-1.34\"></path><path d=\"M12 15v7\"></path><path d=\"M7.30 7.30A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.39 4.39M8.63 2.98C8.75 2.66 8.87 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.80-.145 1.19\"></path><line x1=\"2\" x2=\"22\" y1=\"2\" y2=\"22\"></line>",
14617 categories = "food-beverage",
14618 tags = "alcohol,beverage,drink,glass,alcohol free,abstinence,abstaining,teetotalism,allergy,intolerance",
14619 contributors = "karsa-mistmere,ericfennis"
14620 ))]
14621 WineOff,
14622 #[cfg(feature = "food_beverage")]
14623 #[strum(props(
14624 svg = "<path d=\"M8 22h8\"></path><path d=\"M7 10h10\"></path><path d=\"M12 15v7\"></path><path d=\"M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z\"></path>",
14625 categories = "food-beverage",
14626 tags = "alcohol,beverage,bar,drink,glass,sommelier,vineyard,winery",
14627 contributors = "karsa-mistmere,ericfennis"
14628 ))]
14629 Wine,
14630 #[cfg(feature = "development")]
14631 #[strum(props(
14632 svg = "<rect height=\"8\" rx=\"2\" width=\"8\" x=\"3\" y=\"3\"></rect><path d=\"M7 11v4a2 2 0 0 0 2 2h4\"></path><rect height=\"8\" rx=\"2\" width=\"8\" x=\"13\" y=\"13\"></rect>",
14633 categories = "development",
14634 tags = "action,continuous integration,ci,automation,devops,network,node,connection",
14635 contributors = "danielbayley,jguddas"
14636 ))]
14637 Workflow,
14638 #[cfg(any(feature = "animals", feature = "security"))]
14639 #[strum(props(
14640 svg = "<path d=\"m19 12-1.5 3\"></path><path d=\"M19.63 18.81 22 20\"></path><path d=\"M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z\"></path>",
14641 categories = "animals,security",
14642 tags = "invertebrate,grub,larva,snake,crawl,wiggle,slither,pest control,computer virus,malware",
14643 contributors = "karsa-mistmere"
14644 ))]
14645 Worm,
14646 #[cfg(any(feature = "account", feature = "development", feature = "tools"))]
14647 #[strum(props(
14648 svg = "<path d=\"M10.74 5.09a6 6 0 0 1 6.84-2.88c.438.12.54.66.219.98L14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.10-3.10c.32-.322.86-.22.98.218a6 6 0 0 1-2.88 6.84\"></path><path d=\"m13.5 13.5-7.88 7.88a1 1 0 0 1-2.99-3l7.88-7.88\"></path><path d=\"m2 2 20 20\"></path>",
14649 categories = "account,development,tools",
14650 tags = "account,settings,spanner,diy,toolbox,build,construction,off,service,maintenance,disabled",
14651 contributors = "Andreto,ericfennis,csandman,karsa-mistmere,nilsjonsson"
14652 ))]
14653 WrenchOff,
14654 #[cfg(any(feature = "account", feature = "development", feature = "tools"))]
14655 #[strum(props(
14656 svg = "<path d=\"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.10-3.10c.32-.322.86-.22.98.218a6 6 0 0 1-8.25 7.05l-7.91 7.91a1 1 0 0 1-2.99-3l7.91-7.91a6 6 0 0 1 7.05-8.25c.438.12.54.66.219.98z\"></path>",
14657 categories = "account,development,tools",
14658 tags = "account,settings,spanner,diy,toolbox,build,construction",
14659 contributors = "Andreto,ericfennis,csandman,karsa-mistmere"
14660 ))]
14661 Wrench,
14662 #[cfg(any(feature = "notifications", feature = "math"))]
14663 #[strum(props(
14664 svg = "<path d=\"M18 4H6\"></path><path d=\"M18 8 6 20\"></path><path d=\"m6 8 12 12\"></path>",
14665 categories = "notifications,math",
14666 tags = "line,top,arrow,navigation,up,pointer,direction,vector,symbol,cancel,close,delete,remove,times,clear,math,multiply,multiplication,mean,median,average,x̄",
14667 contributors = "colebemis,ericfennis,jguddas"
14668 ))]
14669 XLineTop,
14670 #[cfg(any(feature = "notifications", feature = "math"))]
14671 #[strum(props(
14672 svg = "<path d=\"M18 6 6 18\"></path><path d=\"m6 6 12 12\"></path>",
14673 categories = "notifications,math",
14674 tags = "cancel,close,cross,delete,ex,remove,times,clear,math,multiply,multiplication",
14675 contributors = "colebemis,ericfennis"
14676 ))]
14677 X,
14678 #[cfg(any(
14679 feature = "connectivity",
14680 feature = "devices",
14681 feature = "photography",
14682 feature = "weather"
14683 ))]
14684 #[strum(props(
14685 svg = "<path d=\"M10.51 4.85 13.12 2.17a.5.5 0 0 1 .86.46l-1.37 4.31\"></path><path d=\"M15.65 10H20a1 1 0 0 1 .78 1.63l-1.72 1.77\"></path><path d=\"M16.27 16.27 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.50-4.64\"></path><path d=\"m2 2 20 20\"></path>",
14686 categories = "connectivity,devices,photography,weather",
14687 tags = "flash,camera,lightning,electricity,energy,power",
14688 contributors = "colebemis,karsa-mistmere,ericfennis"
14689 ))]
14690 ZapOff,
14691 #[cfg(any(
14692 feature = "connectivity",
14693 feature = "devices",
14694 feature = "photography",
14695 feature = "weather"
14696 ))]
14697 #[strum(props(
14698 svg = "<path d=\"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z\"></path>",
14699 categories = "connectivity,devices,photography,weather",
14700 tags = "flash,camera,lightning,electricity,energy,power,quick",
14701 contributors = "colebemis,karsa-mistmere"
14702 ))]
14703 Zap,
14704 #[cfg(any(feature = "social", feature = "emoji"))]
14705 #[strum(props(
14706 svg = "<path d=\"m2 10 2.45-3.68a.7.7 0 0 1 1.10-.013l2.39 3.41a.7.7 0 0 0 1.09-.001l2.40-3.43a.7.7 0 0 1 1.09 0l2.40 3.43a.7.7 0 0 0 1.09 0l2.38-3.41a.7.7 0 0 1 1.10.013L22 10\"></path><path d=\"m2 18.00 2.45-3.68a.7.7 0 0 1 1.10-.013l2.39 3.41a.7.7 0 0 0 1.09 0l2.40-3.43a.7.7 0 0 1 1.09 0l2.40 3.43a.7.7 0 0 0 1.09 0l2.38-3.41a.7.7 0 0 1 1.10.013L22 18.00\"></path>",
14707 categories = "social,emoji",
14708 tags = "water bearer,waves,innovation,air,future,astrology,star sign,horoscope,constellation,celestial",
14709 contributors = "karsa-mistmere"
14710 ))]
14711 ZodiacAquarius,
14712 #[cfg(any(feature = "social", feature = "emoji"))]
14713 #[strum(props(
14714 svg = "<path d=\"M12 7.5a4.5 4.5 0 1 1 5 4.5\"></path><path d=\"M7 12a4.5 4.5 0 1 1 5-4.5V21\"></path>",
14715 categories = "social,emoji",
14716 tags = "ram,horns,fire,energy,initiative,astrology,star sign,horoscope,constellation,celestial",
14717 contributors = "karsa-mistmere"
14718 ))]
14719 ZodiacAries,
14720 #[cfg(any(feature = "social", feature = "emoji"))]
14721 #[strum(props(
14722 svg = "<path d=\"M21 14.5A9 6.5 0 0 1 5.5 19\"></path><path d=\"M3 9.5A9 6.5 0 0 1 18.5 5\"></path><circle cx=\"17.5\" cy=\"14.5\" r=\"3.5\"></circle><circle cx=\"6.5\" cy=\"9.5\" r=\"3.5\"></circle>",
14723 categories = "social,emoji",
14724 tags = "crab,shell,protection,water,intuition,astrology,star sign,horoscope,constellation,celestial",
14725 contributors = "karsa-mistmere,jguddas"
14726 ))]
14727 ZodiacCancer,
14728 #[cfg(any(feature = "social", feature = "emoji"))]
14729 #[strum(props(
14730 svg = "<path d=\"M11 21a3 3 0 0 0 3-3V6.5a1 1 0 0 0-7 0\"></path><path d=\"M7 19V6a3 3 0 0 0-3-3h0\"></path><circle cx=\"17\" cy=\"17\" r=\"3\"></circle>",
14731 categories = "social,emoji",
14732 tags = "goat,mountain,ambition,earth,discipline,astrology,star sign,horoscope,constellation,celestial",
14733 contributors = "karsa-mistmere,jguddas"
14734 ))]
14735 ZodiacCapricorn,
14736 #[cfg(any(feature = "social", feature = "emoji"))]
14737 #[strum(props(
14738 svg = "<path d=\"M16 4.52v14.94\"></path><path d=\"M20 3A17 17 0 0 1 4 3\"></path><path d=\"M4 21a17 17 0 0 1 16 0\"></path><path d=\"M8 4.52v14.94\"></path>",
14739 categories = "social,emoji",
14740 tags = "twins,duality,communication,air,adaptability,astrology,star sign,horoscope,constellation,celestial",
14741 contributors = "karsa-mistmere,jguddas"
14742 ))]
14743 ZodiacGemini,
14744 #[cfg(any(feature = "social", feature = "emoji"))]
14745 #[strum(props(
14746 svg = "<path d=\"M10 16c0-4-3-4.5-3-8a5 5 0 0 1 10 0c0 3.46-3 6.19-3 10a3 3 0 0 0 6 0\"></path><circle cx=\"7\" cy=\"16\" r=\"3\"></circle>",
14747 categories = "social,emoji",
14748 tags = "lion,crown,leadership,fire,confidence,astrology,star sign,horoscope,constellation,celestial",
14749 contributors = "karsa-mistmere"
14750 ))]
14751 ZodiacLeo,
14752 #[cfg(any(feature = "social", feature = "emoji"))]
14753 #[strum(props(
14754 svg = "<path d=\"M3 16h6.85c.162-.012.19-.323.03-.38a6 6 0 1 1 4.21 0c-.153.05-.125.36.038.38H21\"></path><path d=\"M3 20h18\"></path>",
14755 categories = "social,emoji",
14756 tags = "scales,balance,justice,air,harmony,astrology,star sign,horoscope,constellation,celestial",
14757 contributors = "karsa-mistmere,jguddas"
14758 ))]
14759 ZodiacLibra,
14760 #[cfg(any(feature = "social", feature = "emoji"))]
14761 #[strum(props(
14762 svg = "<path d=\"M3 10A6.06 6.06 0 0 1 12 10 A6.06 6.06 0 0 0 21 10\"></path><path d=\"M6 3v12a6 6 0 0 0 12 0V3\"></path>",
14763 categories = "social,emoji",
14764 tags = "serpent,snake holder,healing,knowledge,astronomy,astrology,star sign,horoscope,constellation,celestial",
14765 contributors = "karsa-mistmere"
14766 ))]
14767 ZodiacOphiuchus,
14768 #[cfg(any(feature = "social", feature = "emoji"))]
14769 #[strum(props(
14770 svg = "<path d=\"M19 21a15 15 0 0 1 0-18\"></path><path d=\"M20 12H4\"></path><path d=\"M5 3a15 15 0 0 1 0 18\"></path>",
14771 categories = "social,emoji",
14772 tags = "fish,duality,water,dreams,empathy,astrology,star sign,horoscope,constellation,celestial",
14773 contributors = "karsa-mistmere"
14774 ))]
14775 ZodiacPisces,
14776 #[cfg(any(feature = "social", feature = "emoji"))]
14777 #[strum(props(
14778 svg = "<path d=\"M15 3h6v6\"></path><path d=\"M21 3 3 21\"></path><path d=\"m9 9 6 6\"></path>",
14779 categories = "social,emoji",
14780 tags = "archer,arrow,exploration,fire,philosophy,astrology,star sign,horoscope,constellation,celestial",
14781 contributors = "karsa-mistmere"
14782 ))]
14783 ZodiacSagittarius,
14784 #[cfg(any(feature = "social", feature = "emoji"))]
14785 #[strum(props(
14786 svg = "<path d=\"M10 19V5.5a1 1 0 0 1 5 0V17a2 2 0 0 0 2 2h5l-3-3\"></path><path d=\"m22 19-3 3\"></path><path d=\"M5 19V5.5a1 1 0 0 1 5 0\"></path><path d=\"M5 5.5A2.5 2.5 0 0 0 2.5 3\"></path>",
14787 categories = "social,emoji",
14788 tags = "scorpion,stinger,intensity,water,transformation,astrology,star sign,horoscope,constellation,celestial",
14789 contributors = "karsa-mistmere,jguddas"
14790 ))]
14791 ZodiacScorpio,
14792 #[cfg(any(feature = "social", feature = "emoji"))]
14793 #[strum(props(
14794 svg = "<circle cx=\"12\" cy=\"15\" r=\"6\"></circle><path d=\"M18 3A6 6 0 0 1 6 3\"></path>",
14795 categories = "social,emoji",
14796 tags = "bull,strength,stability,earth,endurance,astrology,star sign,horoscope,constellation,celestial",
14797 contributors = "karsa-mistmere"
14798 ))]
14799 ZodiacTaurus,
14800 #[cfg(any(feature = "social", feature = "emoji"))]
14801 #[strum(props(
14802 svg = "<path d=\"M11 5.5a1 1 0 0 1 5 0V16a5 5 0 0 0 5 5\"></path><path d=\"M16 11.5a1 1 0 0 1 5 0V16a5 5 0 0 1-5 5\"></path><path d=\"M6 19V6a3 3 0 0 0-3-3h0\"></path><path d=\"M6 5.5a1 1 0 0 1 5 0V19\"></path>",
14803 categories = "social,emoji",
14804 tags = "virgin,maiden,harvest,precision,earth,analysis,astrology,star sign,horoscope,constellation,celestial",
14805 contributors = "karsa-mistmere,jguddas"
14806 ))]
14807 ZodiacVirgo,
14808 #[cfg(any(
14809 feature = "accessibility",
14810 feature = "layout",
14811 feature = "design",
14812 feature = "text",
14813 feature = "photography"
14814 ))]
14815 #[strum(props(
14816 svg = "<circle cx=\"11\" cy=\"11\" r=\"8\"></circle><line x1=\"21\" x2=\"16.65\" y1=\"21\" y2=\"16.65\"></line><line x1=\"11\" x2=\"11\" y1=\"8\" y2=\"14\"></line><line x1=\"8\" x2=\"14\" y1=\"11\" y2=\"11\"></line>",
14817 categories = "accessibility,layout,design,text,photography",
14818 tags = "magnifying glass,plus",
14819 contributors = "colebemis,ericfennis"
14820 ))]
14821 ZoomIn,
14822 #[cfg(any(
14823 feature = "accessibility",
14824 feature = "layout",
14825 feature = "design",
14826 feature = "text",
14827 feature = "photography"
14828 ))]
14829 #[strum(props(
14830 svg = "<circle cx=\"11\" cy=\"11\" r=\"8\"></circle><line x1=\"21\" x2=\"16.65\" y1=\"21\" y2=\"16.65\"></line><line x1=\"8\" x2=\"14\" y1=\"11\" y2=\"11\"></line>",
14831 categories = "accessibility,layout,design,text,photography",
14832 tags = "magnifying glass,plus",
14833 contributors = "colebemis,ericfennis"
14834 ))]
14835 ZoomOut,
14836}