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.

ClimbingBoxLoader.d.ts 389B

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