blob: 172b61a7ce965267f3f288cf155b25727e1f0204 [file] [log] [blame]
import React from 'react';
import MDXComponents from '@theme-original/MDXComponents';
import { Icon } from '@iconify/react';
const IIcon = ({ icon = 'mdi:information-outline', ...props }) => {
return <Icon icon={icon} {...props} />;
};
export default {
...MDXComponents,
IIcon,
};