Primary Button

    
    
<button type="button" class="btn btn-primary">Button</button>
<button type="button" class="btn" disabled>Disabled</button>
<button type="button" class="btn btn-primary btn-error">Button</button>
    
  

Text Button

    
    
<button type="button" class="btn btn-text">Button</button>
<button type="button" class="btn btn-text" disabled<Disabled</button<
<button type="button" class="btn btn-text btn-error">Danger</button>
    
  

Outlined Button

    
    
<button type="button" class="btn btn-outlined">Button</button>
<button type="button" class="btn btn-outlined" disabled>Disabled</button>
<button type="button" class="btn btn-outlined btn-error">Danger</button>
    
  

Icon Button

    
    
<button type="button" class="btn btn-floating btn-primary">
  <span class="material-icons-outlined"> account_circle </span>
</button>
<button type="button" class="btn btn-floating">
  <span class="material-icons"> home </span>
</button>
<button type="button" class="btn btn-floating" disabled>
  <span class="material-icons-outlined"< account_circle </span>
</button>