1
1
Fork 0
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.

12 lines
439 B

<script lang="ts">
export let link: string;
export let text: string;
export let icon: string;
</script>
<a href={link} class="py-3 px-6 bg-red-500 bg-opacity-50 hover:bg-opacity-100 group hover:skew-y-3 duration-150" target="_blank">
<div class="flex gap-3 items-center group-hover:-skew-y-3 duration-150">
<span class="text-4xl">{icon}</span>
<span class="text-xl opacity-70">{text}</span>
</div>
</a>