react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 815 B
JSX
import React, { Component } from 'react';
export default class CalendarClockIcon 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-calendar-clock-icon ${this.props.className}`}><path d="M15 13h1.5v2.823l2.438 1.408-.75 1.299L15 16.689V13zm4-5.002H5v11h4.673A7 7 0 0 1 19 9.673V7.998zm-14 13a2 2 0 0 1-2-2l.01-14c0-1.105.883-2 1.99-2h1v-2h2v2h8v-2h2v2h1a2 2 0 0 1 2 2V11.1a7 7 0 0 1-9.9 9.898H5zm11-9.844a4.846 4.846 0 1 0 0 9.692 4.846 4.846 0 0 0 0-9.692z"/></svg>
)
}
}