File: D:/HostingSpaces/SBogers95/rentman.io/resources/views/site/components/textButtonLink.blade.php
<a class="c-text-button @modifiers('c-text-button') @if(isset($class)) {{$class}} @endif"
href="{{ $textButtonLink or '/' }}"
@if( isset($textButtonLink) &&
!(str_contains($textButtonLink, 'rentmanapp.com')) &&
starts_with($textButtonLink, ['http://', 'https://']) &&
(!isset($preventBlank) || $preventBlank == false))
target="_blank" rel="noopener noreferrer"
@endif
@if(isset($textButtonTitle)) title="{{ $textButtonTitle }}" @endif
>
<span class="c-text-button__text">{{ $textButtonText or config('atomic.buttonText') }}</span>
<i class="c-text-button__icon"
@if( isset($dataIconDirection)) data-icon-direction="{{$dataIconDirection}}" @endif>@include('site.components.icons.longArrow')</i>
</a>