UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 664 B
import React, { Component } from 'react'; export default class FileSendIcon 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-file-send-icon ${this.props.className}`}><path d="M14 2H6c-1.11 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm-1.46 17.37v-2h-4v-1.99h4v-2l3 3-3 2.99zM13 9V3.5L18.5 9H13z"/></svg> ) } }