react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 709 B
JSX
import React, { Component } from 'react';
export default class BinocularsIcon 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-binoculars-icon ${this.props.className}`}><path d="M11 6h2v7h-2V6zM9 20a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-5l2-9h4v7a1 1 0 0 1-1 1v6zm1-15H7V3h3v2zm5 15v-6a1 1 0 0 1-1-1V6h4l2 9v5a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1zM14 5V3h3v2h-3z"/></svg>
)
}
}