mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 11:33:02 +00:00
10 lines
280 B
TypeScript
10 lines
280 B
TypeScript
import { RiLink } from 'react-icons/ri';
|
|
|
|
export function HeaderAnchor({ id }: { id: string }) {
|
|
return (
|
|
<a href={`#${id}`} data-anchor={id} className="absolute -left-6 opacity-10 transition-opacity duration-200">
|
|
<RiLink className="max-h-[.75em]" />
|
|
</a>
|
|
);
|
|
}
|