UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 720 B
import React, { Component } from 'react'; export default class AccountCheckIcon 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-account-check-icon ${this.props.className}`}><path d="M9 5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7zm0 8.75c3.866 0 7 1.567 7 3.5V19H2v-1.75c0-1.933 3.134-3.5 7-3.5zm8-1.086l-2.75-3L15.414 8.5 17 10.086 20.586 6.5l1.164 1.414-4.75 4.75z"/></svg> ) } }