mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
39 lines
523 B
Vue
39 lines
523 B
Vue
|
<script setup lang="ts">
|
||
|
defineProps<{
|
||
|
title: string
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div
|
||
|
w-full
|
||
|
flex
|
||
|
justify-between
|
||
|
gap-8px
|
||
|
my-40px
|
||
|
lg="gap-32px"
|
||
|
>
|
||
|
<div
|
||
|
flex
|
||
|
items-center
|
||
|
gap-8px
|
||
|
text-16px
|
||
|
font-700
|
||
|
class="text-app-white/50"
|
||
|
>
|
||
|
<span text-nowrap>{{ title }}</span>
|
||
|
</div>
|
||
|
<div
|
||
|
w-full
|
||
|
flex
|
||
|
items-center
|
||
|
>
|
||
|
<hr
|
||
|
border="t-2px white/50"
|
||
|
w-full
|
||
|
shrink-1
|
||
|
>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|