react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 844 B
JSX
import React, { Component } from 'react';
export default class ClockOutIcon 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-clock-out-icon ${this.props.className}`}><path d="M17.997 1l1.798 1.792-4.004 4 1.416 1.415 4-3.998L22.996 6v-5M12.002 7.997a7.002 7.002 0 1 0 0 14.006A7.001 7.001 0 0 0 19 15a7.001 7.001 0 0 0-6.996-7.003zm-.005 2.154a4.852 4.852 0 0 1 0 9.703A4.849 4.849 0 0 1 7.15 15a4.848 4.848 0 0 1 4.849-4.849zm-.996 1.851v3.687l3.189 1.84.746-1.299-2.436-1.406v-2.822"/></svg>
)
}
}