@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 • 958 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Lock(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: "M17.684 10.476V7.684a5.684 5.684 0 0 0-11.368 0v2.792A4.199 4.199 0 0 0 4 14.212v3.79a4.215 4.215 0 0 0 4.21 4.21h7.58a4.215 4.215 0 0 0 4.21-4.21v-3.79a4.199 4.199 0 0 0-2.316-3.736zm-4 5.38a1.684 1.684 0 1 1-3.368 0 1.684 1.684 0 0 1 3.368 0zM12 4.107a3.583 3.583 0 0 1 3.579 3.578v1.896a.421.421 0 0 1-.421.42H8.842a.421.421 0 0 1-.421-.42V7.684A3.583 3.583 0 0 1 12 4.107z"
}));
}