coolify/resources/views/components/loading.blade.php

7 lines
223 B
PHP
Raw Normal View History

2023-06-23 14:35:13 +02:00
@props(['text' => null])
<span class="flex items-center gap-4 text-white">
{{ $text }}<span
{{ $attributes->class(['bg-warning loading', 'loading-spinner' => !$attributes->has('class')]) }}>
</span>
</span>