This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/src/components/logos/beatsaver-logo.tsx

31 lines
760 B
TypeScript
Raw Normal View History

2024-09-11 22:10:16 +00:00
type BeatSaverLogoProps = {
size?: number;
className?: string;
};
2024-09-13 12:45:04 +00:00
export default function BeatSaverLogo({
size = 32,
className,
}: BeatSaverLogoProps) {
2024-09-11 22:10:16 +00:00
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="#fff" strokeWidth="10">
<path d="M 100,7 189,47 100,87 12,47 Z" strokeLinejoin="round"></path>
2024-09-13 12:45:04 +00:00
<path
d="M 189,47 189,155 100,196 12,155 12,47"
strokeLinejoin="round"
></path>
2024-09-11 22:10:16 +00:00
<path d="M 100,87 100,196" strokeLinejoin="round"></path>
<path d="M 26,77 85,106 53,130 Z" strokeLinejoin="round"></path>
</g>
</svg>
);
}