├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── .gitmodules ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── ph.R ├── ph_i.R ├── search.R ├── sysdata.rda ├── utils.R └── waffle.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── data-raw ├── .gitmodules ├── phosphor-svg.R ├── phosphoricons-font.R └── phosphoricons_svg_tags.R ├── examples ├── html_dependency_phosphor.R ├── ph-shiny.R ├── ph.R ├── ph_fill.R ├── ph_i.R └── waffle_icon.R ├── inst ├── assets │ └── css │ │ ├── Phosphor-Bold.woff │ │ ├── Phosphor-Bold.woff2 │ │ ├── Phosphor-Fill.woff │ │ ├── Phosphor-Fill.woff2 │ │ ├── Phosphor-Light.woff │ │ ├── Phosphor-Light.woff2 │ │ ├── Phosphor-Thin.woff │ │ ├── Phosphor-Thin.woff2 │ │ ├── Phosphor.woff │ │ ├── Phosphor.woff2 │ │ ├── icons.min.css │ │ └── size.scss └── tinytest │ ├── test_ph.R │ ├── test_ph_fill.R │ ├── test_ph_i.R │ ├── test_search.R │ └── test_waffle.R ├── man ├── figures │ ├── icon-fill-perc-1.svg │ ├── icon-fill-perc-2.svg │ ├── lightning-bold-gold.svg │ ├── lightning-bold.svg │ ├── lightning-fill.svg │ ├── lightning-light.svg │ ├── lightning-regular.svg │ ├── lightning-thin.svg │ └── waffle.png ├── html_dependency_phosphor.Rd ├── ph.Rd ├── ph_fill.Rd ├── ph_i.Rd ├── search_icon.Rd └── waffle_icon.Rd └── tests └── tinytest.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/.gitmodules -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: Victor Perrier 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/ph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/R/ph.R -------------------------------------------------------------------------------- /R/ph_i.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/R/ph_i.R -------------------------------------------------------------------------------- /R/search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/R/search.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/waffle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/R/waffle.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/data-raw/.gitmodules -------------------------------------------------------------------------------- /data-raw/phosphor-svg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/data-raw/phosphor-svg.R -------------------------------------------------------------------------------- /data-raw/phosphoricons-font.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/data-raw/phosphoricons-font.R -------------------------------------------------------------------------------- /data-raw/phosphoricons_svg_tags.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/data-raw/phosphoricons_svg_tags.R -------------------------------------------------------------------------------- /examples/html_dependency_phosphor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/examples/html_dependency_phosphor.R -------------------------------------------------------------------------------- /examples/ph-shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/examples/ph-shiny.R -------------------------------------------------------------------------------- /examples/ph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/examples/ph.R -------------------------------------------------------------------------------- /examples/ph_fill.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/examples/ph_fill.R -------------------------------------------------------------------------------- /examples/ph_i.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/examples/ph_i.R -------------------------------------------------------------------------------- /examples/waffle_icon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/examples/waffle_icon.R -------------------------------------------------------------------------------- /inst/assets/css/Phosphor-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/Phosphor-Bold.woff -------------------------------------------------------------------------------- /inst/assets/css/Phosphor-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/Phosphor-Bold.woff2 -------------------------------------------------------------------------------- /inst/assets/css/Phosphor-Fill.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/Phosphor-Fill.woff -------------------------------------------------------------------------------- /inst/assets/css/Phosphor-Fill.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/Phosphor-Fill.woff2 -------------------------------------------------------------------------------- /inst/assets/css/Phosphor-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/Phosphor-Light.woff -------------------------------------------------------------------------------- /inst/assets/css/Phosphor-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/Phosphor-Light.woff2 -------------------------------------------------------------------------------- /inst/assets/css/Phosphor-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/Phosphor-Thin.woff -------------------------------------------------------------------------------- /inst/assets/css/Phosphor-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/Phosphor-Thin.woff2 -------------------------------------------------------------------------------- /inst/assets/css/Phosphor.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/Phosphor.woff -------------------------------------------------------------------------------- /inst/assets/css/Phosphor.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/Phosphor.woff2 -------------------------------------------------------------------------------- /inst/assets/css/icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/icons.min.css -------------------------------------------------------------------------------- /inst/assets/css/size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/assets/css/size.scss -------------------------------------------------------------------------------- /inst/tinytest/test_ph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/tinytest/test_ph.R -------------------------------------------------------------------------------- /inst/tinytest/test_ph_fill.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/tinytest/test_ph_fill.R -------------------------------------------------------------------------------- /inst/tinytest/test_ph_i.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/tinytest/test_ph_i.R -------------------------------------------------------------------------------- /inst/tinytest/test_search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/tinytest/test_search.R -------------------------------------------------------------------------------- /inst/tinytest/test_waffle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/inst/tinytest/test_waffle.R -------------------------------------------------------------------------------- /man/figures/icon-fill-perc-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/figures/icon-fill-perc-1.svg -------------------------------------------------------------------------------- /man/figures/icon-fill-perc-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/figures/icon-fill-perc-2.svg -------------------------------------------------------------------------------- /man/figures/lightning-bold-gold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/figures/lightning-bold-gold.svg -------------------------------------------------------------------------------- /man/figures/lightning-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/figures/lightning-bold.svg -------------------------------------------------------------------------------- /man/figures/lightning-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/figures/lightning-fill.svg -------------------------------------------------------------------------------- /man/figures/lightning-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/figures/lightning-light.svg -------------------------------------------------------------------------------- /man/figures/lightning-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/figures/lightning-regular.svg -------------------------------------------------------------------------------- /man/figures/lightning-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/figures/lightning-thin.svg -------------------------------------------------------------------------------- /man/figures/waffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/figures/waffle.png -------------------------------------------------------------------------------- /man/html_dependency_phosphor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/html_dependency_phosphor.Rd -------------------------------------------------------------------------------- /man/ph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/ph.Rd -------------------------------------------------------------------------------- /man/ph_fill.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/ph_fill.Rd -------------------------------------------------------------------------------- /man/ph_i.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/ph_i.Rd -------------------------------------------------------------------------------- /man/search_icon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/search_icon.Rd -------------------------------------------------------------------------------- /man/waffle_icon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/man/waffle_icon.Rd -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/phosphoricons/HEAD/tests/tinytest.R --------------------------------------------------------------------------------