Trying to import heroicon in mdx doc file using the IconGallery.
Getting the following error:
Check the render method of `MDXContent`.```
This is my mdx file:
```import { Meta, Title, IconGallery, IconItem } from '@storybook/blocks'
import { UserCircle } from '@heroicons/react/24/outline'
<Meta title="Iconography" />
# Iconography
<IconGallery>
<IconItem name="user">
<UserCircle />
</IconItem>
</IconGallery>