@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 • 877 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Clock(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: "M12 2c5.52.006 9.994 4.48 10 10 0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 18.333A8.342 8.342 0 0 0 20.333 12 8.333 8.333 0 1 0 12 20.333zm4.278-5.158a.833.833 0 0 1 .052 1.177.842.842 0 0 1-1.177.05l-4.133-3.787a.833.833 0 0 1-.27-.615V7.417a.833.833 0 0 1 1.667 0v4.217l3.861 3.541z"
}));
}