import { SVGAttributes } from "react";

export default function Milk(props: SVGAttributes<SVGElement>) {
    return (
        <svg
            {...props}
            xmlns="http://www.w3.org/2000/svg"
            width="22"
            height="41"
            fill="none"
            viewBox="0 0 22 41"
        >
            <path
                stroke="#000"
                strokeLinecap="round"
                strokeWidth="1.95"
                d="M5.53 1.633h10.397M2.01 17.253l1.931-3.067a21.928 21.928 0 003.19-8.868l.478-3.685h6.238l.432 3.451a22.232 22.232 0 003.207 9.026l1.967 3.148c.414.66.633 1.425.633 2.204v15.443a4.159 4.159 0 01-4.16 4.16H5.53a4.159 4.159 0 01-4.159-4.16V19.47c0-.784.222-1.552.64-2.216zm-.64 7.255l1.307.435a9.922 9.922 0 009.09-1.475l.44-.33a7.524 7.524 0 017.45-.908l.429.198v12.477a4.159 4.159 0 01-4.16 4.16H5.53a4.159 4.159 0 01-4.159-4.16V24.508z"
            ></path>
        </svg>
    );
}
