UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 767 B
import React, { Component } from 'react'; export default class BasketFillIcon 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-fill-icon ${this.props.className}`}><path d="M3 2h3v3H3V2zm3 5h3v3H6V7zm2-5h3v3H8V2zm9 9l-5-5h3V2h4v4h3l-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> ) } }