UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 723 B
import React, { Component } from 'react'; export default class NoteMultipleOutlineIcon 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-note-multiple-outline-icon ${this.props.className}`}><path d="M3 6v16h18v2H3c-1.1 0-2-.9-2-2V6h2zm13 3h5.5L16 3.5V9zM7 2h10l6 6v10a2 2 0 0 1-2 2H6.99A1.992 1.992 0 0 1 5 18l.01-14c0-1.104.885-2 1.99-2zm0 2.002v14h14v-7h-7v-7H7z"/></svg> ) } }