UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 777 B
import React, { Component } from 'react'; export default class EarthBoxIcon 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-earth-box-icon ${this.props.className}`}><path d="M5 3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5zm10.78 2H19v12.184c-.26-.8-1.31-1.391-2.2-1.391h-1v-3a1 1 0 0 0-1-1h-6v-2h2a1 1 0 0 0 1-1v-2h2A1.992 1.992 0 0 0 15.78 5zM5 10.29l4.8 4.503v1a2 2 0 0 0 2 2V19H5v-8.71z"/></svg> ) } }