icon.py 34 KB

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