mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
22 lines
314 B
Vue
22 lines
314 B
Vue
<template>
|
|
<div class="p-avatar-group p-component">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AvatarGroup'
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.p-avatar-group .p-avatar + .p-avatar {
|
|
margin-left: -1rem;
|
|
}
|
|
|
|
.p-avatar-group {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
</style>
|