icon.py 33 KB

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