import Link from "next/link"; import React, { ReactElement } from "react"; interface SidebarItemProps { text: string; icon: ReactElement; path: string; } export default function ({ text, icon, path }: SidebarItemProps) { return (
{text}