react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 737 B
JSX
import React, { Component } from 'react';
export default class LedOnIcon 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-led-on-icon ${this.props.className}`}><path d="M11 0v4h2V0h-2zm7.299 2.287l-3.057 3 1.4 1.428 3.06-3-1.403-1.428zm-12.592.006L4.293 3.707l3 3 1.414-1.414-3-3zM12 6a4 4 0 0 0-4 4v6H6v2h3v5h2v-5h2v5h2v-5h3v-2h-2v-6a4 4 0 0 0-4-4zM2 9v2h4V9H2zm16 0v2h4V9h-4z"/></svg>
)
}
}