UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 733 B
import React, { Component } from 'react'; export default class ClipboardFlowIcon 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-clipboard-flow-icon ${this.props.className}`}><g><path d="M19 4h-4.18a3 3 0 0 0-5.64 0H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm-7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm-2 13H8v-7H5l4-4 4 4h-3v7zm5 3l-4-4h3V9h2v7h3l-4 4z"/></g></svg> ) } }