UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 774 B
import React, { Component } from 'react'; export default class TrophyVariantOutlineIcon 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-trophy-variant-outline-icon ${this.props.className}`}><path d="M7 2v2H2v7c0 1 1 2 2 2h3.2c.4 1.9 1.4 3.6 3.8 3.9V19c-3 .2-3 1.3-3 2.6v.4h8v-.3c0-1.3 0-2.4-3-2.6V17c2.5-.3 3.5-2 3.8-3.9H20c1 0 2-1 2-2V4h-5V2H7zm2 2h6v8c0 1.657-1 3-3 3s-3-1.343-3-3V4zM4 6h3v5H4V6zm13 0h3v5h-3V6z"/></svg> ) } }