Button: Large

<button class="rg-button btn-custom btn-large" type="button">

    Button Text

</button>
<button
  class="rg-button{{#if class}} {{class}}{{/if}}"
  type="{{#if type}}{{type}}{{else}}button{{/if}}"
  {{#if disabled}}disabled{{/if}}
>
  {{#if iconStart}}<i class="{{iconStart}}"></i>{{/if}}
  {{ label }}
  {{#if iconEnd}}<i class="{{iconEnd}}"></i>{{/if}}
</button>
{
  "class": "btn-custom btn-large",
  "type": "button",
  "disabled": false,
  "iconStart": null,
  "iconEnd": null,
  "label": "Button Text"
}

No notes defined.