Buton listesi bileşeni

Last updated on 11/6/2024@mrbirddev

Görsel ve simge

Simge ayarlamak istiyorsanız, görsel alanını boş bırakmalısınız.

Ve görseli/simgeyi sağ tarafa koymak istiyorsanız, Buton resim özel stiller öğesine aşağıdakileri uygulayın.

left: auto;
right: .5rem;

DOM yapısı

Bir Düğme listesi bileşeni, HTML DOM yapısında bu şekilde oluşturulur.

<div style="display: flex; width: 100%"> <!-- Özel stiller applies here -->
  <a href="" ...> <!-- Buton özel stiller applies here-->
    <div
      style="position: absolute; top: .5rem; bottom: .5rem; overflow: hidden; left: .5rem;"
      <!-- Buton resim özel stiller applies here-->
    >
      {image || icon}
    </div>
    <span>
      {button text}
    </span>
  </a>
  ...
</div>
Loading...