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:
17
resources/views/flux/table/columns.blade.php
Normal file
17
resources/views/flux/table/columns.blade.php
Normal file
@@ -0,0 +1,17 @@
|
||||
@blaze
|
||||
|
||||
@props([
|
||||
'sticky' => false,
|
||||
])
|
||||
|
||||
@php
|
||||
$classes = Flux::classes()
|
||||
->add($sticky ? 'sticky top-0 z-20' : '')
|
||||
;
|
||||
@endphp
|
||||
|
||||
<thead {{ $attributes->class($classes) }} data-flux-columns>
|
||||
<tr {{ isset($tr) ? $tr->attributes : '' }}>
|
||||
{{ $tr ?? $slot }}
|
||||
</tr>
|
||||
</thead>
|
||||
Reference in New Issue
Block a user