koel/resources/assets/js/components/user/UserAvatar.vue

19 lines
394 B
Vue
Raw Normal View History

2024-01-18 11:13:05 +00:00
<template>
<img :alt="`Avatar of ${user.name}`" :src="user.avatar" :title="user.name">
</template>
<script setup lang="ts">
import { toRefs } from 'vue'
const props = defineProps<{ user: Pick<User, 'name' | 'avatar'> }>()
const { user } = toRefs(props)
</script>
<style scoped lang="scss">
img {
border-radius: 50%;
aspect-ratio: 1/1;
background: var(--color-bg-primary);
}
</style>