@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 • 1.03 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function LocationD(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.544 6.984h-1.08c-.083 0-.083.083-.083.167v5.15c0 .083.083.166.166.166h1.08c1.412 0 2.658-.83 2.658-2.741s-1.246-2.742-2.741-2.742zM12.042 2C7.722 2 4.15 5.572 4.15 9.892c0 5.4 5.4 10.384 7.061 11.796.499.416 1.163.416 1.579 0 1.661-1.412 7.06-6.313 7.06-11.796C19.935 5.572 16.363 2 12.043 2zm-.415 12.461h-2.41c-.581 0-.996-.415-.996-.997V6.071c0-.582.415-.997.996-.997h2.41c2.824 0 4.735 1.827 4.735 4.735 0 2.824-1.91 4.652-4.735 4.652z"
}));
}