icon.pyi 32 KB

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