Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

SyncLoader.d.ts 342B

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