UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 834 B
import React, { Component } from 'react'; export default class GiftIcon 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-gift-icon ${this.props.className}`}><path d="M22 12v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a1 1 0 0 1-1-1V8a2 2 0 0 1 2-2h3.17a3 3 0 0 1 5.258-2.762l.006-.004.566.78.566-.78.005.004A3 3 0 0 1 17.83 6H21a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1zM4 20h7v-8H4v8zm16 0v-8h-7v8h7zM9 4a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm6 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2zM3 8v2h8V8H3zm10 0v2h8V8h-8z"/></svg> ) } }