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.

1234567891011121314
  1. /** @jsx jsx */
  2. import * as React from "react";
  3. import { StyleFunction, PrecompiledCss, LoaderSizeProps, CalcFunction } from "./interfaces";
  4. declare type BallStyleFunction = (size: number) => PrecompiledCss;
  5. declare class Loader extends React.PureComponent<LoaderSizeProps> {
  6. static defaultProps: LoaderSizeProps;
  7. moonSize: CalcFunction<number>;
  8. ballStyle: BallStyleFunction;
  9. wrapper: StyleFunction;
  10. ball: CalcFunction<PrecompiledCss>;
  11. circle: CalcFunction<PrecompiledCss>;
  12. render(): JSX.Element | null;
  13. }
  14. export default Loader;