All files / packages/ui/src/icons FoodPlate.tsx

100% Statements 2/2
100% Branches 3/3
100% Functions 1/1
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24            3x         3x                        
import Svg, { Path } from "react-native-svg";
 
import { IconProps } from "@repo/types/icons";
 
import { colors } from "../themes";
 
export const FoodPlateIcon = ({
  width = 32,
  height = 32,
  color = colors.icon.default,
}: IconProps) => (
  <Svg
    width={width}
    height={height}
    viewBox={`0 0 ${width} ${height}`}
    fill="none"
  >
    <Path
      d="M14.8796 7.67764C15.0463 7.30958 15.2824 6.97625 15.331 6.56652C15.6782 3.64291 11.6921 2.86514 10.8032 5.39291C10.4907 6.27486 10.6991 6.76791 11.0741 7.53875C11.1018 7.5943 11.1713 7.58041 11.0741 7.6568C5.59489 8.51791 1.31712 13.3721 1.18517 18.9276H24.831C24.6921 13.3929 20.3866 8.42764 14.8866 7.67069L14.8796 7.67764ZM13.0046 7.49708C12.2893 7.49708 11.7129 6.92069 11.7129 6.20541C11.7129 5.49014 12.2893 4.91375 13.0046 4.91375C13.7199 4.91375 14.2963 5.49014 14.2963 6.20541C14.2963 6.92069 13.7199 7.49708 13.0046 7.49708ZM21.9352 17.8721C21.4352 17.7887 21.3518 16.8026 21.1921 16.3443C20.4282 14.1846 18.6643 12.2818 16.5671 11.3651C16.2893 11.2401 15.2616 10.9485 15.1366 10.8026C14.9004 10.5318 15.0116 10.0457 15.3727 9.96236C15.8588 9.85819 17.3379 10.5804 17.8171 10.8512C19.9699 12.0596 21.6643 14.1776 22.3379 16.5596C22.4629 16.9901 22.7546 18.004 21.9352 17.8721ZM18.1504 7.85125C18.6782 7.42764 18.0254 7.01791 17.8796 6.64291C17.456 5.5318 18.9699 4.03875 18.5949 2.63597C18.4977 2.26791 18.1504 1.76791 17.7129 1.83736C17.5185 1.87208 17.3171 2.07347 17.2824 2.26791C17.2268 2.58736 17.5185 2.7193 17.5879 2.96236C17.7685 3.62208 16.6782 5.29569 16.7616 6.4068C16.8032 6.9693 17.4352 8.43458 18.1574 7.85819L18.1504 7.85125ZM20.9629 6.00402C21.4838 5.52486 20.7199 5.10819 20.6296 4.68458C20.3518 3.32347 22.1991 1.62902 21.1296 0.323469C20.9352 0.0873577 20.7616 -0.0515312 20.4352 0.0179132C20.1157 0.0873577 20.0463 0.476247 20.1366 0.74708C20.1782 0.879024 20.3449 0.962358 20.3866 1.12208C20.5532 1.8443 19.4907 3.38597 19.5463 4.46236C19.5741 5.03875 20.2546 6.64986 20.9699 5.99708L20.9629 6.00402ZM25.6227 19.9762L0.421283 19.9624C0.115727 20.0874 -0.106495 20.379 0.053227 20.7054C0.317116 21.2401 1.10878 20.9346 1.57406 21.0596L4.07406 23.0526L21.8379 23.0735C22.7685 22.504 23.5602 21.7193 24.4282 21.0596C24.8727 20.9346 25.6018 21.2193 25.9004 20.7749C26.1296 20.4415 25.9352 20.1429 25.6227 19.9762Z"
      fill={color}
    />
  </Svg>
);