react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 738 B
JSX
import React, { Component } from 'react';
export default class CursorDefaultIcon 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-cursor-default-icon ${this.props.className}`}><path d="M13.636 21.975a1 1 0 0 1-1.33-.484l-2.18-4.735-2.502 2.026A1 1 0 0 1 6 18V3a1 1 0 0 1 1.643-.766l.01-.012 11.491 9.642a1 1 0 0 1-.445 1.746l-3.16.615 2.206 4.73a1 1 0 0 1-.484 1.33l-3.625 1.69z"/></svg>
)
}
}