react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 756 B
JSX
import React, { Component } from 'react';
export default class EyeOutlineIcon 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-eye-outline-icon ${this.props.className}`}><path d="M12 9a3 3 0 1 1 0 6 3 3 0 0 1 0-6zm0-4.5c5.003 0 9.272 3.111 11 7.5-1.728 4.389-5.997 7.5-11 7.5-5.002 0-9.272-3.111-11-7.5 1.728-4.389 5.998-7.5 11-7.5zM3.183 12a9.815 9.815 0 0 0 17.633 0 9.817 9.817 0 0 0-17.633 0z"/></svg>
)
}
}