icon.py 32 KB

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