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