Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BarLoader.d.ts 395B

12345678910
  1. /** @jsx jsx */
  2. import * as React from "react";
  3. import { LoaderHeightWidthProps, StyleFunction, StyleFunctionWithIndex } from "./interfaces";
  4. export declare class Loader extends React.PureComponent<LoaderHeightWidthProps> {
  5. static defaultProps: LoaderHeightWidthProps;
  6. style: StyleFunctionWithIndex;
  7. wrapper: StyleFunction;
  8. render(): JSX.Element | null;
  9. }
  10. export default Loader;