@props([
'href' => null,
'type' => 'button',
'variant' => 'primary',
'icon' => null,
])
@php
$palette = [
'primary' => 'btn-primary',
'secondary' => 'btn-secondary',
'outline-secondary' => 'btn-outline-secondary',
'add' => 'btn-add',
'add-outline' => 'btn-add-outline',
'text-blue' => 'btn-text-blue',
'remove' => 'btn-remove'
][$variant] ?? '';
@endphp
@if ($href)
merge(['class' => "btn text-parrafo $palette"]) }}>
@if ($icon)
@endif
{{ $slot }}
@else
@endif