diff --git a/packages/react/.storybook/story-config.ts b/packages/react/.storybook/story-config.ts
index 05d792ca..483abbb1 100644
--- a/packages/react/.storybook/story-config.ts
+++ b/packages/react/.storybook/story-config.ts
@@ -48,6 +48,7 @@ export type Stories =
| 'Link'
| 'List'
| 'ListItem'
+ | 'ListItemAvatar'
| 'ListItemButton'
| 'ListItemIcon'
| 'ListItemText'
@@ -145,6 +146,9 @@ const StoryConfig: StorybookConfig = {
ListItem: {
hierarchy: `${StorybookCategories.DataDisplay}/List Item`,
},
+ ListItemAvatar: {
+ hierarchy: `${StorybookCategories.DataDisplay}/List Item Avatar`,
+ },
ListItemButton: {
hierarchy: `${StorybookCategories.DataDisplay}/List Item Button`,
},
diff --git a/packages/react/src/components/ListItemAvatar/ListItemAvatar.stories.mdx b/packages/react/src/components/ListItemAvatar/ListItemAvatar.stories.mdx
new file mode 100644
index 00000000..d6eed37b
--- /dev/null
+++ b/packages/react/src/components/ListItemAvatar/ListItemAvatar.stories.mdx
@@ -0,0 +1,54 @@
+import {ArgsTable, Source, Story, Canvas, Meta} from '@storybook/addon-docs';
+import dedent from 'ts-dedent';
+import StoryConfig from '../../../.storybook/story-config.ts';
+import {withDesign} from '../../../.storybook/utils.ts';
+import ListItemAvatar from './ListItemAvatar.tsx';
+import Avatar from '../Avatar';
+
+export const meta = {
+ component: ListItemAvatar,
+ title: StoryConfig.ListItemAvatar.hierarchy,
+};
+
+
+
+export const Template = args => ;
+
+# List Item Avatar
+
+- [Overview](#overview)
+- [Props](#props)
+- [Usage](#usage)
+
+## Overview
+
+`ListItemAvatar` is a wrapper to apply List styles to an Avatar.
+
+
+
+## Props
+
+
+
+## Usage
+
+Import and use the `ListItemAvatar` component in your components as follows.
+
+