react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 763 B
JSX
import React, { Component } from 'react';
export default class HandPointingRightIcon 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-hand-pointing-right-icon ${this.props.className}`}><path d="M21 9a1 1 0 1 1 0 2h-4.473l-.129 1.21-2.194 4.936a1.457 1.457 0 0 1-1.34.854H8.5c-.803 0-1.5-.727-1.5-1.5V10c0-.386.163-.736.427-.99l4.2-4.91.771.74c.198.189.32.451.32.741l-.024.221L11.001 9h10zM2 18v-8h3v8H2z"/></svg>
)
}
}