Skip to content
Snippets Groups Projects
Select Git revision
  • 7adb9d9dec6d64ee162ecfa9e6f3726bc2c49288
  • main default protected
2 results

alert-add.component.html

Blame
  • Forked from an inaccessible project.
    alert-add.component.html 767 B
    <div
      role="alert"
      class="rounded-xl border border-gray-100 bg-white p-4 shadow-xl"
    >
      <div class="flex items-start gap-4">
        <span class="text-green-600">
          <svg
            xmlns="http://www.w3.org/2000/svg"
            fill="none"
            viewBox="0 0 24 24"
            stroke-width="1.5"
            stroke="currentColor"
            class="h-6 w-6"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
            />
          </svg>
        </span>
    
        <div class="flex-1">
          <strong class="block font-medium text-gray-900"> {{ alertTitle }} </strong>
    
          <p class="mt-1 text-sm text-gray-700">
            {{ alertDescription }}
          </p>
        </div>
      </div>
    </div>