UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 629 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class FaLinkedin extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path fill="#444" d="m10.8 13.9v22.2h-7.4v-22.1h7.4z m0.5-6.8q0 1.7-1.2 2.7t-3 1.1h0q-1.9 0-3-1.1t-1.1-2.7q0-1.6 1.2-2.7t3-1.1 2.9 1.1 1.2 2.7z m26 16.3v12.7h-7.4v-11.9q0-2.3-0.9-3.6t-2.8-1.4q-1.4 0-2.3 0.8t-1.5 1.9q-0.2 0.7-0.2 1.8v12.4h-7.3q0-8.9 0-14.5t0-6.6l0-1h7.3v3.2h-0.1q0.5-0.7 1-1.3t1.2-1.1 2-1 2.5-0.4q3.8 0 6.2 2.6t2.3 7.4z"/></g> </IconBase> ); } }