import { SVGAttributes } from "react";

export default function Gluten(props: SVGAttributes<SVGElement>) {
    return (
        <svg
            {...props}
            xmlns="http://www.w3.org/2000/svg"
            width="38"
            height="38"
            fill="none"
            viewBox="0 0 38 38"
        >
            <path
                stroke="#000"
                strokeLinecap="round"
                strokeWidth="1.95"
                d="M5.47 17.898a9.294 9.294 0 01.413 14.542l-.413.328a9.294 9.294 0 01-.413-14.541l.413-.329zm7.435-7.435a9.294 9.294 0 01.413 14.542l-.413.328a9.294 9.294 0 01-.413-14.542l.413-.328zm7.435-7.435a9.294 9.294 0 01.413 14.541l-.413.329a9.294 9.294 0 01-.413-14.542l.413-.328zm14.87 14.87a9.294 9.294 0 01-14.541.413l-.329-.413a9.293 9.293 0 0114.541-.413l.329.413zm-7.435 7.435a9.294 9.294 0 01-14.541.413l-.329-.413a9.293 9.293 0 0114.541-.413l.329.413zm-7.435 7.435a9.294 9.294 0 01-14.541.413l-.329-.413a9.293 9.293 0 0114.542-.413l.328.413zm16.41-31.28a9.294 9.294 0 01-9.99 10.575l-.525-.06A9.294 9.294 0 0136.75 1.487z"
                clipRule="evenodd"
            ></path>
        </svg>
    );
}
