UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 1.09 kB
import React, { Component } from 'react'; export default class HumbleBundleIcon 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-humble-bundle-icon ${this.props.className}`}><path d="M11.906 6.396l-1.104.667c-1.27-3.355.563-3.542.563-3.542-1.167 1.562.541 2.875.541 2.875zm1.542-2.833c1.02 0 2.833 2.124-2.042 6.687-4.708 4.417-.896 5.667-.896 5.667-2.083-2.188 1.688-4.73 1.688-4.73s2.812 1.355 3.792 1.938c.979.583 1.612 4.104.125 5.833C13.302 22.23 5.74 20.896 4.76 18.25c-.415-1.123-1.77-5.208.938-7.708 2.125-1.875 3.054-1.365 6.083-3.146 3.438-2.021 1.625-3.877 1.667-3.833zM2.246 3.145l8.046 4.196-1.938.848-6.87-3.582a.824.824 0 0 1 .762-1.462zm20.488 10.683a.824.824 0 1 1-.762 1.462l-9.341-4.87 1.105-1.284 8.998 4.692z"/></svg> ) } }