File: D:/HostingSpaces/SBogers10/eleo.komma.nl/resources/views/components/button.blade.php
<{{ $tagName }} class="c-{{$type}} @modifiers('c-$type') {{ $buttonClasses ?? '' }}" @if($tagName === 'a') href="{{ $buttonLink }}" @endif>
<span class="c-{{$type}}__side" hidden>
@include('components.svg.button-shape')
</span>
<span class="c-{{$type}}__inside">
<span class="c-{{$type}}__text">{{ $buttonText }}</span>
<i class="c-{{$type}}__icon">
@if(!empty($buttonIcon))
@includeIf('components.icons.'.$buttonIcon)
@else
@includeIf('components.icons.arrow')
@endif
</i>
</span>
<span class="c-{{$type}}__side" hidden>
@include('components.svg.button-shape')
</span>
</{{ $tagName }}>