選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

28 行
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, solid = TRUE, as_html = FALSE)
  8. }
  9. \arguments{
  10. \item{name}{Name of the Font Awesome icon}
  11. \item{solid}{Should the solid or the regular icon be used?}
  12. \item{as_html}{If \code{FALSE} (default), only the icon class is returned.}
  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. }