react-busy-indicator
Version:
A stand-alone busy indicator for React.
14 lines (13 loc) • 350 B
TypeScript
import React from 'react';
export default function BusyIndicator({ className, color, active, isBusy, delayMs, style, ...props }: {
[x: string]: any;
className: any;
color: any;
active: any;
isBusy: any;
delayMs: any;
style: any;
}): React.DetailedReactHTMLElement<{
className: string;
style: any;
}, HTMLElement>;