@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.
22 lines • 834 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Coffee(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M11 2c0 1.277-.219 1.281-.719 1.781S9 5.277 9 7h2c0-1.277.219-1.281.719-1.781S13 3.723 13 2h-2zm3.688 1C14.688 5.398 13 5.398 13 7h2c0-1.5 1.688-1.3 1.688-4h-2zM5 8v6c0 2.2 1.8 4 4 4h6c1.902 0 3.473-1.34 3.875-3.125C20.665 14.477 22 12.91 22 11v-1c0-.523-.184-1.059-.563-1.438C21.06 8.184 20.523 8 20 8H5zm14 2h1v1c0 .809-.387 1.43-1 1.75V10zM2 19c0 1.7 1.3 3 3 3h14c1.7 0 3-1.3 3-3H2z"
}));
}