Files
libredesk/frontend/src/components/ui/avatar/AvatarImage.vue
Abhinav Raut edab73a8fa starting again
2024-05-25 11:49:41 +05:30

14 lines
318 B
Vue

<script setup>
import { AvatarImage } from "radix-vue";
const props = defineProps({
src: { type: String, required: true },
asChild: { type: Boolean, required: false },
as: { type: null, required: false },
});
</script>
<template>
<AvatarImage v-bind="props" class="h-full w-full object-cover" />
</template>