--- title: Avatar sidebar_label: Avatar --- import { StoryWithControls } from '../../../src/components/StorybookWrapper'; # Avatar The Avatar component from Superset's UI library. ## Live Example ## Try It Edit the code below to experiment with the component: ```tsx live function Demo() { return ( AB ); } ``` ## Props | Prop | Type | Default | Description | |------|------|---------|-------------| | `children` | `string` | `"AB"` | Text or initials to display inside the avatar. | | `alt` | `string` | `""` | - | | `gap` | `number` | `4` | Letter spacing inside the avatar. | | `shape` | `string` | `"circle"` | The shape of the avatar. | | `size` | `string` | `"default"` | The size of the avatar. | | `src` | `string` | `""` | Image URL for the avatar. If provided, overrides children. | | `draggable` | `boolean` | `false` | - | ## Import ```tsx import { Avatar } from '@superset/components'; ``` --- :::tip[Improve this page] This documentation is auto-generated from the component's Storybook story. Help improve it by [editing the story file](https://github.com/apache/superset/edit/master/superset-frontend/packages/superset-ui-core/src/components/Avatar/Avatar.stories.tsx). :::