22 lines
602 B
PHP
Raw Normal View History

2022-06-16 18:54:16 +03:00
@props(['action'])
2022-06-16 18:32:41 +03:00
@php
if (empty($action)) {
$action = 'form.loading';
}
@endphp
<i
2022-06-16 18:32:41 +03:00
@class([
'animate-submit delay-[0.28s] absolute w-2 h-2 rounded-full left-0 right-0 -top-3.5 m-auto',
'before:absolute before:w-2 before:h-2 before:rounded-full before:animate-submit before:delay-[0.14s]',
'after:absolute after:w-2 after:h-2 after:rounded-full after:animate-submit before:-left-3.5 after:-right-3.5 after:delay-[0.42s]'
])
{{ $attributes }}
v-if="{{ $action }}"
>
2022-06-16 18:32:41 +03:00
</i>
<span :class="[{'opacity-0': {{ $action }}}]">
{!! $slot !!}
</span>