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