@props(['id', 'maxWidth', 'maxHeight']) @php $id = $id ?? md5($attributes->wire('model')); $maxWidth = [ 'sm' => 'w-25', 'md' => 'w-50', 'lg' => 'w-75', 'xl' => 'sm:max-w-xl', '2xl' => 'sm:max-w-2xl', ][$maxWidth ?? '2xl']; $maxHeight = [ 'sm' => 'h-25', 'md' => 'h-50', 'lg' => 'h-100', 'xl' => 'sm:max-h-xl', '2xl' => 'sm:max-h-2xl', ][$maxHeight ?? '2xl']; @endphp