Spinner

Basic Spinner

you can create a spinner for loading animations by adding the class .spinner into a div

<div class="spinner">
</div>

Spinner Color

youn can change spinner color by adding the class .spiner-{theme-color}

<div class="spinner spinner-primary">
</div>
<div class="spinner spinner-green-600">
</div>

Spinner width and thickness

you can change the width and tickness of a spinner by using the class .w-{1-24} and .t-{1-24}

<div class="spinner w-5 t-6">
</div>
<div class="spinner w-12 t-2">
</div>