react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 820 B
JSX
import React, { Component } from 'react';
export default class CameraTimerIcon 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-timer-icon ${this.props.className}`}><path d="M4.936 6.346a1 1 0 1 1 1.415-1.414l6.723 5.378.348.279a2 2 0 0 1-2.829 2.828l-.278-.348-5.379-6.723zM12 19.998a8 8 0 0 0 5.659-13.656l1.414-1.414a9.969 9.969 0 0 1 2.927 7.07c0 5.523-4.477 10-10 10C6.477 21.998 2 17.522 2 12h2a8 8 0 0 0 8 7.998zM12 1a2 2 0 1 1 0 4 2 2 0 0 1 0-4z"/></svg>
)
}
}