1
0
forked from aya/aya
Files
aya/client/app/src/Controls/TextLink.svelte
2025-12-17 16:47:48 +00:00

8 lines
273 B
Svelte

<script>
let { href = null, text = null, class: className = "", ...restProps } = $props();
</script>
<button href={href} class="aya-anim-pop rounded-lg text-aya-500 underline transition duration-200 hover:text-aya-400 {className}" {...restProps}>
{text}
</button>