From 578dfacb2db0a0b39e24b21b48801e1f10eb09f8 Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Thu, 25 Jun 2020 17:37:29 -0700 Subject: [PATCH] feat: Allow feather icon to change stroke width from variable --- src/components/FeatherIcon.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/FeatherIcon.module.scss b/src/components/FeatherIcon.module.scss index d40449e2e..a9da701a5 100644 --- a/src/components/FeatherIcon.module.scss +++ b/src/components/FeatherIcon.module.scss @@ -1,7 +1,7 @@ .icon { fill: none; stroke: currentColor; - stroke-width: 2; + stroke-width: var(--feather-icon-stroke-width, 2); stroke-linecap: round; stroke-linejoin: round; }