UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 807 B
import React, { Component } from 'react'; export default class TicketAccountIcon 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-ticket-account-icon ${this.props.className}`}><path d="M19.999 11.998a2 2 0 0 0 2 2v4a2 2 0 0 1-2 2h-16a2 2 0 0 1-2-2l.004-4a2 2 0 0 0 .003-4l.004-4c0-1.104.885-2 1.989-2h16a2 2 0 0 1 2 2v4a2 2 0 0 0-2 2zM16.5 16.25c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zm-4.5-4a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5z"/></svg> ) } }