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.

22 lines 749 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Clock(props) { const { color, size, customColor, className, dataTest } = props; return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: size, color: color, customColor: customColor, className: className, dataTest: dataTest }, React.createElement("path", { d: "M12 22C6.487 22 2 17.514 2 12S6.487 2 12 2s10 4.486 10 10-4.487 10-10 10zm0-17.778c-4.289 0-7.778 3.49-7.778 7.778 0 4.289 3.49 7.778 7.778 7.778 4.289 0 7.778-3.49 7.778-7.778 0-4.289-3.49-7.778-7.778-7.778zm2.55 11.899l-3.336-3.335a1.11 1.11 0 0 1-.326-.786V6.442h2.224v5.098l3.009 3.01-1.572 1.571z" })); }