@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 • 1 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Share(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: "M12.41 2.041c-.418.209-.731.626-.731 1.044V6.32c0 .104-.104.208-.104.208-4.07 1.357-6.888 3.758-7.619 6.784-.73 2.818.418 5.844 3.027 8.453.313.313.835.313 1.043 0 .313-.313.313-.835 0-1.043-1.252-1.253-1.774-2.714-1.356-4.175.521-1.774 2.296-3.34 4.696-4.07.104 0 .209 0 .209.104V15.4c0 .626.521 1.148 1.148 1.148.313 0 .626-.104.834-.313l6.47-6.47c.314-.313.314-.835 0-1.044l-6.47-6.47c-.208-.21-.626-.313-1.148-.21z"
}));
}