react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 716 B
JSX
import React, { Component } from 'react';
export default class CameraRearIcon 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-rear-icon ${this.props.className}`}><path d="M12 6a2 2 0 0 1-2-2c0-1.1.89-2 1.99-2s2 .9 2 2C14 5.1 13.1 6 12 6zm5-6H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm-3 20v2h5v-2m-9 0H5v2h5v2l3-3-3-3v2z"/></svg>
)
}
}