react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 838 B
JSX
import React, { Component } from 'react';
export default class TimetableIcon 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-timetable-icon ${this.props.className}`}><path d="M14 12h1.5v2.823l2.438 1.408-.75 1.299L14 15.689V12zM4 2h14a2 2 0 0 1 2 2v6.101A7 7 0 0 1 10.101 20H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 13v3h4.674A6.973 6.973 0 0 1 8 15H4zm0-7h6V5H4v3zm14 0V5h-6v3h6zM4 13h4.29a6.998 6.998 0 0 1 1.811-3H4v3zm11-2.846a4.846 4.846 0 1 0 0 9.692 4.846 4.846 0 0 0 0-9.692z"/></svg>
)
}
}