import type { SocialLink } from "@/data/content";
type Props = {
type: SocialLink["icon"];
};
export default function LinkIcon({ type }: Props) {
const s = {
width: 18,
height: 18,
strokeWidth: 1.5,
stroke: "currentColor",
fill: "none" as const,
};
if (type === "gh")
return (
);
if (type === "li")
return (
);
if (type === "x")
return (
);
if (type === "dev")
return (
);
return null;
}