icon.py 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645
  1. """Lucide Icon component."""
  2. from reflex.components.component import Component
  3. from reflex.style import Style
  4. from reflex.utils import console, format
  5. from reflex.vars import Var
  6. class LucideIconComponent(Component):
  7. """Lucide Icon Component."""
  8. library = "lucide-react@0.359.0"
  9. class Icon(LucideIconComponent):
  10. """An Icon component."""
  11. tag = "None"
  12. # The size of the icon in pixels.
  13. size: Var[int]
  14. @classmethod
  15. def create(cls, *children, **props) -> Component:
  16. """Initialize the Icon component.
  17. Run some additional checks on Icon component.
  18. Args:
  19. *children: The positional arguments
  20. **props: The keyword arguments
  21. Raises:
  22. AttributeError: The errors tied to bad usage of the Icon component.
  23. ValueError: If the icon tag is invalid.
  24. Returns:
  25. The created component.
  26. """
  27. def map_deprecated_icon_names_05(tag: str) -> str:
  28. new_tag = RENAMED_ICONS_05.get(tag)
  29. if new_tag is not None:
  30. console.deprecate(
  31. feature_name=f"icon {tag}",
  32. reason=f"it was renamed upstream. Use {new_tag} instead.",
  33. deprecation_version="0.4.6",
  34. removal_version="0.5.0",
  35. )
  36. return new_tag
  37. return tag
  38. if children:
  39. if len(children) == 1 and type(children[0]) == str:
  40. props["tag"] = children[0]
  41. children = []
  42. else:
  43. raise AttributeError(
  44. f"Passing multiple children to Icon component is not allowed: remove positional arguments {children[1:]} to fix"
  45. )
  46. if "tag" not in props.keys():
  47. raise AttributeError("Missing 'tag' keyword-argument for Icon")
  48. if (
  49. type(props["tag"]) != str
  50. or map_deprecated_icon_names_05(format.to_snake_case(props["tag"]))
  51. not in LUCIDE_ICON_LIST
  52. ):
  53. raise ValueError(
  54. f"Invalid icon tag: {props['tag']}. Please use one of the following: {', '.join(LUCIDE_ICON_LIST[0:25])}, ..."
  55. "\nSee full list at https://lucide.dev/icons."
  56. )
  57. props["tag"] = format.to_title_case(format.to_snake_case(props["tag"])) + "Icon"
  58. props["alias"] = f"Lucide{props['tag']}"
  59. return super().create(*children, **props)
  60. def _apply_theme(self, theme: Component):
  61. self.style = Style(
  62. {
  63. "color": f"var(--current-color)",
  64. **self.style,
  65. }
  66. )
  67. RENAMED_ICONS_05 = {
  68. "activity_square": "square_activity",
  69. "alert_circle": "circle_alert",
  70. "alert_octagon": "octagon_alert",
  71. "alert_triangle": "triangle_alert",
  72. "arrow_down_circle": "circle_arrow_down",
  73. "arrow_down_left_from_circle": "circle_arrow_out_down_left",
  74. "arrow_down_left_from_square": "square_arrow_out_down_left",
  75. "arrow_down_left_square": "square_arrow_down_left",
  76. "arrow_down_right_from_circle": "circle_arrow_out_down_right",
  77. "arrow_down_right_from_square": "square_arrow_out_down_right",
  78. "arrow_down_right_square": "square_arrow_down_right",
  79. "arrow_down_square": "square_arrow_down",
  80. "arrow_left_circle": "circle_arrow_left",
  81. "arrow_left_square": "square_arrow_left",
  82. "arrow_right_circle": "circle_arrow_right",
  83. "arrow_right_square": "square_arrow_right",
  84. "arrow_up_circle": "circle_arrow_up",
  85. "arrow_up_left_from_circle": "circle_arrow_out_up_left",
  86. "arrow_up_left_from_square": "square_arrow_out_up_left",
  87. "arrow_up_left_square": "square_arrow_up_left",
  88. "arrow_up_right_from_circle": "circle_arrow_out_up_right",
  89. "arrow_up_right_from_square": "square_arrow_out_up_right",
  90. "arrow_up_right_square": "square_arrow_up_right",
  91. "arrow_up_square": "square_arrow_up",
  92. "asterisk_square": "square_asterisk",
  93. "check_circle": "circle_check_big",
  94. "check_circle_2": "circle_check",
  95. "check_square": "square_check_big",
  96. "check_square_2": "square_check",
  97. "chevron_down_circle": "circle_chevron_down",
  98. "chevron_down_square": "square_chevron_down",
  99. "chevron_left_circle": "circle_chevron_left",
  100. "chevron_left_square": "square_chevron_left",
  101. "chevron_right_circle": "circle_chevron_right",
  102. "chevron_right_square": "square_chevron_right",
  103. "chevron_up_circle": "circle_chevron_up",
  104. "chevron_up_square": "square_chevron_up",
  105. "code_2": "code_xml",
  106. "code_square": "square_code",
  107. "contact_2": "contact_round",
  108. "divide_circle": "circle_divide",
  109. "divide_square": "square_divide",
  110. "dot_square": "square_dot",
  111. "download_cloud": "cloud_download",
  112. "equal_square": "square_equal",
  113. "form_input": "rectangle_ellipsis",
  114. "function_square": "square_function",
  115. "gantt_chart_square": "square_gantt_chart",
  116. "gauge_circle": "circle_gauge",
  117. "globe_2": "earth",
  118. "help_circle": "circle_help",
  119. "helping_hand": "hand_helping",
  120. "ice_cream": "ice_cream_cone",
  121. "ice_cream_2": "ice_cream_bowl",
  122. "indent": "indent_increase",
  123. "kanban_square": "square_kanban",
  124. "kanban_square_dashed": "square_dashed_kanban",
  125. "laptop_2": "laptop_minimal",
  126. "library_square": "square_library",
  127. "loader_2": "loader_circle",
  128. "m_square": "square_m",
  129. "menu_square": "square_menu",
  130. "mic_2": "mic_vocal",
  131. "minus_circle": "circle_minus",
  132. "minus_square": "square_minus",
  133. "more_horizontal": "ellipsis",
  134. "more_vertical": "ellipsis_vertical",
  135. "mouse_pointer_square": "square_mouse_pointer",
  136. "mouse_pointer_square_dashed": "square_dashed_mouse_pointer",
  137. "outdent": "indent_decrease",
  138. "palm_tree": "tree_palm",
  139. "parking_circle": "circle_parking",
  140. "parking_circle_off": "circle_parking_off",
  141. "parking_square": "square_parking",
  142. "parking_square_off": "square_parking_off",
  143. "pause_circle": "circle_pause",
  144. "pause_octagon": "octagon_pause",
  145. "percent_circle": "circle_percent",
  146. "percent_diamond": "diamond_percent",
  147. "percent_square": "square_percent",
  148. "pi_square": "square_pi",
  149. "pilcrow_square": "square_pilcrow",
  150. "play_circle": "circle_play",
  151. "play_square": "square_play",
  152. "plus_circle": "circle_plus",
  153. "plus_square": "square_plus",
  154. "power_circle": "circle_power",
  155. "power_square": "square_power",
  156. "school_2": "university",
  157. "scissors_square": "square_scissors",
  158. "scissors_square_dashed_bottom": "square_bottom_dashed_scissors",
  159. "sigma_square": "square_sigma",
  160. "slash_circle": "circle_slash",
  161. "sliders": "sliders_vertical",
  162. "split_square_horizontal": "square_split_horizontal",
  163. "split_square_vertical": "square_split_vertical",
  164. "stop_circle": "circle_stop",
  165. "subtitles": "captions",
  166. "test_tube_2": "test_tube_diagonal",
  167. "unlock": "lock_open",
  168. "unlock_keyhole": "lock_keyhole_open",
  169. "upload_cloud": "cloud_upload",
  170. "wallet_2": "wallet_minimal",
  171. "wand_2": "wand_sparkles",
  172. "x_circle": "circle_x",
  173. "x_octagon": "octagon_x",
  174. "x_square": "square_x",
  175. }
  176. LUCIDE_ICON_LIST = [
  177. "a_arrow_down",
  178. "a_arrow_up",
  179. "a_large_small",
  180. "accessibility",
  181. "activity",
  182. "air_vent",
  183. "airplay",
  184. "alarm_clock",
  185. "alarm_clock_check",
  186. "alarm_clock_minus",
  187. "alarm_clock_off",
  188. "alarm_clock_plus",
  189. "alarm_smoke",
  190. "album",
  191. "align_center",
  192. "align_center_horizontal",
  193. "align_center_vertical",
  194. "align_end_horizontal",
  195. "align_end_vertical",
  196. "align_horizontal_distribute_center",
  197. "align_horizontal_distribute_end",
  198. "align_horizontal_distribute_start",
  199. "align_horizontal_justify_center",
  200. "align_horizontal_justify_end",
  201. "align_horizontal_justify_start",
  202. "align_horizontal_space_around",
  203. "align_horizontal_space_between",
  204. "align_justify",
  205. "align_left",
  206. "align_right",
  207. "align_start_horizontal",
  208. "align_start_vertical",
  209. "align_vertical_distribute_center",
  210. "align_vertical_distribute_end",
  211. "align_vertical_distribute_start",
  212. "align_vertical_justify_center",
  213. "align_vertical_justify_end",
  214. "align_vertical_justify_start",
  215. "align_vertical_space_around",
  216. "align_vertical_space_between",
  217. "ambulance",
  218. "ampersand",
  219. "ampersands",
  220. "anchor",
  221. "angry",
  222. "annoyed",
  223. "antenna",
  224. "anvil",
  225. "aperture",
  226. "app_window",
  227. "app_window_mac",
  228. "apple",
  229. "archive",
  230. "archive_restore",
  231. "archive_x",
  232. "area_chart",
  233. "armchair",
  234. "arrow_big_down",
  235. "arrow_big_down_dash",
  236. "arrow_big_left",
  237. "arrow_big_left_dash",
  238. "arrow_big_right",
  239. "arrow_big_right_dash",
  240. "arrow_big_up",
  241. "arrow_big_up_dash",
  242. "arrow_down",
  243. "arrow_down_0_1",
  244. "arrow_down_1_0",
  245. "arrow_down_a_z",
  246. "arrow_down_from_line",
  247. "arrow_down_left",
  248. "arrow_down_narrow_wide",
  249. "arrow_down_right",
  250. "arrow_down_to_dot",
  251. "arrow_down_to_line",
  252. "arrow_down_up",
  253. "arrow_down_wide_narrow",
  254. "arrow_down_z_a",
  255. "arrow_left",
  256. "arrow_left_from_line",
  257. "arrow_left_right",
  258. "arrow_left_to_line",
  259. "arrow_right",
  260. "arrow_right_from_line",
  261. "arrow_right_left",
  262. "arrow_right_to_line",
  263. "arrow_up",
  264. "arrow_up_0_1",
  265. "arrow_up_1_0",
  266. "arrow_up_a_z",
  267. "arrow_up_down",
  268. "arrow_up_from_dot",
  269. "arrow_up_from_line",
  270. "arrow_up_left",
  271. "arrow_up_narrow_wide",
  272. "arrow_up_right",
  273. "arrow_up_to_line",
  274. "arrow_up_wide_narrow",
  275. "arrow_up_z_a",
  276. "arrows_up_from_line",
  277. "asterisk",
  278. "at_sign",
  279. "atom",
  280. "audio_lines",
  281. "audio_waveform",
  282. "award",
  283. "axe",
  284. "axis_3d",
  285. "baby",
  286. "backpack",
  287. "badge",
  288. "badge_alert",
  289. "badge_cent",
  290. "badge_check",
  291. "badge_dollar_sign",
  292. "badge_euro",
  293. "badge_help",
  294. "badge_indian_rupee",
  295. "badge_info",
  296. "badge_japanese_yen",
  297. "badge_minus",
  298. "badge_percent",
  299. "badge_plus",
  300. "badge_pound_sterling",
  301. "badge_russian_ruble",
  302. "badge_swiss_franc",
  303. "badge_x",
  304. "baggage_claim",
  305. "ban",
  306. "banana",
  307. "banknote",
  308. "bar_chart",
  309. "bar_chart_2",
  310. "bar_chart_3",
  311. "bar_chart_4",
  312. "bar_chart_big",
  313. "bar_chart_horizontal",
  314. "bar_chart_horizontal_big",
  315. "barcode",
  316. "baseline",
  317. "bath",
  318. "battery",
  319. "battery_charging",
  320. "battery_full",
  321. "battery_low",
  322. "battery_medium",
  323. "battery_warning",
  324. "beaker",
  325. "bean",
  326. "bean_off",
  327. "bed",
  328. "bed_double",
  329. "bed_single",
  330. "beef",
  331. "beer",
  332. "beer_off",
  333. "bell",
  334. "bell_dot",
  335. "bell_electric",
  336. "bell_minus",
  337. "bell_off",
  338. "bell_plus",
  339. "bell_ring",
  340. "between_horizontal_end",
  341. "between_horizontal_start",
  342. "between_vertical_end",
  343. "between_vertical_start",
  344. "bike",
  345. "binary",
  346. "biohazard",
  347. "bird",
  348. "bitcoin",
  349. "blend",
  350. "blinds",
  351. "blocks",
  352. "bluetooth",
  353. "bluetooth_connected",
  354. "bluetooth_off",
  355. "bluetooth_searching",
  356. "bold",
  357. "bolt",
  358. "bomb",
  359. "bone",
  360. "book",
  361. "book_a",
  362. "book_audio",
  363. "book_check",
  364. "book_copy",
  365. "book_dashed",
  366. "book_down",
  367. "book_headphones",
  368. "book_heart",
  369. "book_image",
  370. "book_key",
  371. "book_lock",
  372. "book_marked",
  373. "book_minus",
  374. "book_open",
  375. "book_open_check",
  376. "book_open_text",
  377. "book_plus",
  378. "book_text",
  379. "book_type",
  380. "book_up",
  381. "book_up_2",
  382. "book_user",
  383. "book_x",
  384. "bookmark",
  385. "bookmark_check",
  386. "bookmark_minus",
  387. "bookmark_plus",
  388. "bookmark_x",
  389. "boom_box",
  390. "bot",
  391. "bot_message_square",
  392. "box",
  393. "box_select",
  394. "boxes",
  395. "braces",
  396. "brackets",
  397. "brain",
  398. "brain_circuit",
  399. "brain_cog",
  400. "brick_wall",
  401. "briefcase",
  402. "briefcase_business",
  403. "briefcase_medical",
  404. "bring_to_front",
  405. "brush",
  406. "bug",
  407. "bug_off",
  408. "bug_play",
  409. "building",
  410. "building_2",
  411. "bus",
  412. "bus_front",
  413. "cable",
  414. "cable_car",
  415. "cake",
  416. "cake_slice",
  417. "calculator",
  418. "calendar",
  419. "calendar_check",
  420. "calendar_check_2",
  421. "calendar_clock",
  422. "calendar_days",
  423. "calendar_fold",
  424. "calendar_heart",
  425. "calendar_minus",
  426. "calendar_minus_2",
  427. "calendar_off",
  428. "calendar_plus",
  429. "calendar_plus_2",
  430. "calendar_range",
  431. "calendar_search",
  432. "calendar_x",
  433. "calendar_x_2",
  434. "camera",
  435. "camera_off",
  436. "candlestick_chart",
  437. "candy",
  438. "candy_cane",
  439. "candy_off",
  440. "cannabis",
  441. "captions",
  442. "captions_off",
  443. "car",
  444. "car_front",
  445. "car_taxi_front",
  446. "caravan",
  447. "carrot",
  448. "case_lower",
  449. "case_sensitive",
  450. "case_upper",
  451. "cassette_tape",
  452. "cast",
  453. "castle",
  454. "cat",
  455. "cctv",
  456. "check",
  457. "check_check",
  458. "chef_hat",
  459. "cherry",
  460. "chevron_down",
  461. "chevron_first",
  462. "chevron_last",
  463. "chevron_left",
  464. "chevron_right",
  465. "chevron_up",
  466. "chevrons_down",
  467. "chevrons_down_up",
  468. "chevrons_left",
  469. "chevrons_left_right",
  470. "chevrons_right",
  471. "chevrons_right_left",
  472. "chevrons_up",
  473. "chevrons_up_down",
  474. "chrome",
  475. "church",
  476. "cigarette",
  477. "cigarette_off",
  478. "circle",
  479. "circle_alert",
  480. "circle_arrow_down",
  481. "circle_arrow_left",
  482. "circle_arrow_out_down_left",
  483. "circle_arrow_out_down_right",
  484. "circle_arrow_out_up_left",
  485. "circle_arrow_out_up_right",
  486. "circle_arrow_right",
  487. "circle_arrow_up",
  488. "circle_check_big",
  489. "circle_check",
  490. "circle_chevron_down",
  491. "circle_chevron_left",
  492. "circle_chevron_right",
  493. "circle_chevron_up",
  494. "circle_dashed",
  495. "circle_divide",
  496. "circle_dollar_sign",
  497. "circle_dot",
  498. "circle_dot_dashed",
  499. "circle_ellipsis",
  500. "circle_equal",
  501. "circle_fading_plus",
  502. "circle_gauge",
  503. "circle_help",
  504. "circle_minus",
  505. "circle_off",
  506. "circle_parking_off",
  507. "circle_parking",
  508. "circle_pause",
  509. "circle_percent",
  510. "circle_play",
  511. "circle_plus",
  512. "circle_power",
  513. "circle_slash",
  514. "circle_slash_2",
  515. "circle_stop",
  516. "circle_user",
  517. "circle_user_round",
  518. "circle_x",
  519. "circuit_board",
  520. "citrus",
  521. "clapperboard",
  522. "clipboard",
  523. "clipboard_check",
  524. "clipboard_copy",
  525. "clipboard_list",
  526. "clipboard_minus",
  527. "clipboard_paste",
  528. "clipboard_pen",
  529. "clipboard_pen_line",
  530. "clipboard_plus",
  531. "clipboard_type",
  532. "clipboard_x",
  533. "clock",
  534. "clock_1",
  535. "clock_10",
  536. "clock_11",
  537. "clock_12",
  538. "clock_2",
  539. "clock_3",
  540. "clock_4",
  541. "clock_5",
  542. "clock_6",
  543. "clock_7",
  544. "clock_8",
  545. "clock_9",
  546. "cloud",
  547. "cloud_cog",
  548. "cloud_download",
  549. "cloud_drizzle",
  550. "cloud_fog",
  551. "cloud_hail",
  552. "cloud_lightning",
  553. "cloud_moon",
  554. "cloud_moon_rain",
  555. "cloud_off",
  556. "cloud_rain",
  557. "cloud_rain_wind",
  558. "cloud_snow",
  559. "cloud_sun",
  560. "cloud_sun_rain",
  561. "cloud_upload",
  562. "cloudy",
  563. "clover",
  564. "club",
  565. "code",
  566. "code_xml",
  567. "codepen",
  568. "codesandbox",
  569. "coffee",
  570. "cog",
  571. "coins",
  572. "columns_2",
  573. "columns_3",
  574. "columns_4",
  575. "combine",
  576. "command",
  577. "compass",
  578. "component",
  579. "computer",
  580. "concierge_bell",
  581. "cone",
  582. "construction",
  583. "contact",
  584. "contact_round",
  585. "container",
  586. "contrast",
  587. "cookie",
  588. "cooking_pot",
  589. "copy",
  590. "copy_check",
  591. "copy_minus",
  592. "copy_plus",
  593. "copy_slash",
  594. "copy_x",
  595. "copyleft",
  596. "copyright",
  597. "corner_down_left",
  598. "corner_down_right",
  599. "corner_left_down",
  600. "corner_left_up",
  601. "corner_right_down",
  602. "corner_right_up",
  603. "corner_up_left",
  604. "corner_up_right",
  605. "cpu",
  606. "creative_commons",
  607. "credit_card",
  608. "croissant",
  609. "crop",
  610. "cross",
  611. "crosshair",
  612. "crown",
  613. "cuboid",
  614. "cup_soda",
  615. "currency",
  616. "cylinder",
  617. "database",
  618. "database_backup",
  619. "database_zap",
  620. "delete",
  621. "dessert",
  622. "diameter",
  623. "diamond",
  624. "diamond_percent",
  625. "dice_1",
  626. "dice_2",
  627. "dice_3",
  628. "dice_4",
  629. "dice_5",
  630. "dice_6",
  631. "dices",
  632. "diff",
  633. "disc",
  634. "disc_2",
  635. "disc_3",
  636. "disc_album",
  637. "divide",
  638. "dna",
  639. "dna_off",
  640. "dock",
  641. "dog",
  642. "dollar_sign",
  643. "donut",
  644. "door_closed",
  645. "door_open",
  646. "dot",
  647. "download",
  648. "drafting_compass",
  649. "drama",
  650. "dribbble",
  651. "drill",
  652. "droplet",
  653. "droplets",
  654. "drum",
  655. "drumstick",
  656. "dumbbell",
  657. "ear",
  658. "ear_off",
  659. "earth",
  660. "earth_lock",
  661. "eclipse",
  662. "egg",
  663. "egg_fried",
  664. "egg_off",
  665. "ellipsis",
  666. "ellipsis_vertical",
  667. "equal",
  668. "equal_not",
  669. "eraser",
  670. "euro",
  671. "expand",
  672. "external_link",
  673. "eye",
  674. "eye_off",
  675. "facebook",
  676. "factory",
  677. "fan",
  678. "fast_forward",
  679. "feather",
  680. "fence",
  681. "ferris_wheel",
  682. "figma",
  683. "file",
  684. "file_archive",
  685. "file_audio",
  686. "file_audio_2",
  687. "file_axis_3d",
  688. "file_badge",
  689. "file_badge_2",
  690. "file_bar_chart",
  691. "file_bar_chart_2",
  692. "file_box",
  693. "file_check",
  694. "file_check_2",
  695. "file_clock",
  696. "file_code",
  697. "file_code_2",
  698. "file_cog",
  699. "file_diff",
  700. "file_digit",
  701. "file_down",
  702. "file_heart",
  703. "file_image",
  704. "file_input",
  705. "file_json",
  706. "file_json_2",
  707. "file_key",
  708. "file_key_2",
  709. "file_line_chart",
  710. "file_lock",
  711. "file_lock_2",
  712. "file_minus",
  713. "file_minus_2",
  714. "file_music",
  715. "file_output",
  716. "file_pen",
  717. "file_pen_line",
  718. "file_pie_chart",
  719. "file_plus",
  720. "file_plus_2",
  721. "file_question",
  722. "file_scan",
  723. "file_search",
  724. "file_search_2",
  725. "file_sliders",
  726. "file_spreadsheet",
  727. "file_stack",
  728. "file_symlink",
  729. "file_terminal",
  730. "file_text",
  731. "file_type",
  732. "file_type_2",
  733. "file_up",
  734. "file_video",
  735. "file_video_2",
  736. "file_volume",
  737. "file_volume_2",
  738. "file_warning",
  739. "file_x",
  740. "file_x_2",
  741. "files",
  742. "film",
  743. "filter",
  744. "filter_x",
  745. "fingerprint",
  746. "fire_extinguisher",
  747. "fish",
  748. "fish_off",
  749. "fish_symbol",
  750. "flag",
  751. "flag_off",
  752. "flag_triangle_left",
  753. "flag_triangle_right",
  754. "flame",
  755. "flame_kindling",
  756. "flashlight",
  757. "flashlight_off",
  758. "flask_conical",
  759. "flask_conical_off",
  760. "flask_round",
  761. "flip_horizontal",
  762. "flip_horizontal_2",
  763. "flip_vertical",
  764. "flip_vertical_2",
  765. "flower",
  766. "flower_2",
  767. "focus",
  768. "fold_horizontal",
  769. "fold_vertical",
  770. "folder",
  771. "folder_archive",
  772. "folder_check",
  773. "folder_clock",
  774. "folder_closed",
  775. "folder_cog",
  776. "folder_dot",
  777. "folder_down",
  778. "folder_git",
  779. "folder_git_2",
  780. "folder_heart",
  781. "folder_input",
  782. "folder_kanban",
  783. "folder_key",
  784. "folder_lock",
  785. "folder_minus",
  786. "folder_open",
  787. "folder_open_dot",
  788. "folder_output",
  789. "folder_pen",
  790. "folder_plus",
  791. "folder_root",
  792. "folder_search",
  793. "folder_search_2",
  794. "folder_symlink",
  795. "folder_sync",
  796. "folder_tree",
  797. "folder_up",
  798. "folder_x",
  799. "folders",
  800. "footprints",
  801. "forklift",
  802. "forward",
  803. "frame",
  804. "framer",
  805. "frown",
  806. "fuel",
  807. "fullscreen",
  808. "gallery_horizontal",
  809. "gallery_horizontal_end",
  810. "gallery_thumbnails",
  811. "gallery_vertical",
  812. "gallery_vertical_end",
  813. "gamepad",
  814. "gamepad_2",
  815. "gantt_chart",
  816. "gauge",
  817. "gavel",
  818. "gem",
  819. "ghost",
  820. "gift",
  821. "git_branch",
  822. "git_branch_plus",
  823. "git_commit_horizontal",
  824. "git_commit_vertical",
  825. "git_compare",
  826. "git_compare_arrows",
  827. "git_fork",
  828. "git_graph",
  829. "git_merge",
  830. "git_pull_request",
  831. "git_pull_request_arrow",
  832. "git_pull_request_closed",
  833. "git_pull_request_create",
  834. "git_pull_request_create_arrow",
  835. "git_pull_request_draft",
  836. "github",
  837. "gitlab",
  838. "glass_water",
  839. "glasses",
  840. "globe",
  841. "globe_lock",
  842. "goal",
  843. "grab",
  844. "graduation_cap",
  845. "grape",
  846. "grid_2x2",
  847. "grid_3x3",
  848. "grip",
  849. "grip_horizontal",
  850. "grip_vertical",
  851. "group",
  852. "guitar",
  853. "ham",
  854. "hammer",
  855. "hand",
  856. "hand_coins",
  857. "hand_heart",
  858. "hand_helping",
  859. "hand_metal",
  860. "hand_platter",
  861. "handshake",
  862. "hard_drive",
  863. "hard_drive_download",
  864. "hard_drive_upload",
  865. "hard_hat",
  866. "hash",
  867. "haze",
  868. "hdmi_port",
  869. "heading",
  870. "heading_1",
  871. "heading_2",
  872. "heading_3",
  873. "heading_4",
  874. "heading_5",
  875. "heading_6",
  876. "headphones",
  877. "headset",
  878. "heart",
  879. "heart_crack",
  880. "heart_handshake",
  881. "heart_off",
  882. "heart_pulse",
  883. "heater",
  884. "hexagon",
  885. "highlighter",
  886. "history",
  887. "home",
  888. "hop",
  889. "hop_off",
  890. "hospital",
  891. "hotel",
  892. "hourglass",
  893. "ice_cream_bowl",
  894. "ice_cream_cone",
  895. "image",
  896. "image_down",
  897. "image_minus",
  898. "image_off",
  899. "image_plus",
  900. "image_up",
  901. "images",
  902. "import",
  903. "inbox",
  904. "indent_decrease",
  905. "indent_increase",
  906. "indian_rupee",
  907. "infinity",
  908. "info",
  909. "inspection_panel",
  910. "instagram",
  911. "italic",
  912. "iteration_ccw",
  913. "iteration_cw",
  914. "japanese_yen",
  915. "joystick",
  916. "kanban",
  917. "key",
  918. "key_round",
  919. "key_square",
  920. "keyboard",
  921. "keyboard_music",
  922. "lamp",
  923. "lamp_ceiling",
  924. "lamp_desk",
  925. "lamp_floor",
  926. "lamp_wall_down",
  927. "lamp_wall_up",
  928. "land_plot",
  929. "landmark",
  930. "languages",
  931. "laptop_minimal",
  932. "laptop",
  933. "lasso",
  934. "lasso_select",
  935. "laugh",
  936. "layers",
  937. "layers_2",
  938. "layers_3",
  939. "layout_dashboard",
  940. "layout_grid",
  941. "layout_list",
  942. "layout_panel_left",
  943. "layout_panel_top",
  944. "layout_template",
  945. "leaf",
  946. "leafy_green",
  947. "library",
  948. "library_big",
  949. "life_buoy",
  950. "ligature",
  951. "lightbulb",
  952. "lightbulb_off",
  953. "line_chart",
  954. "link",
  955. "link_2",
  956. "link_2_off",
  957. "linkedin",
  958. "list",
  959. "list_checks",
  960. "list_collapse",
  961. "list_end",
  962. "list_filter",
  963. "list_minus",
  964. "list_music",
  965. "list_ordered",
  966. "list_plus",
  967. "list_restart",
  968. "list_start",
  969. "list_todo",
  970. "list_tree",
  971. "list_video",
  972. "list_x",
  973. "loader",
  974. "loader_circle",
  975. "locate",
  976. "locate_fixed",
  977. "locate_off",
  978. "lock",
  979. "lock_keyhole_open",
  980. "lock_keyhole",
  981. "lock_open",
  982. "log_in",
  983. "log_out",
  984. "lollipop",
  985. "luggage",
  986. "magnet",
  987. "mail",
  988. "mail_check",
  989. "mail_minus",
  990. "mail_open",
  991. "mail_plus",
  992. "mail_question",
  993. "mail_search",
  994. "mail_warning",
  995. "mail_x",
  996. "mailbox",
  997. "mails",
  998. "map",
  999. "map_pin",
  1000. "map_pin_off",
  1001. "map_pinned",
  1002. "martini",
  1003. "maximize",
  1004. "maximize_2",
  1005. "medal",
  1006. "megaphone",
  1007. "megaphone_off",
  1008. "meh",
  1009. "memory_stick",
  1010. "menu",
  1011. "merge",
  1012. "message_circle",
  1013. "message_circle_code",
  1014. "message_circle_dashed",
  1015. "message_circle_heart",
  1016. "message_circle_more",
  1017. "message_circle_off",
  1018. "message_circle_plus",
  1019. "message_circle_question",
  1020. "message_circle_reply",
  1021. "message_circle_warning",
  1022. "message_circle_x",
  1023. "message_square",
  1024. "message_square_code",
  1025. "message_square_dashed",
  1026. "message_square_diff",
  1027. "message_square_dot",
  1028. "message_square_heart",
  1029. "message_square_more",
  1030. "message_square_off",
  1031. "message_square_plus",
  1032. "message_square_quote",
  1033. "message_square_reply",
  1034. "message_square_share",
  1035. "message_square_text",
  1036. "message_square_warning",
  1037. "message_square_x",
  1038. "messages_square",
  1039. "mic",
  1040. "mic_vocal",
  1041. "mic_off",
  1042. "microscope",
  1043. "microwave",
  1044. "milestone",
  1045. "milk",
  1046. "milk_off",
  1047. "minimize",
  1048. "minimize_2",
  1049. "minus",
  1050. "monitor",
  1051. "monitor_check",
  1052. "monitor_dot",
  1053. "monitor_down",
  1054. "monitor_off",
  1055. "monitor_pause",
  1056. "monitor_play",
  1057. "monitor_smartphone",
  1058. "monitor_speaker",
  1059. "monitor_stop",
  1060. "monitor_up",
  1061. "monitor_x",
  1062. "moon",
  1063. "moon_star",
  1064. "mountain",
  1065. "mountain_snow",
  1066. "mouse",
  1067. "mouse_pointer",
  1068. "mouse_pointer_2",
  1069. "mouse_pointer_click",
  1070. "move",
  1071. "move_3d",
  1072. "move_diagonal",
  1073. "move_diagonal_2",
  1074. "move_down",
  1075. "move_down_left",
  1076. "move_down_right",
  1077. "move_horizontal",
  1078. "move_left",
  1079. "move_right",
  1080. "move_up",
  1081. "move_up_left",
  1082. "move_up_right",
  1083. "move_vertical",
  1084. "music",
  1085. "music_2",
  1086. "music_3",
  1087. "music_4",
  1088. "navigation",
  1089. "navigation_2",
  1090. "navigation_2_off",
  1091. "navigation_off",
  1092. "network",
  1093. "newspaper",
  1094. "nfc",
  1095. "notebook",
  1096. "notebook_pen",
  1097. "notebook_tabs",
  1098. "notebook_text",
  1099. "notepad_text",
  1100. "notepad_text_dashed",
  1101. "nut",
  1102. "nut_off",
  1103. "octagon",
  1104. "octagon_alert",
  1105. "octagon_pause",
  1106. "octagon_x",
  1107. "option",
  1108. "orbit",
  1109. "package",
  1110. "package_2",
  1111. "package_check",
  1112. "package_minus",
  1113. "package_open",
  1114. "package_plus",
  1115. "package_search",
  1116. "package_x",
  1117. "paint_bucket",
  1118. "paint_roller",
  1119. "paintbrush",
  1120. "paintbrush_2",
  1121. "palette",
  1122. "panel_bottom",
  1123. "panel_bottom_close",
  1124. "panel_bottom_dashed",
  1125. "panel_bottom_open",
  1126. "panel_left",
  1127. "panel_left_close",
  1128. "panel_left_dashed",
  1129. "panel_left_open",
  1130. "panel_right",
  1131. "panel_right_close",
  1132. "panel_right_dashed",
  1133. "panel_right_open",
  1134. "panel_top",
  1135. "panel_top_close",
  1136. "panel_top_dashed",
  1137. "panel_top_open",
  1138. "panels_left_bottom",
  1139. "panels_right_bottom",
  1140. "panels_top_left",
  1141. "paperclip",
  1142. "parentheses",
  1143. "parking_meter",
  1144. "party_popper",
  1145. "pause",
  1146. "paw_print",
  1147. "pc_case",
  1148. "pen",
  1149. "pen_line",
  1150. "pen_tool",
  1151. "pencil",
  1152. "pencil_line",
  1153. "pencil_ruler",
  1154. "pentagon",
  1155. "percent",
  1156. "person_standing",
  1157. "phone",
  1158. "phone_call",
  1159. "phone_forwarded",
  1160. "phone_incoming",
  1161. "phone_missed",
  1162. "phone_off",
  1163. "phone_outgoing",
  1164. "pi",
  1165. "piano",
  1166. "pickaxe",
  1167. "picture_in_picture",
  1168. "picture_in_picture_2",
  1169. "pie_chart",
  1170. "piggy_bank",
  1171. "pilcrow",
  1172. "pill",
  1173. "pin",
  1174. "pin_off",
  1175. "pipette",
  1176. "pizza",
  1177. "plane",
  1178. "plane_landing",
  1179. "plane_takeoff",
  1180. "play",
  1181. "plug",
  1182. "plug_2",
  1183. "plug_zap",
  1184. "plug_zap_2",
  1185. "plus",
  1186. "pocket",
  1187. "pocket_knife",
  1188. "podcast",
  1189. "pointer",
  1190. "pointer_off",
  1191. "popcorn",
  1192. "popsicle",
  1193. "pound_sterling",
  1194. "power",
  1195. "power_off",
  1196. "presentation",
  1197. "printer",
  1198. "projector",
  1199. "proportions",
  1200. "puzzle",
  1201. "pyramid",
  1202. "qr_code",
  1203. "quote",
  1204. "rabbit",
  1205. "radar",
  1206. "radiation",
  1207. "radical",
  1208. "radio",
  1209. "radio_receiver",
  1210. "radio_tower",
  1211. "radius",
  1212. "rail_symbol",
  1213. "rainbow",
  1214. "rat",
  1215. "ratio",
  1216. "receipt",
  1217. "receipt_cent",
  1218. "receipt_euro",
  1219. "receipt_indian_rupee",
  1220. "receipt_japanese_yen",
  1221. "receipt_pound_sterling",
  1222. "receipt_russian_ruble",
  1223. "receipt_swiss_franc",
  1224. "receipt_text",
  1225. "rectangle_ellipsis",
  1226. "rectangle_horizontal",
  1227. "rectangle_vertical",
  1228. "recycle",
  1229. "redo",
  1230. "redo_2",
  1231. "redo_dot",
  1232. "refresh_ccw",
  1233. "refresh_ccw_dot",
  1234. "refresh_cw",
  1235. "refresh_cw_off",
  1236. "refrigerator",
  1237. "regex",
  1238. "remove_formatting",
  1239. "repeat",
  1240. "repeat_1",
  1241. "repeat_2",
  1242. "replace",
  1243. "replace_all",
  1244. "reply",
  1245. "reply_all",
  1246. "rewind",
  1247. "ribbon",
  1248. "rocket",
  1249. "rocking_chair",
  1250. "roller_coaster",
  1251. "rotate_3d",
  1252. "rotate_ccw",
  1253. "rotate_ccw_square",
  1254. "rotate_cw",
  1255. "rotate_cw_square",
  1256. "route",
  1257. "route_off",
  1258. "router",
  1259. "rows_2",
  1260. "rows_3",
  1261. "rows_4",
  1262. "rss",
  1263. "ruler",
  1264. "russian_ruble",
  1265. "sailboat",
  1266. "salad",
  1267. "sandwich",
  1268. "satellite",
  1269. "satellite_dish",
  1270. "save",
  1271. "save_all",
  1272. "scale",
  1273. "scale_3d",
  1274. "scaling",
  1275. "scan",
  1276. "scan_barcode",
  1277. "scan_eye",
  1278. "scan_face",
  1279. "scan_line",
  1280. "scan_search",
  1281. "scan_text",
  1282. "scatter_chart",
  1283. "school",
  1284. "scissors",
  1285. "scissors_line_dashed",
  1286. "screen_share",
  1287. "screen_share_off",
  1288. "scroll",
  1289. "scroll_text",
  1290. "search",
  1291. "search_check",
  1292. "search_code",
  1293. "search_slash",
  1294. "search_x",
  1295. "send",
  1296. "send_horizontal",
  1297. "send_to_back",
  1298. "separator_horizontal",
  1299. "separator_vertical",
  1300. "server",
  1301. "server_cog",
  1302. "server_crash",
  1303. "server_off",
  1304. "settings",
  1305. "settings_2",
  1306. "shapes",
  1307. "share",
  1308. "share_2",
  1309. "sheet",
  1310. "shell",
  1311. "shield",
  1312. "shield_alert",
  1313. "shield_ban",
  1314. "shield_check",
  1315. "shield_ellipsis",
  1316. "shield_half",
  1317. "shield_minus",
  1318. "shield_off",
  1319. "shield_plus",
  1320. "shield_question",
  1321. "shield_x",
  1322. "ship",
  1323. "ship_wheel",
  1324. "shirt",
  1325. "shopping_bag",
  1326. "shopping_basket",
  1327. "shopping_cart",
  1328. "shovel",
  1329. "shower_head",
  1330. "shrink",
  1331. "shrub",
  1332. "shuffle",
  1333. "sigma",
  1334. "signal",
  1335. "signal_high",
  1336. "signal_low",
  1337. "signal_medium",
  1338. "signal_zero",
  1339. "signpost",
  1340. "signpost_big",
  1341. "siren",
  1342. "skip_back",
  1343. "skip_forward",
  1344. "skull",
  1345. "slack",
  1346. "slash",
  1347. "slice",
  1348. "sliders_vertical",
  1349. "sliders_horizontal",
  1350. "smartphone",
  1351. "smartphone_charging",
  1352. "smartphone_nfc",
  1353. "smile",
  1354. "smile_plus",
  1355. "snail",
  1356. "snowflake",
  1357. "sofa",
  1358. "soup",
  1359. "space",
  1360. "spade",
  1361. "sparkle",
  1362. "sparkles",
  1363. "speaker",
  1364. "speech",
  1365. "spell_check",
  1366. "spell_check_2",
  1367. "spline",
  1368. "split",
  1369. "spray_can",
  1370. "sprout",
  1371. "square",
  1372. "square_activity",
  1373. "square_arrow_down_left",
  1374. "square_arrow_down_right",
  1375. "square_arrow_down",
  1376. "square_arrow_left",
  1377. "square_arrow_out_down_left",
  1378. "square_arrow_out_down_right",
  1379. "square_arrow_out_up_left",
  1380. "square_arrow_out_up_right",
  1381. "square_arrow_right",
  1382. "square_arrow_up_left",
  1383. "square_arrow_up_right",
  1384. "square_arrow_up",
  1385. "square_asterisk",
  1386. "square_bottom_dashed_scissors",
  1387. "square_check_big",
  1388. "square_check",
  1389. "square_chevron_down",
  1390. "square_chevron_left",
  1391. "square_chevron_right",
  1392. "square_chevron_up",
  1393. "square_code",
  1394. "square_dashed_bottom_code",
  1395. "square_dashed_bottom",
  1396. "square_dashed_kanban",
  1397. "square_dashed_mouse_pointer",
  1398. "square_divide",
  1399. "square_dot",
  1400. "square_equal",
  1401. "square_function",
  1402. "square_gantt_chart",
  1403. "square_kanban",
  1404. "square_library",
  1405. "square_m",
  1406. "square_menu",
  1407. "square_minus",
  1408. "square_mouse_pointer",
  1409. "square_parking_off",
  1410. "square_parking",
  1411. "square_pen",
  1412. "square_percent",
  1413. "square_pi",
  1414. "square_pilcrow",
  1415. "square_play",
  1416. "square_plus",
  1417. "square_power",
  1418. "square_radical",
  1419. "square_scissors",
  1420. "square_sigma",
  1421. "square_slash",
  1422. "square_split_horizontal",
  1423. "square_split_vertical",
  1424. "square_stack",
  1425. "square_terminal",
  1426. "square_user_round",
  1427. "square_user",
  1428. "square_x",
  1429. "squircle",
  1430. "squirrel",
  1431. "stamp",
  1432. "star",
  1433. "star_half",
  1434. "star_off",
  1435. "step_back",
  1436. "step_forward",
  1437. "stethoscope",
  1438. "sticker",
  1439. "sticky_note",
  1440. "store",
  1441. "stretch_horizontal",
  1442. "stretch_vertical",
  1443. "strikethrough",
  1444. "subscript",
  1445. "sun",
  1446. "sun_dim",
  1447. "sun_medium",
  1448. "sun_moon",
  1449. "sun_snow",
  1450. "sunrise",
  1451. "sunset",
  1452. "superscript",
  1453. "swatch_book",
  1454. "swiss_franc",
  1455. "switch_camera",
  1456. "sword",
  1457. "swords",
  1458. "syringe",
  1459. "table",
  1460. "table_2",
  1461. "table_cells_merge",
  1462. "table_cells_split",
  1463. "table_columns_split",
  1464. "table_properties",
  1465. "table_rows_split",
  1466. "tablet",
  1467. "tablet_smartphone",
  1468. "tablets",
  1469. "tag",
  1470. "tags",
  1471. "tally_1",
  1472. "tally_2",
  1473. "tally_3",
  1474. "tally_4",
  1475. "tally_5",
  1476. "tangent",
  1477. "target",
  1478. "telescope",
  1479. "tent_tree",
  1480. "terminal",
  1481. "test_tube_diagonal",
  1482. "test_tube",
  1483. "tent",
  1484. "test_tubes",
  1485. "text",
  1486. "text_cursor",
  1487. "text_cursor_input",
  1488. "text_quote",
  1489. "text_search",
  1490. "text_select",
  1491. "theater",
  1492. "thermometer",
  1493. "thermometer_snowflake",
  1494. "thermometer_sun",
  1495. "thumbs_down",
  1496. "thumbs_up",
  1497. "ticket",
  1498. "ticket_check",
  1499. "ticket_minus",
  1500. "ticket_percent",
  1501. "ticket_plus",
  1502. "ticket_slash",
  1503. "ticket_x",
  1504. "timer",
  1505. "timer_off",
  1506. "timer_reset",
  1507. "toggle_left",
  1508. "toggle_right",
  1509. "tornado",
  1510. "torus",
  1511. "touchpad",
  1512. "touchpad_off",
  1513. "tower_control",
  1514. "toy_brick",
  1515. "tractor",
  1516. "traffic_cone",
  1517. "train_front",
  1518. "train_front_tunnel",
  1519. "train_track",
  1520. "tram_front",
  1521. "trash",
  1522. "trash_2",
  1523. "tree_deciduous",
  1524. "tree_palm",
  1525. "tree_pine",
  1526. "trees",
  1527. "trello",
  1528. "trending_down",
  1529. "trending_up",
  1530. "triangle",
  1531. "triangle_right",
  1532. "triangle_alert",
  1533. "trophy",
  1534. "truck",
  1535. "turtle",
  1536. "tv",
  1537. "tv_2",
  1538. "twitch",
  1539. "twitter",
  1540. "type",
  1541. "umbrella",
  1542. "umbrella_off",
  1543. "underline",
  1544. "undo",
  1545. "undo_2",
  1546. "undo_dot",
  1547. "unfold_horizontal",
  1548. "unfold_vertical",
  1549. "ungroup",
  1550. "university",
  1551. "unlink_2",
  1552. "unlink",
  1553. "unplug",
  1554. "upload",
  1555. "usb",
  1556. "user",
  1557. "user_check",
  1558. "user_cog",
  1559. "user_minus",
  1560. "user_plus",
  1561. "user_round",
  1562. "user_round_check",
  1563. "user_round_cog",
  1564. "user_round_minus",
  1565. "user_round_plus",
  1566. "user_round_search",
  1567. "user_round_x",
  1568. "user_search",
  1569. "user_x",
  1570. "users",
  1571. "users_round",
  1572. "utensils",
  1573. "utensils_crossed",
  1574. "utility_pole",
  1575. "variable",
  1576. "vault",
  1577. "vegan",
  1578. "venetian_mask",
  1579. "vibrate",
  1580. "vibrate_off",
  1581. "video",
  1582. "video_off",
  1583. "videotape",
  1584. "view",
  1585. "voicemail",
  1586. "volume",
  1587. "volume_1",
  1588. "volume_2",
  1589. "volume_x",
  1590. "vote",
  1591. "wallet",
  1592. "wallet_minimal",
  1593. "wallet_cards",
  1594. "wallpaper",
  1595. "wand",
  1596. "wand_sparkles",
  1597. "warehouse",
  1598. "washing_machine",
  1599. "watch",
  1600. "waves",
  1601. "waypoints",
  1602. "webcam",
  1603. "webhook_off",
  1604. "webhook",
  1605. "weight",
  1606. "wheat",
  1607. "wheat_off",
  1608. "whole_word",
  1609. "wifi",
  1610. "wifi_off",
  1611. "wind",
  1612. "wine",
  1613. "wine_off",
  1614. "workflow",
  1615. "worm",
  1616. "wrap_text",
  1617. "wrench",
  1618. "x",
  1619. "youtube",
  1620. "zap",
  1621. "zap_off",
  1622. "zoom_in",
  1623. "zoom_out",
  1624. ]