@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 • 1.1 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function GpsNotFixed(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.167 11.167h-1.353a.417.417 0 0 1-.41-.351 7.514 7.514 0 0 0-6.22-6.22.417.417 0 0 1-.35-.41V2.833a.833.833 0 1 0-1.667 0v1.353a.417.417 0 0 1-.351.41 7.514 7.514 0 0 0-6.22 6.22.417.417 0 0 1-.41.35H2.833a.833.833 0 1 0 0 1.667h1.353a.417.417 0 0 1 .41.351 7.514 7.514 0 0 0 6.22 6.22.417.417 0 0 1 .35.41v1.353a.833.833 0 1 0 1.667 0v-1.353a.417.417 0 0 1 .351-.41 7.514 7.514 0 0 0 6.22-6.22.417.417 0 0 1 .41-.35h1.353a.833.833 0 1 0 0-1.667zM12 17.833A5.833 5.833 0 1 1 17.833 12 5.84 5.84 0 0 1 12 17.833z"
}));
}