@props([
'href' => '#',
'active' => false,
'icon' => 'home',
])
@php
$icons = [
'home' => '',
'building' => '',
'map' => '',
'calendar' => '',
'users' => '',
'user-group' => '',
'academic-cap' => '',
'book-open' => '',
'clipboard-check'=> '',
'chart-bar' => '',
'document-text' => '',
'chart-pie' => '',
'shield-check' => '',
];
$iconSvg = $icons[$icon] ?? $icons['home'];
$activeClasses = 'bg-blue-700 text-white';
$defaultClasses = 'text-blue-100 hover:bg-blue-700 hover:text-white';
@endphp
{{ $slot }}