import { SVGAttributes } from "react";

export default function Nut(props: SVGAttributes<SVGElement>) {
    return (
        <svg
            {...props}
            xmlns="http://www.w3.org/2000/svg"
            width="33"
            height="39"
            fill="none"
            viewBox="0 0 33 39"
        >
            <path
                stroke="#000"
                strokeLinecap="square"
                strokeWidth="1.95"
                d="M16.367 37.064c8.318-2.773 12.477-7.4 12.477-13.884V18.35H3.89v4.831c0 6.484 4.159 11.111 12.477 13.884zM7.01 7.951l5.77-1.649a2.08 2.08 0 001.509-1.999v-2.59h4.159l-.92 1.84A2.08 2.08 0 0018.881 6.5l5.803 1.451a8.574 8.574 0 016.332 9.98l-.093.418H1.81l-.243-.975a7.826 7.826 0 015.442-9.423z"
                clipRule="evenodd"
            ></path>
        </svg>
    );
}
