--- interface Props { class?: string; href?: string; [key: string]: any; } const { class: className, href = '#', ...props } = Astro.props; const isExternal = (href as string).startsWith('http'); ---