@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.26 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ItemCompleted(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 9.2c2.888 0 5.25 2.362 5.25 5.25S19.887 19.7 17 19.7s-5.25-2.362-5.25-5.25S14.113 9.2 17 9.2zm-9.25 6.802h2.2a1 1 0 0 1 .117 1.993l-.117.007h-2.2a1 1 0 0 1-.117-1.993l.117-.007h2.2zm-3-.002a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm14.926-3.795a.625.625 0 0 0-.875.125l-2.276 3.036a.207.207 0 0 1-.314.022l-1.084-1.083a.625.625 0 0 0-.884.884l1.25 1.25c.233.235.55.367.881.368h.09c.365-.025.7-.207.917-.5l2.417-3.229a.62.62 0 0 0-.122-.873zM9.95 11.002a1 1 0 0 1 .117 1.993l-.117.007h-2.2a1 1 0 0 1-.117-1.993l.117-.007h2.2zM4.75 11a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm14.5-4.998a1 1 0 0 1 .117 1.993l-.117.007H7.75a1 1 0 0 1-.117-1.993l.117-.007h11.5zM4.75 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"
}));
}