icon.py 33 KB

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