react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 726 B
JSX
import React, { Component } from 'react';
export default class CurrencyNgnIcon 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-ngn-icon ${this.props.className}`}><path d="M4 9h2V3h2l3.423 6H16V3h2v6h2v2h-2v2h2v2h-2v6h-2l-3.435-6H8v6H6v-6H4v-2h2v-2H4V9zm4 0h1.13L8 7.026V9zm0 2v2h3.42l-1.145-2H8zm8 6.022V15h-1.154L16 17.022zM12.564 11l1.141 2H16v-2h-3.436z"/></svg>
)
}
}