Live location tracking and playback for the game "manhunt"
at ben/frontend 9 lines 238 B view raw
1import React from "react"; 2 3export type LoadingSpinnerProps = { 4 className?: string; 5}; 6 7export default function LoadingSpinner({ className }: LoadingSpinnerProps) { 8 return <span className={`spinner ${className ?? ""}`}></span>; 9}