sackey e839d40a99
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Initial commit
2025-07-30 17:15:50 +00:00

22 lines
469 B
PHP

@props([
'kbd' => null,
])
@php
$classes = Flux::classes([
'relative py-2 px-2.5',
'rounded-md',
'text-xs text-white font-medium',
'bg-zinc-800 dark:bg-zinc-700 dark:border dark:border-white/10',
'p-0 overflow-visible',
]);
@endphp
<div popover="manual" {{ $attributes->class($classes) }} data-flux-tooltip-content>
{{ $slot }}
<?php if ($kbd): ?>
<span class="ps-1 text-zinc-300">{{ $kbd }}</span>
<?php endif; ?>
</div>