react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 753 B
JSX
import React, { Component } from 'react';
export default class CurrencyEurIcon 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-eur-icon ${this.props.className}`}><path d="M7.07 11L7 12l.07 1h10.276l-.846 2H7.674A7 7 0 0 0 19.5 16.33v2.795A9.004 9.004 0 0 1 5.512 15H2l1-2h2.055L5 12l.055-1H2l1-2h2.512a9.004 9.004 0 0 1 14.92-3.295l-.866 2.049A7 7 0 0 0 7.674 9h11.364l-.846 2H7.071z"/></svg>
)
}
}