Files
Archive/retro/atomcms/resources/themes/atom/views/components/dropdown/item.blade.php

8 lines
273 B
PHP
Raw Normal View History

2025-12-09 06:52:43 +00:00
@props(['href' => '', 'target' => '_self'])
<a href="{{ $href }}" target="{{ $target }}" @class([
'block py-2 px-4 font-semibold hover:bg-gray-100 text-gray-900 text-sm dark:text-gray-200 dark:hover:bg-gray-700',
$attributes->get('class'),
])>
{{ $slot }}
</a>