The arrow on `axis.line` is not filled when the type is set to "closed", however other arrows of the same type are filled. See example. ``` r library(tidyverse) arrow = arrow(angle=10, type = "closed") ggplot(iris, aes(x=Sepal.Length, y=Sepal.Width, color=Species)) + geom_point() + theme(axis.line = element_line(arrow=arrow)) + annotate("segment", x = 3, xend = min(iris$Sepal.Length), y = 4, yend = 3, arrow=arrow) ```  <sup>Created on 2018-10-01 by the [reprex package](https://reprex.tidyverse.org) (v0.2.1)</sup>