--- title: 'IconGallery' sidebar: order: 6 title: IconGallery --- The `IconGallery` block enables you to easily document React icon components associated with your project, displayed in a neat grid. ![Screenshot of IconGallery and IconItem blocks](../../_assets/doc-block-icongallery.png) {/* prettier-ignore-start */} ```md {/* Iconography.mdx */} import { Meta, Title, IconGallery, IconItem } from '@storybook/blocks'; import { Icon as IconExample } from './Icon'; # Iconography ``` {/* prettier-ignore-end */} ## IconGallery ```js import { IconGallery } from '@storybook/blocks'; ``` `IconGallery` is configured with the following props: ### `children` Type: `React.ReactNode` `IconGallery` expects only `IconItem` children. ## IconItem ```js import { IconItem } from '@storybook/blocks'; ``` `IconItem` is configured with the following props: ### `name` (**Required**) Type: `string` Sets the name of the icon. ### `children` Type: `React.ReactNode` Provides the icon to be displayed.