@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 • 990 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Meal(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: "M17 13c1.654 0 3 1.346 3 3H4c0-1.654 1.346-3 3-3 .307 0 .61.049.9.142A4.974 4.974 0 0 1 12 11c1.664 0 3.179.814 4.1 2.142.29-.093.593-.142.9-.142zM2 17h20v2h-2.465l-1.703 2.555A1.001 1.001 0 0 1 17 22H7c-.334 0-.646-.167-.832-.445L4.465 19H2v-2zm5.707-8.707L6.293 9.707c-2.353-2.353-1.289-5.125 0-6.414l1.418 1.41c-.296.304-1.688 1.906-.004 3.59zm3.586-2c1.179-1.18.294-2.282-.006-2.592l1.42-1.408c1.088 1.088 1.986 3.428 0 5.414l-1.414-1.414zm6.111 2c1.404-1.404-.109-3.715-.125-3.738l1.664-1.11c.85 1.274 1.916 4.222-.125 6.262l-1.414-1.414z"
}));
}