react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 734 B
JSX
import React, { Component } from 'react';
export default class ProjectorScreenIcon 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-projector-screen-icon ${this.props.className}`}><path d="M4 2c-.554 0-1 .446-1 1v1c0 .554.446 1 1 1h1v9h6v2.586l-4.207 4.207 1.414 1.414L11 19.414V22h2v-2.586l2.793 2.793 1.414-1.414L13 16.586V14h6V5h1c.554 0 1-.446 1-1V3c0-.554-.446-1-1-1H4z"/></svg>
)
}
}