All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 2m18s
13 lines
245 B
Svelte
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>
|