DemoAvatarRounded.vue
560 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<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>