import React from "react"; // import "./spinner.css"; export function Spinner() { return
; } export function ScreenSpinner(props: { visible: boolean; label?: string }) { if (!props.visible) return null; return (
{props.label ?
{props.label}
: null}
); }