@props(['name', 'class' => ''])
@php
// Map of icon names to their SVG paths
$icons = [
'heart' => '',
'users' => '',
'award' => '',
'arrow-right' => '',
'chevron-right' => '',
'map-pin' => '',
'shield-check' => '',
'credit-card' => '',
'hand-heart' => '',
'search' => '',
'user' => '',
'wallet' => '',
'building' => '',
'shield' => '',
'help-circle' => '',
];
// Get the SVG path for the requested icon
$iconPath = $icons[$name] ?? '';
@endphp