mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
305 B
16 lines
305 B
3 months ago
|
<script setup lang="ts">
|
||
|
defineProps<{
|
||
|
app: {
|
||
|
title: string
|
||
|
logo: string
|
||
|
}
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<img v-if="app.title !== 'SMTP'" class="icon" :alt="app.title" :src="app.logo" />
|
||
|
<GeneralIcon v-else class="text-gray-500" icon="mail" />
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss"></style>
|