UNPKG

@uva-glass/component-library

Version:

React components UvA

9 lines (8 loc) 411 B
export interface SpinnerProps { /** The `aria-valuetext` of the spinner. */ ariaValueText: string; /** Delay in milliseconds after which the spinner becomes visible. The default is `250`. */ showAfterMs?: number; } /** Represents a component to display a spinner. */ export declare const Spinner: ({ ariaValueText, showAfterMs }: SpinnerProps) => import("react/jsx-runtime").JSX.Element | null;