Files for my website bwc9876.dev
at main 11 lines 248 B view raw
1--- 2export interface Props { 3 href: string; 4 class?: string; 5 [x: string | number]: unknown; 6} 7 8const { href, class: className, ...rest } = Astro.props; 9--- 10 11<a href={href} class={className} rel="noopener" target="_blank" {...rest}><slot /></a>