mirador
Version:
An open-source, web-based 'multi-up' viewer that supports zoom-pan-rotate functionality, ability to display/compare simple images, and images with annotations.
16 lines (14 loc) • 436 B
JSX
import SvgIcon from '@mui/material/SvgIcon';
/**
* RestoreZoomIcon ~
*/
export default function RestoreZoomIcon(props) {
return (
<SvgIcon {...props}>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path d="M6,15H9v3h2V13H6Zm9-6V6H13v5h5V9Z" />
<path d="M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8,8,8,0,0,1-8,8Z" />
</svg>
</SvgIcon>
);
}