update score
All checks were successful
deploy / deploy (push) Successful in 54s

This commit is contained in:
Lee
2023-10-26 21:19:11 +01:00
parent 030fac191a
commit 5c7fe53484
3 changed files with 52 additions and 13 deletions

View File

@ -0,0 +1,30 @@
type BeatSaverLogoProps = {
size?: number;
className?: string;
};
export default function BeatSaverLogo({
size = 32,
className,
}: BeatSaverLogoProps) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 200 200"
version="1.1"
className={className}
>
<g fill="none" stroke="#000000" stroke-width="10">
<path d="M 100,7 189,47 100,87 12,47 Z" stroke-linejoin="round"></path>
<path
d="M 189,47 189,155 100,196 12,155 12,47"
stroke-linejoin="round"
></path>
<path d="M 100,87 100,196" stroke-linejoin="round"></path>
<path d="M 26,77 85,106 53,130 Z" stroke-linejoin="round"></path>
</g>
</svg>
);
}