Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

28 lines
570B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/utils.R
  3. \name{fa_icon}
  4. \alias{fa_icon}
  5. \title{Font Awesome Icon}
  6. \usage{
  7. fa_icon(name, as_html = FALSE, solid = TRUE)
  8. }
  9. \arguments{
  10. \item{name}{Name of the Font Awesome icon}
  11. \item{as_html}{If \code{FALSE} (default), only the icon class is returned.}
  12. \item{solid}{Should the solid or the regular icon be used?}
  13. }
  14. \description{
  15. Create the correct Font Awesome class.
  16. }
  17. \examples{
  18. fa_icon("github")
  19. fa_icon("star")
  20. fa_icon("star", FALSE)
  21. }
  22. \references{
  23. \url{https://fontawesome.com/icons}
  24. }