mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-01-28 07:43:18 +00:00
34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
@blaze
|
|
|
|
@aware(['animate' => null])
|
|
|
|
@props([
|
|
'size' => 'base',
|
|
'animate' => null,
|
|
])
|
|
|
|
@php
|
|
$classes = Flux::classes()
|
|
->add('[:where(&)]:w-full')
|
|
->add(match ($size) {
|
|
'base' => '[:where(&)]:h-5 py-[3px]',
|
|
'lg' => 'h-6 py-[2px]',
|
|
})
|
|
->add(match ($animate) {
|
|
'shimmer' => [
|
|
'relative before:absolute before:inset-0 before:-translate-x-full',
|
|
'overflow-hidden isolate',
|
|
'[:where(&)]:[--flux-shimmer-color:white]',
|
|
'dark:[:where(&)]:[--flux-shimmer-color:var(--color-zinc-900)]',
|
|
'before:z-10 before:animate-[flux-shimmer_2s_infinite]',
|
|
'before:bg-gradient-to-r before:from-transparent before:via-[var(--flux-shimmer-color)]/50 dark:before:via-[var(--flux-shimmer-color)]/50 before:to-transparent',
|
|
],
|
|
'pulse' => 'animate-pulse',
|
|
default => '',
|
|
})
|
|
;
|
|
@endphp
|
|
|
|
<div {{ $attributes->class($classes) }} data-flux-skeleton-line>
|
|
<div class="h-full [:where(&)]:rounded [:where(&)]:bg-zinc-400/20">{{ $slot }}</div>
|
|
</div> |