--- export interface Props { href: string; className?: string; ariaLabel?: string; title?: string; disabled?: boolean; newTarget?: boolean; } const { href, className, ariaLabel, title, disabled = false, newTarget = true } = Astro.props; ---