iachat/app/javascript/dashboard/components-next/CardLayout.vue
Sivin Varghese a3855a8d1d
feat(v4): Update the help center portal design (#10296)
Co-authored-by: Pranav <pranavrajs@gmail.com>
2024-10-23 22:09:36 -07:00

17 lines
343 B
Vue

<script setup>
const emit = defineEmits(['click']);
const handleClick = () => {
emit('click');
};
</script>
<template>
<div
class="relative flex flex-col w-full gap-3 px-6 py-5 shadow-sm group/cardLayout rounded-2xl bg-n-solid-1"
@click="handleClick"
>
<slot name="header" />
<slot name="footer" />
</div>
</template>