| 1234567891011121314151617181920212223242526 | @props([
    'shape' => 'square',
    'size' => 'lg',
])
<img {{
    $attributes
        ->class([
            'doc-template-logo object-contain',
            match ($size) {
                'sm' => 'max-h-8',
                'md' => 'max-h-16',
                'lg' => 'max-h-24',
                'xl' => 'max-h-32',
                default => $size,
            },
            match ($shape) {
                'square' => 'rounded-none',
                'rounded' => 'rounded-md',
                'circle' => 'rounded-full',
                default => $shape,
            },
        ])
}}
/>
 |