react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 626 B
JSX
import React, { Component } from 'react';
export default class FlashOffIcon 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-flash-off-icon ${this.props.className}`}><path d="M17 10h-4l4-8H7v2.18l8.46 8.46M3.27 3L2 4.27l5 5V13h3v9l3.58-6.14L17.73 20 19 18.73 3.27 3z"/></svg>
)
}
}