Files for my website bwc9876.dev
at d4e4017d083ea8c05848a3ffb659dae087e67662 11 lines 254 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>