Saaj UI

Avatar

Profile picture, user initials or fallback icon.

Preview

Installation

npx saaj add Avatar

Usage

MyAvatar.tsx
import {
  Avatar,
  AvatarFallback,
  AvatarImage,
  AvatarProps,
  AvatarText,
} from '@/components/ui/Avatar';
import { Text } from '@/components/ui/Text';
 
export function MyAvatar() {
  return (
    <Avatar>
      <AvatarImage src="https://avatar.iran.liara.run/public?username=John+Doe" />
      <AvatarFallback>
        <AvatarText>
          JD
        </AvatarText>
      </AvatarFallback>
    </Avatar>
  );
}

On this page