@props(['label', 'icon' => null, 'url' => null, 'textClass' => null])
@php
$isButton = $attributes->has('type');
$labelClass = $textClass ?? 'text-xs';
@endphp
@if ($isButton)
@else
class([
'flex items-center button justify-center gap-1 px-4 py-2 text-center text-white rounded-md bg-gradient-to-b shadow-xs shadow-sky-950 from-[#0846ff] to-[#046fad] hover:brightness-110 hover:inset-shadow',
]) }}>
@isset($icon)
@endisset
{{ $label }}
@endif