react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 750 B
JSX
import React, { Component } from 'react';
export default class FilterRemoveIcon 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-icon ${this.props.className}`}><path d="M14.757 20.828l2.847-2.846-2.847-2.81 1.415-1.415 2.846 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.846 2.847-1.415-1.415zM2 2h18v2h-.08L13 10.92V22.91l-4-4v-8.003L2.094 4H2V2z"/></svg>
)
}
}