35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { SVGProps } from "react";
|
|
|
|
function Blob2(props: SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
width="197"
|
|
height="173"
|
|
viewBox="0 0 197 173"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...props}
|
|
>
|
|
<path
|
|
d="M376.745 8.31103C313.484 -9.05387 250.755 2.50459 205.527 52.2953C171.122 90.2852 159.804 138.706 100.572 145.714C42.2871 152.666 -19.4446 181.366 6.01194 257.137C34.4467 341.884 139.028 318.246 203.745 298.11C229.74 289.96 254.95 280.876 281.311 274.066C329.257 261.653 377.408 245.774 415.485 213.013C440.246 191.695 461.108 118.086 457.281 86.0026C452.562 46.4328 423.44 24.1359 387.627 11.7445C384.09 10.5207 380.463 9.37619 376.745 8.31103Z"
|
|
fill="url(#paint0_linear_1_7945)"
|
|
/>
|
|
<defs>
|
|
<linearGradient
|
|
id="paint0_linear_1_7945"
|
|
x1="237.028"
|
|
y1="-87.8634"
|
|
x2="464.157"
|
|
y2="55.102"
|
|
gradientUnits="userSpaceOnUse"
|
|
>
|
|
<stop stopColor="#FEF5E3" />
|
|
<stop offset="1" stopColor="#BCFFBE" />
|
|
</linearGradient>
|
|
</defs>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default Blob2;
|