react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 781 B
JSX
import React, { Component } from 'react';
export default class CandleIcon 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-candle-icon ${this.props.className}`}><path d="M12.5 2c-1.657 0-3 3.343-3 5a3 3 0 1 0 6 0c0-1.657-1.343-5-3-5zm0 4.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2zM10 11c-.554 0-1 .446-1 1v8H7a1 1 0 0 1-1-1v-1c0-.554-.446-1-1-1s-1 .446-1 1v1a3 3 0 0 0 3 3h12c.554 0 1-.446 1-1s-.446-1-1-1h-3v-8c0-.554-.446-1-1-1h-5z"/></svg>
)
}
}