@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 859 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Coffee.js.flow";
export default function Coffee(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<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" />
</OrbitIcon>
);
}