UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 969 B
import React, { Component } from 'react'; export default class AirplaneTakeoffIcon 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-airplane-takeoff-icon ${this.props.className}`}><g><defs><path d="M0 0h24v24H0z"/></defs><clipPath><use overflow="visible" /></clipPath><g clip-path="url(#b)"><path d="M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 1.82 3.16.77 1.33 1.6-.43 5.31-1.42 4.35-1.16L21 11.49c.81-.23 1.28-1.05 1.07-1.85z"/></g></g><g><defs><path d="M0 0h24v24H0z"/></defs><clipPath><use overflow="visible" /></clipPath></g></svg> ) } }