--- export interface Props { refs?: string; href?: string; } const { refs, href } = Astro.props; ---
{ href ? ( {refs} ) : refs ? ( {refs} ) : null }