39 lines
560 B
Vue
39 lines
560 B
Vue
<template>
|
|
<div class="demo-space-x">
|
|
<VAvatar
|
|
rounded="0"
|
|
color="primary"
|
|
icon="ri-user-line"
|
|
/>
|
|
|
|
<VAvatar
|
|
rounded="sm"
|
|
color="secondary"
|
|
icon="ri-user-line"
|
|
/>
|
|
|
|
<VAvatar
|
|
rounded
|
|
color="success"
|
|
icon="ri-user-line"
|
|
/>
|
|
|
|
<VAvatar
|
|
rounded="lg"
|
|
color="info"
|
|
icon="ri-user-line"
|
|
/>
|
|
|
|
<VAvatar
|
|
rounded="xl"
|
|
color="warning"
|
|
icon="ri-user-line"
|
|
/>
|
|
|
|
<VAvatar
|
|
color="error"
|
|
icon="ri-user-line"
|
|
/>
|
|
</div>
|
|
</template>
|