Leon4gr45's picture
Deploy to clean space
75fefa7 verified
import { JSXElementConstructor } from "react";
import Image from "next/image";
export const SourceIcon = ({ id }: { id: string }) => {
return (
<div className="relative">
<div className="">
{id && (
<Image
alt={id}
width={36}
height={36}
className="h-10 w-10 aspect-square"
src={`/icons/${id}.svg`}
/>
)}
</div>
</div>
);
};