react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 795 B
JSX
import React, { Component } from 'react';
export default class ClockFastIcon 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-fast-icon ${this.props.className}`}><path d="M15 4a8 8 0 1 1 0 16 8 8 0 0 1 0-16zm0 2a6 6 0 1 0 0 12 6 6 0 0 0 0-12zm-1 2h1.5v3.782l2.331 2.33-1.06 1.062L14 12.404V8zM2 18a1 1 0 1 1 0-2h3.832A9.992 9.992 0 0 0 7 18H2zm1-5a1 1 0 1 1 0-2h2.05L5 12l.05 1H3zm1-5a1 1 0 0 1 0-2h3a9.991 9.991 0 0 0-1.168 2H4z"/></svg>
)
}
}