UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 781 B
import React, { Component } from 'react'; export default class AccountCardDetailsIcon 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-account-card-details-icon ${this.props.className}`}><path d="M2 3h20c1.047 0 2 .953 2 2v14c0 1.047-.953 2-2 2H2c-1.047 0-2-.953-2-2V5c0-1.047.953-2 2-2zm12 3v1h8V6h-8zm0 2v1h8V8h-8zm0 2v1h7v-1h-7zm-6 3.906C6 13.906 2 15 2 17v1h12v-1c0-2-4-3.094-6-3.094zM8 6a3 3 0 1 0 0 6 3 3 0 0 0 0-6z"/></svg> ) } }