react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 632 B
JSX
import React, { Component } from 'react';
export default class MouseIcon 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-icon ${this.props.className}`}><path d="M11 1.067C7.053 1.56 4 4.92 4 8.998h7m-7 6a8 8 0 0 0 16 0v-4H4m9-9.93v7.93h7c0-4.079-3.056-7.438-7-7.93z"/></svg>
)
}
}