react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 771 B
JSX
import React, { Component } from 'react';
export default class ClockIcon 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-icon ${this.props.className}`}><path fill-opacity=".902" d="M12 19.998c4.42 0 8-3.582 8-8s-3.58-8-8-8-8 3.582-8 8 3.58 8 8 8zm-.006-18c5.526 0 10.005 4.477 10.005 10s-4.479 10-10.005 10c-5.527 0-9.995-4.477-9.995-10s4.468-10 9.995-10zm.505 5v5.25l4.5 2.67-.753 1.23L11 12.998v-6h1.5z"/></svg>
)
}
}