icon_save: Save icons into a local path

View source: R/save.R

icon_saveR Documentation

Save icons into a local path

Description

Store icons in a local directory to simplify sharing of documents containing icons. Bundling icons with your document or app avoids the need for collaborators or servers to have all icons from a library installed.

Usage

icon_save(icons, path = ".")

Arguments

icons

A named list of icons, the names specify the icon's name in the new icon set.

path

A directory to save the icons into.

Examples

if(icon_installed(fontawesome) && icon_installed(ionicons)){

icon_save(
  list(arrow = fontawesome$solid$`arrow-right`, alarm = ionicons$alarm),
  path = "icons"
)

app_icons <- icon_set("icons")
app_icons$arrow

}


mitchelloharawild/icon documentation built on Aug. 21, 2023, 2:48 a.m.