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.

18 lines 1.15 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Timer(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: "M18.21 8.88v-.003c2.498 2.749 2.717 6.78.53 9.763-2.189 2.983-6.216 4.145-9.754 2.813-3.538-1.332-5.67-4.813-5.162-8.428.508-3.616 3.524-6.43 7.303-6.814V3.667H9.391c-.48 0-.868-.374-.868-.834 0-.46.389-.833.868-.833h5.208c.48 0 .868.373.868.833 0 .46-.388.834-.868.834h-1.736V6.21a8.4 8.4 0 0 1 4.074 1.534l1.388-1.334a.892.892 0 0 1 .845-.227c.303.077.54.304.62.595a.811.811 0 0 1-.237.81l-1.344 1.29zm-6.215 11.453c3.594-.004 6.506-2.8 6.51-6.25 0-3.452-2.915-6.25-6.51-6.25-3.596 0-6.51 2.798-6.51 6.25s2.914 6.25 6.51 6.25zm-2.424-9.755l3.038 2.917a.81.81 0 0 1 0 1.178.907.907 0 0 1-1.228 0l-3.038-2.917a.81.81 0 0 1 .01-1.168.894.894 0 0 1 1.218-.01z" })); }