mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-25 08:48:57 +00:00
10 lines
241 B
Vue
10 lines
241 B
Vue
<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>
|