<img width="1439" alt="Screenshot 2024-10-30 at 8 58 12 PM" src="https://github.com/user-attachments/assets/26231270-5e73-40fb-9efa-c661585ebe7c"> Fixes https://linear.app/chatwoot/project/campaign-redesign-f82bede26ca7/overview --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
24 lines
518 B
Vue
24 lines
518 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
layout: {
|
|
type: String,
|
|
default: 'col',
|
|
},
|
|
});
|
|
const emit = defineEmits(['click']);
|
|
const handleClick = () => {
|
|
emit('click');
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="relative flex w-full gap-3 px-6 py-5 shadow outline-1 outline outline-n-container group/cardLayout rounded-2xl bg-n-solid-2"
|
|
:class="props.layout === 'col' ? 'flex-col' : 'flex-row'"
|
|
@click="handleClick"
|
|
>
|
|
<slot name="header" />
|
|
<slot name="footer" />
|
|
</div>
|
|
</template>
|