mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
20 lines
498 B
Vue
20 lines
498 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
auditName: string
|
|
auditUrl?: string
|
|
date?: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div flex items-center gap-16px>
|
|
<slot />
|
|
<div flex flex-col text-14px font-700 leading-24px>
|
|
<NuxtLink hover:underline flex items-center gap-8px :to="auditUrl">
|
|
{{ auditName }}
|
|
<UnoIcon v-if="auditUrl" i-web-openinnew text-16px />
|
|
</NuxtLink>
|
|
<span text-14px font-400 leading-24px>{{ date }}</span>
|
|
</div>
|
|
</div>
|
|
</template>
|