react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 744 B
JSX
import React, { Component } from 'react';
export default class CurrencyInrIcon 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-inr-icon ${this.props.className}`}><path d="M8 3h10l-1 2h-3.257c.478.579.84 1.258 1.05 2H18l-1 2h-2.022a5.502 5.502 0 0 1-4.778 4.956v.05l-.697-.002L15.496 21h-2.5L7 14v-2l2.5.005V12a3.501 3.501 0 0 0 3.465-3H7l1-2h4.663A3.5 3.5 0 0 0 9.5 5H7l1-2z"/></svg>
)
}
}