icon.py 33 KB

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