@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.33 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Walk(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: "M11.438 6.458a2.229 2.229 0 1 1 0-4.458 2.229 2.229 0 0 1 0 4.458zm1.953 4.81l-.256-.194a.223.223 0 0 0-.357.178v1.609a.885.885 0 0 0 .317.672 15.335 15.335 0 0 1 4.072 6.703 1.337 1.337 0 0 1-.846 1.694 1.32 1.32 0 0 1-.423.07 1.337 1.337 0 0 1-1.268-.915 14.819 14.819 0 0 0-2.154-4.393.223.223 0 0 0-.386.072 15.452 15.452 0 0 1-2.283 4.733 1.338 1.338 0 0 1-2.09-1.67 11.363 11.363 0 0 0 1.974-4.19 17.318 17.318 0 0 0 .412-3.76v-1.21a.223.223 0 0 0-.338-.19 3.043 3.043 0 0 0-1.446 2.625 1.337 1.337 0 0 1-1.338 1.271 1.337 1.337 0 0 1-1.337-1.438 5.634 5.634 0 0 1 3.13-4.967 5.082 5.082 0 0 1 5.316.481l.906.68a4.916 4.916 0 0 0 1.395.73l.985.328c.64.197 1.048.826.965 1.492a1.337 1.337 0 0 1-1.745 1.068l-1.049-.35a7.594 7.594 0 0 1-2.156-1.128z"
}));
}