You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
311 B

<script>
export let href;
export let icon;
export let text;
</script>
<a href={href} class="flex flex-col items-center gap-1 justify-center hover:scale-110 duration-100" target="_blank">
<span class="text-6xl">{icon}</span>
<span class="text-sm text-gray-200 text-center">{text}</span>
</a>