diff --git a/ui/components/component-library/picker-network/README.mdx b/ui/components/component-library/picker-network/README.mdx
index 19e90d02f..43bcbb253 100644
--- a/ui/components/component-library/picker-network/README.mdx
+++ b/ui/components/component-library/picker-network/README.mdx
@@ -16,21 +16,6 @@ The `PickerNetwork` accepts all props below as well as all [Box](/docs/ui-compon
-### Src
-
-Use the `src` prop with an image url to render the `AvatarNetwork`.
-
-
-
-```jsx
-import { PickerNetwork } from '../../ui/component-library/picker-network';
-
-
-
-```
-
### Label
Use the `label` prop for the text content of the `PickerNetwork` component
@@ -40,8 +25,23 @@ Use the `label` prop for the text content of the `PickerNetwork` component
```jsx
-import { PickerNetwork } from '../../ui/component-library/picker-network';
-
-
-
+import { PickerNetwork } from '../../ui/component-library';
+
+
+
+```
+
+### Src
+
+Use the `src` prop with an image url to render the `AvatarNetwork`. Use the `avatarNetworkProps` to pass additional props to the `AvatarNetwork` component.
+
+
+
+```jsx
+import { PickerNetwork } from '../../ui/component-library';
+
+
+
```
\ No newline at end of file
diff --git a/ui/components/component-library/picker-network/picker-network.test.js b/ui/components/component-library/picker-network/picker-network.test.js
index 878b5b968..3a1d99399 100644
--- a/ui/components/component-library/picker-network/picker-network.test.js
+++ b/ui/components/component-library/picker-network/picker-network.test.js
@@ -54,4 +54,11 @@ describe('PickerNetwork', () => {
'down-arrow-picker-icon',
);
});
+ // className
+ it('should render with custom className', () => {
+ const { getByTestId } = render(
+ ,
+ );
+ expect(getByTestId('picker-network')).toHaveClass('test-class');
+ });
});