UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 792 B
import React, { Component } from 'react'; export default class BombIcon 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-bomb-icon ${this.props.className}`}><path d="M11.25 6a3.25 3.25 0 0 1 6.5 0c0 .416.334.75.75.75s.75-.334.75-.75v-.75h1.5V6a2.248 2.248 0 0 1-2.25 2.25A2.248 2.248 0 0 1 16.25 6a1.75 1.75 0 0 0-3.5 0H14v1.29a7 7 0 1 1-4 0V6h1.25zM22 6h2v1h-2V6zm-3-2V2h1v2h-1zm1.914.379l1.414-1.414.707.707-1.414 1.414-.707-.707z"/></svg> ) } }