coolify/resources/views/components/loading.blade.php
2023-06-23 14:35:13 +02:00

7 lines
223 B
PHP

@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>