@reactodia/workspace
Version:
Reactodia Workspace -- library for visual interaction with graphs in a form of a diagram.
16 lines • 477 B
TypeScript
export interface SpinnerProps {
size?: number;
position?: {
readonly x: number;
readonly y: number;
};
statusText?: string;
errorOccurred?: boolean;
}
export declare function Spinner(props: SpinnerProps): import("react/jsx-runtime").JSX.Element;
export declare function HtmlSpinner(props: {
width: number;
height: number;
errorOccurred?: boolean;
}): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=spinner.d.ts.map