mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
528 B
20 lines
528 B
<template>
|
|
<AvatarRoot
|
|
class="mr-2 inline-flex select-none items-center justify-center overflow-hidden rounded-full align-middle"
|
|
>
|
|
<AvatarImage
|
|
class="h-full w-full rounded-[inherit] object-cover"
|
|
:src="img ?? ''"
|
|
/>
|
|
<AvatarFallback
|
|
class="leading-1 flex h-full w-full items-center justify-center bg-white text-sm font-medium"
|
|
:delay-ms="600"
|
|
>
|
|
<slot />
|
|
</AvatarFallback>
|
|
</AvatarRoot>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineProps<{ img?: string }>();
|
|
</script>
|
|
|