@props(['name', 'class' => 'w-5 h-5']) @php /* Map legacy sf-icon names → blade-heroicons v2 names */ $map = [ 'home' => 'home', 'calendar' => 'calendar-days', 'pencil' => 'pencil', 'photo' => 'photo', 'chart-bar' => 'chart-bar', 'inbox' => 'inbox', 'link' => 'link', 'cog' => 'cog-6-tooth', 'sparkles' => 'sparkles', 'upload' => 'arrow-up-tray', 'eye' => 'eye', 'beaker' => 'beaker', 'user-group' => 'user-group', 'user-circle' => 'user-circle', 'bell' => 'bell', 'check-circle' => 'check-circle', 'x-circle' => 'x-circle', 'exclamation' => 'exclamation-triangle', 'signal' => 'signal', 'users' => 'users', 'logout' => 'arrow-right-on-rectangle', 'trash' => 'trash', 'plus' => 'plus', 'x' => 'x-mark', 'search' => 'magnifying-glass', 'refresh' => 'arrow-path', 'download' => 'arrow-down-tray', 'edit' => 'pencil-square', 'pencil-square'=> 'pencil-square', 'check' => 'check', 'clock' => 'clock', 'globe' => 'globe-alt', 'tag' => 'tag', 'flag' => 'flag', 'star' => 'star', 'heart' => 'heart', 'chat' => 'chat-bubble-left', 'share' => 'share', 'duplicate' => 'document-duplicate', 'filter' => 'funnel', 'sort' => 'bars-arrow-up', 'lock' => 'lock-closed', 'key' => 'key', 'mail' => 'envelope', 'phone' => 'phone', 'location' => 'map-pin', 'bolt' => 'bolt', 'fire' => 'fire', 'gift' => 'gift', 'trending' => 'arrow-trending-up', 'information' => 'information-circle', 'warning' => 'exclamation-triangle', ]; $heroName = $map[$name] ?? $name; @endphp