Skip to content

Avatar

An image element with a fallback for representing the user.

Installation

shell
php artisan ui:add avatar

Usage

vue
<template>
  <Avatar>
    <AvatarImage src="https://github.com/stacktracelabs.png" alt="@stacktracelabs" />
    <AvatarFallback>ST</AvatarFallback>
  </Avatar>
</template>

<script setup lang="ts">
import { Avatar, AvatarFallback, AvatarImage } from '@/Components/Avatar'
</script>