import { SVGAttributes } from "react";

export default function Egg(props: SVGAttributes<SVGElement>) {
    return (
        <svg
            {...props}
            xmlns="http://www.w3.org/2000/svg"
            width="45"
            height="38"
            fill="none"
            viewBox="0 0 45 38"
        >
            <path
                stroke="#000"
                strokeLinecap="round"
                strokeWidth="1.95"
                d="M15.07 1.373c4.55 0 8.575 5.339 11.025 11.198 1.801-2.893 4.12-5.04 6.651-5.04 5.742 0 10.398 11.054 10.398 16.797 0 5.742-4.655 10.397-10.398 10.397a10.363 10.363 0 01-7.237-2.932 13.48 13.48 0 01-10.439 4.932c-7.465 0-13.517-6.052-13.517-13.517 0-1.9.393-4.248 1.1-6.692l.323-1.052C5.194 8.598 9.776 1.373 15.07 1.373zm0 35.352c7.465 0 13.517-6.052 13.517-13.517 0-1.9-.392-4.248-1.1-6.692l-.322-1.052C24.947 8.598 20.364 1.373 15.07 1.373c-5.293 0-9.876 7.225-12.094 14.09l-.323 1.053c-.707 2.444-1.1 4.792-1.1 6.692 0 7.465 6.052 13.517 13.517 13.517z"
                clipRule="evenodd"
            ></path>
        </svg>
    );
}
