mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-09 00:17:02 +00:00
starting again
This commit is contained in:
13
frontend/src/components/ui/avatar/AvatarImage.vue
Normal file
13
frontend/src/components/ui/avatar/AvatarImage.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user