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.
24 lines (23 loc) • 755 B
JavaScript
import React from 'react';
import SvgIcon from '@material-ui/core/SvgIcon';
/**
* ThumbnailNavigationRightIcon ~
*/
export default function ThumbnailNavigationRightIcon(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: "M0,0H24V24H0Z",
transform: "translate(24) rotate(90)",
fill: "none"
}), /*#__PURE__*/React.createElement("path", {
d: "M3,3H21V5H3Z",
transform: "translate(24) rotate(90)"
}), /*#__PURE__*/React.createElement("path", {
d: "M19,3H5V21H19ZM17,19H7V5H17Z",
transform: "translate(-2)"
})));
}