mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
21 lines
281 B
Vue
21 lines
281 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
to: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLink
|
|
:to="to"
|
|
flex
|
|
gap-12px
|
|
target="_blank"
|
|
>
|
|
<UnoIcon
|
|
i-heroicons-solid-pencil
|
|
text-app-text-grey
|
|
text-24px
|
|
/>
|
|
<slot />
|
|
</NuxtLink>
|
|
</template>
|