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.64 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Grid(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: "M6.545 7.455H2.91c-.545 0-.909-.364-.909-.91V2.91C2 2.364 2.364 2 2.909 2h3.636c.546 0 .91.364.91.909v3.636c0 .546-.364.91-.91.91zm7.273 0h-3.636c-.546 0-.91-.364-.91-.91V2.91c0-.545.364-.91.91-.91h3.636c.546 0 .91.364.91.91v3.636c0 .546-.364.91-.91.91zm7.273 0h-3.636c-.546 0-.91-.364-.91-.91V2.91c0-.545.364-.91.91-.91h3.636c.545 0 .909.364.909.91v3.636c0 .546-.364.91-.909.91zM6.545 14.727H2.91c-.545 0-.91-.363-.91-.909v-3.636c0-.546.364-.91.91-.91h3.636c.546 0 .91.364.91.91v3.636c0 .546-.364.91-.91.91zm7.273 0h-3.636c-.546 0-.91-.363-.91-.909v-3.636c0-.546.364-.91.91-.91h3.636c.546 0 .91.364.91.91v3.636c0 .546-.364.91-.91.91zm7.273 0h-3.636c-.546 0-.91-.363-.91-.909v-3.636c0-.546.364-.91.91-.91h3.636c.545 0 .909.364.909.91v3.636c0 .546-.364.91-.909.91zM6.545 22H2.91C2.364 22 2 21.636 2 21.091v-3.636c0-.546.364-.91.909-.91h3.636c.546 0 .91.364.91.91v3.636c0 .545-.364.909-.91.909zm7.273 0h-3.636c-.546 0-.91-.364-.91-.909v-3.636c0-.546.364-.91.91-.91h3.636c.546 0 .91.364.91.91v3.636c0 .545-.364.909-.91.909zm7.273 0h-3.636c-.546 0-.91-.364-.91-.909v-3.636c0-.546.364-.91.91-.91h3.636c.545 0 .909.364.909.91v3.636c0 .545-.364.909-.909.909z" })); }