@props(['name'])
@php
// Icon glyphs from the reicon pack (OUTLINE group), converted to
// currentColor so they inherit the surrounding text color. To add more:
// copy the inner markup from the reicon Outline weight and swap
// #000000 -> currentColor. See DESIGN.md.
$icons = [
'fire' => '',
'cloud' => '',
'code' => '',
'mail' => '',
'dashboard' => '',
'projects' => '',
'servers' => '',
'sources' => '',
'destinations' => '',
'storages' => '',
'variables' => '',
'notifications' => '',
'keys' => '',
'tags' => '',
'time-back' => '',
'terminal' => '',
'profile' => '',
'teams' => '',
'subscription' => '',
'settings' => '',
'admin' => '',
'sponsor' => '',
'documentation' => '',
'feedback' => '',
'logout' => '',
'search' => '',
'plus' => '',
'grid' => '',
'eye' => '',
'eye-off' => '',
'eye-off2' => '',
'globe' => '',
'browser-terminal' => '',
'sliders' => '',
'filter' => '',
'sort-direction' => '',
'refresh' => '',
'refresh3' => '',
'restart' => '',
'stop' => '',
'stop-circle' => '',
'play-circle' => '',
'browser-code' => '',
'database' => '',
'layers' => '',
'unordered-list' => '',
'file' => '',
'file-content' => '',
'folder' => '',
'alert-triangle' => '',
'alert-circle' => '',
'check-circle' => '',
'info-circle' => '',
'arrow-right' => '',
'upload' => '',
'x' => '',
'check' => '',
'chevron-down' => '',
'trash' => '',
'external-link' => '',
'server-update' => '',
'calendar' => '',
'cpu' => '',
'graph' => '',
'shield-alert' => '',
'bandage' => '',
'broom' => '',
'shield-star' => '',
'network' => '',
];
$svg = $icons[$name] ?? '';
@endphp