re designed ticket bubble loading

This commit is contained in:
Mamalizz
2025-02-28 23:09:17 +03:30
parent bead035a7b
commit f9e69f21bd
@@ -0,0 +1,25 @@
<script setup lang="ts">
// types
type Props = {
is_user: boolean;
};
// props
defineProps<Props>();
</script>
<template>
<div
class="w-full flex items-center"
:class="is_user ? 'justify-start' : 'justify-end'"
>
<Skeleton
class="!w-full lg:!w-1/2 !h-32 border border-slate-200 !rounded-xl p-5 flex items-start"
:class="is_user ? '!rounded-br-none' : '!rounded-bl-none'"
></Skeleton>
</div>
</template>
<style scoped></style>