react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 700 B
JSX
import React, { Component } from 'react';
export default class LoupeIcon 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-loupe-icon ${this.props.className}`}><path d="M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-18C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm1 5h-2v4H7v2h4v4h2v-4h4v-2h-4V7z"/></svg>
)
}
}