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.37 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Cocktail(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: "M5.384 4.15l-.426-.483H2.833a.833.833 0 0 1 0-1.667h2.309a1.25 1.25 0 0 1 .941.425l1.029 1.176a.417.417 0 0 1-.314.69H5.697a.417.417 0 0 1-.313-.141zM22 5.75a3.756 3.756 0 0 1-3.75 3.75.218.218 0 0 1-.167-.36l1.059-1.198c.139-.156.257-.33.35-.517a2.083 2.083 0 1 0-2.624-3.236.417.417 0 0 1-.274.103h-1.099a.417.417 0 0 1-.343-.653A3.75 3.75 0 0 1 22 5.75zm-6.214 15.417a.833.833 0 0 1-.833.833h-7.5a.833.833 0 0 1 0-1.667h2.463a.417.417 0 0 0 .417-.416v-5.6a.417.417 0 0 0-.105-.274l-6.11-6.936a.987.987 0 0 1-.18-1 .833.833 0 0 1 .767-.567h12.923a.833.833 0 0 1 .767.567.987.987 0 0 1-.18 1l-6.11 6.936a.417.417 0 0 0-.105.275v5.599c0 .23.186.416.417.416h2.535a.833.833 0 0 1 .834.834zm-9.4-14.048a.18.18 0 0 0 .038.185l1.764 1.858c.079.083.188.13.303.13h5.352a.417.417 0 0 0 .302-.13l1.764-1.858a.18.18 0 0 0 .039-.185.153.153 0 0 0-.143-.107H6.528a.153.153 0 0 0-.142.107z" })); }