react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 753 B
JSX
import React, { Component } from 'react';
export default class LaptopOffIcon 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-laptop-off-icon ${this.props.className}`}><path d="M1 4.268L2.277 3 20 20.723 18.732 22l-2.002-2.002H0v-2h4a2 2 0 0 1-2-2v-10c0-.22.035-.431.1-.629L1 4.27zm3 11.73h8.73L4 7.268v8.73zm16 0v-10H7.82l-2-2H20a2 2 0 0 1 2 2l-.01 10c0 1.104-.886 2-1.99 2h4v2h-2.18l-4-4H20z"/></svg>
)
}
}