Card


Default Card

Loading...

card.html
<div
  class="relative w-full max-w-60 space-y-2 rounded-lg bg-surface p-4 shadow-sm"
>
  <span
    class="inline-flex h-10 w-10 items-center justify-center gap-1 rounded-lg bg-accent p-0 text-sm text-muted-text hover:bg-accent hover:text-accent-text sm:h-12 sm:w-12"
  >
    <svg
      stroke="currentColor"
      fill="none"
      stroke-width="2"
      viewBox="0 0 24 24"
      stroke-linecap="round"
      stroke-linejoin="round"
      class="h-5 w-5 sm:h-6 sm:w-6"
      height="1em"
      width="1em"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path d="M5 12h14"></path>
      <path d="M12 5v14"></path>
    </svg>
  </span>
  <div class="absolute right-4 top-4 text-muted-text">
    <svg
      stroke="currentColor"
      fill="none"
      stroke-width="2"
      viewBox="0 0 24 24"
      stroke-linecap="round"
      stroke-linejoin="round"
      class="h-5 w-5 sm:h-6 sm:w-6"
      height="1em"
      width="1em"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path d="M7 7h10v10"></path>
      <path d="M7 17 17 7"></path>
    </svg>
  </div>
  <div class="space-y-1">
    <h3 class="font-semibold text-main-text">Users</h3>
    <p class="text-sm font-medium text-muted-text">
      Manage user accounts and permissions.
    </p>
  </div>
</div>

Stats Card

Loading...

card-stats.html
<div
  class="w-full max-w-44 space-y-3 rounded-xl bg-surface p-5 shadow-sm sm:space-y-4 sm:p-6"
>
  <span
    class="disabled:text-muted/75-text inline-flex h-10 w-10 items-center justify-center gap-1 rounded-full bg-accent p-0 text-sm hover:bg-muted hover:text-accent-text disabled:bg-muted/75 sm:h-12 sm:w-12"
  >
    <svg
      stroke="currentColor"
      fill="currentColor"
      stroke-width="0"
      viewBox="0 0 512 512"
      class="h-4 w-4 sm:h-5 sm:w-5"
      height="1em"
      width="1em"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        fill="none"
        stroke-linecap="round"
        stroke-linejoin="round"
        stroke-width="32"
        d="M80 176a16 16 0 0 0-16 16v216c0 30.24 25.76 56 56 56h272c30.24 0 56-24.51 56-54.75V192a16 16 0 0 0-16-16zm80 0v-32a96 96 0 0 1 96-96h0a96 96 0 0 1 96 96v32"
      ></path>
    </svg>
  </span>
  <div class="space-y-0.5 sm:space-y-1">
    <p class="text-sm font-medium text-muted-text">Total Sales</p>
    <h3 class="text-xl font-medium sm:text-2xl">$75,890.75</h3>
    <p class="text-xs font-normal text-muted-text">
      <span class="text-success">+128%</span>
      from June
    </p>
  </div>
</div>

On this page