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.

8 lines
241 B

<script lang="ts">
export let link: string|null = null;
export let text: string|null = null;
</script>
<a href={link} class="py-2 px-5 font-museo bg-red-500 bg-opacity-20 hover:bg-opacity-50 text-white duration-150">
{text}
</a>