my-portfolio/src/lib/ProjectCard/VendorIcon.svelte
ChrQR 7f935758e3
All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 2m18s
Lots of css fixes. Lots more to come!
2024-05-19 23:28:38 +02:00

13 lines
245 B
Svelte

<script>
export let name;
export let img;
export let url;
</script>
<a href={url}>
<div class="flex flex-col justify-center hover:scale-110">
<img src={img} alt={name} class="max-h-12 max-w-12 self-center" />
<p>{name}</p>
</div>
</a>