@props([ 'align' => 'start', 'position' => 'bottom', 'width' => 'auto', ]) @php $panelAlign = match ($align) { 'end' => 'right-0', 'center' => 'left-1/2 -translate-x-1/2', default => 'left-0', }; $panelPos = match ($position) { 'top' => 'bottom-full mb-1.5', 'left' => 'right-full mr-1.5 top-0', 'right' => 'left-full ml-1.5 top-0', default => 'top-full mt-1.5', }; $panelWidth = $width === 'full' ? 'w-full' : 'min-w-[15rem]'; @endphp