UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 826 B
import React, { Component } from 'react'; export default class CameraEnhanceIcon 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-enhance-icon ${this.props.className}`}><path d="M8.999 2.998L7.167 5H4a2.003 2.003 0 0 0-1.997 2.003v11.996C2.002 20.098 2.9 21 4 21H20A2.012 2.012 0 0 0 22.003 19V7.003A2.009 2.009 0 0 0 20 5h-3.169L15 2.998m-2.998 15a5 5 0 1 1 0-10 5 5 0 0 1 0 10zm0-.995l1.25-2.755 2.75-1.25-2.75-1.25-1.25-2.75-1.25 2.75-2.755 1.25 2.755 1.25"/></svg> ) } }