UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 805 B
import React, { Component } from 'react'; export default class FilterRemoveOutlineIcon 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-filter-remove-outline-icon ${this.props.className}`}><path d="M14.732 20.828l2.846-2.846-2.846-2.81 1.414-1.415 2.847 2.811 2.81-2.81 1.415 1.414-2.811 2.81 2.81 2.846-1.414 1.415-2.81-2.847-2.847 2.847-1.414-1.415zM2 2h18v2h-.08L14 9.92V22.91l-6-6V9.906L2.094 4H2V2zm8 14.08l2 2V9h.092l5-5H4.922l5 5H10v7.08z"/></svg> ) } }