Files
freno-dev/src/components/LoadingSpinner.tsx
2025-12-17 13:51:13 -05:00

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>
);
}