import React from 'react'; import './SidebarLink.scss'; import { NavLink } from 'react-router-dom'; import { Icon } from '../../Icon'; type SidebarLinkProps = { path?: string; label?: string; }; const SidebarLink: React.FC = ({ path = '', label }) => { return (
{label}
); }; export default SidebarLink;