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.

PacmanLoader.d.ts 635B

1234567891011121314151617
  1. /** @jsx jsx */
  2. import * as React from "react";
  3. import { Keyframes } from "@emotion/serialize";
  4. import { StyleFunction, LoaderSizeMarginProps, CalcFunction, StyleFunctionWithIndex } from "./interfaces";
  5. declare class Loader extends React.PureComponent<LoaderSizeMarginProps> {
  6. static defaultProps: LoaderSizeMarginProps;
  7. ball: CalcFunction<Keyframes>;
  8. ballStyle: StyleFunctionWithIndex;
  9. s1: CalcFunction<string>;
  10. s2: CalcFunction<string>;
  11. pacmanStyle: StyleFunctionWithIndex;
  12. wrapper: StyleFunction;
  13. pac: StyleFunction;
  14. man: StyleFunction;
  15. render(): JSX.Element | null;
  16. }
  17. export default Loader;