react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 462 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgLinkedinFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M6.94 5a2 2 0 1 1-4-.002 2 2 0 0 1 4 .002M7 8.48H3V21h4zm6.32 0H9.34V21h3.94v-6.57c0-3.66 4.77-4 4.77 0V21H22v-7.93c0-6.17-7.06-5.94-8.72-2.91z" />
</Svg>
);
export default SvgLinkedinFill;