UNPKG

@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.18 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Reload(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: "M17.764 7.222l3.93 1.276a.554.554 0 0 1 .356.297c.166.326.059.653-.266.819l-1.806.92A8.15 8.15 0 0 1 8.626 19.44a.9.9 0 1 1 .737-1.643 6.35 6.35 0 0 0 8.919-6.398l-1.65.84a.535.535 0 0 1-.368.056l-.095-.025a.588.588 0 0 1-.387-.76l1.277-3.93c.106-.326.432-.492.705-.358zM11.96 3.85c1.169 0 2.304.247 3.348.718a.9.9 0 0 1-.74 1.64 6.35 6.35 0 0 0-8.935 6.337l1.723-.878a.535.535 0 0 1 .367-.056l.095.025a.589.589 0 0 1 .387.76l-1.277 3.93c-.106.326-.432.492-.705.359l-3.93-1.277a.554.554 0 0 1-.356-.297c-.166-.326-.059-.653.266-.819l1.729-.88A8.197 8.197 0 0 1 3.81 12a8.15 8.15 0 0 1 8.15-8.15z" })); }