react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 706 B
JSX
import React, { Component } from 'react';
export default class InboxArrowDownIcon 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-down-icon ${this.props.className}`}><path d="M16 10h-2V7h-4v3H8l4 4m7 1h-4c0 1.66-1.34 3-3 3s-3-1.34-3-3H4.99V5H19m0-2H4.99c-1.1 0-1.98.9-1.98 2L3 19c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"/></svg>
)
}
}