mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 08:47:17 +00:00
14 lines
279 B
Vue
14 lines
279 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
app: {
|
|
title: string
|
|
logo: string
|
|
}
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<img v-if="app.title !== 'SMTP'" class="object-contain" :alt="app.title" :src="app.logo" />
|
|
<GeneralIcon v-else class="text-gray-500" icon="mail" />
|
|
</template>
|