Files
portfolio/src/components/MDX/A.astro
Nathan Cummins 69792d4faf
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 13m15s
Begin styling projects page
2025-08-13 07:42:38 +09:30

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>