react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 703 B
JSX
import React, { Component } from 'react';
export default class InboxArrowUpIcon 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-inbox-arrow-up-icon ${this.props.className}`}><path d="M14 14h-4v-3H8l4-4 4 4h-2v3m-9.01 1V5H19v10h-4a3 3 0 1 1-6 0H4.99M19 3H4.99c-1.104 0-1.98.895-1.98 2L3 19c0 1.105.886 2 1.99 2H19a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>
)
}
}