@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
28 lines • 953 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Linkedin(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: ariaLabel
}, React.createElement("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.812 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.653-1.814 1.285-.094.225-.117.54-.117.857V20H9.703z"
}));
}