UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 757 B
import React, { Component } from 'react'; export default class MouseVariantIcon 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-mouse-variant-icon ${this.props.className}`}><path d="M14 7h-4V2.1c2.282.463 4 2.481 4 4.9zM4 7a5.002 5.002 0 0 1 4-4.9V7H4zm10 5a5.002 5.002 0 0 1-4 4.9V18a3 3 0 1 0 6 0v-5a4 4 0 0 1 4-4h2l-1 1 1 1h-2a2 2 0 0 0-2 2v5a5 5 0 0 1-10 0v-1.1A5.002 5.002 0 0 1 4 12V9h10v3z"/></svg> ) } }