UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 879 B
import React, { Component } from 'react'; export default class ProjectorIcon 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-icon ${this.props.className}`}><path d="M16 6a5.5 5.5 0 0 0-3.156 1H4c-1.108 0-2 .892-2 2v6c0 1.108.892 2 2 2h1v1c0 .554.446 1 1 1h2c.554 0 1-.446 1-1v-1h6v1c0 .554.446 1 1 1h2c.554 0 1-.446 1-1v-1h1c1.108 0 2-.892 2-2V9c0-1.108-.892-2-2-2h-.85A5.5 5.5 0 0 0 16 6zm0 1.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7zM4 9h4v1H4V9zm12 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zM4 11h4v1H4v-1zm0 2h4v1H4v-1z"/></svg> ) } }