mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
10 lines
287 B
TypeScript
10 lines
287 B
TypeScript
import { FiLink } from '@react-icons/all-files/fi/FiLink';
|
|
|
|
export function Anchor({ href }: { readonly href: string }) {
|
|
return (
|
|
<a className="mr-1 inline-block rounded outline-none focus:ring focus:ring-width-2 focus:ring-blurple" href={href}>
|
|
<FiLink size={20} />
|
|
</a>
|
|
);
|
|
}
|