react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 658 B
JSX
import React, { Component } from 'react';
export default class GenderMaleIcon 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-gender-male-icon ${this.props.className}`}><path d="M9 9c1.295 0 2.494.41 3.474 1.107L17.581 5H13V3h8v8h-2V6.41l-5.111 5.11A6 6 0 1 1 9 9zm0 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8z"/></svg>
)
}
}