@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 • 901 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Parking(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.952 2H9.12a3.55 3.55 0 0 0-3.54 3.54v14.336c0 1.15.973 2.124 2.124 2.124 1.15 0 2.124-.974 2.124-2.124v-4.69a.38.38 0 0 1 .354-.354h1.77c3.54 0 6.46-2.92 6.46-6.46S15.492 2 11.952 2zm0 8.584h-1.77a.38.38 0 0 1-.354-.354V6.69a.38.38 0 0 1 .354-.354h1.77c1.15 0 2.124.974 2.124 2.124 0 1.15-.974 2.124-2.124 2.124z"
}));
}