@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 • 764 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function GpsIos(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: "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"
}));
}