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 1.38 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function City(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: "M10.958 4.383a.417.417 0 0 1-.416-.416v-.834a.833.833 0 0 1 .833-.833h1.25a.833.833 0 0 1 .833.833v.834a.417.417 0 0 1-.416.416h-2.084zm10.209 15.65a.833.833 0 0 1 0 1.667H2.833a.833.833 0 1 1 0-1.667.208.208 0 0 0 .209-.208v-8.667a.833.833 0 0 1 .833-.833h1.25V9.7a.625.625 0 1 1 1.25 0v.625a.833.833 0 0 1 .833.833v8.459c0 .23.187.416.417.416h.417a.417.417 0 0 0 .416-.416V5.867a.833.833 0 0 1 .834-.834h5.416a.833.833 0 0 1 .834.834v13.75c0 .23.186.416.416.416h.417a.417.417 0 0 0 .417-.416v-6.459a.833.833 0 0 1 .833-.833V11.7a.625.625 0 1 1 1.25 0v.625h1.25a.833.833 0 0 1 .833.833v6.667c0 .115.094.208.209.208zM10.333 7.117a.625.625 0 0 0 0 1.25h3.334a.625.625 0 0 0 0-1.25h-3.334zm0 3.333a.625.625 0 0 0 0 1.25h3.334a.625.625 0 0 0 0-1.25h-3.334zm0 3.333a.625.625 0 0 0 0 1.25h3.334a.625.625 0 0 0 0-1.25h-3.334zm3.542 4.584a.625.625 0 0 0 0-1.25h-3.75a.625.625 0 1 0 0 1.25h3.75z" })); }