UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 700 B
import React, { Component } from 'react'; export default class CurrencyTryIcon 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-currency-try-icon ${this.props.className}`}><path d="M19 12a9 9 0 0 1-9 9H8v-8.227l-3 1.092v-2.128l3-1.092V8.872L5 9.964V7.835l3-1.092V3h2v3.015l5-1.82v2.129l-5 1.82v1.773l5-1.82v2.128l-5 1.82V19a7 7 0 0 0 7-7h2z"/></svg> ) } }