This commit is contained in:
30
src/components/icons/BeatSaverLogo.tsx
Normal file
30
src/components/icons/BeatSaverLogo.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user