@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 • 674 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function GpsIos(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: "M21.882 3.626c.3-.6 0-1.2-.6-1.501-.3-.1-.6-.1-.9 0L2.675 10.228c-.6.3-.8.9-.6 1.5.2.3.5.6.9.6l7.403.701c.3 0 .5.2.5.5l.7 7.403c.1.6.6 1.1 1.2 1 .401 0 .801-.3.901-.7l8.203-17.606z"
}));
}