@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) • 1.54 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./SportEquipment.js.flow";
export default function SportEquipment(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="M14.475 5v.825s.017.559.103 1.375H8.906l-.103-.206c1.182-.284 1.547-.357 1.547-.825 0-.331-.116-.344-.447-.344h-4.16c-.218 0-.343.116-.343.447 0 1.34.404 1.37 1.719 1.1l.515.928-2.956 5.947a.835.835 0 0 0 .026.803.827.827 0 0 0 .696.4h6.222a.827.827 0 0 0 .855.026.838.838 0 0 0 .417-.748l2.406-4.09c.516 1.542 1.358 3.214 2.716 4.571l1.168-1.168c-2.565-2.566-2.891-6.27-2.956-7.391H18.6V5h-4.125zM9.8 8.85h4.675l-2.44 4.09L9.8 8.85zm-1.203 1.203l2.028 3.747H6.706l1.89-3.747zm-3.197.172c-2.42 0-4.4 1.98-4.4 4.4 0 2.42 1.98 4.4 4.4 4.4 1.98 0 3.644-1.332 4.194-3.094H7.806c-.55.881-1.418 1.444-2.406 1.444a2.725 2.725 0 0 1-2.75-2.75 2.768 2.768 0 0 1 2.544-2.75l.756-1.65H5.4zm13.2 0c-.33 0-.77.103-1.1.103.22.55.425.997.756 1.547h.344a2.725 2.725 0 0 1 2.75 2.75 2.725 2.725 0 0 1-2.75 2.75 2.725 2.725 0 0 1-2.75-2.75c0-.33.095-.778.206-.997-.33-.55-.64-1.1-.86-1.65-.66.662-.996 1.659-.996 2.647 0 2.42 1.98 4.4 4.4 4.4 2.42 0 4.4-1.98 4.4-4.4 0-2.42-1.98-4.4-4.4-4.4zM8.494 11.531l-.79 1.65s-.01.138.102.138h1.788c-.22-.77-.55-1.35-1.1-1.788z" />
</OrbitIcon>
);
}