mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-01-28 07:43:18 +00:00
🎨 Add new Flux icons: implement multiple reusable icon components (e.g., hand-raised, hand-thumb-up, heart, hashtag, home) with variant support for improved UI consistency.
This commit is contained in:
15
resources/views/flux/callout/link.blade.php
Normal file
15
resources/views/flux/callout/link.blade.php
Normal file
@@ -0,0 +1,15 @@
|
||||
@blaze
|
||||
|
||||
@props([
|
||||
'external' => null,
|
||||
])
|
||||
|
||||
@php
|
||||
$classes = Flux::classes()
|
||||
->add('inline font-medium')
|
||||
->add('underline underline-offset-[6px] hover:decoration-current')
|
||||
->add('decoration-zinc-800/20 dark:decoration-white/20')
|
||||
;
|
||||
@endphp
|
||||
{{-- NOTE: It's important that this file has NO newline at the end of the file. --}}
|
||||
<a {{ $attributes->class($classes) }} <?php if ($external) : ?>target="_blank"<?php endif; ?>>{{ $slot }}</a>
|
||||
Reference in New Issue
Block a user