lernschiff/resources/views/components/auth-session-status.blade.php

11 lines
353 B
PHP

@props(['status'])
@if ($status)
<div {{ $attributes->merge([
'class' => 'flex items-center gap-2 text-sm font-medium text-[--color-success] bg-[oklch(0.96_0.05_155)] border border-[oklch(0.88_0.10_155)] rounded-lg px-4 py-3'
]) }}>
<x-heroicon-s-check-circle class="w-4 h-4 shrink-0" />
{{ $status }}
</div>
@endif