@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 • 986 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ShareAndroid(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: "M17.836 13.667a4.143 4.143 0 0 0-2.987 1.275l-4.575-2.289a4.125 4.125 0 0 0 .066-.652 4.114 4.114 0 0 0-.066-.652l4.575-2.29a4.155 4.155 0 0 0 5.255.58 4.16 4.16 0 0 0-3.08-7.56 4.158 4.158 0 0 0-3.353 4.09c.005.218.027.437.066.652L9.162 9.11a4.163 4.163 0 0 0-4.556-.972 4.166 4.166 0 0 0 0 7.727 4.163 4.163 0 0 0 4.556-.972l4.575 2.288a4.114 4.114 0 0 0-.066.654 4.165 4.165 0 1 0 4.165-4.167z"
}));
}