react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 766 B
JSX
import React, { Component } from 'react';
export default class LayersOffIcon 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-layers-off-icon ${this.props.className}`}><path d="M3.27 1L2 2.27l4.22 4.22L3 9l1.63 1.27L12 16l2.1-1.63 1.43 1.43L12 18.54l-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21 22 19.73 3.27 1zm16.09 9.27L21 9l-9-7-2.91 2.27 7.87 7.88 2.4-1.88zm.45 4.72l1.19-.92-1.43-1.43-1.19.92 1.43 1.43z"/></svg>
)
}
}