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