import Image from "next/image"; type Props = { callback?: () => void; className?: string; icon: string; width: number; height: number; title: string; }; export const SidebarButton: React.FC = ({ callback, height, icon, className, width, title, }) => ( );