G-Loot DS — button error

by Augustin Hiebel

HTML

<!-- Text only -->
 <button type='button' class='button button-error'>
   <span>Button Label</span>
 </button>

 <!-- Icon + text -->
 <button type='button' class='button button-error'>
   <span class='icon icon-heart' />
   <span>Button Label</span>
 </button>

 <!-- Text + icon -->
 <button type='button' class='button button-error'>
   <span>Button Label</span>
   <span class='icon icon-heart' />
 </button>

 <!-- Icon only -->
 <button type='button' class='button button-error rounded-full'>
   <span class='icon icon-heart' />
 </button>