import Popout from '../popout.js' import Highlight from './highlight.js' import YouTube from './youtube.js' import DesignIterator from './design-iterator.js' import Figure from './figure.js' import Example from './example.js' import ReadMore from './read-more.js' const mdxCustomComponents = { // Custom components DesignIterator, Example, Fixme: props => , Link: props => , Note: props => , ReadMore, Related: props => , Tip: props => , Warning: props => , YouTube, // Tailwind typography plugin overrides h5: props =>
{props.children}
, h6: props =>
{props.children}
, pre: props => , //code: props => , } export default mdxCustomComponents