--- import { Icon } from "astro-icon/components"; interface Props { title: string; link: string; current?: boolean; showIcon?: boolean; } const { title, link, current, showIcon } = Astro.props; --- { showIcon ? (
{title}
) : ( title )}