react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 607 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaTablet extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1258.3176 1896.0833" {...this.props}>
<g><path d="m640 1408q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45z m384-160v-960q0-13-9.5-22.5t-22.5-9.5h-832q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h832q13 0 22.5-9.5t9.5-22.5z m128-960v1088q0 66-47 113t-113 47h-832q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h832q66 0 113 47t47 113z"/></g>
</IconBase>
);
}
}