react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 660 B
JSX
import React, { Component } from 'react';
export default class CurrencyJpyIcon 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-jpy-icon ${this.props.className}`}><path d="M11 21v-5H6v-2h5v-.287L10.164 12H6v-2h3.189L5.775 3H8l4 8.201L16 3h2.225l-3.414 7H18v2h-4.164L13 13.713V14h5v2h-5v5h-2z"/></svg>
)
}
}