@props([
'name' => null,
'class' => 'w-5 h-5',
])
@php
// Common icon mappings - icon name to simple SVG path
$icons = [
// Checkmark icons
'check' => '',
'check-circle' => '',
// Star icons
'star' => '',
// Shipping/delivery icons
'truck' => '',
'shipping' => '',
// Shield/security icons
'shield' => '',
'shield-check' => '',
// Badge/award icons
'badge' => '',
// Clock/time icons
'clock' => '',
// Heart/favorite icons
'heart' => '',
// Gift/promo icons
'gift' => '',
// Lightning/flash icons
'bolt' => '',
'lightning' => '',
// Arrow icons
'arrow-right' => '',
// Sparkle/new icons
'sparkles' => '',
// Fire/hot icons
'fire' => '',
// Percentage/discount icons
'percent' => '',
// Tag/label icons
'tag' => '',
// Default fallback
'default' => '',
];
$iconPath = $icons[$name] ?? $icons['default'];
@endphp