import { SVGAttributes } from "react";

export default function Sesame(props: SVGAttributes<SVGElement>) {
    return (
        <svg
            {...props}
            xmlns="http://www.w3.org/2000/svg"
            width="36"
            height="35"
            fill="none"
            viewBox="0 0 36 35"
        >
            <path
                stroke="#000"
                strokeLinecap="round"
                strokeWidth="1.95"
                d="M29.95 23.845a.78.78 0 111.103 1.103l-.552.552c-.735 3.676-1.654 6.065-2.757 7.168-1.654 1.654-3.991 1.523-5.514 0-1.523-1.523-1.654-3.86 0-5.514 1.103-1.103 3.492-2.022 7.168-2.757l.552-.552zm-27.074-.311a.78.78 0 011.065-.286l.676.39c3.74-.241 6.287.028 7.638.808 2.025 1.17 2.503 3.461 1.427 5.326-1.077 1.865-3.3 2.597-5.327 1.428-1.35-.78-2.856-2.85-4.518-6.211l-.675-.39a.78.78 0 01-.286-1.065zm15.8-15.853c.431 0 .78.35.78.78v.78c2.08 3.12 3.12 5.459 3.12 7.018 0 2.34-1.746 3.9-3.9 3.9-2.153 0-3.899-1.56-3.899-3.9 0-1.56 1.04-3.899 3.12-7.018v-.78c0-.43.349-.78.78-.78zm10.51-2.05c2.08-.558 4.17.497 4.775 2.757.404 1.506.005 4.035-1.196 7.586l.202.753a.78.78 0 01-1.507.404l-.202-.753c-2.816-2.475-4.426-4.466-4.83-5.972-.605-2.26.678-4.218 2.758-4.775zM7.658 1.63l.156.025a.78.78 0 01.552.956l-.202.753c1.201 3.551 1.6 6.08 1.196 7.586-.605 2.26-2.695 3.315-4.775 2.757-2.08-.557-3.363-2.515-2.757-4.775.403-1.507 2.013-3.497 4.83-5.972l.201-.753a.78.78 0 01.955-.552l-.156-.025z"
                clipRule="evenodd"
            ></path>
        </svg>
    );
}
