AbdulElahGwaith's picture
Upload folder using huggingface_hub
88df9e4 verified
import GithubSlugger from 'github-slugger'
import type { JSX } from 'react'
const slugger = new GithubSlugger()
export type PropsT = {
children: string
as: keyof JSX.IntrinsicElements
slug?: string
className?: string
}
export function HeadingLink({ children, as: Component, slug, className }: PropsT) {
slug = slug || slugger.slug(children)
return (
<Component id={slug} className={className} tabIndex={-1}>
<a className="heading-link" href={`#${slug}`}>
{children}
<span aria-hidden="true" className="heading-link-symbol" />
</a>
</Component>
)
}