react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 717 B
JSX
import React, { Component } from 'react';
export default class TelevisionGuideIcon 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-guide-icon ${this.props.className}`}><path d="M21 17V5H3v12h18zm0-14c1.1 0 2 .9 2 2l-.01 12c0 1.1-.89 2-1.99 2h-5v2H8v-2H3c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h18zM5 7h6v4H5V7zm0 6h6v2H5v-2zm8-6h6v2h-6V7zm0 4h6v4h-6v-4z"/></svg>
)
}
}