UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 736 B
import React, { Component } from 'react'; export default class MarkerCheckIcon 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-marker-check-icon ${this.props.className}`}><path d="M10 15.998l-5-5 1.413-1.414L10 13.17l7.586-7.586L19 6.998m0-6H5a1.99 1.99 0 0 0-1.99 2L3 15.933c0 .69.35 1.3.882 1.658l8.113 5.407 8.114-5.407c.531-.359.882-.968.882-1.658L21 2.998a2 2 0 0 0-2-2z"/></svg> ) } }