Files
Archive/retro/atomcms/resources/themes/base/views/components/button/button.blade.php

6 lines
292 B
PHP
Raw Normal View History

2025-12-09 06:52:43 +00:00
@props(['type' => 'button'])
<button {{ $attributes->merge(['class' => 'relative text-sm font-medium overflow-hidden rounded px-5 py-2.5 text-white transition-all duration-300 hover:ring-2 hover:ring-offset-2']) }} type="{{ $type }}">
<span class="relative">{{ $slot }}</span>
</button>