frontend/components/ui/avatar/AvatarImage.vue

10 lines
239 B
Vue
Raw Normal View History

<script setup lang="ts">
import { AvatarImage, type AvatarImageProps } from "radix-vue";
const props = defineProps<AvatarImageProps>();
</script>
<template>
<AvatarImage v-bind="props" class="h-full w-full object-cover" />
</template>