import React from 'react'; interface NavItemProps { icon: JSX.Element; text: string; } export const NavItem = ({ icon, text }: NavItemProps) => { return (
{icon} {text}
); };