// Unlike other mdx elements, it does not receive the converted img tag, // but all the attributes of the img tag. const ImageWrapper = (props: JSX.IntrinsicElements["img"]) => { return (
{props.alt}
{props.alt}
); }; export default ImageWrapper;