react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 740 B
JSX
import React, { Component } from 'react';
export default class CrosshairsIcon 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-crosshairs-icon ${this.props.className}`}><path d="M3.055 13H1v-2h2.055A9.004 9.004 0 0 1 11 3.055V1h2v2.055A9.004 9.004 0 0 1 20.945 11H23v2h-2.055A9.004 9.004 0 0 1 13 20.945V23h-2v-2.055A9.004 9.004 0 0 1 3.055 13zM12 5a7 7 0 1 0 0 14 7 7 0 0 0 0-14z"/></svg>
)
}
}