react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 786 B
JSX
import React, { Component } from 'react';
export default class TableRowRemoveIcon 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-table-row-remove-icon ${this.props.className}`}><path d="M9.414 13L12 15.586 14.586 13 16 14.414 13.414 17 16 19.586 14.586 21 12 18.414 9.414 21 8 19.586 10.586 17 8 14.414 9.414 13zM22 9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3zM4 9h4V6H4v3zm6 0h4V6h-4v3zm6 0h4V6h-4v3z"/></svg>
)
}
}