@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 • 916 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function History(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: "M12.542 3.04a8.958 8.958 0 1 1 0 17.917.833.833 0 0 1 0-1.667 7.292 7.292 0 1 0-7.032-9.222.207.207 0 0 0 .2.264h1.457a.417.417 0 0 1 .299.711L4.839 13.67a.417.417 0 0 1-.59 0l-2.627-2.626a.417.417 0 0 1 .295-.711h1.652a.207.207 0 0 0 .203-.167 8.975 8.975 0 0 1 8.77-7.125zm3.975 11.569a.719.719 0 0 1 .045 1.014.726.726 0 0 1-1.016.044l-3.563-3.266a.719.719 0 0 1-.233-.53V7.919a.719.719 0 0 1 1.437 0v3.636l3.33 3.054z"
}));
}