diff --git a/src/components/Icon/Icon.stories.mdx b/src/components/Icon/Icon.stories.mdx index ab8c244b9..7cf26142f 100644 --- a/src/components/Icon/Icon.stories.mdx +++ b/src/components/Icon/Icon.stories.mdx @@ -29,7 +29,7 @@ All the icons available for use. - {Object.keys(iconSelector).map((iconName) => ( + {Object.keys(iconSelector).sort((a, b) => a.localeCompare(b)).map((iconName) => ( diff --git a/src/components/Icon/__snapshots__/Icon.stories.storyshot b/src/components/Icon/__snapshots__/Icon.stories.storyshot index b77208510..49520bc98 100644 --- a/src/components/Icon/__snapshots__/Icon.stories.storyshot +++ b/src/components/Icon/__snapshots__/Icon.stories.storyshot @@ -3258,6 +3258,43 @@ exports[`Storyshots Design System/Icon Icons Gallery 1`] = `

+
+
+ + + +

+ refresh +

+
+
+ + + + + + + + + diff --git a/src/components/Icon/types.ts b/src/components/Icon/types.ts index 03cba6d11..9fb7612c2 100644 --- a/src/components/Icon/types.ts +++ b/src/components/Icon/types.ts @@ -91,4 +91,5 @@ export type AcceptedIconNames = | 'user' | 'userAvatar' | 'writer' - | 'youtube'; + | 'youtube' + | 'refresh';