Files
open-lovable/components/shared/icons/source-icon.tsx
T
Developers Digest 836b085f75 continue re-design
2025-09-05 13:06:17 -04:00

21 lines
446 B
TypeScript

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>
);
};