@props([
'variant' => 'primary', // primary | success | danger | secondary | ghost
'size' => null, // sm | lg | null
'type' => 'button',
'href' => null, // render as link if set
'block' => false,
])
@php
$classes = 'crh-btn crh-btn--'.$variant
.($size ? ' crh-btn--'.$size : '')
.($block ? ' crh-btn--block' : '');
@endphp
@if($href)
merge(['class' => $classes]) }}>{{ $slot }}
@else
@endif