UNPKG

@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.

18 lines 896 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function ShareAndroid(props) { return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: props.size, color: props.color, customColor: props.customColor, className: props.className, dataTest: props.dataTest, ariaHidden: props.ariaHidden, reverseOnRtl: props.reverseOnRtl, ariaLabel: props.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" })); }