UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 704 B
import React, { Component } from 'react'; export default class CreditCardPlusIcon 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-plus-icon ${this.props.className}`}><path d="M21 18h3v2h-3v3h-2v-3h-3v-2h3v-3h2v3zM19 7.998v-2H3v2h16zm0 4H3v6h11v2H3c-1.106 0-2-.894-2-2l.01-12c0-1.106.884-2 1.99-2h16c1.104 0 2 .894 2 2V13h-2v-1.002z"/></svg> ) } }