import Link from 'next/link' const Label = ({ href, text }:LabelProps):JSX.Element => { return href ? {text} : {text} } interface LabelProps { href?: string text: string icon?: string } export default Label