14 lines
450 B
PHP
14 lines
450 B
PHP
<div class="flex flex-col gap-6" data-testid="notifications-skeleton">
|
|
<x-skeleton.header />
|
|
|
|
<div class="flex gap-2 animate-pulse">
|
|
@for($i = 0; $i < 2; $i++)
|
|
<div class="h-7 w-24 rounded-full bg-line"></div>
|
|
@endfor
|
|
</div>
|
|
|
|
<div class="bg-bg-soft border border-line rounded-xl shadow-sm flex flex-col">
|
|
@for($i = 0; $i < 5; $i++)<x-skeleton.table-row class="p-4 py-0" />@endfor
|
|
</div>
|
|
</div>
|