19 lines
341 B
Vue
19 lines
341 B
Vue
<script setup lang="ts">
|
|
import { Link } from '@inertiajs/vue3';
|
|
|
|
defineProps<{
|
|
href: string;
|
|
tabindex?: number;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<Link
|
|
:href="href"
|
|
:tabindex="tabindex"
|
|
class="font-medium text-[#00f2ff] hover:text-[#00f2ff]/80 transition-colors"
|
|
>
|
|
<slot />
|
|
</Link>
|
|
</template>
|