chore: Update chat list header UI (#10573)

This commit is contained in:
Sivin Varghese
2024-12-12 10:12:07 +05:30
committed by GitHub
parent 86d37622c8
commit 757fac79d1
9 changed files with 161 additions and 72 deletions

View File

@@ -11,6 +11,10 @@ const props = defineProps({
type: Boolean,
default: true,
},
isCompact: {
type: Boolean,
default: false,
},
});
const emit = defineEmits(['change']);
@@ -59,7 +63,10 @@ onMounted(() => {
<template>
<div
:class="{ 'tabs--container--with-border': border }"
:class="{
'tabs--container--with-border': border,
'tabs--container--compact': isCompact,
}"
class="tabs--container"
>
<button