react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 772 B
JSX
import React, { Component } from 'react';
export default class CurrencySignIcon 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-sign-icon ${this.props.className}`}><g><path d="M22 12a9.92 9.92 0 0 0-2-5.93l2-2-2.06-2.13-2 2A10 10 0 0 0 6.07 4l-2-2-2.13 2.06 2 2A10 10 0 0 0 4 17.93l-2 2 2.12 2.12 2-2a10 10 0 0 0 11.86 0l2 2 2.12-2.12-2-2A9.92 9.92 0 0 0 22 12zm-10 7a7 7 0 1 1 0-14 7 7 0 0 1 0 14z"/></g></svg>
)
}
}