1 Load packages 2 Reproducibility 1 Load packages library(tidyverse) # data wrangling Use Case Sometimes it is nice to decorate your posts with some FontAwesome Icons. The easiest way is to use {fontawesome} with the fa() functin. However, to get images instead of a font, try the following appraoch: library(emojifont) library(patchwork) p1 <- ggplot() + geom_fontawesome("fa-bolt", color='steelblue') + theme_void() p2 <- ggplot() + geom_fontawesome("fa-rocket", color = "steelblue") + theme_void() p1 + p2 Alternatively: to p1 + …