@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 • 1.08 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ShareIos(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: "M19.076 9.5v10.833c0 .92-.746 1.667-1.666 1.667H6.577c-.92 0-1.667-.746-1.667-1.667V9.5c0-.92.746-1.666 1.667-1.666h2.706a.208.208 0 0 1 .21.207v1.25a.208.208 0 0 1-.208.21H6.993a.417.417 0 0 0-.416.416v10c0 .23.186.416.416.416h10a.417.417 0 0 0 .417-.416v-10a.417.417 0 0 0-.417-.417H14.7a.208.208 0 0 1-.208-.208v-1.25c0-.115.093-.208.208-.208h2.709c.92 0 1.666.746 1.666 1.666zm-8.333 1.667V6.792a.208.208 0 0 0-.208-.208H9.076a.833.833 0 0 1-.595-1.423l2.917-2.917a.833.833 0 0 1 1.178 0l2.917 2.917a.833.833 0 0 1-.583 1.422H13.45a.208.208 0 0 0-.208.208v4.376a1.25 1.25 0 0 1-2.5 0z"
}));
}