adrema/resources/js/components/ui/Box.vue

31 lines
789 B
Vue
Raw Normal View History

2022-11-22 00:37:34 +01:00
<template>
2023-05-16 17:19:56 +02:00
<section class="p-3 rounded-lg flex flex-col" :class="{'bg-gray-800': second === false, 'bg-gray-700': second === true}">
2022-11-24 00:59:40 +01:00
<div class="flex items-center">
2023-05-19 01:06:46 +02:00
<div class="col-span-full font-semibold text-gray-300" v-if="heading" v-text="heading"></div>
2022-11-24 00:59:40 +01:00
<slot name="in-title"></slot>
</div>
2023-05-16 17:19:56 +02:00
<main :class="{'mt-2': heading, [containerClass]: true}">
2022-11-22 00:37:34 +01:00
<slot></slot>
</main>
</section>
</template>
<script>
export default {
props: {
heading: {
type: String,
},
second: {
type: Boolean,
default: false,
},
2022-11-22 00:37:34 +01:00
containerClass: {
default: function () {
return '';
},
},
},
};
</script>