Dashboard sipadu mbip
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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;