mirror of
https://github.com/bitinflow/ui-old.git
synced 2026-03-13 13:45:57 +00:00
17 lines
246 B
Vue
17 lines
246 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: "CardHeader"
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |