Dashboard sipadu mbip
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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;