UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 748 B
import React, { Component } from 'react'; export default class SatelliteIcon 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-satellite-icon ${this.props.className}`}><path d="M5 17.998l3.5-4.5 2.5 3.006 3.5-4.506 4.5 6m-14-6v-2c2.761 0 5-2.249 5-5.01h2c0 3.866-3.135 7.01-7 7.01zm0-7.01h3a3.008 3.008 0 0 1-3 3.01m14-5H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-14a2 2 0 0 0-2-2z"/></svg> ) } }