Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SquareLoader.d.ts 306B

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