mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
12 lines
406 B
TypeScript
12 lines
406 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>;
|
|
style: (i: number) => SerializedStyles;
|
|
wrapper: () => SerializedStyles;
|
|
render(): JSX.Element | null;
|
|
}
|
|
export default Loader;
|