From 36a329bbc82bbcbcd6c0058e456eae3831ea3755 Mon Sep 17 00:00:00 2001 From: aetiom <8208943+aetiom@users.noreply.github.com> Date: Fri, 24 Jan 2020 09:24:36 +0100 Subject: [PATCH] Adding duotone style to FA5 frontend --- src/FrontEnd/Fontawesome.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/FrontEnd/Fontawesome.php b/src/FrontEnd/Fontawesome.php index 0b00f3e..e16d020 100644 --- a/src/FrontEnd/Fontawesome.php +++ b/src/FrontEnd/Fontawesome.php @@ -12,12 +12,13 @@ class Fontawesome extends Abstr { /** - * @var array $styles : fontawesome 5 style (solid, regular, light) + * @var array $styles : fontawesome 5 style (solid, regular, light, duotone) */ private $styles = array( 'solid' => 'fas', 'regular' => 'far', - 'light' => 'fal' + 'light' => 'fal', + 'duotone' => 'fad' );