@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.21 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Gym(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: "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"
}));
}