react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 787 B
JSX
import React, { Component } from 'react';
export default class TowerFireIcon 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-tower-fire-icon ${this.props.className}`}><path d="M17 4v4h1v2h-.362L21 23h-2.066l-.56-2.165L12 17.155l-6.374 3.68L5.066 23H3l3.362-13H6V8h1V4H6V3l6-2 6 2v1h-1zM7.282 14.43l-.954 3.69L10 16l-2.718-1.57zm8.29-4.43H8.428l-.626 2.421L12 14.845l4.198-2.424L15.572 10zm2.1 8.12l-.954-3.69L14 16l3.672 2.12z"/></svg>
)
}
}