mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 10:21:37 +00:00
16 lines
737 B
PHP
16 lines
737 B
PHP
@props(['href'])
|
|
|
|
@php
|
|
$class = 'w-max inline-flex items-center justify-center rounded-md border border-transparent bg-primary-600 px-4 py-1 h-9 font-semibold text-white transition hover:bg-primary-700 focus:border-primary-700 focus:border-primary-300 outline-0 focus:ring focus:ring-primary-200 focus:ring-opacity-50 active:bg-primary-700 disabled:opacity-25 dark:focus:border-primary-700 dark:focus:ring-primary-700 dark:focus:ring-opacity-40';
|
|
@endphp
|
|
|
|
@if(isset($href))
|
|
<button onclick="location.href = '{{ $href }}'" {{ $attributes->merge(['class' => $class]) }}>
|
|
{{ $slot }}
|
|
</button>
|
|
@else
|
|
<button {{ $attributes->merge(['type' => 'submit', 'class' => $class]) }}>
|
|
{{ $slot }}
|
|
</button>
|
|
@endif
|