react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 675 B
JSX
import React, { Component } from 'react';
export default class WalletMembershipIcon 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-wallet-membership-icon ${this.props.className}`}><path d="M20 10H4V4h16m0 11H4v-2h16m0-11H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2z"/></svg>
)
}
}