twitter-bootstrap-3 has provided four different sizes of buttons
btn-lg
does not require any btn size
btn-sm
btn-xs
<button type="button" class="btn btn-lg">Large button</button>
<button type="button" class="btn">Default button</button>
<button type="button" class="btn btn-sm">Small button</button>
<button type="button" class="btn btn-xs">Extra small button</button>
Image of the above code is attached below