import { ListItemText, ListItemButton, ListItemIcon } from '@mui/material' import PropTypes from 'prop-types' import { Link } from 'react-router-dom' export const SidebarLink = ({ label, icon, route }) => { return ( {icon} ) } SidebarLink.propTypes = { label: PropTypes.string, icon: PropTypes.node, to: PropTypes.string }