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.33 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Fuel(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: "M21.736 9.204a.833.833 0 0 0-1.179.039c-1.531 1.637-2.306 2.81-2.306 3.486v6.25a.833.833 0 0 1-1.667 0V7.729c0-1.151-.933-2.084-2.083-2.084h-.207a.208.208 0 0 1-.208-.208V3.978a1.46 1.46 0 0 0-1.459-1.458H3.46A1.46 1.46 0 0 0 2 3.978v15.834a1.46 1.46 0 0 0 1.458 1.459h9.167a1.46 1.46 0 0 0 1.459-1.459V7.52c0-.115.093-.208.208-.208h.208a.417.417 0 0 1 .417.416V18.98a2.5 2.5 0 0 0 5 0v-1.856a.207.207 0 0 1 .115-.187l.861-.43a1.244 1.244 0 0 0 .691-1.118v-.993c0-.69-.56-1.25-1.25-1.25h-.217a.208.208 0 0 1-.208-.206v-.13a11.584 11.584 0 0 1 1.867-2.428.833.833 0 0 0-.04-1.177zM10.958 15.02a.417.417 0 0 1-.417.417h-.833a.417.417 0 0 1-.417-.416v-2.5a.417.417 0 0 1 .417-.417h.833a.417.417 0 0 1 .417.416v2.5zm.833-7.291a.417.417 0 0 1-.417.416H4.708a.417.417 0 0 1-.417-.416v-2.5a.417.417 0 0 1 .417-.417h6.667a.417.417 0 0 1 .416.416v2.5z" })); }