icon.py 28 KB

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