UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 775 B
import React, { Component } from 'react'; export default class PistolIcon 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-pistol-icon ${this.props.className}`}><g><path d="M7 5h16v4h-1v1h-6a1 1 0 0 0-1 1v1a2 2 0 0 1-2 2H9.62a1 1 0 0 0-.9.56l-2.45 4.89a1 1 0 0 1-.89.55H2s-3 0 1-6c0 0 3-4-1-4V5h1l.5-1h3L7 5zm7 7v-1a1 1 0 0 0-1-1h-1c-.012.011-1 1 0 2a2 2 0 0 1-2-2 1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1z"/></g></svg> ) } }