File: D:/HostingSpaces/SBogers10/wingssprayer.komma.pro/resources/views/components/textButton.blade.php
@php
$isButton = isset($isButton) && $isButton == true ? true : false;
$elem = $isButton ? 'button' : 'a';
@endphp
<{{$elem}} class="c-text-button @modifiers('c-text-button')" @if(!$isButton) href="{{ $textButtonLink ?? '/' }}" @if(isset($textButtonLink) && \Str::startsWith($textButtonLink, ['http://', 'https://'])) target="_blank" @endif @endif>
<span class="c-text-button__text">{{ $textButtonText ?? 'textButtonText' }}</span>
<i class="c-text-button__icon">@include('components.images.arrowRight')</i>
</{{$elem}}>