@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.17 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Sports(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: "M4.298 7.705c-.018-.092-.036-.182-.048-.268C3.935 5.743 3.477 2 6.145 2s2.21 3.74 1.9 5.431l-.053.274a.417.417 0 0 1-.409.334H4.706a.417.417 0 0 1-.408-.334zm3.267 1.587a.417.417 0 0 1 .387.268c.881 2.289 4.833 6.815-.119 12.156a.888.888 0 0 1-.649.285H5.106a.888.888 0 0 1-.651-.285c-5.054-5.45-.858-10.24-.119-12.157a.417.417 0 0 1 .389-.267h2.84zm7.769-.625a6.667 6.667 0 1 1-4.523 11.566.417.417 0 0 1-.092-.486c1.526-3.191.692-6.122-.405-8.417a.417.417 0 0 1 .066-.458 6.649 6.649 0 0 1 4.954-2.205zm-1.779 3.111a.89.89 0 1 0 1.779 0 .89.89 0 0 0-1.779 0zm1.779 4.444a.89.89 0 0 0 .888-.888.888.888 0 1 0-.888.888zM18 13.556a.89.89 0 0 0 .888-.889.89.89 0 1 0-.888.889z"
}));
}