feat: add support for unsupported

This commit is contained in:
Shivam Mishra
2024-12-05 17:37:50 +05:30
parent e7fddee4dc
commit 685cf56819
6 changed files with 52 additions and 1 deletions
@@ -20,6 +20,8 @@ const varaintBaseMap = {
[MESSAGE_VARIANTS.TEMPLATE]: 'bg-n-solid-iris text-n-slate-12',
[MESSAGE_VARIANTS.ERROR]: 'bg-n-ruby-4 text-n-ruby-12',
[MESSAGE_VARIANTS.EMAIL]: 'bg-n-alpha-2 w-full',
[MESSAGE_VARIANTS.UNSUPPORTED]:
'bg-n-solid-amber/70 border border-dashed border-n-amber-12 text-n-amber-12',
};
const orientationMap = {
@@ -0,0 +1,9 @@
<script setup>
import BaseBubble from './Base.vue';
</script>
<template>
<BaseBubble class="p-3 text-sm">
{{ $t('CONVERSATION.UNSUPPORTED_MESSAGE') }}
</BaseBubble>
</template>