UNPKG

639 BJavaScriptView Raw
1function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
3import React from 'react';
4import withIcon from '../withIcon';
5
6function IconNotes(props) {
7 return React.createElement("svg", _extends({
8 viewBox: "0 0 24 24"
9 }, props), React.createElement("path", {
10 d: "M3 18h12v-2H3v2zM3 6v2h18V6H3zm0 7h18v-2H3v2z"
11 }));
12}
13
14export default withIcon('IconNotes')(IconNotes);
\No newline at end of file