All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 13m15s
12 lines
247 B
Plaintext
12 lines
247 B
Plaintext
---
|
|
import type { HTMLAttributes } from "astro/types";
|
|
|
|
interface Props extends HTMLAttributes<"a"> {}
|
|
|
|
import Link from "@components/Link.astro";
|
|
|
|
const { href, ...attrs } = Astro.props as Props;
|
|
---
|
|
|
|
<Link href={href} {...attrs}><slot /></Link>
|