eo-n/ui
UIComponentsAvatar

Avatar

Displays a user’s avatar or profile image.

AE

Installation

CLI

npx shadcn@latest add "https://eo-n.vercel.app/r/avatar"

Manual

Copy and paste the following code into your project.

"use client";
 
import * as React from "react";
import { Avatar as AvatarPrimitive } from "@base-ui-components/react/avatar";
 
import { cn } from "@/lib/utils";
 
function Avatar({
  className,
  ...props
}: React.ComponentProps<typeof AvatarPrimitive.Root>) {
  return (
    <AvatarPrimitive.Root
      data-slot="avatar"
      className={cn(
        "relative flex size-8 shrink-0 overflow-hidden rounded-full",
        className
      )}
      {...props}
    />
  );
}
 
function AvatarImage({
  className,
  ...props
}: React.ComponentProps<typeof AvatarPrimitive.Image>) {
  return (
    <AvatarPrimitive.Image
      data-slot="avatar-image"
      className={cn("aspect-square size-full", className)}
      {...props}
    />
  );
}
 
function AvatarFallback({
  className,
  ...props
}: React.ComponentProps<typeof AvatarPrimitive.Fallback>) {
  return (
    <AvatarPrimitive.Fallback
      data-slot="avatar-fallback"
      className={cn(
        "bg-muted flex size-full items-center justify-center rounded-full",
        className
      )}
      {...props}
    />
  );
}
 
export { Avatar, AvatarImage, AvatarFallback };
Update the import paths to match your project setup.

Usage

Import all parts and piece them together.

import { Avatar, AvatarFallback, AvatarImage } from "@components/ui/avatar";
<Avatar>
  <AvatarImage src="https://github.com/aeonzz.png" />
  <AvatarFallback>AE</AvatarFallback>
</Avatar>

On this page