react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 758 B
JSX
import React, { Component } from 'react';
export default class OnenoteIcon 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-onenote-icon ${this.props.className}`}><path fill-opacity=".78" d="M1.962 4.8L14 3.08V5h7a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-1v8h-6v2.005L1.962 19.209V4.8zM11 16.75v-8.5L9 8.5v4.25l-2-4L5 9v7l1.5.25v-5.5L9 16.5l2 .25zM14 14h4v-1h-4v1zm0-3h4v-1h-4v1zm0-3h4V7h-4v1zm0 8v1h4v-1h-4z"/></svg>
)
}
}