UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 781 B
import React, { Component } from 'react'; export default class DesktopClassicIcon 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-desktop-classic-icon ${this.props.className}`}><path d="M6 2c-1.11 0-2 .89-2 2v8c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2H6zm0 2h12v8H6V4zM4 15c-1.11 0-2 .89-2 2v3c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2v-3c0-1.11-.89-2-2-2H4zm4 2h12v3H8v-3zm1 .75v1.5h4v-1.5H9zm6 0v1.5h4v-1.5h-4z"/></svg> ) } }