@php $type = $data['type'] ?? 'spacer'; $height = $data['height'] ?? 'md'; $color = $data['color'] ?? '#e2e8f0'; $width = $data['width'] ?? 100; $heights = [ 'xs' => '20px', 'sm' => '40px', 'md' => '60px', 'lg' => '80px', 'xl' => '120px', ]; $h = $heights[$height] ?? '60px'; @endphp
@if($type === 'divider')
@endif