shadcn-vue/apps/www/registry/new-york/ui/avatar/AvatarImage.vue
2024-11-21 11:52:31 +08:00

10 lines
235 B
Vue

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