UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 791 B
import React, { Component } from 'react'; export default class TrophyOutlineIcon 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-outline-icon ${this.props.className}`}><path d="M2 2v9c0 1 1 2 2 2h2.2c.4 2 1.7 3.7 4.8 4v2.1c-2.2.2-3 1.3-3 2.6v.3h8v-.3c0-1.3-.8-2.4-3-2.6V17c3.1-.3 4.4-2 4.8-4H20c1 0 2-1 2-2V2h-4c-.9 0-2 1-2 2H8c0-1-1.1-2-2-2H2zm2 2h2v7H4V4zm14 0h2v7h-2V4zM8 6h8v5.5c0 1.933-.585 3.5-4 3.5s-4-1.567-4-3.5V6z"/></svg> ) } }