add header

Signed-off-by: envoyr <hello@envoyr.com>
This commit is contained in:
2023-02-19 22:22:13 +01:00
parent 38af9291cd
commit 69663ba7fa
3 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<template>
<div class="flex justify-between items-center">
<slot />
</div>
</template>
<script>
export default {
name: "BitinflowHeader",
}
</script>

View File

@@ -0,0 +1,9 @@
<template>
<slot />
</template>
<script>
export default {
name: "BitinflowHeaderActions",
}
</script>

View File

@@ -0,0 +1,11 @@
<template>
<div class="text-2xl dark:text-white">
<slot />
</div>
</template>
<script>
export default {
name: "BitinflowHeaderTitle",
}
</script>