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.

18 lines
345 B

<script>
export let text;
export let icon;
export let url;
export let title;
if (title == null) title = text;
</script>
<a
href={url}
{title}
class="text-xs flex flex-col justify-center hover:scale-110 duration-150"
>
<span class="text-4xl ">{icon}</span>
<span class="text-gray-600 dark:text-gray-300 font-light">{text}</span>
</a>