@php $size = $size ?? 'sm'; $classes = match ($size) { 'xs' => 'h-7 w-7 rounded-md', default => 'h-8 w-8 rounded-lg', }; $iconClasses = match ($size) { 'xs' => 'h-3.5 w-3.5', default => 'h-4 w-4', }; @endphp