react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 840 B
JSX
import React, { Component } from 'react';
export default class CloseOutlineIcon 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-close-outline-icon ${this.props.className}`}><path d="M3.015 16.743L7.757 12 3.015 7.257l4.242-4.242L12 7.757l4.743-4.742 4.242 4.242L16.243 12l4.742 4.743-4.242 4.242L12 16.243l-4.743 4.742-4.242-4.242zM12 13.414l4.743 4.743 1.414-1.414L13.414 12l4.743-4.743-1.414-1.414L12 10.586 7.257 5.843 5.843 7.257 10.586 12l-4.743 4.743 1.414 1.414L12 13.414z"/></svg>
)
}
}