UNPKG

@kiwicom/orbit-components

Version:

<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"

21 lines (19 loc) 811 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; import type { Props } from "./Gym.js.flow"; export default function Gym(props: Props) { const { color, size, customColor, className, dataTest } = props; return ( <OrbitIcon viewBox="0 0 24 24" size={size} color={color} customColor={customColor} className={className} dataTest={dataTest} > <path d="M21.051.684l-.544 1.632a.997.997 0 0 1-.948.684H15v2h2.819l-1.504 9.027-5.721-2.408L9.388 8H12V6H5v2h2.279l.876 2.627A4.784 4.784 0 0 0 2 15.212 4.788 4.788 0 0 0 6.788 20h11.808a2.404 2.404 0 0 0 .933-4.619l-1.32-.556 1.642-9.848a2.995 2.995 0 0 0 2.554-2.028l.544-1.633-1.898-.632zM6.5 18a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5zM2 21h20v2H2v-2z" /> </OrbitIcon> ); }