@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 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function LocationAdd(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.993 2a7.926 7.926 0 0 0-7.916 7.917c0 5.455 5.448 10.406 7.117 11.794a1.25 1.25 0 0 0 1.598 0c1.666-1.388 7.118-6.34 7.118-11.795A7.926 7.926 0 0 0 11.993 2zm3.959 9.236h-2.709a.417.417 0 0 0-.416.416v2.709a.833.833 0 0 1-1.667 0v-2.709a.417.417 0 0 0-.417-.416H8.035a.833.833 0 1 1 0-1.667h2.708a.417.417 0 0 0 .417-.417V6.444a.833.833 0 1 1 1.667 0v2.709c0 .23.186.416.416.416h2.709a.833.833 0 1 1 0 1.667z"
}));
}