@aware([
'action',
'icon',
'stepper',
])
@props([
'action' => null,
'icon' => null,
'stepper' => null,
'force' => false,
])
@if($action || $stepper || $icon || $force)
{{ $slot }}
{{-- Icon --}}
@if ($icon)
{!! $icon !!}
@endif
{{-- Action --}}
@if ($action)
{{ $action }}
@endif
{{-- Stepper --}}
@if ($stepper)
@endif
@else
{{ $slot }}
@endif