@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.
18 lines • 969 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function LockOpen(props) {
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: props.size,
color: props.color,
customColor: props.customColor,
className: props.className,
dataTest: props.dataTest,
ariaHidden: props.ariaHidden,
reverseOnRtl: props.reverseOnRtl,
ariaLabel: props.ariaLabel
}, React.createElement("path", {
d: "M17.684 10.366L17.7 7.29c0-2.982-2.718-5.4-5.7-5.4s-5.543 2.35-5.672 5.4c-.013.353.207 1.04 1.043 1.04s1.037-.686 1.055-1.04C8.583 5.456 10.122 3.997 12 3.997s3.39 1.425 3.579 3.293v2.18c0 .255-.221.42-.396.42H8.1c-2.185.101-3.975 1.815-4.1 4v4.2c.101 2.198 1.953 4 4.1 4l7.802.012c2.2-.055 3.975-1.81 4.098-4.012v-4.2a4.235 4.235 0 0 0-2.316-3.524zm-4 5.38c0 .914-.754 1.684-1.684 1.684a1.67 1.67 0 0 1-1.684-1.685c0-.955.754-1.687 1.684-1.685.93.002 1.684.77 1.684 1.685z"
}));
}