import React from 'react'; // Import the original mapper import MDXComponents from '@theme-original/MDXComponents'; import MessageBubble from '@site/src/components/MessageBubble'; import ExternalLink from '@site/src/components/ExternalLink'; import BlockQuote from '@site/src/components/BlockQuote'; import Highlight from '@site/src/components/Highlight'; import KaigirokuDougaLink from '@site/src/components/KaigirokuDougaLink'; import { Icon } from '@iconify/react'; // Import the entire Iconify library. export default { // Re-use the default mapping ...MDXComponents, // Map the "" tag to our MessageBubble component // `MessageBubble` will receive all props that were passed to `` in MDX MessageBubble, ExternalLink, BlockQuote, Highlight, KaigirokuDougaLink, Icon: Icon, // Make the iconify Icon component available in MDX as . };