import { routeIntercept } from '../../functions/Route' import './styles/SidebarItemIcon.css' interface PropsForSidebarItemIcon { icon: string label: string description: string location: string } export default function SidebarItemIcon({ icon, label, description, location }: PropsForSidebarItemIcon) { return (
{label.toUpperCase()} {description.toUpperCase()}
) }