Tag

Basic tag#

The Axentix tag is a simple component made using only our utilities classes. Creating simple tags is easy using our utilities classes. Here is an example you can use :

Keyword
<div class="d-inline-block grey light-3 py-2 px-3 rounded-3">Keyword</div>

Closable tag#

You can create closable tags using the close utility.

Keyword
<div class="d-inline-flex grey light-3 py-2 px-3 rounded-3" id="closable">
  Keyword
  <div data-close="closable">
    <span class='iconify-inline text-grey text-dark-2 font-s3 ml-2' data-icon='mdi:close-circle'></span>
  </div>
</div>