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 (
{React.cloneElement(icon, { className: "w-4 text-sky-300", })}

{text}

); }