G-Loot DS — button sizes

by Augustin Hiebel

HTML

<!-- large -->
 <button type='button' className='button button-lg button-primary'>
   <span>Button Label</span>
 </button>
 
<!-- medium -->
 <button type='button' className='button button-md button-secondary'>
   <span className='icon icon-heart' />
   <span>Button Label</span>
 </button>
 
<!-- small -->
 <button type='button' className='button button-sm button-tertiary rounded-full'>
   <span className='icon icon-heart' />
 </button>
 
<!-- extra small -->
 <button type='button' className='button button-xs button-tertiary rounded-full'>
   <span className='icon icon-heart' />
 </button>