react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 950 B
JSX
import React, { Component } from 'react';
export default class Cash100Icon 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-cash100-icon ${this.props.className}`}><path d="M2 5h20v15H2V5zm18 13V7H4v11h16zM17 8a2 2 0 0 0 2 2v5a2 2 0 0 0-2 2H7a2 2 0 0 0-2-2v-5a2 2 0 0 0 2-2h10zm0 5v-1c0-1.105-.672-2-1.5-2s-1.5.895-1.5 2v1c0 1.105.672 2 1.5 2s1.5-.895 1.5-2zm-1.5-2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2a.5.5 0 0 1 .5-.5zM13 13v-1c0-1.105-.672-2-1.5-2s-1.5.895-1.5 2v1c0 1.105.672 2 1.5 2s1.5-.895 1.5-2zm-1.5-2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2a.5.5 0 0 1 .5-.5zM8 15h1v-5H8l-1 .5v1l1-.5v4z"/></svg>
)
}
}