UNPKG

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.

17 lines (15 loc) 515 B
import SvgIcon from '@mui/material/SvgIcon'; /** * WindowMinIcon ~ */ export default function WindowOptionsIcon(props) { return ( <SvgIcon {...props}> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> <path d="M0,0H24V24H0Z" fill="none" /> <path d="M24.852,17.981,3,18V15.945l21.852-.019Z" transform="translate(-2 5)" /> <path d="M1,4V21H22.853V4.1ZM3,19V6h8V19Zm18,0H13V6h8Z" transform="translate(0 -2)" /> </svg> </SvgIcon> ); }