react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 1.8 kB
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class FaTelevision extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m37.33333333333333 27.333333333333332v-20q0-0.27066666666666706-0.19733333333333292-0.46933333333333316t-0.4693333333333314-0.19733333333333292h-33.33333333333333q-0.2706666666666666 0-0.46933333333333316 0.19733333333333292t-0.19733333333333603 0.46933333333333405v20q0 0.27066666666666706 0.19733333333333336 0.46933333333333493t0.46933333333333316 0.19733333333333292h33.33333333333333q0.2706666666666635 0 0.4693333333333314-0.19733333333333292t0.19733333333333292-0.46933333333333493z m2.6666666666666643-20v20q0 1.3733333333333348-0.978666666666669 2.3546666666666667t-2.3546666666666596 0.9786666666666655h-15.333333333333332v2.6666666666666643h7.333333333333332q0.293333333333333 0 0.4800000000000004 0.18666666666666742t0.18666666666666742 0.4799999999999969v1.3333333333333357q0 0.29333333333333655-0.18666666666666742 0.4799999999999969t-0.4800000000000004 0.18666666666666742h-17.333333333333332q-0.293333333333333 0-0.4800000000000004-0.18666666666666742t-0.18666666666666565-0.4799999999999969v-1.3333333333333357q0-0.29333333333333655 0.18666666666666742-0.4799999999999969t0.47999999999999865-0.18666666666666742h7.333333333333332v-2.666666666666668h-15.333333333333332q-1.3733333333333324 0-2.354666666666666-0.9786666666666655t-0.9786666666666664-2.354666666666663v-20q0-1.373333333333333 0.9786666666666666-2.3546666666666667t2.3546666666666667-0.9786666666666655h33.33333333333333q1.3733333333333348 0 2.3546666666666667 0.9786666666666664t0.978666666666669 2.3546666666666667z"/></g>
</IconBase>
);
}
}