@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.
28 lines • 1.01 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Coffee(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: ariaLabel
}, React.createElement("path", {
d: "M21.117 17.813a.833.833 0 0 1 0 1.667H2.834a.833.833 0 1 1 0-1.667h18.285zm-10.778-1.26a6.65 6.65 0 0 1-7.095-6.636V5.343a.833.833 0 0 1 .834-.833h11.634a.833.833 0 0 1 .833.833v.417c0 .23.186.417.417.417h.882a4.156 4.156 0 1 1 0 8.311h-3.022a.417.417 0 0 0-.296.124 6.45 6.45 0 0 1-4.187 1.94zm7.505-8.714l-.882-.001a.417.417 0 0 0-.416.416V9.69a7.018 7.018 0 0 1-.488 2.57.417.417 0 0 0 .387.567h1.4a2.493 2.493 0 0 0 0-4.987z"
}));
}