@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 844 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Linkedin.js.flow";
export default function Linkedin(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<path d="M7.746 9.185v10.567H4.21V9.185h3.537zM5.978 4c1.233 0 2 .811 2 1.826-.022 1.036-.767 1.825-1.977 1.825S4 6.862 4 5.826C4 4.81 4.768 4 5.955 4h.023zm3.725 16s.047-9.576 0-10.567h3.537v1.532h-.023c.465-.721 1.303-1.78 3.21-1.78 2.328 0 4.073 1.51 4.073 4.756V20h-3.537v-5.653c0-1.42-.512-2.39-1.792-2.39-.977 0-1.559.654-1.814 1.285-.094.225-.117.54-.117.857V20H9.703z" />
</OrbitIcon>
);
}