File: D:/HostingSpaces/pietvanmierlo/stempelbv.nl/resources/views/site/components/ghostbutton.blade.php
@php
$isButton = isset($isButton) && $isButton == true ? true : false;
$elem = $isButton ? 'button' : 'a';
@endphp
<{{$elem}} class="c-ghostbutton @modifiers('c-ghostbutton') {{ $ghostButtonClasses ?? '' }}" @if(!$isButton) href="{{ $ghostButtonLink ?? '/' }}" @if(isset($ghostButtonLink) && \Str::startsWith($ghostButtonLink, ['http://', 'https://'])) target="_blank" rel="noopener" @endif @endif>
<span class="c-ghostbutton__text">{{ $ghostButtonText ?? 'button text' }}</span>
<i class="c-ghostbutton__icon">@include('site.components.icons.arrow')</i>
</{{$elem}}>