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.

RotateLoader.d.ts 461B

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