react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 710 B
JSX
import React, { Component } from 'react';
export default class LavaLampIcon 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-lava-lamp-icon ${this.props.className}`}><path d="M10 3L8 16h8L14 3h-4zm1.5 2.75a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5zm1 2.75a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm-1 3.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zM8 17l2 2-2 2h8l-2-2 2-2H8z"/></svg>
)
}
}