react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 718 B
JSX
import React, { Component } from 'react';
export default class LedVariantOffIcon 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-variant-off-icon ${this.props.className}`}><path d="M12 3a3.996 3.996 0 0 0-3.924 3.252L16.824 15H18v-2h-2V7a4 4 0 0 0-4-4zM3.277 4L2 5.268l6 6V13H6v2h3v6h2v-6h.732L13 16.268V21h2v-2.732L18.732 22 20 20.723l-5-5-7-7L3.277 4z"/></svg>
)
}
}