--- interface Props { href: string; title?: string; } const { href } = Astro.props as Props; --- <a href={href} target="_blank" rel="noopener noreferrer"> {Astro.props.title ?? href} </a>