@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.
22 lines • 695 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function LocationB(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M12 3a7 7 0 0 1 7 7c0 5-7 13-7 13s-7-8-7-13a7 7 0 0 1 7-7zm.5 6a.5.5 0 1 1 0 1H11V9h1.5zm2.5 3.5c0-.565-.195-1.081-.512-1.5.317-.419.512-.935.512-1.5C15 8.121 13.879 7 12.5 7H9v8h3.5c1.379 0 2.5-1.121 2.5-2.5zm-2.5-.5a.5.5 0 1 1 0 1H11v-1h1.5z"
}));
}