import Link from 'next/link'; interface PillLinkProps { text: string; link: string; isNew?: boolean; newText?: string; } const PillLink: React.FC = ({ text, link, isNew = false, newText = 'NEW' }) => ( {(isNew || newText) && ( {newText} )} {text} ); export default PillLink;