--- import type { HTMLAttributes } from "astro/types"; interface Props extends HTMLAttributes<"a"> {} import Link from "@components/Link.astro"; const { href, ...attrs } = Astro.props as Props; ---