UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 718 B
import React, { Component } from 'react'; export default class GenderMaleFemaleIcon 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-female-icon ${this.props.className}`}><path d="M17.581 4H14V2h7v7h-2V5.41l-3.83 3.83A5.002 5.002 0 0 1 12 16.9V19h2v2h-2v2h-2v-2H8v-2h2v-2.1a5.002 5.002 0 1 1 3.755-9.073L17.58 4zM11 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6z"/></svg> ) } }