jbilcke-hf's picture
jbilcke-hf HF staff
show speech bubbles by default
2e12a66
raw
history blame
No virus
556 Bytes
import { FaDiscord } from "react-icons/fa"
export function Discord() {
return (
<a
className="
flex flex-row items-center justify-center
h-10
no-underline
animation-all duration-150 ease-in-out
text-stone-700 hover:text-stone-950 scale-95 hover:scale-100"
href="https://discord.gg/AEruz9B92B"
target="_blank">
<div><FaDiscord size={24} /></div>
<span className="text-sm ml-1.5 hidden md:inline">Discord</span>
<span className="text-sm ml-1.5 inline md:hidden"></span>
</a>
)
}