UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 890 B
import React, { Component } from 'react'; export default class CameraMeteringMatrixIcon 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-camera-metering-matrix-icon ${this.props.className}`}><path d="M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm0 2v12h16V6H4zm1.5 1.5H11v1.67A3.008 3.008 0 0 0 9.17 11H5.5V7.5zm13 0V11h-3.67A3.009 3.009 0 0 0 13 9.17V7.5h5.5zm0 9H13v-1.67A3.009 3.009 0 0 0 14.83 13h3.67v3.5zm-13 0V13h3.67A3.009 3.009 0 0 0 11 14.83v1.67H5.5zm6.5-6a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z"/></svg> ) } }