ssddanbrown/mailbag

View on GitHub
resources/views/components/notification-error.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
<div class="rounded-md bg-red-50 border-2 border-red-300 p-4">
    <div class="flex">
        <div class="shrink-0">
            <svg class="h-5 w-5 text-red-400" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
            </svg>
        </div>
        <div class="ml-3">
            <h3 class="text-sm font-medium text-red-800">
                {{ $slot }}
            </h3>
        </div>
    </div>
</div>