mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
15 lines
511 B
TypeScript
15 lines
511 B
TypeScript
/** @jsx jsx */
|
|
import * as React from "react";
|
|
import { SerializedStyles } from "@emotion/core";
|
|
import { LoaderSizeProps } from "./interfaces";
|
|
declare class Loader extends React.PureComponent<LoaderSizeProps> {
|
|
static defaultProps: Required<LoaderSizeProps>;
|
|
moonSize: () => number;
|
|
ballStyle: (size: number) => SerializedStyles;
|
|
wrapper: () => SerializedStyles;
|
|
ball: () => SerializedStyles;
|
|
circle: () => SerializedStyles;
|
|
render(): JSX.Element | null;
|
|
}
|
|
export default Loader;
|