UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 771 B
import React, { Component } from 'react'; export default class GestureTapIcon 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-gesture-tap-icon ${this.props.className}`}><path d="M10 9a1 1 0 1 1 2 0v4.47l1.21.13 4.94 2.19c.526.242.86.771.85 1.35v4.36a1.55 1.55 0 0 1-1.5 1.5H11a1.37 1.37 0 0 1-1-.43l-4.9-4.2.74-.77a1 1 0 0 1 .74-.32h.22L10 19V9zm1-4a4 4 0 0 1 2 7.465v-1.229a3 3 0 1 0-4 0v1.229A4 4 0 0 1 11 5z"/></svg> ) } }