UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 788 B
import React, { Component } from 'react'; export default class TelevisionClassicIcon 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-television-classic-icon ${this.props.className}`}><path d="M8.164 3L6.75 4.414 9.336 7H4c-1.11 0-2 .89-2 2v10c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2h-5.336l2.586-2.586L15.836 3 12 6.836 8.164 3zM4 9h13v10H4V9zm15.5 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm0 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/></svg> ) } }