UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 793 B
import React, { Component } from 'react'; export default class HumanHandsdownIcon 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-human-handsdown-icon ${this.props.className}`}><path d="M12.002 1a1.998 1.998 0 1 0 0 4A1.997 1.997 0 0 0 14 2.998 1.997 1.997 0 0 0 12.002 1zM10 6.002a.977.977 0 0 0-.694.283h-.005L4 11.588l1.416 1.41 3.584-3.584v12.589H11V15h1.997v7.003H15V9.413l3.584 3.585L20 11.588l-5.303-5.304A.998.998 0 0 0 14 6"/></svg> ) } }