Files
oa/documentation/avatar/avatar-fake-square-documentation.md
2025-05-24 01:49:48 +09:00

1.2 KiB

Fake squared

When the provided picture URL is null, the avatar component falls back to a fake avatar. Same size mofifiers are available. Use the initials prop to pass initials to the component. See the code examples for more details about usage.

<template>
  <VFlex
    flex-wrap="wrap"
    align-items="flex-end"
    row-gap=".5rem"
    column-gap=".25rem"
  >
    <VAvatar
      initials="CT"
      size="small"
      squared
    />
    <VAvatar initials="CT" squared />
    <VAvatar
      initials="CT"
      size="medium"
      squared
    />
    <VAvatar
      initials="CT"
      size="large"
      squared
    />
    <VAvatar
      initials="CT"
      size="big"
      squared
    />
    <VAvatar
      initials="CT"
      size="xl"
      squared
    />
  </VFlex>
</template>