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.12 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Gym(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: "M3.667 8.247a.417.417 0 0 1 .416.416v6.667a.417.417 0 0 1-.416.417h-.834A.833.833 0 0 1 2 14.913V9.08a.833.833 0 0 1 .833-.833h.834zM7.833 6.58a.417.417 0 0 1 .417.417v10a.417.417 0 0 1-.417.416H5.75a.833.833 0 0 1-.833-.833V7.413a.833.833 0 0 1 .833-.833h2.083zm13.334 1.667A.833.833 0 0 1 22 9.08v5.833a.833.833 0 0 1-.833.834h-.834a.417.417 0 0 1-.416-.417V8.663a.417.417 0 0 1 .416-.416h.834zM18.25 6.58a.833.833 0 0 1 .833.833v9.167a.833.833 0 0 1-.833.833h-2.083a.417.417 0 0 1-.417-.416v-10a.417.417 0 0 1 .417-.417h2.083zm-8.667 4.167h4.834a.5.5 0 0 1 .5.5v1.5a.5.5 0 0 1-.5.5H9.583a.5.5 0 0 1-.5-.5v-1.5a.5.5 0 0 1 .5-.5z" })); }