2022-08-08 18:41:29 -04:00
|
|
|
<script setup lang="ts">
|
2023-01-28 15:32:48 -05:00
|
|
|
const props = defineProps<{
|
2022-08-10 16:31:25 -04:00
|
|
|
dest: string;
|
|
|
|
highlight?: boolean;
|
|
|
|
}>();
|
2022-08-08 18:41:29 -04:00
|
|
|
</script>
|
|
|
|
|
2022-08-08 17:49:35 -04:00
|
|
|
<template>
|
2022-08-08 18:41:29 -04:00
|
|
|
<a :href="dest">
|
|
|
|
<div
|
2022-08-10 16:31:25 -04:00
|
|
|
:class="[
|
2023-05-24 12:14:48 -04:00
|
|
|
'inline-block text-xs rounded-lg py-1 px-2 mt-1 mr-1 transition border border-pink-200 dark:border-pink-900 border-2',
|
|
|
|
{ 'bg-pink-200 dark:bg-pink-900 shadow-lg': highlight },
|
2022-08-10 16:31:25 -04:00
|
|
|
]"
|
2022-08-08 18:41:29 -04:00
|
|
|
>
|
|
|
|
<slot />
|
|
|
|
</div>
|
|
|
|
</a>
|
2022-08-08 17:49:35 -04:00
|
|
|
</template>
|