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) • 452 B
JSX
import SvgIcon from '@mui/material/SvgIcon';
/**
* ThumbnailNavigationBottomIcon ~
*/
export default function ThumbnailNavigationBottomIcon(props) {
return (
<SvgIcon {...props}>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path d="M3,3H21V5H3Z" transform="translate(0 16)" />
<path d="M21,5H3V19H21ZM19,17H5V7H19Z" transform="translate(0 -2)" />
</svg>
</SvgIcon>
);
}