mirror of https://github.com/nocodb/nocodb
Pranav C
3 months ago
10 changed files with 66 additions and 43 deletions
@ -0,0 +1,15 @@
|
||||
<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> |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 16 KiB |
Loading…
Reference in new issue