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.

RingLoader.d.ts 367B

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