mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 04:52:31 +09:00
1.7 KiB
1.7 KiB
Squared dot
Avatars can have a small dot attached to them, if you'd like to
show a user status for example. Add the dot prop
to the target avatar component. See code for more details about usage.
<template>
<VFlex
flex-wrap="wrap"
align-items="flex-end"
row-gap=".5rem"
column-gap=".25rem"
>
<VAvatar
picture="https://media.cssninja.io/content/avatars/7.jpg"
size="small"
dot
squared
/>
<VAvatar
picture="/images/avatars/svg/vuero-1.svg"
dot
squared
/>
<VAvatar
picture="https://media.cssninja.io/content/avatars/11.jpg"
size="medium"
dot
squared
/>
<VAvatar
picture="https://media.cssninja.io/content/avatars/21.jpg"
size="large"
dot
squared
/>
<VAvatar
picture="https://media.cssninja.io/content/avatars/13.jpg"
size="big"
dot
squared
/>
<VAvatar
picture="https://media.cssninja.io/content/avatars/5.jpg"
size="xl"
dot
squared
/>
</VFlex>
</template>