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