react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 765 B
JSX
import React, { Component } from 'react';
export default class ServerRemoveIcon 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-server-remove-icon ${this.props.className}`}><path d="M4 4h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zm5 4h1V6H9v2zM5 6v2h2V6H5zm5.586 11L8 14.414 9.414 13 12 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 17z"/></svg>
)
}
}