2
0
mirror of https://github.com/frappe/books.git synced 2025-02-13 17:39:09 +00:00
books/src/components/WindowsTitleBar.vue
2022-05-28 16:03:31 +05:30

25 lines
469 B
Vue

<template>
<div
class="window-drag flex items-center border-b text-gray-900 border-gray-100"
style="height: 28px"
>
<Fb class="ml-2" />
<p class="mx-auto text-sm" v-if="companyName && dbPath">
{{ companyName }} - {{ dbPath }}
</p>
</div>
</template>
<script>
import Fb from './Icons/18/fb.vue';
export default {
name: 'WindowsTitleBar',
components: { Fb },
props: {
dbPath: String,
companyName: String,
},
};
</script>