UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 685 B
import React, { Component } from 'react'; export default class AltimeterIcon 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-altimeter-icon ${this.props.className}`}><path d="M7 3v2h10V3H7zm2 4v2h6V7H9zm-7.002.965v8.07L6.033 12 1.998 7.965zm20.035 0L17.998 12l4.035 4.035v-8.07zM7 11v2h10v-2H7zm2 4v2h6v-2H9zm-2 4v2h10v-2H7z"/></svg> ) } }