Seyma Kalay
Seyma Kalay

Reputation: 2861

go to top button Rmarkdown/Html

I would like to add a circle-arrow-up from fontawesome. Somehow arrow-up is working but not circle-arrow-up. And if it is possible to increase the size of the circle. How to get around this?

```{r load_packages, message=FALSE, warning=FALSE, include=FALSE} 
library(fontawesome)
```     

Back to top [`r fa("arrow-up", fill = "steelblue")`](#)

Upvotes: 0

Views: 255

Answers (1)

Daniel_j_iii
Daniel_j_iii

Reputation: 3252

For some Reason it wasn't working, but then all of a sudden it rendered for me. Maybe suggest clearing any R Session info, if you have another computer you can try this same code.

---
title: "Untitled"
output: html_document
---

```{r load_packages, message=FALSE, warning=FALSE, include=FALSE} 
library(fontawesome)
```     

Back to top [`r fa("arrow-circle-up", fill = "steelblue")`](#)

enter image description here

Upvotes: 1

Related Questions