--- interface Props { tag: string; linked?: boolean; } const { tag, linked = true } = Astro.props; --- { linked ? ( #{tag} ) : ( #{tag} ) }