33 lines
904 B
TypeScript
33 lines
904 B
TypeScript
export function LogoIcon({ className }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
width="321"
|
|
height="282"
|
|
viewBox="0 0 321 282"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M96.1017 113.4L160.679 4.57764e-05L320.718 281.045H0.638916L65.2159 167.642L110.896 194.382L92.0035 227.561H229.354L160.679 106.965L141.786 140.144L96.1017 113.4Z"
|
|
fill="url(#paint0_linear_465_1663)"
|
|
/>
|
|
<defs>
|
|
<linearGradient
|
|
id="paint0_linear_465_1663"
|
|
x1="320.718"
|
|
y1="140.687"
|
|
x2="0.638918"
|
|
y2="140.687"
|
|
gradientUnits="userSpaceOnUse"
|
|
>
|
|
<stop stopColor="#41FF54" />
|
|
<stop offset="1" stopColor="#E7FF52" />
|
|
</linearGradient>
|
|
</defs>
|
|
</svg>
|
|
);
|
|
}
|