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.
18 lines (17 loc) • 574 B
JavaScript
import React from 'react';
import SvgIcon from '@material-ui/core/SvgIcon';
/**
* WindowMinIcon ~
*/
export default function WindowMinIcon(props) {
return /*#__PURE__*/React.createElement(SvgIcon, props, /*#__PURE__*/React.createElement("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24"
}, /*#__PURE__*/React.createElement("path", {
d: "M5,16H8v3h2V14H5ZM16,8V5H14v5h5V8Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M22.517,1.524H1.736V22.37H22.517Zm-2,18.845H3.736V3.524H20.517Z"
})));
}