UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 644 B
import React, { Component } from 'react'; export default class TreasureChestIcon 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-treasure-chest-icon ${this.props.className}`}><path d="M5 4h14a3 3 0 0 1 3 3v4h-7v-1H9v1H2V7a3 3 0 0 1 3-3zm6 7h2v2h-2v-2zm-9 1h7v1l2 2h2l2-2v-1h7v8H2v-8z"/></svg> ) } }