react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 592 B
JavaScript
import * as React from 'react';
export function SvgLinkedinIn(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M8.643 4A2.641 2.641 0 006 6.64C6 8.1 7.183 9.31 8.64 9.31c1.459 0 2.643-1.21 2.643-2.668A2.64 2.64 0 008.643 4zm12.892 7c-2.219 0-3.488 1.16-4.098 2.314h-.064v-2.003H13V26h4.557v-7.271c0-1.916.144-3.768 2.515-3.768 2.337 0 2.371 2.185 2.371 3.889V26H27v-8.068C27 13.984 26.151 11 21.535 11zm-15.172.31V26h4.56V11.31h-4.56z" })));
}
export default SvgLinkedinIn;