mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
3b553f551d
fix(lint): resolve lint errors
33 lines
582 B
Vue
33 lines
582 B
Vue
<script lang="ts" setup>
|
|
defineProps<{
|
|
title: string
|
|
count: number
|
|
selected?: boolean
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
hover:bg-app-bg-grey
|
|
:class="[selected ? 'bg-app-white' : 'bg-transparent']"
|
|
flex
|
|
items-center
|
|
gap-8px
|
|
py-10px
|
|
px-16px
|
|
text-18px
|
|
font-400
|
|
leading-24px
|
|
cursor-pointer
|
|
>
|
|
<h1
|
|
hover:text-app-white
|
|
:class="[selected ? 'text-app-black font-700 opacity-100' : 'text-app-white opacity-50']"
|
|
>
|
|
{{ title }}
|
|
</h1>
|
|
<p text-app-text-grey>
|
|
({{ count }})
|
|
</p>
|
|
</div>
|
|
</template>
|