chore: Migrated Instagram inbox warning style issues (#11332)

**Before**
![CleanShot 2025-04-17 at 22 53
28@2x](https://github.com/user-attachments/assets/00841dd1-ca1f-47b3-9972-6c9100bd2291)

![CleanShot 2025-04-17 at 22 53
46@2x](https://github.com/user-attachments/assets/648a4770-3aea-4b84-9456-6941744a4d65)


**After**
![CleanShot 2025-04-17 at 22 50
40@2x](https://github.com/user-attachments/assets/d37250fd-5400-4548-82f4-ab0c3b417b3a)
![CleanShot 2025-04-17 at 22 50
47@2x](https://github.com/user-attachments/assets/ca611297-8dd0-4bd9-b6b6-02660c252aa9)

---------

Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
This commit is contained in:
Muhsin Keloth
2025-04-21 14:17:39 +05:30
committed by GitHub
parent c24a6dc74c
commit 1531772365

View File

@@ -1,5 +1,6 @@
<script setup>
import Banner from 'dashboard/components-next/banner/Banner.vue';
import Icon from 'dashboard/components-next/icon/Icon.vue';
defineProps({
content: {
@@ -10,7 +11,10 @@ defineProps({
</script>
<template>
<Banner color="ruby">
{{ content }}
<Banner color="amber">
<div class="flex items-center gap-2">
<Icon icon="i-lucide-info" class="flex-shrink-0 size-4" />
<span>{{ content }}</span>
</div>
</Banner>
</template>