@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.23 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function LocationB(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.211 8.812h.914c.83 0 1.246-.332 1.246-.997 0-.664-.415-.997-1.246-.997h-.914a.179.179 0 0 0-.166.166v1.662c0 .083.083.166.166.166zm1.08 1.745h-1.08a.179.179 0 0 0-.166.166v1.91c0 .084.083.167.166.167h1.163c.831 0 1.33-.416 1.33-1.08-.084-.748-.582-1.163-1.413-1.163zM12.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.748 12.461H9.965c-.581 0-.997-.415-.997-.997V6.071c0-.582.416-.997.997-.997h2.492c1.828 0 2.908 1.08 2.908 2.492 0 .997-.582 1.744-1.412 1.994.83.166 1.661.997 1.661 2.243.083 1.495-1.08 2.658-2.824 2.658z"
}));
}