icon.pyi 31 KB

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