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.

ScaleLoader.d.ts 363B

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