mirror of
https://github.com/bitinflow/ui.git
synced 2026-03-13 13:45:59 +00:00
18 lines
257 B
Vue
18 lines
257 B
Vue
<template>
|
|
<div class="py-4 px-8 border-b dark:border-base-800 rounded-t">
|
|
<div class="text-xl font-medium">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "BitinflowCardHeader"
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|