@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
20 lines (18 loc) • 1.16 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function KiwicomGuarantee(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: "M9.76 4.311A2.65 2.65 0 0 1 12.042 3c.97 0 1.82.526 2.283 1.311a2.65 2.65 0 0 1 2.627.145 2.65 2.65 0 0 1 1.201 2.35 2.65 2.65 0 0 1 2.124 1.512 2.652 2.652 0 0 1-.247 2.657 2.65 2.65 0 0 1 .984 2.446 2.651 2.651 0 0 1-1.626 2.083c.3.87.143 1.869-.5 2.608a2.65 2.65 0 0 1-2.469.867 2.651 2.651 0 0 1-1.84 1.916 2.65 2.65 0 0 1-2.537-.612 2.65 2.65 0 0 1-2.537.612 2.651 2.651 0 0 1-1.84-1.916 2.65 2.65 0 0 1-2.47-.867 2.651 2.651 0 0 1-.5-2.608A2.651 2.651 0 0 1 3.07 13.42a2.65 2.65 0 0 1 .983-2.446 2.652 2.652 0 0 1-.246-2.657A2.65 2.65 0 0 1 5.93 6.806a2.65 2.65 0 0 1 1.201-2.35 2.65 2.65 0 0 1 2.627-.145zm.985 11.54L16.94 9.59l-1.092-1.112-5.103 5.158-2.006-2.02-1.092 1.104 3.098 3.13z" })
);
}