mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-04 22:13:25 +00:00
14 lines
318 B
Vue
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>
|