diff --git a/iron-icon.html b/iron-icon.html index 3b7042c..9c1c331 100644 --- a/iron-icon.html +++ b/iron-icon.html @@ -67,6 +67,8 @@ ----------------|-------------|---------- `--iron-icon-width` | Width of the icon | `24px` `--iron-icon-height` | Height of the icon | `24px` +`--iron-icon-fill-color` | Fill color of the svg icon | `currentcolor` +`--iron-icon-stroke-color` | Stroke color of the svg icon | `currentcolor` @group Iron Elements @element iron-icon @@ -85,7 +87,8 @@ vertical-align: middle; - fill: currentcolor; + fill: var(--iron-icon-fill-color, currentcolor); + stroke: var(--iron-icon-stroke-color, currentcolor); width: var(--iron-icon-width, 24px); height: var(--iron-icon-height, 24px);