@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 423 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgLinkedinLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M12.001 9.55c.917-.937 2.111-1.55 3.5-1.55a5.5 5.5 0 0 1 5.5 5.5V21h-2v-7.5a3.5 3.5 0 1 0-7 0V21h-2V8.5h2v1.05Zm-7-3.05a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm-1 2h2V21h-2V8.5Z" />
</Svg>
);
export default SvgLinkedinLine;