Files
Aether/frontend/src/components/ui/avatar-image.vue

30 lines
532 B
Vue
Raw Normal View History

2025-12-10 20:52:44 +08:00
<script setup lang="ts">
import { AvatarImage as AvatarImagePrimitive } from 'radix-vue'
import { cn } from '@/lib/utils'
import { computed } from 'vue'
interface Props {
class?: string
src?: string
alt: string
}
const props = withDefaults(defineProps<Props>(), {
class: undefined,
src: undefined,
2025-12-10 20:52:44 +08:00
alt: ''
})
const imageClass = computed(() =>
cn('aspect-square h-full w-full', props.class)
)
</script>
<template>
<AvatarImagePrimitive
:class="imageClass"
:src="src || ''"
:alt="alt"
/>
2025-12-10 20:52:44 +08:00
</template>