@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 • 831 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Insurance(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: "M19.103 4.43C16.846 3.452 14.44 3 11.956 3c-2.483 0-4.89.451-7.147 1.43-.678.3-1.129.978-1.129 1.655v5.492c0 4.063 2.558 7.599 6.395 8.953l.828.3a3.601 3.601 0 0 0 2.181 0l.828-.3a9.68 9.68 0 0 0 6.395-8.953V6.085a2.104 2.104 0 0 0-1.204-1.655z"
}));
}