react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 772 B
JSX
import React, { Component } from 'react';
export default class BasketUnfillIcon 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-basket-unfill-icon ${this.props.className}`}><path d="M3 10h3V7H3v3zm2-5h3V2H5v3zm3 5h3V7H8v3zm9-9l-5 5h3v4h4V6h3l-5-5zM7.5 22a2 2 0 0 1-1.786-1.1l-.006.002L3.1 13.439 3 13a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1l-.042.287-2.672 7.613A2 2 0 0 1 16.5 22h-9zm.107-2h8.784l2.184-6H5.423l2.184 6z"/></svg>
)
}
}