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 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function InsuranceConfirmed(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: "M11.956 3c2.483 0 4.89.451 7.147 1.43.677.3 1.129.978 1.204 1.655v5.492a9.679 9.679 0 0 1-6.395 8.953l-.828.3a3.6 3.6 0 0 1-2.181 0l-.828-.3c-3.837-1.354-6.395-4.89-6.395-8.953V6.085c0-.677.451-1.355 1.129-1.656C7.066 3.451 9.473 3 11.956 3zm4.6 4.19c-.45-.35-1.05-.2-1.4.3l-4.8 5.95-1.65-1.8c-.35-.4-1-.4-1.4-.05-.4.35-.4 1-.05 1.4l2.5 2.7c.2.2.45.3.75.3h.05c.3-.05.6-.2.75-.45l5.5-7c.35-.45.2-1.05-.25-1.35z" })); }