import ExternalLinkIcon from "./ExternalLink"; interface Props { title: string; body: string; href?: string; imgSrc?: string; } export default function CardLink({ title, body, href, imgSrc }: Props) { const Wrapper = href ? 'a' : 'div'; return (

{title}

{body}

{href && }
); }