react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 839 B
JSX
import React, { Component } from 'react';
export default class VanishIcon 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-vanish-icon ${this.props.className}`}><path d="M16 13v-2h5v2h-5zm-1.172-5.243l2.829-2.829 1.414 1.415-2.829 2.828-1.414-1.414zM11 16h2v5h-2v-5zm0-13h2v5h-2V3zM4.929 17.657l2.829-2.829 1.414 1.414-2.828 2.829-1.415-1.414zm0-11.314l1.415-1.415 2.828 2.829-1.414 1.414-2.829-2.828zM8 13H3v-2h5v2zm11.071 4.657l-1.414 1.414-2.829-2.829 1.414-1.414 2.829 2.829z"/></svg>
)
}
}