Deploy Ladill Queue / deploy (push) Successful in 38s
Match Care/Frontdesk nav icon styling, admin icons, and settings footer; add proper table layouts and empty states for Devices and Displays. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
610 B
PHP
17 lines
610 B
PHP
@props(['title', 'description' => null])
|
|
|
|
<div {{ $attributes->merge(['class' => 'flex flex-col items-center justify-center px-6 py-14 text-center']) }}>
|
|
@if (isset($icon))
|
|
<div class="mb-4 flex h-12 w-12 items-center justify-center rounded-2xl bg-slate-100 text-slate-400">
|
|
{{ $icon }}
|
|
</div>
|
|
@endif
|
|
<h3 class="text-sm font-semibold text-slate-900">{{ $title }}</h3>
|
|
@if ($description)
|
|
<p class="mt-1 max-w-sm text-sm text-slate-500">{{ $description }}</p>
|
|
@endif
|
|
@if (isset($action))
|
|
<div class="mt-5">{{ $action }}</div>
|
|
@endif
|
|
</div>
|