icon.py 33 KB

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