# Buttons

Examples of building buttons with HydraCSS.

<!-- Normal -->
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-secondary">Secondary</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-text">TEXT</button>

<!-- Small variation -->
<button type="button" class="btn btn-primary btn-small">Primary</button>
<button type="button" class="btn btn-secondary btn-small">Secondary</button>
<button type="button" class="btn btn-danger btn-small">Danger</button>
<button type="button" class="btn btn-text btn-small">TEXT</button>