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.

28 lines 1.56 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function KiwicomGuarantee(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: "M21.322 10.564l-1.599-1.287a.952.952 0 0 1-.348-.846l.222-2.042a1.823 1.823 0 0 0-.521-1.488 1.817 1.817 0 0 0-1.485-.523l-2.042.22a.95.95 0 0 1-.844-.349l-1.286-1.6A1.875 1.875 0 0 0 12.001 2c-.545 0-1.062.237-1.418.65l-1.286 1.6a.944.944 0 0 1-.844.348l-2.04-.22a1.817 1.817 0 0 0-1.485.522 1.823 1.823 0 0 0-.522 1.488l.222 2.042a.948.948 0 0 1-.348.846l-1.6 1.288a1.823 1.823 0 0 0 0 2.841l1.598 1.288a.948.948 0 0 1 .348.845l-.221 2.043a1.823 1.823 0 0 0 .52 1.487c.391.391.937.583 1.486.523l2.04-.222a.949.949 0 0 1 .844.348l1.287 1.604a1.818 1.818 0 0 0 2.837 0l1.286-1.601a.95.95 0 0 1 .844-.348l2.04.222a1.817 1.817 0 0 0 1.485-.523 1.823 1.823 0 0 0 .521-1.487l-.221-2.043a.947.947 0 0 1 .348-.846l1.598-1.287a1.823 1.823 0 0 0 0-2.841l.002-.003zm-8.973 4.092a1.551 1.551 0 0 1-2.316.165l-2.125-2.123a.872.872 0 0 1-.238-.847.87.87 0 0 1 .621-.622.869.869 0 0 1 .846.237l1.958 1.961 3.4-4.539a.869.869 0 0 1 1.495.18.872.872 0 0 1-.104.865l-3.537 4.723z" })); }