17 lines
395 B
TypeScript
17 lines
395 B
TypeScript
export default function LoadingSpinner(props: {
|
|
height: number;
|
|
width: number;
|
|
}) {
|
|
return (
|
|
<picture class="animate-spin-reverse flex w-full justify-center">
|
|
<source srcset="/WhiteLogo.png" media="(prefers-color-scheme: dark)" />
|
|
<img
|
|
src="/BlackLogo.png"
|
|
alt="logo"
|
|
width={props.width}
|
|
height={props.height}
|
|
/>
|
|
</picture>
|
|
);
|
|
}
|