import React from "react"; import ImageWithZoom from "react-medium-image-zoom"; import { useThemeUI } from "theme-ui"; function handleImageZoomBackground(background: string) { const images = Array.from(document.getElementsByClassName("Image__Zoom")); images.map(img => { if ( img.previousElementSibling && img.previousElementSibling.tagName === "DIV" ) { img.previousElementSibling.style.background = background; } }); } const ImageZoom: React.FC<{}> = (props) => { const { theme } = useThemeUI(); const image = { ...props, className: "Image__Zoom", style: { display: "block", margin: "0 auto", width: "100%", }, }; return ( handleImageZoomBackground(theme.colors.background)} defaultStyles={{ zoomImage: { borderRadius: "5px", }, }} /> ); }; export default ImageZoom;