UNPKG

@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) 1.01 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; import type { Props } from "./Meal.js.flow"; export default function Meal(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="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" /> </OrbitIcon> ); }