diff --git a/src/Plugin/Preprocess/InputButton.php b/src/Plugin/Preprocess/InputButton.php
index 3de6881..81d5ab3 100644
--- a/src/Plugin/Preprocess/InputButton.php
+++ b/src/Plugin/Preprocess/InputButton.php
@@ -18,6 +18,9 @@ class InputButton extends Input implements PreprocessInterface {
    * {@inheritdoc}
    */
   public function preprocessElement(Element $element, Variables $variables) {
+    if ($element->getProperty('id') === 'edit-refresh'){
+      $variables['edit_refresh'] = TRUE;
+    }
     $element->colorize();
     $element->setButtonSize();
     $element->setIcon($element->getProperty('icon'));
diff --git a/templates/input/input--button.html.twig b/templates/input/input--button.html.twig
index 7166b1a..d8e0eb9 100644
--- a/templates/input/input--button.html.twig
+++ b/templates/input/input--button.html.twig
@@ -31,6 +31,8 @@
     ]
   %}
   {% block input %}
+    {% if edit_refresh %}
+        <input{{attributes}}/>
     {% if icon and icon_only %}
       <button{{ attributes.addClass(classes, 'icon-only') }}>
         <span class="sr-only">{{ label }}</span>
