import Link from "../Link"; import { LinkIcon } from "lucide-react"; import type { ComponentPropsWithoutRef } from "react"; export type HeadingAnchorProps = Omit, "href" | "id"> & { id: string; }; const HeadingAnchor = ({ id, ...rest }: HeadingAnchorProps) => { return ( ); }; export default HeadingAnchor;