react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 793 B
JSX
import React, { Component } from 'react';
export default class ImageMutlipleIcon extends Component {
static defaultProps = {
className: ''
};
constructor(props) {
super(props);
}
render() {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-image-mutliple-icon ${this.props.className}`}><path d="M22.003 16.001V4A2.006 2.006 0 0 0 20 2.002H7.997A2.002 2.002 0 0 0 6.001 4V16c0 1.099.899 1.996 1.996 1.996H20a2.006 2.006 0 0 0 2.003-1.996zM11 12.002l2.032 2.71L16 11.003l3.999 5H7.997m-5.995-10V20c0 1.099.898 2.003 1.997 2.003h13.998V20H4V6.001"/></svg>
)
}
}