1
0
mirror of synced 2025-12-22 11:26:57 -05:00
Files
docs/components/article/LinkIconHeading.tsx
2022-08-04 00:00:34 +00:00

13 lines
295 B
TypeScript

import { LinkIcon } from '@primer/octicons-react'
type Props = {
slug: string
}
export const LinkIconHeading = ({ slug }: Props) => {
return (
<a className="doctocat-link" href={`#${slug}`}>
<LinkIcon className="octicon-link" size="small" verticalAlign="middle" />
</a>
)
}