rentypo
Version:
React's components for Entypo+ icons
12 lines (10 loc) • 824 B
JavaScript
import React, { Component } from 'react'
export default class Aircraft extends Component {
render () {
return (
<svg className={this.props.className} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path d="M12.496 17.414c-.394-1.096-1.805-4.775-2.39-6.297-1.103.737-2.334 1.435-3.512 1.928-.366 1.28-1.094 3.71-1.446 4.033-.604.557-.832.485-.925-.28-.093-.763-.485-3.235-.485-3.235s-2.162-1.22-2.84-1.568-.667-.59.057-.974c.422-.22 2.927-.082 4.242.008.86-.95 1.93-1.882 2.993-2.68-1.215-1.075-4.15-3.674-5.034-4.423-.776-.658.08-.797.08-.797.39-.07 1.22-.132 1.627-.01 2.524.764 6.442 2.07 7.363 2.377l1.162-.82c4.702-3.33 5.887-2.594 6.11-2.27s.504 1.7-4.198 5.03l-1.16.824c-.03.98-.157 5.15-.31 7.81-.026.43-.368 1.2-.566 1.544 0 0-.423.765-.768-.198z"/>
</svg>
)
}
}