react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 679 B
JSX
import React, { Component } from 'react';
export default class SignalOffIcon 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-signal-off-icon ${this.props.className}`}><path d="M18 3v13.178l3 3V3h-3zM4.277 5L3 6.268 10.732 14H8v7h3v-6.732l2 2V21h3v-1.732L19.732 23 21 21.723 4.277 5zM13 9v2.178l3 3V9h-3zM3 18v3h3v-3H3z"/></svg>
)
}
}