mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 23:58:15 -05:00
26 lines
679 B
TypeScript
26 lines
679 B
TypeScript
import { RiTelegramLine as TelegramIcon } from "react-icons/ri"
|
|
|
|
import { Icons } from "../icons"
|
|
|
|
export const ProjectLinkIconMap: Record<string, any> = {
|
|
github: (
|
|
<Icons.gitHub size={18} className="duration-200 hover:text-anakiwa-500" />
|
|
),
|
|
website: (
|
|
<Icons.globe
|
|
width={22}
|
|
height={22}
|
|
className="duration-200 hover:text-anakiwa-500"
|
|
/>
|
|
),
|
|
twitter: (
|
|
<Icons.twitter size={22} className="duration-200 hover:text-anakiwa-500" />
|
|
),
|
|
telegram: (
|
|
<TelegramIcon size={22} className="duration-200 hover:text-anakiwa-500" />
|
|
),
|
|
discord: (
|
|
<Icons.discord size={20} className="duration-200 hover:text-anakiwa-500" />
|
|
),
|
|
}
|