import { SVGAttributes } from "react";

export default function Walnut(props: SVGAttributes<SVGElement>) {
    return (
        <svg
            {...props}
            xmlns="http://www.w3.org/2000/svg"
            width="32"
            height="38"
            fill="none"
            viewBox="0 0 32 38"
        >
            <path
                stroke="#000"
                strokeLinecap="square"
                strokeWidth="1.95"
                d="M16.027 8.67v20.795m-7.1-19.577a4.159 4.159 0 003.558 7.054m8.563 13.384a4.159 4.159 0 000-5.882m4.062-8.414a3.12 3.12 0 00-4.411 0M6.974 26.137a3.12 3.12 0 004.412 0m4.642 10.606c10.397 0 14.556-8.318 14.556-16.391 0-8.482-4.852-14.802-14.556-18.96C6.322 5.55 1.47 11.87 1.47 20.351c0 8.073 4.159 16.391 14.556 16.391zm0-29.796l2.208 2.208a4.16 4.16 0 015.406 5.99 4.154 4.154 0 012.226 6.002 4.159 4.159 0 01-3.602 6.238 4.16 4.16 0 01-6.239 3.603 4.159 4.159 0 01-6.238-3.603l-.31-.011a4.16 4.16 0 01-3.292-6.228 4.16 4.16 0 012.227-6.005 4.159 4.159 0 015.405-5.986l2.209-2.208z"
            ></path>
        </svg>
    );
}
