@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 • 992 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Security(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 19.514a1.52 1.52 0 0 0 .527-.113c1.572-.599 6.2-2.39 6.244-7.749h-6.771V4.505a17.49 17.49 0 0 0-6.545 1.279c-.151 0-.226.15-.226.3V11.653h6.771v7.862zM19.103 4.43a2.104 2.104 0 0 1 1.204 1.655v5.492a9.68 9.68 0 0 1-6.395 8.953l-.828.3a3.601 3.601 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.655C7.065 3.452 9.473 3 11.956 3c2.483 0 4.89.451 7.147 1.43z"
}));
}