Skip to main content
Version: Next

Avatar

The Avatar component from Superset's UI library.

Live Example

Loading component...

Try It

Edit the code below to experiment with the component:

Live Editor
function Demo() {
  return (
    <Avatar
      alt=""
      gap={4}
      shape="circle"
      size="default"
      src=""
    >
      AB
    </Avatar>
  );
}
Result
Loading...

Props

PropTypeDefaultDescription
childrenstring"AB"Text or initials to display inside the avatar.
altstring""-
gapnumber4Letter spacing inside the avatar.
shapestring"circle"The shape of the avatar.
sizestring"default"The size of the avatar.
srcstring""Image URL for the avatar. If provided, overrides children.
draggablebooleanfalse-

Import

import { Avatar } from '@superset/components';

Improve this page

This documentation is auto-generated from the component's Storybook story. Help improve it by editing the story file.