mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 12:47:16 +00:00
15 lines
318 B
Vue
15 lines
318 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
app: {
|
|
title: string
|
|
logo: string
|
|
icon?: string
|
|
}
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<GeneralIcon v-if="app.icon" class="text-nc-content-gray-subtle" :icon="app.icon as IconMapKey" />
|
|
<img v-else class="object-contain" :alt="app.title" :src="app.logo" />
|
|
</template>
|