@if(isset($button) && isset($button->link) && isset($button->text) && $button->link != '' && $button->text != '')
<a class="button @if(isset($hasShadow) && $hasShadow) has-shadow @endif {{ $direction or 'right' }}" href="{{$button->link}}">
{{$button->text}}
<span class="arrow">@include('site.svg.arrow')</span>
</a>
@endif