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.

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;