react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 832 B
JSX
import React, { Component } from 'react';
export default class CreditCardOffIcon 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-credit-card-off-icon ${this.props.className}`}><path d="M.933 4.202L2.21 2.933 20 20.723 18.732 22l-2.002-2.002H4c-1.106 0-2-.894-2-2l.01-12c0-.217.034-.427.097-.623L.933 4.202zM20 7.998v-2H7.821l-2-2h14.178c1.105 0 2 .894 2 2v12c0 .598-.262 1.135-.677 1.501l-1.501-1.501h.178v-6h-6.178l-4-4h10.178zm-16 0h.73L4 7.268v.73zm0 4v6h10.73l-6-6H4z"/></svg>
)
}
}