UNPKG

@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.

18 lines 969 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function LocationF(props) { return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: props.size, color: props.color, customColor: props.customColor, className: props.className, dataTest: props.dataTest, ariaHidden: props.ariaHidden, reverseOnRtl: props.reverseOnRtl, ariaLabel: props.ariaLabel }, React.createElement("path", { d: "M12.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 2zm3.323 4.07c0 .5-.415.997-.997.997h-2.824a.179.179 0 0 0-.167.167v1.661c0 .083.083.166.167.166h2.409c.498 0 .997.416.997.997 0 .499-.416.997-.997.997h-2.326a.179.179 0 0 0-.166.166v2.41c0 .498-.416.996-.997.996h-.25c-.498 0-.996-.415-.996-.997V6.154c0-.499.415-.997.996-.997h4.154c.499 0 .997.415.997.997V6.07z" })); }