mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
13 lines
221 B
Vue
13 lines
221 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-24px />
|
||
|
<slot />
|
||
|
</NuxtLink>
|
||
|
</template>
|