diff --git a/.storybook/2.DOCUMENTATION.stories.mdx b/.storybook/2.DOCUMENTATION.stories.mdx
index 9552b2c5b..21f0d29d7 100644
--- a/.storybook/2.DOCUMENTATION.stories.mdx
+++ b/.storybook/2.DOCUMENTATION.stories.mdx
@@ -48,7 +48,7 @@ The example below displays the `Button` component and it explains how we should
import React from 'react';
-import BuyIcon from '../icon/overview-buy-icon.component';
+import IconTokenSearch from '../icon/icon-token-search';
// The mdx file to document props and usage
import README from './README.mdx';
@@ -92,9 +92,9 @@ export default {
control: {
type: 'select',
},
- options: ['BuyIcon'],
+ options: ['IconTokenSearch'],
mapping: {
- BuyIcon: ,
+ IconTokenSearch: ,
},
},
},
diff --git a/ui/components/ui/button/button.stories.js b/ui/components/ui/button/button.stories.js
index 1bd4fa05b..9772b8ed3 100644
--- a/ui/components/ui/button/button.stories.js
+++ b/ui/components/ui/button/button.stories.js
@@ -1,6 +1,6 @@
import React from 'react';
-import BuyIcon from '../icon/overview-buy-icon.component';
+import IconTokenSearch from '../icon/icon-token-search';
import README from './README.mdx';
import Button from '.';
@@ -36,9 +36,9 @@ export default {
control: {
type: 'select',
},
- options: ['BuyIcon'],
+ options: ['IconTokenSearch'],
mapping: {
- BuyIcon: ,
+ IconTokenSearch: ,
},
},
submit: { control: 'boolean' },
@@ -132,11 +132,10 @@ TypeInline.args = {
};
export const Icon = (args) => ;
-
Icon.args = {
type: 'primary',
- icon: ,
- children: 'Buy',
+ icon: ,
+ children: 'Search',
};
export const Submit = (args) => (
diff --git a/ui/components/ui/icon/README.mdx b/ui/components/ui/icon/README.mdx
index 4eee1c29b..b9c654992 100644
--- a/ui/components/ui/icon/README.mdx
+++ b/ui/components/ui/icon/README.mdx
@@ -146,22 +146,6 @@ Use the `className` prop to add an additional class to the icon. This additional
-## BuyIcon
-
-
-
-
-
-## SwapIcon
-
-
-
-
-
## Send/SwapIcon