icon.py 33 KB

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