5 lines
309 B
TypeScript
5 lines
309 B
TypeScript
import * as React from "react";
|
|
import { LoaderHeightWidthRadiusProps } from "./helpers/props";
|
|
declare function FadeLoader({ loading, color, speedMultiplier, cssOverride, height, width, radius, margin, ...additionalprops }: LoaderHeightWidthRadiusProps): React.JSX.Element | null;
|
|
export default FadeLoader;
|