@props([
'color' => 'primary',
'darkMode' => false,
'disabled' => false,
'form' => null,
'icon' => null,
'iconPosition' => 'before',
'keyBindings' => null,
'size' => 'md',
'tag' => 'a',
'tooltip' => null,
'type' => 'button',
])
@php
$linkClasses = [
'filament-link inline-flex items-center justify-center gap-0.5 font-medium hover:underline focus:outline-none focus:underline',
'opacity-70 cursor-not-allowed pointer-events-none' => $disabled,
'text-sm' => $size === 'sm',
'text-lg' => $size === 'lg',
'text-primary-600 hover:text-primary-500' => $color === 'primary',
'text-danger-600 hover:text-danger-500' => $color === 'danger',
'text-gray-600 hover:text-gray-500' => $color === 'secondary',
'text-success-600 hover:text-success-500' => $color === 'success',
'text-warning-600 hover:text-warning-500' => $color === 'warning',
'dark:text-primary-500 dark:hover:text-primary-400' => $color === 'primary' && $darkMode,
'dark:text-danger-500 dark:hover:text-danger-400' => $color === 'danger' && $darkMode,
'dark:text-gray-300 dark:hover:text-gray-200' => $color === 'secondary' && $darkMode,
'dark:text-success-500 dark:hover:text-success-400' => $color === 'success' && $darkMode,
'dark:text-warning-500 dark:hover:text-warning-400' => $color === 'warning' && $darkMode,
];
$iconClasses = \Illuminate\Support\Arr::toCssClasses([
'filament-link-icon',
'w-4 h-4' => $size === 'sm',
'w-5 h-5' => $size === 'md',
'w-6 h-6' => $size === 'lg',
'mr-1 rtl:ml-1' => $iconPosition === 'before',
'ml-1 rtl:mr-1' => $iconPosition === 'after'
]);
$hasLoadingIndicator = filled($attributes->get('wire:target')) || filled($attributes->get('wire:click')) || (($type === 'submit') && filled($form));
if ($hasLoadingIndicator) {
$loadingIndicatorTarget = \Illuminate\Support\Str::before(html_entity_decode($attributes->get('wire:target', $attributes->get('wire:click', $form)), ENT_QUOTES), '(');
}
@endphp
@if ($tag === 'a')
map(fn (string $keyBinding): string => str_replace('+', '-', $keyBinding))->implode('.') }}
@endif
@if ($tooltip)
x-tooltip.raw="{{ $tooltip }}"
@endif
{{ $attributes->class($linkClasses) }}
>
@if ($icon && $iconPosition === 'before')
@endif
{{ $slot }}
@if ($icon && $iconPosition === 'after')
@endif
@elseif ($tag === 'button')
@endif