## Sizes
-Fancy larger or smaller buttons? Add `.btn-lg`, `.btn-sm`, or `.btn-xs` for additional sizes.
+Fancy larger or smaller buttons? Add `.btn-lg` or `.btn-sm` for additional sizes.
{% example html %}
<button type="button" class="btn btn-primary btn-lg">Large button</button>
<button type="button" class="btn btn-secondary btn-sm">Small button</button>
{% endexample %}
-{% example html %}
-<button type="button" class="btn btn-primary btn-xs">Extra small button</button>
-<button type="button" class="btn btn-secondary btn-xs">Extra small button</button>
-{% endexample %}
-
Create block level buttons—those that span the full width of a parent—by adding `.btn-block`.
{% example html %}