-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import type {ReactElement} from 'react'; | ||
|
||
export function LogoJuiced(props: React.SVGProps<SVGSVGElement> & {back?: string; front?: string}): ReactElement { | ||
return ( | ||
<svg | ||
{...props} | ||
width={'400'} | ||
height={'400'} | ||
viewBox={'0 0 400 400'} | ||
fill={'none'} | ||
xmlns={'http://www.w3.org/2000/svg'}> | ||
<rect | ||
width={'400'} | ||
height={'400'} | ||
rx={'200'} | ||
fill={'#2247FF'} | ||
/> | ||
<path | ||
fillRule={'evenodd'} | ||
clipRule={'evenodd'} | ||
d={ | ||
'M115.52 152.576C114.418 144.66 120.566 137.596 128.559 137.596H285.969C293.886 137.596 300.013 144.534 299.032 152.391L279.523 308.722C278.701 315.311 273.1 320.256 266.46 320.256H150.323C143.754 320.256 138.19 315.413 137.284 308.907L115.52 152.576ZM132.34 154.052L153.188 303.8H263.554L282.241 154.052H132.34Z' | ||
} | ||
fill={'#FFBC03'} | ||
/> | ||
<path | ||
d={'M129.469 203.419H285.389L273.458 310.383H143.868L129.469 203.419Z'} | ||
fill={'#FFBC03'} | ||
/> | ||
<path | ||
fillRule={'evenodd'} | ||
clipRule={'evenodd'} | ||
d={ | ||
'M202.698 153.64C202.698 148.066 202.036 142.544 200.746 137.184C198.718 128.756 195.139 120.728 190.142 113.528C181.966 101.749 170.387 92.7495 156.955 87.7346C143.522 82.7197 128.878 81.9289 114.984 85.4681C101.09 89.0073 88.6086 96.7075 79.2123 107.537C69.816 118.367 63.9532 131.81 62.4092 146.064C60.8651 160.319 63.7135 174.705 70.5729 187.296C77.4323 199.886 87.9751 210.08 100.789 216.513C108.622 220.445 117.075 222.856 125.705 223.675C131.193 224.195 136.754 224.072 142.272 223.286L132.349 153.64H202.698ZM123.296 206.767L115.523 152.206C114.393 144.277 120.546 137.184 128.556 137.184H183.668C182.049 132.133 179.683 127.319 176.623 122.911C170.36 113.887 161.489 106.993 151.199 103.151C140.909 99.3093 129.69 98.7034 119.046 101.415C108.402 104.126 98.8403 110.025 91.642 118.322C84.4436 126.618 79.9523 136.916 78.7694 147.836C77.5865 158.757 79.7686 169.777 85.0235 179.423C90.2783 189.068 98.3549 196.878 108.172 201.806C112.967 204.213 118.067 205.876 123.296 206.767Z' | ||
} | ||
fill={'#FFBC03'} | ||
/> | ||
<rect | ||
x={'322.296'} | ||
y={'80'} | ||
width={'22.0921'} | ||
height={'220.509'} | ||
rx={'11.0461'} | ||
transform={'rotate(43.7588 322.296 80)'} | ||
fill={'#FFBC03'} | ||
/> | ||
</svg> | ||
); | ||
} |